Code Monkey home page Code Monkey logo

Comments (118)

matxpa avatar matxpa commented on June 6, 2024 2

@0xCUB3 @baguswaber @5T33Z0 @perez987

Hi all

ATH works (fine ... baguswaber would confirm that) with High Sierra 10.13.6
on an External HDD with High SIerra 10.13.6 it works, Tooltips too, as you can see below, I didn't test upgrade (coz' latest version available is 0.9.1 (version returned from github in version.txt) and version of this ATH Appli (G0R0C0) is 1.0.0

Capture d’écran 2023-10-05 à 09 43 40
with ToolTips
Capture d’écran 2023-10-05 à 10 04 03
No Upgrade available
Capture d’écran 2023-10-05 à 10 04 17
Progress bar stays grey (or empty)

Just an inconvenience, the grey (not) colored progress bar (and no ToolTip on (... External USB)...) on HDD picture ToolTip is OK

Capture d’écran 2023-10-05 à 10 17 01

Appli (on Google Drive)
https://drive.google.com/file/d/19oNxPOvLaS1GYe96tqrpftM0NzLxE9Iw/view?usp=drive_link

Regards

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024 1

I think the underlying issue is that I am using Xcode 16 beta, which can only build for macOS Big Sur and newer (I believe)... I'll have to figure out a workaround. @baguswaber please stay tuned.

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024 1

@0xCUB3 @perez987

upgrade doesn't work for that reason :
Last Release ID retrieved (in .ath/version.txt) is 1.0.0, but https://github.com/0xCUB3/About-This-
Hack/releases/download/1.0.0/About.This.Hack.zip doesn't exist.

Some adjustments/corrections made too in InitGlobalVariables.swift and UpdateController.swift.
But I can't test this upgrade, may be if you change the content of the file which contains Last Release ID (aka to 0.9.1) and I change in my local PROJECT Version from 0.9.9 to 0.8.9 I could test upgrade

Application
https://drive.google.com/file/d/18OvgIAE1xggqsXsHaJQ_lJSPgQVAiVkQ/view?usp=sharing

Source
https://drive.google.com/file/d/1EWY0KQM1TwEjjJHo8bYWY6bLXMnjSxq2/view?usp=sharing

And I update my fork, i'll send you a message when it will be ok

Regards

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024 1

@0xCUB3 @perez987
Hi
I've made changes in UpdateController.swift
...
static func updateATH() {
...
// let rm = run("rm -rf "" + initGlobVar.thisAppliLocation + """)
let rm = run("rm -rf "(initGlobVar.thisAppliLocation)"")
...
// _ = run("[[ ! -d "" + initGlobVar.thisAppliLocation + "" ]]")
_ = run("[[ ! -d "(initGlobVar.thisAppliLocation)" ]]")
...
// _ = run("cp -rf " + initGlobVar.athDirectory + """ + initGlobVar.thisAppliname + "" " + initGlobVar.allAppliLocation)
_ = run("mv -f (initGlobVar.athDirectory)" + ""(initGlobVar.thisAppliname)"" + " (initGlobVar.allAppliLocation)")
...
// _ = run("open " + initGlobVar.allAppliLocation + """ + initGlobVar.thisAppliname + """)
_ = run("open "(initGlobVar.thisAppliLocation)"")
...

Capture d’écran 2023-10-03 à 15 21 39

New build App (today) placed in /Application with a ShortVersionString downgraded

Capture d’écran 2023-10-03 à 15 22 19

Capture d’écran 2023-10-03 à 15 23 40

Now the upgraded ATH App from 0.9.0 to 0.9.1 (20230728) and immediately opened

Capture d’écran 2023-10-03 à 15 24 59

And the Upgrade works fine (tested with Monterey and Xcode 14.2 (14C18) (since few days my Ventura platform is unstable)

I made also changes on both Main.storyboard (IN MY REPO) but don't apply that, coz' Storage Name & Info Displayed on Storage Tab are different between our two Repo.

Below is before changes

Capture d’écran 2023-10-03 à 15 43 49

Below is after changes

Capture d’écran 2023-10-03 à 15 45 16

And below Storage Tab from your Repo

Capture d’écran 2023-10-03 à 16 31 59

All of those changes had been pushed in github matxpa ATH repo (branch main)

Regards

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024 1

@0xCUB3

Hi

Built with Monterey 12.6.6 and Xcode 14.2 and Deployment Target 10.11
In ATH appli info.plist :
BuildMachineOSBuild = 21G646 --> Monterey 12.6.6 (21G646)
DTXcode = 1420 --> Xcode 14.2
LSMinimumSystemVersion = 10.11 --> El Capitan

In ATH Project (TARGETS/Build Settings/macOS Deployment Target)
LSMinimumSystemVersion MACOSX_DEPLOYMENT_TARGET = 10.11;

And if you try to build ATH with Ventura, Xcode 15.0 (15A240d) and TARGETS/Build Settings/macOS Deployment Target = 10.11

Capture d’écran 2023-10-06 à 09 45 09

The macOS deployment target 'MACOSX_DEPLOYMENT_TARGET' is set to 10.11, but the range of supported deployment target versions is 10.13 to 14.0.99. (and what could happen with Sonoma 14.1 beta ???)

So we could try with LSMinimumSystemVersion at 10.12 or 10.13 but imperatively with Xcode 14.2 (Monterey 12.5 mini)
Xcode 14.3, 14.3.1 and newer work only with Ventura (13.3 mini) and Sonoma

Regards

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024 1

Try this one made with Xcode 12:
https://drive.google.com/file/d/1Yq_M2M6xOI0SOXwh1JlagsrzdC6XGxk0/view?usp=sharing

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024 1

idk what the issue there is. Nothing on my end. Could you troubleshoot? Maybe the older version of zsh doesn't support our commands? idk

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024 1

@matxpa do you feel ready for a 1.0.0 release??? I think I am :)

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024 1

I've fixed that Clover pproblem with Old Clover Rev.

Built with Xcode 14.2 and tested on Ventura, Monterey and High Sierra

I can't (network or github can't) upload screenshots of High Sierra, Monterey and Ventura.

And if you ask me a GO I answer you "you can GO"

Capture d’écran 2023-10-07 à 21 17 41

Monterey Capture d’écran 2023-10-07 à 20 59 28

Ventura Capture d’écran 2023-10-07 à 21 04 58

The same build Xcode14.2 is used with this three macOS

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

It's possible that it's too new as well. I've been compiling this app from Xcode Beta on Sonoma Dev Beta. I'll see what I can do...

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

@5T33Z0 try this new version: https://github.com/0xCUB3/About-This-Hack/releases/tag/0.9.1

from about-this-hack.

5T33Z0 avatar 5T33Z0 commented on June 6, 2024

The error remains the same:

Process:               About This Hack [606]
Path:                  /Volumes/VOLUME/*/About This Hack.app/Contents/MacOS/About This Hack
Identifier:            app.netlify.0xCUBE.About-This-Hack
Version:               0.9.1 (425)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           About This Hack [606]
User ID:               501

Date/Time:             2023-07-28 14:34:00.705 +0200
OS Version:            Mac OS X 10.13.6 (17G14042)
Report Version:        12
Anonymous UUID:        B6A40B17-4C8C-926F-C43D-DD00AA9AD3AC


Time Awake Since Boot: 240 seconds

System Integrity Protection: enabled

Notes:                 Translocated Process

Crashed Thread:        0

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Reason:    DYLD, [0x3] Wrong version

Application Specific Information:
dyld: launch, loading dependent libraries

Dyld Error Message:
  Library not loaded: @rpath/libswiftAppKit.dylib
  Referenced from: /Volumes/VOLUME/*/About This Hack.app/Contents/MacOS/About This Hack
  Reason: Incompatible library version: About This Hack requires version 45.0.0 or later, but libswiftAppKit.dylib provides version 1.0.0

Binary Images:
       0x104bce000 -        0x104be5fff +app.netlify.0xCUBE.About-This-Hack (0.9.1 - 425) <3999CC87-FC31-3FD7-A72E-8D45DC4EB744> /var/folders/*/About This Hack.app/Contents/MacOS/About This Hack
       0x104c01000 -        0x104c44fff +org.sparkle-project.Sparkle (2.4.2 - 2028) <0ABECD2E-F811-39FC-872C-B0158ED17F93> /var/folders/*/About This Hack.app/Contents/Frameworks/Sparkle.framework/Versions/B/Sparkle
       0x104c70000 -        0x104fe1fff +libswiftCore.dylib (5.0.1 - 1001.0.82.4) <44D65143-94D5-306A-8D56-15359A7FF04E> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftCore.dylib
       0x1052c3000 -        0x1052c6fff +libswiftCoreFoundation.dylib (5.0.1 - 1001.0.82.4) <C0D551D8-F4D4-3B6F-8148-05EE1CFFC97F> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftCoreFoundation.dylib
       0x1052d3000 -        0x1052d8ffb +libswiftCoreImage.dylib (5.0.1 - 1001.0.82.4) <E2D50227-8FAE-3104-88F0-6D8E01A9AB18> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftCoreImage.dylib
       0x1052e4000 -        0x1052ebff7 +libswiftDarwin.dylib (5.0.1 - 1001.0.82.4) <144DA4C8-8322-3E6E-942D-9976CAFA8BAE> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftDarwin.dylib
       0x1052fe000 -        0x105316ff7 +libswiftDispatch.dylib (5.0.1 - 1001.0.82.4) <0A4818EF-BCD8-3183-9D34-5F8D4920C05C> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftDispatch.dylib
       0x10535b000 -        0x10535eff3 +libswiftIOKit.dylib (5.0.1 - 1001.0.82.4) <75FE0421-8424-38AD-9372-17A730C44643> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftIOKit.dylib
       0x10536d000 -        0x105376fff +libswiftMetal.dylib (5.0.1 - 1001.0.82.4) <A2ACD465-EF03-3F27-B6F9-390A6D66A040> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftMetal.dylib
       0x105387000 -        0x10538bff7 +libswiftObjectiveC.dylib (5.0.1 - 1001.0.82.4) <1A3E8F91-FF6E-3733-B1AD-CC4D4F3378F4> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftObjectiveC.dylib
       0x10539f000 -        0x1053a5ff7 +libswiftQuartzCore.dylib (5.0.1 - 1001.0.82.4) <FB7CCE82-C7FA-3E50-904D-2FB4006AC1DF> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftQuartzCore.dylib
       0x1053b4000 -        0x1053b7fff +libswiftXPC.dylib (5.0.1 - 1001.0.82.4) <D0199D63-5E28-3E52-907E-3832FBB94FCF> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftXPC.dylib
       0x1053c6000 -        0x1053cdff7 +libswiftos.dylib (5.0.1 - 1001.0.82.4) <A5A1203C-B3D4-350C-BC88-9CECDF62637E> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftos.dylib
       0x1053e0000 -        0x105578ff7 +libswiftFoundation.dylib (5.0.1 - 1001.0.82.4) <868B3228-5A2C-3556-A77A-695000EFCE27> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftFoundation.dylib
       0x10f872000 -        0x10f8bcadf  dyld (551.5) <CB9BFB56-4511-36F1-A546-891FF770C01C> /usr/lib/dyld
    0x7fff54029000 -     0x7fff54e87fff  com.apple.AppKit (6.9 - 1561.61.100) <4E6EA3FA-8C2C-3B21-BFF9-6F8C458B7BE1> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff58bd8000 -     0x7fff58f9fffb  com.apple.Foundation (6.9 - 1455.300) <0479E072-1DD0-3881-A9A2-EDAD3EE58C23> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff7c76c000 -     0x7fff7c76dffb  libSystem.B.dylib (1252.50.4) <5A02016C-8F9D-3F47-8C39-AD2CD4F9F11D> /usr/lib/libSystem.B.dylib
    0x7fff7ca24000 -     0x7fff7ca7afff  libc++.1.dylib (400.9) <142D6292-F30F-3949-9F37-3C97A579F540> /usr/lib/libc++.1.dylib
    0x7fff7dea7000 -     0x7fff7e2983b7  libobjc.A.dylib (723) <616AB826-9179-3924-AA61-AF760363A3F5> /usr/lib/libobjc.A.dylib

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

this is very strange. It's not something that I control, but I'll look into the problem...

from about-this-hack.

5T33Z0 avatar 5T33Z0 commented on June 6, 2024

It's not a big deal. I've managed to upgrade this iMac to Big Sur with OCLP, so I probably will kill the High Sierra Installation anyway.

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

I made a bunch of optimizations for 0.9.2, as well as removing a framework that could be causing issues. Mind testing it and letting me know? Thx
https://drive.google.com/file/d/1Yq_M2M6xOI0SOXwh1JlagsrzdC6XGxk0/view?usp=sharing

from about-this-hack.

baguswaber avatar baguswaber commented on June 6, 2024

Will await for the good news @0xCUB3
Thanks in advance for your help.

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

@baguswaber try this build. I switched the compiler to use Swift 4 instead of Swift 5. Swift 5 doesn't seem to support macOS high sierra so that might be the cause of your issue:
https://drive.google.com/file/d/1vHj_eeQ675OL1zc-KGTAtdC50XmD-XkI/view?usp=sharing

from about-this-hack.

baguswaber avatar baguswaber commented on June 6, 2024

Reporting sir @0xCUB3
Screen Shot 2023-09-16 at 08 55 47

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

@matxpa @baguswaber please try this build. I enabled Embedded Content Contains Swift Code: https://drive.google.com/file/d/1q1Ax0pTh5a-Trw68EOIQJwb-ul_s90y3/view?usp=sharing

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

good. Let's see what @baguswaber has to say since he is on high sierra

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

it's already 10.13

from about-this-hack.

baguswaber avatar baguswaber commented on June 6, 2024

Reporting sir

Screen Shot 2023-09-19 at 19 09 46

from about-this-hack.

baguswaber avatar baguswaber commented on June 6, 2024

Screen Shot 2023-09-19 at 19 13 34

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@0xCUB3

May be with those three flags set to Yes in Build settings level Project and/or Targets

Capture d’écran 2023-09-20 à 09 48 19

Regards

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

can you try and send a binary with those flags enabled @matxpa? I don't have time to do it and am away from home for awhile.

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@baguswaber @5T33Z0 @0xCUB3

Hi all

baguswaber and/or 5T33Z0 coul'd you try this new ATH app with H.Sierra
https://drive.google.com/file/d/16ixBue5vKMokWgOgLsCbEUelV8vLIoaN/view?usp=drive_link

Modifications done on those three Flags which were set to Yes in "Build settings" level Project (and therefore Targets)
image

Regards

from about-this-hack.

5T33Z0 avatar 5T33Z0 commented on June 6, 2024

Sorry, I can't test High Sierra related stuff anymore since I am using Big Sur now.

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

Thanks, and with Big Sur does it work fine ?

from about-this-hack.

baguswaber avatar baguswaber commented on June 6, 2024

@baguswaber @5T33Z0 @0xCUB3

Hi all

baguswaber and/or 5T33Z0 coul'd you try this new ATH app with H.Sierra https://drive.google.com/file/d/16ixBue5vKMokWgOgLsCbEUelV8vLIoaN/view?usp=drive_link

Modifications done on those three Flags which were set to Yes in "Build settings" level Project (and therefore Targets) image

Regards

Reporting sir @matxpa

Screen Shot 2023-09-22 at 20 09 40

from about-this-hack.

5T33Z0 avatar 5T33Z0 commented on June 6, 2024

Thanks, and with Big Sur does it work fine ?

0.9.1Release is running fin in Big Sur

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@5T33Z0

Thanks for your feedback

Regards

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@baguswaber

Thanks for your feedback , I apologize

Take a look at this https://forums.swift.org/t/regression-xcode-15-cant-build-swift-for-macos-earlier-than-10-15/66986
and eventually reinstall "Commande Line Tools".

The ATH app I mad available in Google Drive is a Ventura Xcode15 built.

Regards

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

@baguswaber attached is a build compiled with the stable version of Xcode. Perhaps this will resolve the issue?
https://drive.google.com/file/d/1Yq_M2M6xOI0SOXwh1JlagsrzdC6XGxk0/view?usp=sharing

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@0xCUB3
Hi

I finally and succesfully upgraded Sierra to High Sierra I applied all Security updates and upgrade Xcode to Xcode 10.1 and Command Line Tools too.

I tryed different versions of V1.0 ATH on High Sierra and Mojave (both latest one)
on High Sierra I encontred the same issue than baguswaber did
on Mojave the errors were different (not libraries but Swift)

Capture d’écran 2023-09-26 à 15 35 59

High Sierra (10.13.6) with Xcode 10.1 GM (10B61) 30 Oct 2018 macOS 10.13.6+ Swift 4.2.1 (1000.11.42)
Mojave 10.14.6 (18G7016) with Xcode 11.3 GM (11C29) 10 Dec 2019 macOS 10.14.4+ Swift 5.1.3 (1100.0.282.1)

Regards

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

I honestly don't know what the issue is anymore. It's so hard to debug when you don't have a machine that can run High Sierra.

from about-this-hack.

baguswaber avatar baguswaber commented on June 6, 2024

https://drive.google.com/file/d/1Yq_M2M6xOI0SOXwh1JlagsrzdC6XGxk0/view?usp=sharing

This one still produce the same error as previous ones.
But it's OK, you've done great ATH app.
I just keep my High Sierra on Hackintosh to commemorate good old Nvidia :)
Thx @0xCUB3

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

Thank you for the kind words, but I would still love to get this fixed. The world deserves more backward-compatible apps

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@0xCUB3

A new (adaptation) ATH

Application
About This Hack.app.zip --> https://drive.google.com/file/d/1Os9oJJtRIz2RljyUrHUA-Q8U95VF1XW1/view?usp=sharing
Variables globalization
Data Files creation isolated
OverView ToolTip info on all fields (detail field)
Storage (View) ToolTip on two fields
Different Disk icones added in Assets and identification of icone Disk made with associated variables
...

Repo (local not Github one)
About-This-Hack-main-matxpa.zip --> https://drive.google.com/file/d/1OUAefLBwnoa5Co9dMH-ZQFHcAjip4HhP/view?usp=sharing
Repo, be carefull of About This Hack.xcodeproj, just keep list of Components in "TARGETS/Build Phases/Compile Sources"
I'll push this Repo on Github

Regards

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

Does this work on high sierra? Nice work!

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

so... you haven't tried on any OS? 🤪

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

could you test on high sierra (or someone else)?

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@0xCUB3 @perez987
Hi
a first result on Big Sur with a little modification in HCMacModel.swift component
I had to replace cut by awk, with a cut it returns nil
static func getModelIdentifier() -> String {
// return run("sysctl hw.model | cut -f2 -d " " | tr -d '\n'")
return run("sysctl hw.model | awk '{print $2}' | tr -d '\n'")
}

With Big Sur on USB External SSD
it seems to be OK
Capture d’écran 2023-09-29 à 18 32 17
SSD but "diskutil info /" returns for "Solid State: Info not available" so HDD (default value)
Capture d’écran 2023-09-29 à 18 39 31

I'll test on Mojave and H. Sierra

PS: I've just seen a modification needed in ViewController.swift to add a tempo for
HCGPU.swift getGPU() and HCDisplay.swift getDisp(), sometimes OverView is displayed without Display and Graphics info.

Capture d’écran 2023-09-29 à 19 27 19

Regards

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

how much time is needed? It's really hard for me to tell, once again, as I don't have the ability to test on any of these OSs.

Please also update me on the high sierra/mojave test :)

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@0xCUB3 @perez987

Hi

I apologize, I'm late.

But tests with High Sierra are without effect, this application can't be launched on a High Sierra plateforme
And a High Sierra Security Update (automatic) broke my daily use Ventura Laptop, so I'd to reinstall 13.6.

I made adjustments for Big Sur and Mojave, I would like to install Catalina on an external SSD and test ATH.
I've wast some time with High Sierra. The only way to do it will be a project (specific ATH project) with downgraded Xcode.

Modifications done

About This Hack/HardwareCollector.swift (with Big Sur and olders the header lines about ...Space: isn't Container but Volume)
...
static func getStorageData() -> [String] {
...
let size = run("egrep "[Container|Volume] Total Space:" " + initGlobVar.bootvolnameFilePath + " | awk '{print $4,$5}' | tr -d '\n'")
...
let available = run("grep "[Container|Volume] Free Space:" " + initGlobVar.bootvolnameFilePath + " | awk '{print $4,$5}' | tr -d '\n'")
...
}
...

About This Hack/HardwareCollectors/HCMacModel.swift (with Big Sur "cut -f2 -d \" \" " returns nothing (nil), awk returns data, and test on content of modelId was added)
...
static func getModelIdentifier() -> String {
    let modelId = run("sysctl hw.model | awk '{print $2}' | tr -d '\n'")					instead of       return run("sysctl hw.model | cut -f2 -d \" \" | tr -d '\n'") Big Sur don't like it
    if modelId == "" { return( "Unknown") } else { return modelId }
}

...

About This Hack/ViewController.swift (with Big Sur and olders OverView didn't show Display and Graphics data)
...
override func viewDidLoad() {
...
_ = HCGPU.getGPU()

    var sleepValue:Double = 0
    switch HCVersion.OSname {
    case "Big Sur"     : sleepValue = 0.5
    case "Catalina"    : sleepValue = 0.5
    case "Mojave"      : sleepValue = 0.5
    case "High Sierra" : sleepValue = 0.5
    default            : sleepValue = 0
    }
    if sleepValue > 0  { Thread.sleep(forTimeInterval: sleepValue) }
}

...

About This Hack/Assets.xcassets (added Catalina High Sierra and Mojave)
...
Catalina External HDD.imageset
Catalina External SSD.imageset
Catalina Internal HDD.imageset
Catalina Internal SSD.imageset
...
High Sierra External HDD.imageset
High Sierra External SSD.imageset
High Sierra Internal HDD.imageset
High Sierra Internal SSD.imageset
...
Mojave External HDD.imageset
Mojave External SSD.imageset
Mojave Internal HDD.imageset
Mojave Internal SSD.imageset
...

Application
https://drive.google.com/file/d/1V6xT8lLQ33WuxHTIc_ciTbzw8Vr6u9HX/view?usp=sharing

Project source
https://drive.google.com/file/d/1BGd0U7fYbqr3MR41q54JrJmGkjfsOm57/view?usp=sharing

PS : I forget to add Mojave screenshots

Capture d’écran 2023-09-30 à 15 43 21

Capture d’écran 2023-09-30 à 16 02 16

But with Mojave the first time the Storage Tab is opened it shows 1/2 second the default HDD picture and then the right Mojave disk image, and adding a time delay is without effect.

Regards

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

sorry to hear about the laptop! Thank you for these changes; I will implement them later today.

You are saying that the only way to get the app to work on High Sierra is to use an older version of Xcode?

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

Also @matxpa did you create those disk images? If so, could you get rid of the labels underneath the disk? I think it looks better when they are on the drive (like the mojave internal HDD like above) than under the drive (like for monterey, ventura, etc.)

I will merge your PR later as the changes are all fantastic. Thank you for all the help; I am really grateful and wish there were a way for me to repay the favor.

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

thank you. I might have to restrict the app to 10.14.x and higher for now until this gets resolved. Could you fix the icons if you were the one who made them? They look beautiful otherwise, but I don't think the Apple logo is necessary.

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

I don't see any images there, but it should be for any image where you put a logo on the outside of the drive.

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@0xCUB3
Github mystery.
Do you see a link on the previous message ?

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

now it's there @matxpa. They look much better! Could you update the rest of them like that? Once you add them, I will merge your PR and add your icons to the credits.

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

It's done in Assets.xcassets.zip (only Assets.xcassets repert.)
https://drive.google.com/file/d/1SEQmKMYxFxWa2gWpjHGIqdCIuezlCheY/view?usp=sharing

PS : Prez987 told me that the upgrade doesn't work with that last version nor with yours, i'll see that

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

thank you! I will go through your fork soon and implement the changes.

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

My fork isn't up to date

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

okay... could you push your changes so I can compare? Organizationally-speaking, it's much easier to compare code side-by-side than to go through this issue and get fragments. If you make a PR, it will even attribute credit to you for all of those changes.

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@0xCUB3

It's done fork is modified

Regards

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

thank you @matxpa. I will try to run an old version of Xcode to see if I can get a working build that runs on High Sierra. I will send it when it's ready. All of your changes are pushed to the repo

from about-this-hack.

5T33Z0 avatar 5T33Z0 commented on June 6, 2024

Please DONT mention me about this issue any more! I NO LONGER HAVE HIGH SIERRA INSTALLED! Everytime someone mentions me here, I get resubscribed to the topic and I have to unsubscribe again. Thank you!

from about-this-hack.

perez987 avatar perez987 commented on June 6, 2024

@matxpa
Thanks for fixing the update. I’ll not at home, I’ll try later.

from about-this-hack.

baguswaber avatar baguswaber commented on June 6, 2024

https://drive.google.com/file/d/19oNxPOvLaS1GYe96tqrpftM0NzLxE9Iw/view?usp=drive_link
Screen Shot 2023-10-05 at 19 23 58

Screen Shot 2023-10-05 at 19 24 01

Can confirm that this version was working great on my HighSierra machine.
I'm sorry for being so late to respond, been out of town for couple weeks and didn't bring my Hack...

Thanks for everyone...

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@baguswaber

Hi

Thanks for your feedback, you're not late and the most important think is that this app works with High Sierra.
Would you confirm (when and if you've time to) that ToolTips work fine on all lines and buttons on Overview Tab and Storage Tab (Storage Tab only one on Picture and another one on Disk name and disk type text)

I can't test nowaday, I'm looking for another way (another Laptop, a Thinkpad T450 no more used) to launch High Sierra, coz' once again (and the last one) High Sierra had broken my Ventura Hack.

Regards

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

great that this works. @matxpa what version of Xcode did you use to compile the app that baguswaber tested?

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

Hello @matxpa and @baguswaber,
Could you try this Xcode 15 build on High Sierra? I want to see if using the latest Xcode version will still work, or if I need to use Xcode 12 like before.
https://drive.google.com/file/d/1Yq_M2M6xOI0SOXwh1JlagsrzdC6XGxk0/view?usp=sharing

from about-this-hack.

baguswaber avatar baguswaber commented on June 6, 2024

Screen Shot 2023-10-07 at 23 26 27
Screen Shot 2023-10-07 at 23 27 14

Still no can do... :(

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

ok. Can you wait 10 minutes? I will send you one from Xcode 12.

from about-this-hack.

baguswaber avatar baguswaber commented on June 6, 2024

Ok... will wait...

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

Hi
No it don't work (Xcode 15)

Capture d’écran 2023-10-07 à 18 28 05

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

Capture d’écran 2023-10-07 à 18 41 31

A problem with Bootloader Info

from about-this-hack.

baguswaber avatar baguswaber commented on June 6, 2024

Screen Shot 2023-10-07 at 23 44 55
Screen Shot 2023-10-07 at 23 45 00
Screen Shot 2023-10-07 at 23 45 13
Screen Shot 2023-10-07 at 23 45 23

Smooth...!!! It works...

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

I think it's the old Clover release (realy a Gcc53 release)

I must add the line above in HCBootloader.swift when the result is "r ()" when there is no Clover data in /tmp/.ath/hw.txt

bdmesg | grep "Clover revision" | awk -F': ' '{print "Clover r"$2}' | sed 's/master, commit //' | awk -F')' '{print $1")"}'

to get this
Clover r5097 (d0047645)

The first test I did with High Sierra was with the last Clover release and with newer Clover release hw.txt contains Clover data.

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

@matxpa thanks for letting me know. How did you implement this fix?

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

Latest build with the storyboard redone (no clover fix yet):
https://drive.google.com/file/d/1Yq_M2M6xOI0SOXwh1JlagsrzdC6XGxk0/view?usp=sharing

from about-this-hack.

MDNich avatar MDNich commented on June 6, 2024

Clover fix might be good - but how many users would be affected by the problem ?

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

Clover fix might be good - but how many users would be affected by the problem ?

the latest PR fixed it already.

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

Woohoo!!!! Drafting a release now and closing this issue. Great work, everyone!

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

@matxpa could you send some screenshots of every window? Preferably just the window (hit SPACE when doing CMD+Shift+4 to select a window). I will add them to the readme.

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@0xCUB3

High Sierra, Monterey and Ventura screenshots

Without SN in a folder https://drive.google.com/drive/folders/1Lbf1auV53Fa5WYgUR4HD5f-RAAvwpOL4?usp=drive_link

from about-this-hack.

kristibektashi avatar kristibektashi commented on June 6, 2024

Still crashing for me on High Sierra 10.13.6 build 17G14042 (2020-006 update) on a Hackintosh with Intel i5-11600K, Asus TUF Gaming H570-Pro Wifi, NVIDIA GTX 1060 (with NVIDIA Web Drivers) and iMacPro1,1 SMBIOS

Process:               About This Hack [3156]
Path:                  /private/var/folders/*/About This Hack.app/Contents/MacOS/About This Hack
Identifier:            app.netlify.0xCUBE.About-This-Hack
Version:               1.0.0 (1337)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           About This Hack [3156]
User ID:               501

Date/Time:             2023-10-27 23:42:20.799 +0300
OS Version:            Mac OS X 10.13.6 (17G14042)
Report Version:        12
Anonymous UUID:        3B85E6E2-4A5F-070A-D6F1-3E247DADAAB6


Time Awake Since Boot: 880 seconds

System Integrity Protection: enabled

Notes:                 Translocated Process

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes:       0x0000000000000001, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Signal:    Illegal instruction: 4
Termination Reason:    Namespace SIGNAL, Code 0x4
Terminating Process:   exc handler [0]

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   app.netlify.0xCUBE.About-This-Hack	0x000000010f168701 0x10f155000 + 79617
1   app.netlify.0xCUBE.About-This-Hack	0x000000010f168d97 0x10f155000 + 81303
2   app.netlify.0xCUBE.About-This-Hack	0x000000010f159ce6 0x10f155000 + 19686
3   app.netlify.0xCUBE.About-This-Hack	0x000000010f159bed 0x10f155000 + 19437
4   app.netlify.0xCUBE.About-This-Hack	0x000000010f159c18 0x10f155000 + 19480
5   com.apple.AppKit              	0x00007fff2c0c82dd -[NSViewController _sendViewDidAppear] + 41
6   com.apple.AppKit              	0x00007fff2c0c8002 -[NSView(NSInternal) _windowDidOrderOnScreen] + 67
7   com.apple.AppKit              	0x00007fff2c0c8098 -[NSView(NSInternal) _windowDidOrderOnScreen] + 217
8   com.apple.AppKit              	0x00007fff2c0c8098 -[NSView(NSInternal) _windowDidOrderOnScreen] + 217
9   com.apple.AppKit              	0x00007fff2c0c8098 -[NSView(NSInternal) _windowDidOrderOnScreen] + 217
10  com.apple.AppKit              	0x00007fff2c86c525 -[NSWindow _reallyDoOrderWindowAboveOrBelow:relativeTo:findKey:forCounter:force:isModal:] + 2749
11  com.apple.AppKit              	0x00007fff2c0c4765 -[NSWindow _doOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 287
12  com.apple.AppKit              	0x00007fff2c0c45cb -[NSWindow orderWindow:relativeTo:] + 169
13  com.apple.AppKit              	0x00007fff2c1681c9 -[NSWindow makeKeyAndOrderFront:] + 110
14  com.apple.QuickLookUIFramework	0x00007fff39c20f71 -[QLSeamlessDocumentOpener showWindow:contentFrame:withBlock:] + 107
15  com.apple.AppKit              	0x00007fff2c1673de -[NSWindowController showWindow:] + 718
16  com.apple.AppKit              	0x00007fff2bf5cb2d NSApplicationMain + 1047
17  app.netlify.0xCUBE.About-This-Hack	0x000000010f15b0ac 0x10f155000 + 24748
18  libdyld.dylib                 	0x00007fff55bcd015 start + 1

Thread 1:
0   libsystem_kernel.dylib        	0x00007fff55d1e28a __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff55ee520e _pthread_wqthread + 1552
2   libsystem_pthread.dylib       	0x00007fff55ee4be9 start_wqthread + 13

Thread 2:
0   libsystem_kernel.dylib        	0x00007fff55d1e28a __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff55ee5009 _pthread_wqthread + 1035
2   libsystem_pthread.dylib       	0x00007fff55ee4be9 start_wqthread + 13

Thread 3:
0   libsystem_kernel.dylib        	0x00007fff55d1e28a __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff55ee5009 _pthread_wqthread + 1035
2   libsystem_pthread.dylib       	0x00007fff55ee4be9 start_wqthread + 13

Thread 4:
0   libsystem_kernel.dylib        	0x00007fff55d1e28a __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff55ee5009 _pthread_wqthread + 1035
2   libsystem_pthread.dylib       	0x00007fff55ee4be9 start_wqthread + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0xe700000000000000  rbx: 0x0000000000000001  rcx: 0x0000000000000000  rdx: 0x0000000000000002
  rdi: 0x000000010f59f778  rsi: 0x000000010f59f790  rbp: 0x00007ffee0aa9fa0  rsp: 0x00007ffee0aa9f10
   r8: 0x0000000000000030   r9: 0x0000000000000007  r10: 0x00007fff88bef288  r11: 0x0000608000109630
  r12: 0xe800000000000000  r13: 0x0000610000051e80  r14: 0x0000610000266c80  r15: 0x0000000000000000
  rip: 0x000000010f168701  rfl: 0x0000000000010297  cr2: 0x000000010a68b000
  
Logical CPU:     8
Error Code:      0x00000000
Trap Number:     6


Binary Images:
       0x10f155000 -        0x10f174ff7 +app.netlify.0xCUBE.About-This-Hack (1.0.0 - 1337) <C90A0BF5-0CD9-3B37-9E93-6FA3A1B7E7D3> /var/folders/*/About This Hack.app/Contents/MacOS/About This Hack
       0x10f18e000 -        0x10f1a2ff7 +libswiftAppKit.dylib (5.0.1 - 1001.0.82.4) <1297109A-D760-3C74-A36C-C0273A7217EC> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftAppKit.dylib
       0x10f1cb000 -        0x10f1deff7 +libswiftCloudKit.dylib (5.0.1 - 1001.0.82.4) <D0C8EBA9-EEEE-37AD-B848-CDC09B5E1AE9> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftCloudKit.dylib
       0x10f207000 -        0x10f578fff +libswiftCore.dylib (5.0.1 - 1001.0.82.4) <44D65143-94D5-306A-8D56-15359A7FF04E> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftCore.dylib
       0x10f85a000 -        0x10f862ff7 +libswiftCoreData.dylib (5.0.1 - 1001.0.82.4) <72A6FD8B-034C-3F50-9FF6-9D5723920201> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftCoreData.dylib
       0x10f876000 -        0x10f879fff +libswiftCoreFoundation.dylib (5.0.1 - 1001.0.82.4) <C0D551D8-F4D4-3B6F-8148-05EE1CFFC97F> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftCoreFoundation.dylib
       0x10f88a000 -        0x10f899fff +libswiftCoreGraphics.dylib (5.0.1 - 1001.0.82.4) <4C9FA634-B14A-343E-9F76-5AAFCA5FC077> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftCoreGraphics.dylib
       0x10f8be000 -        0x10f8c3ffb +libswiftCoreImage.dylib (5.0.1 - 1001.0.82.4) <E2D50227-8FAE-3104-88F0-6D8E01A9AB18> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftCoreImage.dylib
       0x10f8d1000 -        0x10f8d6fff +libswiftCoreLocation.dylib (5.0.1 - 1001.0.82.4) <3D402E87-210E-32E1-8F43-29D221D5D665> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftCoreLocation.dylib
       0x10f8e0000 -        0x10f8e7ff7 +libswiftDarwin.dylib (5.0.1 - 1001.0.82.4) <144DA4C8-8322-3E6E-942D-9976CAFA8BAE> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftDarwin.dylib
       0x10f8fe000 -        0x10f916ff7 +libswiftDispatch.dylib (5.0.1 - 1001.0.82.4) <0A4818EF-BCD8-3183-9D34-5F8D4920C05C> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftDispatch.dylib
       0x10f956000 -        0x10faeeff7 +libswiftFoundation.dylib (5.0.1 - 1001.0.82.4) <868B3228-5A2C-3556-A77A-695000EFCE27> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftFoundation.dylib
       0x10fc77000 -        0x10fc7aff3 +libswiftIOKit.dylib (5.0.1 - 1001.0.82.4) <75FE0421-8424-38AD-9372-17A730C44643> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftIOKit.dylib
       0x10fc89000 -        0x10fc92fff +libswiftMetal.dylib (5.0.1 - 1001.0.82.4) <A2ACD465-EF03-3F27-B6F9-390A6D66A040> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftMetal.dylib
       0x10fca1000 -        0x10fca5ff7 +libswiftObjectiveC.dylib (5.0.1 - 1001.0.82.4) <1A3E8F91-FF6E-3733-B1AD-CC4D4F3378F4> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftObjectiveC.dylib
       0x10fcba000 -        0x10fcc0ff7 +libswiftQuartzCore.dylib (5.0.1 - 1001.0.82.4) <FB7CCE82-C7FA-3E50-904D-2FB4006AC1DF> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftQuartzCore.dylib
       0x10fccb000 -        0x10fccefff +libswiftXPC.dylib (5.0.1 - 1001.0.82.4) <D0199D63-5E28-3E52-907E-3832FBB94FCF> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftXPC.dylib
       0x10fcde000 -        0x10fce5ff7 +libswiftos.dylib (5.0.1 - 1001.0.82.4) <A5A1203C-B3D4-350C-BC88-9CECDF62637E> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftos.dylib
       0x10fcf7000 -        0x10fcfdff7 +libswiftContacts.dylib (5.0.1 - 1001.0.82.4) <DC23DC24-5711-341D-B465-0FE8A776E65A> /var/folders/*/About This Hack.app/Contents/Frameworks/libswiftContacts.dylib
       0x11c835000 -        0x11c87fadf  dyld (551.5) <CB9BFB56-4511-36F1-A546-891FF770C01C> /usr/lib/dyld
    0x7fff26f2f000 -     0x7fff2727dff7  com.apple.RawCamera.bundle (8.05.0 - 1017.4.1) <937CBA8D-60C8-3739-8DFF-1C737D6339EF> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff2ab51000 -     0x7fff2ad31ff3  com.apple.avfoundation (2.0 - 1536.36) <AB868021-AB26-3198-897D-087EF3B360EA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff2ad32000 -     0x7fff2adebfff  com.apple.audio.AVFAudio (1.0 - ???) <716306C4-A0EA-3D81-8F33-943153538C47> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
    0x7fff2aef1000 -     0x7fff2aef1fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <8632A9C5-19EA-3FD7-A44D-80765CC9C540> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff2aef2000 -     0x7fff2af08fef  libCGInterfaces.dylib (417.2) <46DFCDA4-0470-3CDB-9875-0375D35FB9A3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff2af09000 -     0x7fff2b407fc3  com.apple.vImage (8.1 - ???) <A243A7EF-0C8E-3A9A-AA38-44AFD7507F00> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff2b408000 -     0x7fff2b562fe3  libBLAS.dylib (1211.50.2) <62C659EB-3E32-3B5F-83BF-79F5DF30D5CE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff2b563000 -     0x7fff2b591fef  libBNNS.dylib (38.1) <7BAEFDCA-3227-3E07-80D8-59B6370B89C6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff2b592000 -     0x7fff2b951ff7  libLAPACK.dylib (1211.50.2) <40ADBA5F-8B2D-30AC-A7AD-7B17C37EE52D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2b952000 -     0x7fff2b967ff7  libLinearAlgebra.dylib (1211.50.2) <E8E0B7FD-A0B7-31E5-AF01-81781F71EBBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff2b968000 -     0x7fff2b96dff3  libQuadrature.dylib (3) <E936BDAF-8492-34D9-8C5C-AFBFCDAD8318> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2b96e000 -     0x7fff2b9eefff  libSparse.dylib (79.50.2) <0DC25CDD-F8C1-3D6E-B472-8B060708424F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff2b9ef000 -     0x7fff2ba02fff  libSparseBLAS.dylib (1211.50.2) <722573CC-31CC-34B2-9032-E4F652A9CCFE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2ba03000 -     0x7fff2bbb0fc3  libvDSP.dylib (622.50.5) <40690941-CF89-3F90-A0AC-A4D200744A5D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff2bbb1000 -     0x7fff2bc62fff  libvMisc.dylib (622.50.5) <BA2532DF-2D68-3DD0-9B59-D434BF702AA4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2bc63000 -     0x7fff2bc63fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <54FF3B43-E66C-3F36-B34B-A2B3B0A36502> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff2bc64000 -     0x7fff2bcbeff7  com.apple.Accounts (113 - 113) <21614F05-91B8-3151-B219-DA8BAC680DA0> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff2bcbf000 -     0x7fff2bf56ff7  com.apple.AddressBook.framework (11.0 - 1808.8) <B996F69A-B2F0-38F5-AC95-939F038E1FBB> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff2bf57000 -     0x7fff2cdb5fff  com.apple.AppKit (6.9 - 1561.61.100) <4E6EA3FA-8C2C-3B21-BFF9-6F8C458B7BE1> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff2ce07000 -     0x7fff2ce07fff  com.apple.ApplicationServices (48 - 50) <2B5B76E7-0AB2-31F9-BE58-B963BF1EC2E8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff2ce08000 -     0x7fff2ce6efff  com.apple.ApplicationServices.ATS (377 - 445.5) <60176327-F757-308E-B61A-D43394E87CC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2cf07000 -     0x7fff2d029ff7  libFontParser.dylib (222.1.9) <FFF2AC1A-D4D2-3AD3-BFF2-F3649ECB02AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff2d02a000 -     0x7fff2d075ff7  libFontRegistry.dylib (221.6) <30C6D1DE-C0E3-3447-A0EF-829443D95F0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff2d11a000 -     0x7fff2d14dff7  libTrueTypeScaler.dylib (222.1.9) <BF00CE2B-6BC5-3337-8350-A1BAB88A3CE0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff2d1b7000 -     0x7fff2d1bbff3  com.apple.ColorSyncLegacy (4.13.0 - 1) <04764FB2-22D8-36F0-9647-2D21562E28D5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff2d25b000 -     0x7fff2d2adffb  com.apple.HIServices (1.22 - 625) <3C059A55-1409-373E-BF0B-C3299AFABDCF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff2d2ae000 -     0x7fff2d2bcfff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8BB267F4-D5AA-3D35-8269-1A3CEA054ACD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff2d2bd000 -     0x7fff2d309fff  com.apple.print.framework.PrintCore (13.4 - 503.2) <2EA98448-9D6A-3912-9933-F7703CB01B6E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2d30a000 -     0x7fff2d344fff  com.apple.QD (3.12 - 404.2) <525E9518-DFF3-3D8D-BD48-E0D63EEDBD16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff2d345000 -     0x7fff2d351fff  com.apple.speech.synthesis.framework (7.8.1 - 7.8.1) <CD09019C-569B-3A56-B84C-26F2A6223455> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2d352000 -     0x7fff2d5e0ff7  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <C7BE1645-BE23-3427-8650-1CEFDAF86710> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2d5e2000 -     0x7fff2d5e2fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <294802B9-E24D-34EB-973F-6D2B8E2E86CB> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff2d905000 -     0x7fff2dca2fff  com.apple.CFNetwork (902.6 - 902.6) <46168F79-CCFA-349A-8508-B8CBCE27D440> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff2dcb7000 -     0x7fff2dcb7fff  com.apple.Carbon (158 - 158) <F8B370D9-2103-3276-821D-ACC756167F86> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff2dcb8000 -     0x7fff2dcbbffb  com.apple.CommonPanels (1.2.6 - 98) <075486A5-8E39-3F72-BED7-752517379C55> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff2dcbc000 -     0x7fff2dfc1fff  com.apple.HIToolbox (2.1.1 - 911.10) <8D2EBE85-9AF0-38BC-ACD3-1ED978643907> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff2dfc2000 -     0x7fff2dfc5ffb  com.apple.help (1.3.8 - 66) <7F210C1C-D7D3-3C97-A2E4-D3CC35F91807> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff2dfc6000 -     0x7fff2dfcbfff  com.apple.ImageCapture (9.0 - 9.0) <3993E094-AB86-3B22-BC18-4550F23854FF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff2dfcc000 -     0x7fff2e061ffb  com.apple.ink.framework (10.9 - 221) <83976BB8-A423-3AA5-8221-6EB04B3DEF0A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff2e062000 -     0x7fff2e07cff7  com.apple.openscripting (1.7 - 174) <C282DFBB-4BF2-3222-87E0-0B560D5B4B2F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff2e09d000 -     0x7fff2e09efff  com.apple.print.framework.Print (12 - 267) <DFC4CE94-F6E6-3DFA-AB88-A13E4C5A7701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff2e09f000 -     0x7fff2e0a1ff7  com.apple.securityhi (9.0 - 55006) <1AB48F32-D1CB-3657-A30C-40A7E718A71D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff2e0a2000 -     0x7fff2e0a8fff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <2A07BB54-438B-34C9-8061-45403E197ACA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff2e0a9000 -     0x7fff2e1c8fff  com.apple.cloudkit.CloudKit (736.16 - 736.16) <687B78B6-1615-3ED1-9A67-60EBC81DE230> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff2e1c9000 -     0x7fff2e1c9fff  com.apple.Cocoa (6.11 - 22) <3269BC26-0217-39FE-A600-D702656D838B> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff2e1d7000 -     0x7fff2e290fff  com.apple.ColorSync (4.13.0 - 3325) <EAD2D314-E810-33FB-B105-BD30ABB912AD> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff2e291000 -     0x7fff2e37bff7  com.apple.contacts (1.0 - 2330.3) <73B50382-F718-3E25-BC20-EF73260C6B42> /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts
    0x7fff2e41d000 -     0x7fff2e4b0ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF2B41CC-DD7A-34EB-A842-00DC3B8F2E9F> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff2e4b2000 -     0x7fff2e4dbffb  com.apple.CoreBluetooth (1.0 - 1) <ED48840B-A80A-32C1-8E4B-DEB7A7CD3C1A> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff2e4dc000 -     0x7fff2e832fef  com.apple.CoreData (120 - 851) <7361F2EA-2B7F-3259-909F-287BEB443781> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff2e833000 -     0x7fff2e916fff  com.apple.CoreDisplay (99.14 - 99.14) <9B2B211D-EC0A-3569-BB37-887768CD6105> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff2e917000 -     0x7fff2edbafe7  com.apple.CoreFoundation (6.9 - 1455.300) <CB44B892-64CD-3E32-A518-6D40B1A7033F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff2edbc000 -     0x7fff2f3ccfef  com.apple.CoreGraphics (2.0 - 1161.21.5) <6451A561-3A83-37FB-AAA7-3FCE6D95C34C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff2f3ce000 -     0x7fff2f6bdfff  com.apple.CoreImage (13.0.0 - 579.5) <B2B60A80-2E10-3EDF-920C-94288E55AE25> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff2f6be000 -     0x7fff2f729ff7  com.apple.corelocation (2245.0.41) <6BF57F70-732C-3140-B5A3-466ACF262765> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff2f94c000 -     0x7fff2fa42ffb  com.apple.CoreMedia (1.0 - 2276.80.4) <67942D16-3658-37FC-B61C-8ED3D4BFBFB9> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff2fa43000 -     0x7fff2fa91fff  com.apple.CoreMediaIO (814.0 - 4995) <2A174DD1-431A-3313-9837-04C7E1B284B6> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff2fa92000 -     0x7fff2fa92fff  com.apple.CoreServices (822.37 - 822.37) <CE816EF2-2B89-3F54-A5C6-D3080B1EFB00> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff2fa93000 -     0x7fff2fb07ffb  com.apple.AE (735.2 - 735.2) <0938A72B-6A4A-36F1-95B3-5EF6B915CEEE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff2fb08000 -     0x7fff2fddffff  com.apple.CoreServices.CarbonCore (1178.4.2 - 1178.4.2) <4692EE3A-11FE-31FD-AF5B-30F892E87A05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff2fde0000 -     0x7fff2fe14fff  com.apple.DictionaryServices (1.2 - 284.2) <F1F3EFAE-2562-394D-8FB3-BE22F16CD75A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2fe15000 -     0x7fff2fe1dffb  com.apple.CoreServices.FSEvents (1239.50.2 - 1239.50.2) <FE465894-4235-3CE2-9A97-32D6C6C7D9AD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff2fe1e000 -     0x7fff2ffdcff7  com.apple.LaunchServices (822.37 - 822.37) <0DB4679F-AE39-3BF3-B39B-549322E355AF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff2ffdd000 -     0x7fff3008dfff  com.apple.Metadata (10.7.0 - 1191.8) <F3BD3FD7-208A-31E9-85CD-6E607DDAFEF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff3008e000 -     0x7fff300eefff  com.apple.CoreServices.OSServices (822.37 - 822.37) <564DDE70-0250-346B-B5CC-4AFAC11A7373> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff300ef000 -     0x7fff3015dfff  com.apple.SearchKit (1.4.0 - 1.4.0) <97DD9E7D-3567-382B-ACF7-CE0E4FE78D36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff3015e000 -     0x7fff30182ffb  com.apple.coreservices.SharedFileList (71.21 - 71.21) <88991F51-0A75-34FF-8C91-ED0F3C270B7B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff30423000 -     0x7fff30573fff  com.apple.CoreText (352.0 - 578.23) <10DAF601-85A8-3F9C-8B0B-69DC16B95E47> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff30574000 -     0x7fff305aefff  com.apple.CoreVideo (1.8 - 0.0) <0DD4FFDF-E1F1-39D1-8246-5D0D9869F1EA> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff305af000 -     0x7fff3063aff3  com.apple.framework.CoreWLAN (13.0 - 1350.2) <EC145FBD-F638-38B8-BE94-F892A2F02550> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff307c8000 -     0x7fff307d3ff7  com.apple.DirectoryService.Framework (10.13 - 207.50.1) <6AA0993A-0AF2-3F9A-B288-BF972C0F54EC> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff308b5000 -     0x7fff308bafff  com.apple.DiskArbitration (2.7 - 2.7) <51DC4AED-6F0C-321F-93E3-20EA4341B768> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff30a7b000 -     0x7fff30e42ffb  com.apple.Foundation (6.9 - 1455.300) <0479E072-1DD0-3881-A9A2-EDAD3EE58C23> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff30eb3000 -     0x7fff30ee3ff3  com.apple.GSS (4.0 - 2.0) <7E83A21E-4F90-38F3-9FD3-FAC0E0143243> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff30ff5000 -     0x7fff310f9ffb  com.apple.Bluetooth (6.0.7 - 6.0.7f22) <08E33A6B-16A7-3E4E-82C9-E1E5A84300D0> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff31159000 -     0x7fff311f4fff  com.apple.framework.IOKit (2.0.2 - 1445.71.6) <4B5C715C-6A49-366B-9080-ABADE6A3B3BD> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff311f6000 -     0x7fff311fdfff  com.apple.IOSurface (211.15 - 211.15) <08DA3232-805F-304B-80DD-C86B49CC4AAD> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff311fe000 -     0x7fff31253ff3  com.apple.ImageCaptureCore (7.0 - 7.0) <5B5C36EE-69EE-39E8-8B5B-360EF3F4AC3A> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff31254000 -     0x7fff313cffe7  com.apple.ImageIO.framework (3.3.0 - 1739.3.8) <58BD6865-E629-3283-859B-82C4C3A5FF66> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff313d0000 -     0x7fff313d4ffb  libGIF.dylib (1739.3.8) <E3446976-10BF-3B75-9A11-32893368D748> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff313d5000 -     0x7fff314bcfe7  libJP2.dylib (1739.3.8) <4B440B09-1542-304C-8BE5-EB0F9370046C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff314bd000 -     0x7fff314e0ff7  libJPEG.dylib (1739.3.8) <F6BCF3DA-6F0B-35A8-982C-BEFD2DD6DBFE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff317cf000 -     0x7fff317f5feb  libPng.dylib (1739.3.8) <25C5D4B1-3715-3DF5-BE4B-C71089ADBBFE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff317f6000 -     0x7fff317f8ffb  libRadiance.dylib (1739.3.8) <5134034F-A7BC-3749-A141-92BC89579AF6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff317f9000 -     0x7fff31847fe7  libTIFF.dylib (1739.3.8) <91F6CDBD-C4A0-3614-81DC-B9A9E3838CF0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff31a03000 -     0x7fff326e9fff  com.apple.JavaScriptCore (13605 - 13605.3.8) <FCD40D3C-87D5-3738-A19F-F5DB84A643B7> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff32701000 -     0x7fff3271aff7  com.apple.Kerberos (3.0 - 1) <C7CDC1E0-011B-3220-847D-1AC3DA6D5522> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff3271b000 -     0x7fff32750fff  com.apple.LDAPFramework (2.4.28 - 194.5) <7D48401E-2038-3F2C-89F8-77472F01DC93> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff329d9000 -     0x7fff329e0fff  com.apple.MediaAccessibility (1.0 - 114) <00F21329-1163-3283-A882-A5DD7A12D353> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff32a90000 -     0x7fff330faff7  com.apple.MediaToolbox (1.0 - 2276.80.4) <FA444376-E5AF-36AB-BE1D-76ECE4D72049> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff330fc000 -     0x7fff3317dfff  com.apple.Metal (125.30 - 125.30) <67EDA241-80B1-3C67-BB2B-FF83E49FEF8D> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff3319a000 -     0x7fff331b5fff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <8DED0F0C-4A10-36A3-A3E2-7D3CF429ACE1> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff331b6000 -     0x7fff33225fef  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <48F4A97F-143A-3918-AB92-6733E258E25A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff33226000 -     0x7fff3324afff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <CD443ADC-07FE-3603-B0C9-60C2AF3616FF> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff3324b000 -     0x7fff33332ff7  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <40EB0BAE-6DDE-3334-A28C-529AE4C6716A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff33333000 -     0x7fff33333ff7  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <A111E862-43E5-3247-9E98-0A40DC34AD9B> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff34332000 -     0x7fff3433effb  com.apple.NetFS (6.0 - 4.0) <02E09301-324F-3542-875D-B87B144635C8> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff37130000 -     0x7fff3718aff7  com.apple.opencl (2.8.24 - 2.8.24) <429B5283-276D-372D-BB0E-EEBE1408C393> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff3718b000 -     0x7fff371a7ffb  com.apple.CFOpenDirectory (10.13 - 207.50.1) <E9AD4934-5DE3-3DD0-9D7B-9D288D829F15> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff371a8000 -     0x7fff371b3fff  com.apple.OpenDirectory (10.13 - 207.50.1) <8B54C486-14C9-3FEF-97B8-F4D6F59F75CF> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff38332000 -     0x7fff38334fff  libCVMSPluginSupport.dylib (16.7.4) <3E26CF2B-5074-3321-AD9E-6A667D61AA35> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff38335000 -     0x7fff3833affb  libCoreFSCache.dylib (162.12) <D12E1D0E-C0E5-329E-99B4-AB152C9ABBE3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff3833b000 -     0x7fff3833ffff  libCoreVMClient.dylib (162.12) <39951906-8566-3F9D-9EA8-EBD6084DCF73> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff38340000 -     0x7fff38349ff3  libGFXShared.dylib (16.7.4) <81A7875B-103D-3C82-B25C-DE24E57E5C8B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff3834a000 -     0x7fff38355fff  libGL.dylib (16.7.4) <2BB333D3-5C61-33DF-8545-06DF2D08B83D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff38356000 -     0x7fff38391fe7  libGLImage.dylib (16.7.4) <4DA003CE-0B74-3FE4-808C-B2FBCE517EB4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff38500000 -     0x7fff3853effb  libGLU.dylib (16.7.4) <BCB09CD8-EB0E-38FA-8B5A-9E29532EE364> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff38eb6000 -     0x7fff38ec5ff3  com.apple.opengl (16.7.4 - 16.7.4) <77A788F3-8F0C-305C-AEB9-FF258676C599> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff39244000 -     0x7fff39390ff7  com.apple.QTKit (7.7.3 - 3014.8) <F333568C-D990-3BBA-A09B-ABAB5F984905> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff39391000 -     0x7fff395f6ff7  com.apple.imageKit (3.0 - 1043) <1E72C513-391D-37CE-96D1-D2B59E2F23CA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
    0x7fff395f7000 -     0x7fff396e6ff3  com.apple.PDFKit (1.0 - 677.68) <07888D80-F4FD-38AD-8F21-48F59E486886> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
    0x7fff396e7000 -     0x7fff39bf9ff7  com.apple.QuartzComposer (5.1 - 364) <0C9739CE-DCEA-3732-B3F4-EFB74464C9BC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fff39bfa000 -     0x7fff39c1dfff  com.apple.quartzfilters (1.10.0 - 1.10.0) <F536C492-49CC-37B6-B740-DA266955E147> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fff39c1e000 -     0x7fff39d17ff7  com.apple.QuickLookUIFramework (5.0 - 743.13) <E56CBAA3-60CE-3E0C-B3DE-D21DBF93A785> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fff39d18000 -     0x7fff39d18fff  com.apple.quartzframework (1.5 - 21) <DCEB0FCC-2C32-3D02-8752-7B6FA009AB85> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff39d19000 -     0x7fff39f65ff7  com.apple.QuartzCore (1.11 - 584.64.2) <FD9A3180-479E-3DAC-9CF0-0D214C7E46A7> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff39f66000 -     0x7fff39fbdff7  com.apple.QuickLookFramework (5.0 - 743.13) <4EA17C20-5BD9-335F-8EE1-D4AE16BE6A15> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff3a183000 -     0x7fff3a19dffb  com.apple.SafariServices.framework (13609 - 13609.3.5.1.5) <8102DF3E-2C36-3B47-B10E-B990DABCF95D> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
    0x7fff3a79d000 -     0x7fff3aac8fff  com.apple.security (7.0 - 58286.70.19) <E118FC23-2E20-3999-826B-58488049A277> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff3aac9000 -     0x7fff3ab55ff7  com.apple.securityfoundation (6.0 - 55185.50.5) <3D9AD4EF-439C-3AE1-9332-AD291CF96C64> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff3ab56000 -     0x7fff3ab86fff  com.apple.securityinterface (10.0 - 55109.50.6) <E9AA6D3B-E1ED-330A-B97D-2A71B4F13250> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fff3ab87000 -     0x7fff3ab8bffb  com.apple.xpc.ServiceManagement (1.0 - 1) <3FCAF325-40C8-3148-9E49-E555F95B2946> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff3af30000 -     0x7fff3afa0ff3  com.apple.SystemConfiguration (1.17 - 1.17) <41D509AB-AED3-30FF-BB00-615BB5A8AC00> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff3b155000 -     0x7fff3b4d0fff  com.apple.VideoToolbox (1.0 - 2276.80.4) <1C94A509-0372-3B58-94BC-4488C042BD79> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff3de9d000 -     0x7fff3df30ff3  com.apple.APFS (1.0 - 1) <70034B32-9347-30FB-9DDE-95061F686613> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff3e9da000 -     0x7fff3ea02fff  com.apple.framework.Apple80211 (13.0 - 1370.4) <C296CDDB-0A79-3D6B-898A-0FBA1892F5AC> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff3ea04000 -     0x7fff3ea13fef  com.apple.AppleFSCompression (96.60.1 - 1.0) <CBE1A092-CE90-36B9-AAA6-0BE2E7921504> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff3eb12000 -     0x7fff3eb1dff7  com.apple.AppleIDAuthSupport (1.0 - 1) <924EA55F-1C87-347F-9212-F79EA2B2C84C> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff3eb57000 -     0x7fff3eb9fff3  com.apple.AppleJPEG (1.0 - 1) <15558577-08E3-3087-86A9-8B6247978BCE> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff3eba0000 -     0x7fff3ebb1ffb  com.apple.AppleLDAP (10.13 - 46) <1C6E7C77-4DA6-3BDC-A8DF-77BE46887724> /System/Library/PrivateFrameworks/AppleLDAP.framework/Versions/A/AppleLDAP
    0x7fff3ebb2000 -     0x7fff3ebd0ff3  com.apple.aps.framework (4.0 - 4.0) <F36CDED3-9EA4-3F8D-880A-EF6768C7699E> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fff3ebd1000 -     0x7fff3ebd9ff3  com.apple.AppleSRP (5.0 - 1) <825BC81F-2A23-3DD6-ADCA-BF685CA3CEFC> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff3ebda000 -     0x7fff3ec02fff  com.apple.applesauce (1.0 - ???) <9CE4CAE2-30B9-3DF6-9BC0-33D532D7B937> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff3eccb000 -     0x7fff3eccefff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <62DC46E4-5D00-3EAF-94C8-0F45592F90D6> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff3eccf000 -     0x7fff3ed1fff7  com.apple.AppleVAFramework (5.0.41 - 5.0.41) <C82921AA-1537-3736-BC16-5CABB3EF0100> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff3f055000 -     0x7fff3f2eeffb  com.apple.AuthKit (1.0 - 1) <C3087797-E472-300E-8B4A-448857ACE8E7> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff3f425000 -     0x7fff3f42cff7  com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <B2A1EEDF-490A-38E2-A896-41057C0417BF> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff3f42d000 -     0x7fff3f4b4ff7  com.apple.backup.framework (1.9.6 - 1.9.6) <0A54D219-E71B-3BC6-8DFC-11ED47E431BE> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff3f4bd000 -     0x7fff3f4c3ff7  com.apple.BezelServicesFW (305.1 - 305.1) <30FB8483-B8E4-3DA8-912F-6DF76D4CE2F6> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices
    0x7fff3fb7d000 -     0x7fff3fbaaffb  com.apple.CalendarAgentLink (8.0 - 250) <FC4E3777-6A43-39D3-B131-9298DA04C70F> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/CalendarAgentLink
    0x7fff40277000 -     0x7fff402c6ff3  com.apple.ChunkingLibrary (189 - 189) <B3E4AA69-99C8-342F-B37E-C1921C72DBD2> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff40e4f000 -     0x7fff40e58ff3  com.apple.CommonAuth (4.0 - 2.0) <21AF4AC2-E650-35F9-AB33-3EBA2769FBC0> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff40e6d000 -     0x7fff40e82ff7  com.apple.commonutilities (8.0 - 900) <1FE296A7-E4C4-3641-82BD-69BA4CFD6385> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff410b1000 -     0x7fff41111fff  com.apple.AddressBook.ContactsFoundation (8.0 - ???) <AC96DF69-1C70-39B4-BD39-675AD4362424> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
    0x7fff41112000 -     0x7fff41134fff  com.apple.contacts.ContactsPersistence (1.0 - 2330.3) <38580FC9-B673-30BD-8A58-B4BDCCE33CFC> /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence
    0x7fff41194000 -     0x7fff4159cfff  com.apple.CoreAUC (259.0.0 - 259.0.0) <EF95ED0E-F4F1-3969-89BB-CE8CDD74C29F> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff4159d000 -     0x7fff415cdff7  com.apple.CoreAVCHD (5.9.0 - 5900.4.1) <6AC79B1F-0A12-34A4-BC0D-5A6A65ABABE0> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff41664000 -     0x7fff416b6ff7  com.apple.corebrightness (1.0 - 1) <60643D9E-25C6-3A48-867E-9444B2181669> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
    0x7fff417f5000 -     0x7fff417feff7  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <4F00CAE3-4C99-3064-AB48-4DC1CCFCDE84> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff4196c000 -     0x7fff4197cff7  com.apple.CoreEmoji (1.0 - 69.3) <DCCF04BB-DA33-3DC0-B7C2-1D34870C0C0A> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff41c80000 -     0x7fff41c96ff7  com.apple.CoreMediaAuthoring (2.2 - 956) <EE44B61D-6742-3649-A52F-C6AA0431F846> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
    0x7fff41fcb000 -     0x7fff42070fff  com.apple.CorePDF (4.0 - 414) <320B28D5-5115-3C4B-9AEC-6114305DFACA> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff42110000 -     0x7fff42118ff3  com.apple.CorePhoneNumbers (1.0 - 1) <3B388768-5CDB-341A-BCE2-4047EAD009EA> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff422a3000 -     0x7fff422d4ff3  com.apple.CoreServicesInternal (309.1 - 309.1) <9A9DE5A0-3912-3311-A351-2B7B5C35D1F0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff4264e000 -     0x7fff426dffff  com.apple.CoreSymbolication (9.3 - 64026.2) <30652FA5-C731-3A22-864D-DF6D9C77CD4C> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff42762000 -     0x7fff42897fff  com.apple.coreui (2.1 - 494.1) <5B4F3E9C-A4EF-3908-A035-59B8631C3685> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff42898000 -     0x7fff429c9fff  com.apple.CoreUtils (5.6 - 560.11) <2C5A0610-1F08-3603-8692-EE03E62EE622> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff42a1e000 -     0x7fff42a82fff  com.apple.framework.CoreWiFi (13.0 - 1350.2) <500CC54F-A6CB-3D36-9BB1-C9C9F6A6E414> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff42a83000 -     0x7fff42a93ff7  com.apple.CrashReporterSupport (10.13 - 1) <1ADEC140-4838-3976-A14B-6268C5251481> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff42b12000 -     0x7fff42b21ff7  com.apple.framework.DFRFoundation (1.0 - 191.7) <F7AB1B29-A4B0-3938-AFDC-DAA204929404> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff42b24000 -     0x7fff42b28ffb  com.apple.DSExternalDisplay (3.1 - 380) <13AA3B17-E649-3B7B-B09D-9AE7C4A60887> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff42baa000 -     0x7fff42c20fff  com.apple.datadetectorscore (7.0 - 590.3) <E645FBF0-B47D-3394-84DF-792B85E94CB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff42c6e000 -     0x7fff42caeff7  com.apple.DebugSymbols (181.0 - 181.0) <702DB951-F5A6-3155-9D84-BBA9A4B4E1BD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff42caf000 -     0x7fff42ddefff  com.apple.desktopservices (1.12.5 - 1.12.5) <96BB57E2-3359-3920-AA7C-BF03C2225485> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff43096000 -     0x7fff4309aff7  com.apple.DisplayServicesFW (3.1 - 380) <921A2830-1A66-396E-A689-CD85B4B8F82C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff43bdd000 -     0x7fff4400bfff  com.apple.vision.FaceCore (3.3.2 - 3.3.2) <06065DA3-4091-3682-A308-BF3F2E3E4AF8> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff472d3000 -     0x7fff472d8fff  com.apple.GPUWrangler (3.20.18 - 3.20.18) <B54A9063-01EC-3D2C-8924-86A1F315DEA2> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff4768c000 -     0x7fff476b1ff3  com.apple.GenerationalStorage (2.0 - 285.3) <0C898B63-E9A3-3D93-BB3D-CD54BFE51DED> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff476c9000 -     0x7fff4800bff7  com.apple.GeoServices (1.0 - 1363.24.8.15.58) <9686AD86-FE07-3604-B91C-D372FF641E8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff4804e000 -     0x7fff4805dfff  com.apple.GraphVisualizer (1.0 - 5) <EB42FFAD-2BCA-3DE2-B40E-AFDE6E7FAA4D> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff480e0000 -     0x7fff48154fff  com.apple.Heimdal (4.0 - 2.0) <FF7BC1AE-1BA6-3150-A7CC-B9E0AD5EBE7F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff48a67000 -     0x7fff48a6eff7  com.apple.IOAccelerator (378.28 - 378.28) <F109E4CB-49D9-37FB-974A-8A3E9E8A61DA> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff48a72000 -     0x7fff48a89fff  com.apple.IOPresentment (1.0 - 35.1) <AC89202B-8433-3B62-A7BE-467D1905F6FB> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff48e54000 -     0x7fff48e7affb  com.apple.IconServices (97.6 - 97.6) <7913A453-8D29-31DC-ADDB-7CEC068C9B86> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff48f87000 -     0x7fff48f8aff3  com.apple.InternationalSupport (1.0 - 1) <D020C355-DCC1-3D7E-8FCE-BD6FF441824D> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff48ff8000 -     0x7fff49008ffb  com.apple.IntlPreferences (2.0 - 227.5.2) <E036B12B-6017-3EF6-9E73-71DCE8036608> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
    0x7fff490f2000 -     0x7fff49105ff3  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <B999BEF6-F3E7-30EE-9177-FBC8E826659D> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff49106000 -     0x7fff491fbff7  com.apple.LanguageModeling (1.0 - 159.5.3) <FAA236D6-CFB8-37D2-B635-B324E0719E32> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff491fc000 -     0x7fff4923efff  com.apple.Lexicon-framework (1.0 - 33.5) <F8DD2D09-5CEE-3741-93CF-223FC61FCCA4> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff49242000 -     0x7fff49249ff7  com.apple.LinguisticData (1.0 - 238.3) <6F2ED02A-2120-3ABA-8EC1-314E4FFE77F3> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff49a4a000 -     0x7fff49a4dfff  com.apple.Mangrove (1.0 - 1) <471F4581-5235-3381-B16B-CE92ED6CF086> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff49f5d000 -     0x7fff49fc6ff7  com.apple.gpusw.MetalTools (1.0 - 1) <F2A47319-0430-3BB5-943E-651A40C127A9> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff49fcf000 -     0x7fff49fe6ff7  com.apple.MobileAssets (1.0 - 437.60.1) <94912D67-E290-3205-B919-C70C0A8D7FCF> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
    0x7fff49fea000 -     0x7fff4a003fff  com.apple.MobileKeyBag (2.0 - 1.0) <9EA31672-3B83-3ABF-B2D5-8584E159051E> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff4a08f000 -     0x7fff4a0b9ffb  com.apple.MultitouchSupport.framework (1614.1 - 1614.1) <A376F2FB-64AE-3B35-88B0-7D2BB4D1CB7C> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff4a320000 -     0x7fff4a32bfff  com.apple.NetAuth (6.2 - 6.2) <85C5D94D-C67E-36DC-B0EA-02F53AC4FCD3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff4bbc7000 -     0x7fff4bbd7ffb  com.apple.PerformanceAnalysis (1.194 - 194) <B6934994-BD69-36F9-914E-6BBDCD797612> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff4bc4f000 -     0x7fff4bc4fff7  com.apple.PhoneNumbers (1.0 - 1) <028721F6-1E07-3813-BA1E-FB33D8F88871> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
    0x7fff4d93e000 -     0x7fff4d995fff  com.apple.ProtectedCloudStorage (1.0 - 1) <29C0FB61-2227-3648-AD01-502B1DDA63ED> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff4d996000 -     0x7fff4d9b4fff  com.apple.ProtocolBuffer (1 - 260) <195906B1-1DB1-3AD2-B2F7-87B867C27F40> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff4db21000 -     0x7fff4db37ff7  com.apple.QuickLookThumbnailing (1.0 - 1) <043881FB-D325-3145-99B9-B9307AF99365> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
    0x7fff4db7e000 -     0x7fff4db8afff  com.apple.xpc.RemoteServiceDiscovery (1.0 - 1205.70.16) <AEAA88C6-CBB6-3598-9548-E4DF155B4A64> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
    0x7fff4db8b000 -     0x7fff4dbaeffb  com.apple.RemoteViewServices (2.0 - 125) <695CBF89-C15C-3E4C-8045-B46DCA64E3FB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff4dbaf000 -     0x7fff4dbc4ff3  com.apple.xpc.RemoteXPC (1.0 - 1205.70.16) <DD597F26-6BBE-3DAD-9257-7A5FCD60C109> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC
    0x7fff4ec1e000 -     0x7fff4ed33ff7  com.apple.Sharing (1050.22.9 - 1050.22.9) <CAB71093-B187-363E-BBAA-B0D23D7642AA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff4ed5e000 -     0x7fff4ed5fff7  com.apple.performance.SignpostNotification (1.2.6 - 2.6) <E77879A4-B040-3BE0-86F5-98173A4100AD> /System/Library/PrivateFrameworks/SignpostNotification.framework/Versions/A/SignpostNotification
    0x7fff4fabd000 -     0x7fff4fd5afff  com.apple.SkyLight (1.600.0 - 312.103.12) <A65B547C-B7CA-3E33-A0C5-58AB436A8467> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff50523000 -     0x7fff50530fff  com.apple.SpeechRecognitionCore (4.6.1 - 4.6.1) <90CDCEAD-5A65-3C35-9370-2B306895E97C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff509dd000 -     0x7fff50a04fff  com.apple.StreamingZip (1.0 - 1) <B5C3D9D6-B1DC-33E5-B7D2-ADAF3E0CA30E> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
    0x7fff510d6000 -     0x7fff5115ffc7  com.apple.Symbolication (9.3 - 64033) <F576D527-4CB1-34A5-B15E-1130833EEDAB> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff51170000 -     0x7fff51178ffb  com.apple.SymptomDiagnosticReporter (1.0 - 820.60.3) <F17BD2C2-43B1-32AD-B264-5B9405F60776> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff516d0000 -     0x7fff516d8ff7  com.apple.TCC (1.0 - 1) <9D5466C6-A8B6-3C24-A791-6506B81D9998> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff518e5000 -     0x7fff519a2ff7  com.apple.TextureIO (3.7 - 3.7) <32C460CD-E93D-3FA5-A4AE-CA648722F5FE> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff519f9000 -     0x7fff51a14ffb  com.apple.ToneKit (1.0 - 1) <8507A7F0-2DF3-3472-B2D9-5C634E32F4B1> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
    0x7fff51a15000 -     0x7fff51a3cfff  com.apple.ToneLibrary (1.0 - 1) <CE92F532-89E1-369E-B750-A60A47BF4059> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fff51a53000 -     0x7fff51c03fff  com.apple.UIFoundation (1.0 - 547.9) <D0994333-5EB4-3415-8D18-2A0487AE91E0> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff528d8000 -     0x7fff529a7ff7  com.apple.ViewBridge (343.2 - 343.2) <0A295791-B763-3E58-A9DD-8E4F40E815C9> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff5323f000 -     0x7fff53241ffb  com.apple.loginsupport (1.0 - 1) <E273A65A-6379-3787-B119-BC6ED94D4A81> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff53282000 -     0x7fff532affff  com.apple.contacts.vCard (1.0 - 2330.3) <E13E0B5B-778D-3995-9704-40D870BEF2F2> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0x7fff533a8000 -     0x7fff533dbff7  libclosured.dylib (551.5) <112BC241-6626-3848-8DD8-B34B5B6F7ABC> /usr/lib/closure/libclosured.dylib
    0x7fff53495000 -     0x7fff534ceff7  libCRFSuite.dylib (41) <14B00FCF-4C67-3736-95B5-76FEA6E4972C> /usr/lib/libCRFSuite.dylib
    0x7fff534cf000 -     0x7fff534dafff  libChineseTokenizer.dylib (28) <2237A259-0E59-3DD0-BADC-281C361FAB70> /usr/lib/libChineseTokenizer.dylib
    0x7fff5356c000 -     0x7fff5356dff3  libDiagnosticMessagesClient.dylib (104) <3F855622-352B-3EA8-B7C8-94D1DB48C080> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff535a4000 -     0x7fff5376eff3  libFosl_dynamic.dylib (17.8) <1A2A9D53-129E-3F7D-AE23-1D6E6D9EA017> /usr/lib/libFosl_dynamic.dylib
    0x7fff537a6000 -     0x7fff537a6fff  libOpenScriptingUtil.dylib (174) <AC38B2C3-5A37-30EB-A246-CEFABD3DD4E7> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff538dd000 -     0x7fff538e1ffb  libScreenReader.dylib (562.18.5) <FFB20E40-7669-30F6-8577-B74E18076376> /usr/lib/libScreenReader.dylib
    0x7fff538e2000 -     0x7fff538e3ffb  libSystem.B.dylib (1252.50.4) <5A02016C-8F9D-3F47-8C39-AD2CD4F9F11D> /usr/lib/libSystem.B.dylib
    0x7fff53976000 -     0x7fff53976fff  libapple_crypto.dylib (109.50.15) <A8DEA8E9-5769-3C78-824D-969A98B94086> /usr/lib/libapple_crypto.dylib
    0x7fff53977000 -     0x7fff5398dff7  libapple_nghttp2.dylib (1.24) <24338D88-5D73-3165-9CFB-5A92734C9040> /usr/lib/libapple_nghttp2.dylib
    0x7fff5398e000 -     0x7fff539b8ff3  libarchive.2.dylib (54) <D2B6AD30-18CB-3E3C-ABBF-A0745654350F> /usr/lib/libarchive.2.dylib
    0x7fff539b9000 -     0x7fff53a3afdf  libate.dylib (1.13.1) <77603BB8-681D-32A6-966E-4F92B9165447> /usr/lib/libate.dylib
    0x7fff53a3e000 -     0x7fff53a3eff3  libauto.dylib (187) <92E693DF-D74D-39A0-99AB-8A9F6FFEBA18> /usr/lib/libauto.dylib
    0x7fff53a3f000 -     0x7fff53af8ffb  libboringssl.dylib (109.50.15) <FC25FE02-6AA8-3F0B-9EF3-56A455C08C0F> /usr/lib/libboringssl.dylib
    0x7fff53af9000 -     0x7fff53b09ff3  libbsm.0.dylib (39) <18D57879-A717-3466-9637-1704EE59A32A> /usr/lib/libbsm.0.dylib
    0x7fff53b0a000 -     0x7fff53b17ffb  libbz2.1.0.dylib (38) <0B4321CD-3D6F-3095-A12E-27F66B4321AD> /usr/lib/libbz2.1.0.dylib
    0x7fff53b18000 -     0x7fff53b6efff  libc++.1.dylib (400.9) <142D6292-F30F-3949-9F37-3C97A579F540> /usr/lib/libc++.1.dylib
    0x7fff53b6f000 -     0x7fff53b93ff7  libc++abi.dylib (400.8.2) <EF5E37D7-11D9-3530-BE45-B986612D13E2> /usr/lib/libc++abi.dylib
    0x7fff53b95000 -     0x7fff53ba5fff  libcmph.dylib (6) <890DEC4C-4334-393C-8B56-7C8560BBED9D> /usr/lib/libcmph.dylib
    0x7fff53ba6000 -     0x7fff53bbdfcf  libcompression.dylib (47.60.2) <543F07BF-2F2F-37D5-9866-E84BF659885B> /usr/lib/libcompression.dylib
    0x7fff53e68000 -     0x7fff53e80ff7  libcoretls.dylib (155.50.1) <087E9F90-21E5-376D-9956-C4E346409682> /usr/lib/libcoretls.dylib
    0x7fff53e81000 -     0x7fff53e82ff3  libcoretls_cfhelpers.dylib (155.50.1) <78CCDD10-7D71-365E-A0A5-8524ED5F5BF9> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff54353000 -     0x7fff543a8ff3  libcups.2.dylib (462.2.10) <590D6ACC-68A0-371E-8646-FC59F814534B> /usr/lib/libcups.2.dylib
    0x7fff544e8000 -     0x7fff544e8fff  libenergytrace.dylib (16) <1F11D488-07C6-3D18-BEF2-0B28A992D761> /usr/lib/libenergytrace.dylib
    0x7fff5451f000 -     0x7fff54524ff3  libheimdal-asn1.dylib (520.50.9) <EF65C17E-31CD-31DC-876C-BF3EF393099C> /usr/lib/libheimdal-asn1.dylib
    0x7fff54550000 -     0x7fff54641ff7  libiconv.2.dylib (51.50.1) <7965B866-C75A-3450-9891-0500349F7090> /usr/lib/libiconv.2.dylib
    0x7fff54642000 -     0x7fff54869ffb  libicucore.A.dylib (59181.0.1) <17767680-09DF-3954-AB6C-B13B41F92A2E> /usr/lib/libicucore.A.dylib
    0x7fff548b6000 -     0x7fff548b7fff  liblangid.dylib (128) <C54A2059-A4BE-364B-94C2-581C548459BC> /usr/lib/liblangid.dylib
    0x7fff548b8000 -     0x7fff548d1ffb  liblzma.5.dylib (10) <60BEAB81-CE65-3479-90CC-03325AACEC95> /usr/lib/liblzma.5.dylib
    0x7fff548d2000 -     0x7fff548e8ff7  libmarisa.dylib (9) <47540053-02CF-35F8-A75E-074DB3D51812> /usr/lib/libmarisa.dylib
    0x7fff54999000 -     0x7fff54bc1ff7  libmecabra.dylib (779.7.6) <B2ACB6A9-91AE-364B-9418-8EB938BF82B6> /usr/lib/libmecabra.dylib
    0x7fff54d99000 -     0x7fff54f14fff  libnetwork.dylib (1229.70.2) <0596A03E-C984-3FE6-B88E-63D5F96EC49A> /usr/lib/libnetwork.dylib
    0x7fff54f9b000 -     0x7fff553897e7  libobjc.A.dylib (723) <843EFB54-EFCC-3A7C-BE11-092B6A556262> /usr/lib/libobjc.A.dylib
    0x7fff5539c000 -     0x7fff553a0fff  libpam.2.dylib (22) <E5840D63-8506-301A-9182-5000031854E1> /usr/lib/libpam.2.dylib
    0x7fff553a3000 -     0x7fff553dbff7  libpcap.A.dylib (79.20.3) <6A9D27FA-2780-3E96-8B2E-645638AC13AC> /usr/lib/libpcap.A.dylib
    0x7fff5545a000 -     0x7fff55476ffb  libresolv.9.dylib (65.1) <D9BB6307-71E4-3A94-A745-1FCA114C6894> /usr/lib/libresolv.9.dylib
    0x7fff554b2000 -     0x7fff554c4fff  libsasl2.2.dylib (211.0.2) <AB5F6754-6A33-332D-B7D3-3E8D34900AE6> /usr/lib/libsasl2.2.dylib
    0x7fff554c5000 -     0x7fff554c6ff3  libspindump.dylib (252) <7BE3801C-F1F5-3F54-AB70-9842F8EF3F09> /usr/lib/libspindump.dylib
    0x7fff554c7000 -     0x7fff5565aff7  libsqlite3.dylib (274.8.1) <FCAD6A57-829E-3701-B16E-1833D620E0E8> /usr/lib/libsqlite3.dylib
    0x7fff5582e000 -     0x7fff5588eff3  libusrtcp.dylib (1229.70.2) <1E065228-D0E3-3808-9405-894056C6BEC0> /usr/lib/libusrtcp.dylib
    0x7fff5588f000 -     0x7fff55892ffb  libutil.dylib (51.20.1) <A50E15F1-20A2-3EA7-A8CE-A43662E18587> /usr/lib/libutil.dylib
    0x7fff55893000 -     0x7fff558a0ff3  libxar.1.dylib (417.1) <351781D5-3CCF-320F-BB5A-4DFCC1CCD31D> /usr/lib/libxar.1.dylib
    0x7fff558a4000 -     0x7fff5598bffb  libxml2.2.dylib (31.20) <286F8531-7001-3989-9640-284443355433> /usr/lib/libxml2.2.dylib
    0x7fff5598c000 -     0x7fff559b4fff  libxslt.1.dylib (15.16) <57D56366-1E7B-356C-B2B8-F4688FF666E6> /usr/lib/libxslt.1.dylib
    0x7fff559b5000 -     0x7fff559c7ffb  libz.1.dylib (70) <47278BDC-596E-3037-B8DA-05FE9D5DBEF6> /usr/lib/libz.1.dylib
    0x7fff55a63000 -     0x7fff55a67ff7  libcache.dylib (80) <096D3699-58D2-3D23-9512-BC88DAE7B16C> /usr/lib/system/libcache.dylib
    0x7fff55a68000 -     0x7fff55a72ff3  libcommonCrypto.dylib (60118.50.1) <B4E77BD4-A809-37E1-8A79-25955E0F5D9C> /usr/lib/system/libcommonCrypto.dylib
    0x7fff55a73000 -     0x7fff55a7afff  libcompiler_rt.dylib (62) <4CEED002-D00B-35F8-B563-0546A5F71A43> /usr/lib/system/libcompiler_rt.dylib
    0x7fff55a7b000 -     0x7fff55a84ffb  libcopyfile.dylib (146.50.5) <F7A7999F-9509-3C67-8EE9-95BEE6772676> /usr/lib/system/libcopyfile.dylib
    0x7fff55a85000 -     0x7fff55b0affb  libcorecrypto.dylib (562.70.3) <9C6E5CC2-272B-3740-AEDB-9EBEC98EC7F9> /usr/lib/system/libcorecrypto.dylib
    0x7fff55b92000 -     0x7fff55bcbff7  libdispatch.dylib (913.60.3) <285526B6-A2A6-316D-A1CC-37803B71E203> /usr/lib/system/libdispatch.dylib
    0x7fff55bcc000 -     0x7fff55be9ff7  libdyld.dylib (551.5) <49ABA86D-DD48-3133-9B14-B9A564EEBC66> /usr/lib/system/libdyld.dylib
    0x7fff55bea000 -     0x7fff55beaffb  libkeymgr.dylib (28) <7CC7B5E1-AB7F-3495-A26A-396461BCB66B> /usr/lib/system/libkeymgr.dylib
    0x7fff55beb000 -     0x7fff55bf7ff3  libkxld.dylib (4570.71.82.8) <44AF05D7-6BDF-3A9B-B5CF-D16C98B6844E> /usr/lib/system/libkxld.dylib
    0x7fff55bf8000 -     0x7fff55bf8ff7  liblaunch.dylib (1205.70.16) <265EE555-E988-3EE5-A39E-028FB3A5FE11> /usr/lib/system/liblaunch.dylib
    0x7fff55bf9000 -     0x7fff55bfdffb  libmacho.dylib (906) <F5F16E2F-F961-3FF4-B02F-69BBDB57B8DC> /usr/lib/system/libmacho.dylib
    0x7fff55bfe000 -     0x7fff55c00fff  libquarantine.dylib (86.70.1) <262CECFE-A493-3EC6-8608-CEA93757265E> /usr/lib/system/libquarantine.dylib
    0x7fff55c01000 -     0x7fff55c02ff3  libremovefile.dylib (45) <EA24BFB6-24B7-3841-8AAC-FAF400910706> /usr/lib/system/libremovefile.dylib
    0x7fff55c03000 -     0x7fff55c1afff  libsystem_asl.dylib (356.70.1) <9481D82D-CFB7-3032-A07F-88F7F59CAC2C> /usr/lib/system/libsystem_asl.dylib
    0x7fff55c1b000 -     0x7fff55c1bfff  libsystem_blocks.dylib (67) <FA2C3663-9DBB-3AFB-80A3-E77BE0816AD0> /usr/lib/system/libsystem_blocks.dylib
    0x7fff55c1c000 -     0x7fff55ca5ff7  libsystem_c.dylib (1244.50.9) <25DD83D8-80CA-3DFF-8626-FE704911F19C> /usr/lib/system/libsystem_c.dylib
    0x7fff55ca6000 -     0x7fff55ca9ffb  libsystem_configuration.dylib (963.50.9) <61B26E1D-FEFF-38C6-AE0E-A6DD90145EB2> /usr/lib/system/libsystem_configuration.dylib
    0x7fff55caa000 -     0x7fff55cadffb  libsystem_coreservices.dylib (51) <E8FA663F-1B0F-3B12-8F97-31A46E6B4D68> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff55cae000 -     0x7fff55caffff  libsystem_darwin.dylib (1244.50.9) <6195EEA1-83A7-35F0-8147-5AB031020CD0> /usr/lib/system/libsystem_darwin.dylib
    0x7fff55cb0000 -     0x7fff55cb6ffb  libsystem_dnssd.dylib (878.70.4) <0D2C9583-5D28-375B-AEB4-F66F18C78322> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff55cb7000 -     0x7fff55d00ff7  libsystem_info.dylib (517.30.1) <9C2C96F3-638B-34E7-A2BD-24C643EAF957> /usr/lib/system/libsystem_info.dylib
    0x7fff55d01000 -     0x7fff55d27ff7  libsystem_kernel.dylib (4570.71.82.8) <C34BA704-FAFF-3DDB-9827-5930B5BEF134> /usr/lib/system/libsystem_kernel.dylib
    0x7fff55d28000 -     0x7fff55d73fcb  libsystem_m.dylib (3147.50.1) <B3172533-77D2-3416-8487-4A505198E9E1> /usr/lib/system/libsystem_m.dylib
    0x7fff55d74000 -     0x7fff55d93ff7  libsystem_malloc.dylib (140.50.7) <821E16C8-7A7E-3269-9167-10F4F413BF93> /usr/lib/system/libsystem_malloc.dylib
    0x7fff55d94000 -     0x7fff55ec4ff7  libsystem_network.dylib (1229.70.2) <07BFD80A-E7EB-3DEB-B765-5E1659453114> /usr/lib/system/libsystem_network.dylib
    0x7fff55ec5000 -     0x7fff55ecfffb  libsystem_networkextension.dylib (767.70.2) <A90BAFFD-AC3D-3078-90B2-71463DBFD4A5> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff55ed0000 -     0x7fff55ed9ff3  libsystem_notify.dylib (172) <738B3BB0-4F20-3446-A3B6-095D796E5903> /usr/lib/system/libsystem_notify.dylib
    0x7fff55eda000 -     0x7fff55ee1ff7  libsystem_platform.dylib (161.50.1) <90A2A62F-8690-3FA7-A4D0-9085BF2FA44A> /usr/lib/system/libsystem_platform.dylib
    0x7fff55ee2000 -     0x7fff55eedfff  libsystem_pthread.dylib (301.50.1) <283E64A7-A2B2-3212-95BA-4D21F9AE36CF> /usr/lib/system/libsystem_pthread.dylib
    0x7fff55eee000 -     0x7fff55ef1fff  libsystem_sandbox.dylib (765.70.2) <C29E1B7A-F39B-344E-98F7-8FB32B10AE0A> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff55ef2000 -     0x7fff55ef3ff3  libsystem_secinit.dylib (30) <4E84DF62-57B5-36F9-819F-3C1E7FEDA856> /usr/lib/system/libsystem_secinit.dylib
    0x7fff55ef4000 -     0x7fff55efbff7  libsystem_symptoms.dylib (820.60.3) <A45B4D84-2C69-3F19-83C2-2F1EEA73A7B5> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff55efc000 -     0x7fff55f10ff7  libsystem_trace.dylib (829.70.2) <4C4E5351-E370-3226-9B30-61E250DE3B2E> /usr/lib/system/libsystem_trace.dylib
    0x7fff55f12000 -     0x7fff55f17ff7  libunwind.dylib (35.3) <BAE12DA3-CF33-32AD-86B0-CCD6705ADFAA> /usr/lib/system/libunwind.dylib
    0x7fff55f18000 -     0x7fff55f45fff  libxpc.dylib (1205.70.16) <26D99819-B813-320E-9E8F-9D57AD2DA63B> /usr/lib/system/libxpc.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 2
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 54798
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=402.4M resident=0K(0%) swapped_out_or_unallocated=402.4M(100%)
Writable regions: Total=130.8M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=130.8M(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Activity Tracing                   256K        2 
CoreUI image file                  212K        6 
Foundation                           4K        2 
Kernel Alloc Once                    8K        2 
MALLOC                           119.8M       29 
MALLOC guard page                   48K       10 
STACK GUARD                       56.0M        6 
Stack                             10.0M        6 
VM_ALLOCATE                         48K        7 
__DATA                            32.7M      310 
__FONT_DATA                          4K        2 
__LINKEDIT                       194.2M       38 
__TEXT                           208.4M      310 
__UNICODE                          560K        2 
mapped file                       71.2M       12 
shared memory                     2772K       11 
===========                     =======  ======= 
TOTAL                            696.1M      739 

Model: iMacPro1,1, BootROM 2005.0.0.0.0, 6 processors, 3,91 GHz, 32 GB, SMC 
Graphics: Display, Built-In, 3 MB
Graphics: NVIDIA GeForce GTX 1060 6GB, NVIDIA GeForce GTX 1060 6GB, PCIe
Memory Module: BANK 0/Controller0-ChannelA-DIMM1, 16 GB, DDR4, 2400 MHz, Kingston, KF3200C16D4/16GX
Memory Module: BANK 1/Controller0-ChannelB-DIMM1, 16 GB, DDR4, 2400 MHz, Kingston, KF3200C16D4/16GX
Bluetooth: Version 6.0.7f22, 3 services, 26 devices, 1 incoming serial ports
Network Service: Ethernet, Ethernet, en0
PCI Card: NVIDIA GeForce GTX 1060 6GB, Display Controller, Slot-1
Serial ATA Device: Samsung SSD 850 EVO 500GB, 500,11 GB
Serial ATA Device: Samsung SSD 860 EVO 250GB, 250,06 GB
Serial ATA Device: WDC WD10EZEX-00BN5A0, 1 TB
Serial ATA Device: TSSTcorp CDDVDW SH-224DB
USB Device: USB 3.0 Bus
USB Device: Bluetooth HCI
USB Device: AURA LED Controller
USB Device: USB2.0 Hub
USB Device: Razer Cynosa Lite
USB Device: Razer Basilisk Essential
USB Device: HD Pro Webcam C920
USB Device: USB2.0 HUB
Thunderbolt Bus: 

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@kristibektashi
Hi
Could you execute the below command on terminal window
/Applications/"About This Hack.app"/Contents/MacOS/"About This Hack" (/Applications or the Repertory of the "app")
and send us the result of debug lines and if possible the files in /tmp/.ath (remove or hide critical content)
Regards

from about-this-hack.

kristibektashi avatar kristibektashi commented on June 6, 2024
Last login: Sat Oct 28 13:09:22 on ttys000
Kristis-iPro:~ kristibek$ /Applications/"About This Hack.app"/Contents/MacOS/"About This Hack"
Directory created...
Files created...
2023-10-28 13:17:05.647 About This Hack[1931:16140] Failed to connect (segCtrl) outlet from (About_This_Hack.WindowController) to (NSToolbarItem): missing setter or instance variable
10.13.6
OS Build Number:  (17G14042) 
RAM Type: Empty

RAM Speed: 2400 MHz
["GeForce GTX 1060 6GB"]
1
loaded
2023-10-28 13:17:06.261 About This Hack[1931:16140] Unknown class DisplayViewController in Interface Builder file at path /Applications/About This Hack.app/Contents/Resources/en.lproj/Main.storyboardc/4Ic-HP-FIG-view-kpy-1x-g1k.nib.
Support View Initializing...
Initializing Main View...
TEST TEST /private/tmp/.ath/scr.txt
Number of Displays: 2
Has built-in display: true
Startup Disk Name High Sierra
Storage Type: true
Size: 499.9
Available: 414.0
%: 82.82
Storage Data: High Sierra (Internal SATA)
499.9 GB (414.0 GB Available - 82.82%)
Size: 499.9
Available: 414.0
%: 82.82
Storage Percent: 0.1718343668733746
TEST TEST /private/tmp/.ath/scr.txt
TEST TEST /private/tmp/.ath/scr.txt
2 or 3 displays found
zsh:2: command not found: L226WA
Illegal instruction: 4
Kristis-iPro:~ kristibek$ 

ath.zip

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

thank you for sharing this log. I will investigate later this weekend.

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@kristibektashi @0xCUB3

Hi

We don't forget you, now with fixed issues on recent macOS, i'll test ATH on High Sierra
If you have other HardW (or same one) with macOS 14.x, 13.x, 12.x or 11.x you could try this https://drive.google.com/file/d/1vfwjawuaJSrjRhaCJja96oz5-VuhUSRz/view?usp=sharing

Regards

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@kristibektashi @0xCUB3

The ATH.app (zipped) sharing on Google Drive is a Xcode 15.0.1 build on Ventura and it works (partially) on High Sierra.

kristibektashi could you test this Xcode 15x build on your High Sierra (M/H)ac(k)

What doesn't work
Progress bar on Storage Tab is grey (disk capacity and free %tage are ok)

Storage HSierra

Support Tab with strange content

Support HSierra

Regards

PS: Xcode 15x build works on High Sierra may be coz' I Add $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/macosx/libswiftAppKit.dylib to the Other Linker Flags build setting in Xcode.

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

perhaps the bar isn't supported on high sierra? As for the support tab, that is probably also some storyboard issue on high sierra. Everything works for me, but my display's name still isn't visible:
CleanShot 2023-11-01 at 14 39 35
CleanShot 2023-11-01 at 14 40 01

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@0xCUB3
Hi
Could you send your "scr.txt" and "scrXml.txt" only this twos.
Thanks
For Support Tab, my perso version of ATH (called ETH for Enroll This Hack) works on High Sierra, I'll look what attributs may differ between the twos.

Sans titre

Regards

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

@matxpa here you go:
scr.txt
scrXml.txt

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

Thanks

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

@0xCUB3

Hi
Could you try this version (with 1/4 second before displaying Displays Tab), enough not enough ?
https://drive.google.com/file/d/1_gkNFSJ5hUj-itQvfZYAyF7JMG4KqhFT/view?usp=sharing
Regards

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

Still doesn't work, even after a 2nd or 3rd launch:
CleanShot 2023-11-01 at 17 23 25

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

With the last version (3 minutes ago) ?

from about-this-hack.

0xCUB3 avatar 0xCUB3 commented on June 6, 2024

of course

from about-this-hack.

matxpa avatar matxpa commented on June 6, 2024

and with this one (1 second)
https://drive.google.com/file/d/1n9AbzmmdDxxAhOaaoML8kAnRDe2wq6Jv/view?usp=drive_link

from about-this-hack.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.