From 9ab4c387d43c09aa35368f5b2bf6de749558c69c Mon Sep 17 00:00:00 2001 From: Philipp Hofmann Date: Mon, 30 Jan 2023 11:55:45 +0100 Subject: [PATCH 1/3] feat: Add EXC_BAD_ACCESS subtypes to events Add EXC_BAD_ACCESS subtypes to unhandled errors on arm CPUs. Previously the CrashDoctor always diagnosed a memory crash as Attempted to dereference garbage pointer at 0x13fd4582e. Now the SDK replaces the generic message with the specific subtype. --- CHANGELOG.md | 1 + Sentry.xcodeproj/project.pbxproj | 12 +- .../SentryCrash/Recording/SentryCrashDoctor.m | 13 +- .../Recording/Tools/SentryCrashMach.c | 17 + .../crash-bad-access-no-subcode.json | 6788 ++++++++++++++++ Tests/Resources/crash-bad-access.json | 6789 +++++++++++++++++ ...shReportWriter.swift => CrashReport.swift} | 6 + .../SentryCrash/SentryCrashDoctorTests.swift | 20 + .../SentryTests/SentryTests-Bridging-Header.h | 1 + 9 files changed, 13641 insertions(+), 6 deletions(-) create mode 100644 Tests/Resources/crash-bad-access-no-subcode.json create mode 100644 Tests/Resources/crash-bad-access.json rename Tests/SentryTests/SentryCrash/{CrashReportWriter.swift => CrashReport.swift} (59%) create mode 100644 Tests/SentryTests/SentryCrash/SentryCrashDoctorTests.swift diff --git a/CHANGELOG.md b/CHANGELOG.md index c406ffcb217..115722af4f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - AttachScreenshots is GA (#2623) - Gather profiling timeseries metrics for CPU usage and memory footprint (#2493) - Change SentryTracedView `transactionName` to `viewName` (#2630) +- Add EXC_BAD_ACCESS subtypes to events (#2667) ### Fixes diff --git a/Sentry.xcodeproj/project.pbxproj b/Sentry.xcodeproj/project.pbxproj index 781111e3e4b..d9ecdf159ae 100644 --- a/Sentry.xcodeproj/project.pbxproj +++ b/Sentry.xcodeproj/project.pbxproj @@ -422,7 +422,7 @@ 7B9657252683104C00C66E25 /* NSData+Sentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B9657232683104C00C66E25 /* NSData+Sentry.h */; }; 7B9657262683104C00C66E25 /* NSData+Sentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B9657242683104C00C66E25 /* NSData+Sentry.m */; }; 7B965728268321CD00C66E25 /* SentryCrashScopeObserverTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B965727268321CD00C66E25 /* SentryCrashScopeObserverTests.swift */; }; - 7B984A9F28E572AF001F4BEE /* CrashReportWriter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B984A9E28E572AF001F4BEE /* CrashReportWriter.swift */; }; + 7B984A9F28E572AF001F4BEE /* CrashReport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B984A9E28E572AF001F4BEE /* CrashReport.swift */; }; 7B98D7BC25FB607300C5A389 /* SentryWatchdogTerminationTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B98D7BB25FB607300C5A389 /* SentryWatchdogTerminationTracker.h */; }; 7B98D7CB25FB64EC00C5A389 /* SentryWatchdogTerminationTrackingIntegration.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B98D7CA25FB64EC00C5A389 /* SentryWatchdogTerminationTrackingIntegration.h */; }; 7B98D7CF25FB650F00C5A389 /* SentryWatchdogTerminationTrackingIntegration.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B98D7CE25FB650F00C5A389 /* SentryWatchdogTerminationTrackingIntegration.m */; }; @@ -572,6 +572,7 @@ 7BF6505F292B77EC00BBA5A8 /* SentryMetricKitIntegrationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BF6505E292B77EC00BBA5A8 /* SentryMetricKitIntegrationTests.swift */; }; 7BF65062292B8F1C00BBA5A8 /* SentryMXCallStackTree.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BF65061292B8F1C00BBA5A8 /* SentryMXCallStackTree.swift */; }; 7BF65064292B905A00BBA5A8 /* SentryMXCallStackTreeTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BF65063292B905A00BBA5A8 /* SentryMXCallStackTreeTests.swift */; }; + 7BF69E072987D1FE002EBCA4 /* SentryCrashDoctorTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BF69E062987D1FE002EBCA4 /* SentryCrashDoctorTests.swift */; }; 7BF9EF722722A84800B5BBEF /* SentryClassRegistrator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BF9EF712722A84800B5BBEF /* SentryClassRegistrator.h */; }; 7BF9EF742722A85B00B5BBEF /* SentryClassRegistrator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF9EF732722A85B00B5BBEF /* SentryClassRegistrator.m */; }; 7BF9EF762722B34700B5BBEF /* SentrySubClassFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BF9EF752722B34700B5BBEF /* SentrySubClassFinder.h */; }; @@ -1236,7 +1237,7 @@ 7B9657242683104C00C66E25 /* NSData+Sentry.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSData+Sentry.m"; sourceTree = ""; }; 7B965727268321CD00C66E25 /* SentryCrashScopeObserverTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SentryCrashScopeObserverTests.swift; sourceTree = ""; }; 7B9660B12783500E0014A767 /* ThreadSanitizer.sup */ = {isa = PBXFileReference; lastKnownFileType = text; path = ThreadSanitizer.sup; sourceTree = ""; }; - 7B984A9E28E572AF001F4BEE /* CrashReportWriter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CrashReportWriter.swift; sourceTree = ""; }; + 7B984A9E28E572AF001F4BEE /* CrashReport.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CrashReport.swift; sourceTree = ""; }; 7B98D7BB25FB607300C5A389 /* SentryWatchdogTerminationTracker.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SentryWatchdogTerminationTracker.h; path = include/SentryWatchdogTerminationTracker.h; sourceTree = ""; }; 7B98D7CA25FB64EC00C5A389 /* SentryWatchdogTerminationTrackingIntegration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SentryWatchdogTerminationTrackingIntegration.h; path = include/SentryWatchdogTerminationTrackingIntegration.h; sourceTree = ""; }; 7B98D7CE25FB650F00C5A389 /* SentryWatchdogTerminationTrackingIntegration.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SentryWatchdogTerminationTrackingIntegration.m; sourceTree = ""; }; @@ -1396,6 +1397,7 @@ 7BF6505E292B77EC00BBA5A8 /* SentryMetricKitIntegrationTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SentryMetricKitIntegrationTests.swift; sourceTree = ""; }; 7BF65061292B8F1C00BBA5A8 /* SentryMXCallStackTree.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SentryMXCallStackTree.swift; sourceTree = ""; }; 7BF65063292B905A00BBA5A8 /* SentryMXCallStackTreeTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SentryMXCallStackTreeTests.swift; sourceTree = ""; }; + 7BF69E062987D1FE002EBCA4 /* SentryCrashDoctorTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SentryCrashDoctorTests.swift; sourceTree = ""; }; 7BF9EF712722A84800B5BBEF /* SentryClassRegistrator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SentryClassRegistrator.h; sourceTree = ""; }; 7BF9EF732722A85B00B5BBEF /* SentryClassRegistrator.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SentryClassRegistrator.m; sourceTree = ""; }; 7BF9EF752722B34700B5BBEF /* SentrySubClassFinder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SentrySubClassFinder.h; sourceTree = ""; }; @@ -2391,7 +2393,8 @@ 7BED3574266F7BC600EAA70D /* TestSentryCrashWrapper.h */, 7BED3575266F7BFF00EAA70D /* TestSentryCrashWrapper.m */, 0ADC33EF28D9BE690078D980 /* TestSentryUIDeviceWrapper.swift */, - 7B984A9E28E572AF001F4BEE /* CrashReportWriter.swift */, + 7B984A9E28E572AF001F4BEE /* CrashReport.swift */, + 7BF69E062987D1FE002EBCA4 /* SentryCrashDoctorTests.swift */, ); path = SentryCrash; sourceTree = ""; @@ -3978,7 +3981,7 @@ D88817DD26D72BA500BF2251 /* SentryTraceStateTests.swift in Sources */, 8E25C97525F8511A00DC215B /* TestRandom.swift in Sources */, 7B26BBFB24C0A66D00A79CCC /* SentrySdkInfoNilTests.m in Sources */, - 7B984A9F28E572AF001F4BEE /* CrashReportWriter.swift in Sources */, + 7B984A9F28E572AF001F4BEE /* CrashReport.swift in Sources */, 7BAF3DD7243DD4A1008A5414 /* TestConstants.swift in Sources */, 035E73CC27D575B3005EEB11 /* SentrySamplingProfilerTests.mm in Sources */, 7BED3576266F7BFF00EAA70D /* TestSentryCrashWrapper.m in Sources */, @@ -4079,6 +4082,7 @@ 7BAF3DD2243DD05C008A5414 /* SentryTransportInitializerTests.swift in Sources */, 7B68D93625FF5F1A0082D139 /* SentryAppState+Equality.m in Sources */, 7B5CAF7E27F5AD3500ED0DB6 /* TestNSURLRequestBuilder.m in Sources */, + 7BF69E072987D1FE002EBCA4 /* SentryCrashDoctorTests.swift in Sources */, 7B4F22DC294089530067EA17 /* FormatHexAddress.swift in Sources */, 8EAC7FF8265C8910005B44E5 /* SentryTracerTests.swift in Sources */, 0A1B497328E597DD00D7BFA3 /* TestLogOutput.swift in Sources */, diff --git a/Sources/SentryCrash/Recording/SentryCrashDoctor.m b/Sources/SentryCrash/Recording/SentryCrashDoctor.m index adbbf299594..e9a1ea785ab 100644 --- a/Sources/SentryCrash/Recording/SentryCrashDoctor.m +++ b/Sources/SentryCrash/Recording/SentryCrashDoctor.m @@ -458,8 +458,17 @@ - (NSString *)diagnoseCrash:(NSDictionary *)report if (address == 0) { return @"Attempted to dereference null pointer."; } - return [NSString - stringWithFormat:@"Attempted to dereference garbage pointer %p.", (void *)address]; + + NSString *codeName = errorReport[@SentryCrashField_Mach][@SentryCrashField_CodeName]; + if (codeName != nil) { + // Inspired by + // https://developer.apple.com/documentation/xcode/investigating-memory-access-crashes + return [NSString stringWithFormat:@"%@ at %p.", codeName, (void *)address]; + } else { + return + [NSString stringWithFormat:@"Attempted to dereference garbage pointer at %p.", + (void *)address]; + } } return nil; diff --git a/Sources/SentryCrash/Recording/Tools/SentryCrashMach.c b/Sources/SentryCrash/Recording/Tools/SentryCrashMach.c index f46f85688a6..afef898b176 100644 --- a/Sources/SentryCrash/Recording/Tools/SentryCrashMach.c +++ b/Sources/SentryCrash/Recording/Tools/SentryCrashMach.c @@ -27,6 +27,10 @@ #include #include +#if defined(__arm__) || defined(__arm64__) +# include +#endif /* defined (__arm__) || defined (__arm64__) */ + #define RETURN_NAME_FOR_ENUM(A) \ case A: \ return #A @@ -104,6 +108,19 @@ sentrycrashmach_kernelReturnCodeName(const int64_t returnCode) RETURN_NAME_FOR_ENUM(KERN_NOT_WAITING); RETURN_NAME_FOR_ENUM(KERN_OPERATION_TIMED_OUT); RETURN_NAME_FOR_ENUM(KERN_CODESIGN_ERROR); + +#if defined(__arm__) || defined(__arm64__) + /* + * Located at mach/arm/exception.h + * For EXC_BAD_ACCESS + * Note: do not conflict with kern_return_t values returned by vm_fault + */ + RETURN_NAME_FOR_ENUM(EXC_ARM_DA_ALIGN); + RETURN_NAME_FOR_ENUM(EXC_ARM_DA_DEBUG); + RETURN_NAME_FOR_ENUM(EXC_ARM_SP_ALIGN); + RETURN_NAME_FOR_ENUM(EXC_ARM_SWP); + RETURN_NAME_FOR_ENUM(EXC_ARM_PAC_FAIL); +#endif /* defined (__arm__) || defined (__arm64__) */ } return NULL; } diff --git a/Tests/Resources/crash-bad-access-no-subcode.json b/Tests/Resources/crash-bad-access-no-subcode.json new file mode 100644 index 00000000000..83ac4244724 --- /dev/null +++ b/Tests/Resources/crash-bad-access-no-subcode.json @@ -0,0 +1,6788 @@ +{ + "report": { + "version": "3.2.0", + "id": "42A64046-9255-4995-98C2-553FA204DF4D", + "process_name": "iOS-Swift", + "timestamp": 1675069636, + "type": "standard" + }, + "binary_images": [ + { + "image_addr": 4306583552, + "image_vmaddr": 4294967296, + "image_size": 278528, + "name": "/private/var/containers/Bundle/Application/53C684E3-9F0E-4FE3-8291-88677BAB718C/iOS-Swift.app/iOS-Swift", + "uuid": "C488D0BE-E733-3031-AEF3-CC5182AB1E3B", + "cpu_type": 16777228, + "cpu_subtype": 0, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 4308959232, + "image_vmaddr": 0, + "image_size": 1212416, + "name": "/private/var/containers/Bundle/Application/53C684E3-9F0E-4FE3-8291-88677BAB718C/iOS-Swift.app/Frameworks/Sentry.framework/Sentry", + "uuid": "D9FC174C-62AD-3343-825B-DABBC5743CDC", + "cpu_type": 16777228, + "cpu_subtype": 0, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7005818880, + "image_vmaddr": 6460772352, + "image_size": 9740288, + "name": "/System/Library/Frameworks/Foundation.framework/Foundation", + "uuid": "C1224D80-B336-3E92-8CAD-7B6417720DAE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1953, + "minor_version": 255, + "revision_version": 0 + }, + { + "image_addr": 6988251136, + "image_vmaddr": 6443204608, + "image_size": 278048, + "name": "/usr/lib/libobjc.A.dylib", + "uuid": "79BC93BC-DF0F-300A-BD7B-07DCB2E13482", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 228, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7345225728, + "image_vmaddr": 6800179200, + "image_size": 421876, + "name": "/usr/lib/libc++.1.dylib", + "uuid": "3919F6F0-11CC-3281-B454-E308ACA8B8C1", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1300, + "minor_version": 36, + "revision_version": 0 + }, + { + "image_addr": 8421642240, + "image_vmaddr": 7876595712, + "image_size": 8192, + "name": "/usr/lib/libSystem.B.dylib", + "uuid": "C8734DFD-F789-3EF7-884B-AF518D6D009E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1319, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7228645376, + "image_vmaddr": 6683598848, + "image_size": 3534848, + "name": "/System/Library/Frameworks/CoreData.framework/CoreData", + "uuid": "6843123C-6E88-376B-8282-AC09FF51C135", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1244, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 7102709760, + "image_vmaddr": 6557663232, + "image_size": 4087808, + "name": "/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation", + "uuid": "FB98BD04-E2CF-31BF-BA9E-BD12CEAEFE13", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1953, + "minor_version": 255, + "revision_version": 0 + }, + { + "image_addr": 7298760704, + "image_vmaddr": 6753714176, + "image_size": 1019904, + "name": "/System/Library/Frameworks/CoreLocation.framework/CoreLocation", + "uuid": "2A296B42-101B-3BE9-B337-2A725B05DB5F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2780, + "minor_version": 0, + "revision_version": 25 + }, + { + "image_addr": 9027309568, + "image_vmaddr": 8482263040, + "image_size": 94208, + "name": "/System/Library/Frameworks/MetricKit.framework/MetricKit", + "uuid": "8993EC3F-6ACD-3CDA-8DC1-17E9FE694A2D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9057779712, + "image_vmaddr": 8512733184, + "image_size": 4096, + "name": "/System/Library/Frameworks/UIKit.framework/UIKit", + "uuid": "A3576478-3C57-348A-9469-C0C67330562D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6206, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7684452352, + "image_vmaddr": 7139405824, + "image_size": 274432, + "name": "/System/Library/Frameworks/UserNotifications.framework/UserNotifications", + "uuid": "62067F90-0095-3C25-8F7A-E8A42768C343", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8744951808, + "image_vmaddr": 8199905280, + "image_size": 4096, + "name": "/usr/lib/swift/libswiftDataDetection.dylib", + "uuid": "220B64FB-EB0D-370B-BEFF-F8E0C497E0EB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 727, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8744792064, + "image_vmaddr": 8199745536, + "image_size": 4093, + "name": "/usr/lib/swift/libswiftFileProvider.dylib", + "uuid": "F9BB3968-F084-32EE-AA3A-3CCEC5A199D8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 730, + "minor_version": 60, + "revision_version": 38 + }, + { + "image_addr": 9239728128, + "image_vmaddr": 8694681600, + "image_size": 8188, + "name": "/usr/lib/swift/libswiftMetricKit.dylib", + "uuid": "BD4378B8-7F9F-3D8F-BAA9-94A881E42889", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 6999937024, + "image_vmaddr": 6454890496, + "image_size": 5672960, + "name": "/usr/lib/swift/libswiftCore.dylib", + "uuid": "E3D0EECA-73D4-3781-BC4C-FE11385B549C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 5, + "minor_version": 7, + "revision_version": 1 + }, + { + "image_addr": 7890931712, + "image_vmaddr": 7345885184, + "image_size": 32756, + "name": "/usr/lib/swift/libswiftCoreFoundation.dylib", + "uuid": "90281A04-38C2-3F71-A1FB-3E2DDFB78C7D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 120, + "minor_version": 100, + "revision_version": 0 + }, + { + "image_addr": 8744845312, + "image_vmaddr": 8199798784, + "image_size": 4096, + "name": "/usr/lib/swift/libswiftCoreImage.dylib", + "uuid": "92814928-95C7-3E1B-AF6D-040EE873EE6D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8728649728, + "image_vmaddr": 8183603200, + "image_size": 12281, + "name": "/usr/lib/swift/libswiftCoreLocation.dylib", + "uuid": "AAA8C904-7B5B-3774-8749-4D595795D2D5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 9, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8692584448, + "image_vmaddr": 8147537920, + "image_size": 40956, + "name": "/usr/lib/swift/libswiftDarwin.dylib", + "uuid": "5C6DFE34-C9FE-370B-BE32-59D7DCC4FA9B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7245258752, + "image_vmaddr": 6700212224, + "image_size": 98296, + "name": "/usr/lib/swift/libswiftDispatch.dylib", + "uuid": "808E995E-BE7D-3E8D-838A-428C10446E99", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 17, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8728719360, + "image_vmaddr": 8183672832, + "image_size": 24563, + "name": "/usr/lib/swift/libswiftMetal.dylib", + "uuid": "9FE27A5D-C266-3AF7-B5F3-5894F2BD1CD9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 306, + "minor_version": 3, + "revision_version": 3 + }, + { + "image_addr": 7767056384, + "image_vmaddr": 7222009856, + "image_size": 16370, + "name": "/usr/lib/swift/libswiftObjectiveC.dylib", + "uuid": "A39BB68D-EF0F-3B5B-93CB-F30C7F043138", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8728748032, + "image_vmaddr": 8183701504, + "image_size": 8188, + "name": "/usr/lib/swift/libswiftQuartzCore.dylib", + "uuid": "E15B9538-0C07-39E4-9B38-5E54955DF046", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7248850944, + "image_vmaddr": 6703804416, + "image_size": 479232, + "name": "/usr/lib/swift/libswiftUIKit.dylib", + "uuid": "FF9071D9-FE4A-3CB5-8840-5EF960E2B60C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6206, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7343546368, + "image_vmaddr": 6798499840, + "image_size": 110592, + "name": "/usr/lib/swift/libswiftos.dylib", + "uuid": "D73C5E6E-DC16-3116-B93C-13FF0CF53B45", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1034, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7699828736, + "image_vmaddr": 7154782208, + "image_size": 28672, + "name": "/usr/lib/swift/libswiftCoreGraphics.dylib", + "uuid": "79326C40-3A28-3FBD-A265-3AD259F5F494", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 15, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9061621760, + "image_vmaddr": 8516575232, + "image_size": 4094, + "name": "/usr/lib/swift/libswiftFoundation.dylib", + "uuid": "D896344D-3C00-379F-8ECF-FE8CB3ADC7A3", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 120, + "minor_version": 100, + "revision_version": 0 + }, + { + "image_addr": 9072156672, + "image_vmaddr": 8527110144, + "image_size": 4096, + "name": "/usr/lib/swift/libswiftCoreData.dylib", + "uuid": "2406573C-7451-3F2C-BFFB-845870447191", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 25, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9313681408, + "image_vmaddr": 8768634880, + "image_size": 73720, + "name": "/usr/lib/libz.1.dylib", + "uuid": "3C9ACC54-1480-3DA0-B610-A5582B44FACE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 2, + "revision_version": 11 + }, + { + "image_addr": 7126474752, + "image_vmaddr": 6581428224, + "image_size": 3534848, + "name": "/System/Library/Frameworks/QuartzCore.framework/QuartzCore", + "uuid": "8402973D-62D0-3612-94E6-16F326902D2D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 11, + "revision_version": 0 + }, + { + "image_addr": 7272476672, + "image_vmaddr": 6727430144, + "image_size": 520180, + "name": "/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration", + "uuid": "420FA60E-6887-31AD-863F-F3D7DC456BE6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1241, + "minor_version": 60, + "revision_version": 3 + }, + { + "image_addr": 9075372032, + "image_vmaddr": 8530325504, + "image_size": 24572, + "name": "/usr/lib/system/libcache.dylib", + "uuid": "9E4C0BF8-E5FA-323C-AE2B-2AC409BB4169", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 90, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8420151296, + "image_vmaddr": 7875104768, + "image_size": 53244, + "name": "/usr/lib/system/libcommonCrypto.dylib", + "uuid": "4AFEA8A5-3328-3A50-B10E-837BD3C598B4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 60198, + "minor_version": 60, + "revision_version": 2 + }, + { + "image_addr": 8420347904, + "image_vmaddr": 7875301376, + "image_size": 16380, + "name": "/usr/lib/system/libcompiler_rt.dylib", + "uuid": "8F3B18FB-3775-308A-851E-00891292C60E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 103, + "minor_version": 1, + "revision_version": 0 + }, + { + "image_addr": 8420114432, + "image_vmaddr": 7875067904, + "image_size": 36860, + "name": "/usr/lib/system/libcopyfile.dylib", + "uuid": "0BEE745D-03C4-3F36-B3F4-B9C0023E3E1E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8420450304, + "image_vmaddr": 7875403776, + "image_size": 561132, + "name": "/usr/lib/system/libcorecrypto.dylib", + "uuid": "77F3650A-2784-3F51-A92B-00DC780DE460", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1386, + "minor_version": 60, + "revision_version": 5 + }, + { + "image_addr": 7226519552, + "image_vmaddr": 6681473024, + "image_size": 290816, + "name": "/usr/lib/system/libdispatch.dylib", + "uuid": "7F5305B9-A9D6-393E-9D4F-CEFD318D0F85", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1412, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7668965376, + "image_vmaddr": 7123918848, + "image_size": 143352, + "name": "/usr/lib/system/libdyld.dylib", + "uuid": "77BE1613-0536-33B3-9971-003AEBB612BC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9212162048, + "image_vmaddr": 8667115520, + "image_size": 24568, + "name": "/usr/lib/system/libmacho.dylib", + "uuid": "4F23F0E4-AFD6-3CF3-8391-C1F9CC7B4C76", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1001, + "minor_version": 2, + "revision_version": 0 + }, + { + "image_addr": 9075085312, + "image_vmaddr": 8530038784, + "image_size": 12288, + "name": "/usr/lib/system/libremovefile.dylib", + "uuid": "B68584DB-9599-3328-B6BB-0AA443BC4BF1", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 63, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8410468352, + "image_vmaddr": 7865421824, + "image_size": 98296, + "name": "/usr/lib/system/libsystem_asl.dylib", + "uuid": "2EA05356-4A8B-312B-B6BF-70FB5290A4CD", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 395, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8421011456, + "image_vmaddr": 7875964928, + "image_size": 20475, + "name": "/usr/lib/system/libsystem_blocks.dylib", + "uuid": "B079ACC8-133C-3F16-A7F5-9471A0CB115C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 84, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7226810368, + "image_vmaddr": 6681763840, + "image_size": 524280, + "name": "/usr/lib/system/libsystem_c.dylib", + "uuid": "872A3077-A853-3D82-BCF4-D2B35D9C8D93", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1534, + "minor_version": 40, + "revision_version": 2 + }, + { + "image_addr": 9271627776, + "image_vmaddr": 8726581248, + "image_size": 20476, + "name": "/usr/lib/system/libsystem_collections.dylib", + "uuid": "A4787C1A-C552-35BD-8A87-D0A3FD18A139", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1534, + "minor_version": 40, + "revision_version": 2 + }, + { + "image_addr": 8421576704, + "image_vmaddr": 7876530176, + "image_size": 20476, + "name": "/usr/lib/system/libsystem_configuration.dylib", + "uuid": "87AA5A56-632C-3239-8F9A-5AE55087EC1E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1241, + "minor_version": 60, + "revision_version": 3 + }, + { + "image_addr": 8188010496, + "image_vmaddr": 7642963968, + "image_size": 204800, + "name": "/usr/lib/system/libsystem_containermanager.dylib", + "uuid": "53ED7AB0-F804-30AB-9620-6D18576429D8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7227334656, + "image_vmaddr": 6682288128, + "image_size": 12284, + "name": "/usr/lib/system/libsystem_coreservices.dylib", + "uuid": "F648EB18-3B55-3609-A1FD-3A1FA4EB8281", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 129, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8421597184, + "image_vmaddr": 7876550656, + "image_size": 45056, + "name": "/usr/lib/system/libsystem_darwin.dylib", + "uuid": "28513438-1492-35C1-95D8-187DAA4DBC93", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8420384768, + "image_vmaddr": 7875338240, + "image_size": 36864, + "name": "/usr/lib/system/libsystem_dnssd.dylib", + "uuid": "9E07228F-7CA1-3AA8-B01A-ECE803E4B9F3", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1790, + "minor_version": 60, + "revision_version": 24 + }, + { + "image_addr": 8145559552, + "image_vmaddr": 7600513024, + "image_size": 12284, + "name": "/usr/lib/system/libsystem_featureflags.dylib", + "uuid": "82974BFB-73D8-3D35-9C57-7B6972FA67D6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 71, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7345070080, + "image_vmaddr": 6800023552, + "image_size": 155648, + "name": "/usr/lib/system/libsystem_info.dylib", + "uuid": "BAF0A5DB-4A7F-3790-8781-5E2C48194832", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8421081088, + "image_vmaddr": 7876034560, + "image_size": 229352, + "name": "/usr/lib/system/libsystem_m.dylib", + "uuid": "7FAF6F58-517D-34E4-951A-53B96926E519", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3226, + "minor_version": 0, + "revision_version": 1 + }, + { + "image_addr": 7343398912, + "image_vmaddr": 6798352384, + "image_size": 147456, + "name": "/usr/lib/system/libsystem_malloc.dylib", + "uuid": "D583161F-E37C-311E-A3EB-9CA5B4AC578A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 409, + "minor_version": 60, + "revision_version": 4 + }, + { + "image_addr": 7495409664, + "image_vmaddr": 6950363136, + "image_size": 114676, + "name": "/usr/lib/system/libsystem_networkextension.dylib", + "uuid": "63AECBCC-A313-363E-9B7A-1F24AA8BB0B2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7736672256, + "image_vmaddr": 7191625728, + "image_size": 45048, + "name": "/usr/lib/system/libsystem_notify.dylib", + "uuid": "13CD57C8-F279-3CB0-A7E9-0443B3236DBA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 306, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8420364288, + "image_vmaddr": 7875317760, + "image_size": 20468, + "name": "/usr/lib/system/libsystem_sandbox.dylib", + "uuid": "2B6DF560-412B-308C-AF2D-285465222A1A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1845, + "minor_version": 60, + "revision_version": 8 + }, + { + "image_addr": 8145317888, + "image_vmaddr": 7600271360, + "image_size": 241652, + "name": "/usr/lib/system/libsystem_kernel.dylib", + "uuid": "96473C26-5219-3DE9-87C2-02B9C4CBAF39", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 8792, + "minor_version": 60, + "revision_version": 51 + }, + { + "image_addr": 8420421632, + "image_vmaddr": 7875375104, + "image_size": 28660, + "name": "/usr/lib/system/libsystem_platform.dylib", + "uuid": "B94924B8-8290-38C4-8F83-3F0DE8542C14", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 288, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8421031936, + "image_vmaddr": 7875985408, + "image_size": 49152, + "name": "/usr/lib/system/libsystem_pthread.dylib", + "uuid": "7F4C3946-4F85-3BB7-B08D-05F2FA4AE964", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 514, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8096763904, + "image_vmaddr": 7551717376, + "image_size": 36856, + "name": "/usr/lib/system/libsystem_symptoms.dylib", + "uuid": "9A5471D8-7E10-31D5-84FC-A1BC9E0ECC78", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7494369280, + "image_vmaddr": 6949322752, + "image_size": 106496, + "name": "/usr/lib/system/libsystem_trace.dylib", + "uuid": "F7714C31-A962-33CF-A14D-5706B274D00A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1406, + "minor_version": 0, + "revision_version": 15 + }, + { + "image_addr": 8420302848, + "image_vmaddr": 7875256320, + "image_size": 45056, + "name": "/usr/lib/system/libunwind.dylib", + "uuid": "8430DFCC-6C7B-3619-84AE-781DE2FAA58F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 202, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 8421310464, + "image_vmaddr": 7876263936, + "image_size": 266240, + "name": "/usr/lib/system/libxpc.dylib", + "uuid": "6CCE8B9A-1DAA-3E9B-B604-31098593EF33", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2462, + "minor_version": 60, + "revision_version": 14 + }, + { + "image_addr": 8420204544, + "image_vmaddr": 7875158016, + "image_size": 98300, + "name": "/usr/lib/libc++abi.dylib", + "uuid": "94CAB44E-88C8-3105-B294-B4A84CB37CF5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1300, + "minor_version": 36, + "revision_version": 0 + }, + { + "image_addr": 7592939520, + "image_vmaddr": 7047892992, + "image_size": 299008, + "name": "/System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout", + "uuid": "85779EDD-7775-3AD1-9187-859DE7DC32E5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 29, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8691630080, + "image_vmaddr": 8146583552, + "image_size": 839620, + "name": "/usr/lib/libcompression.dylib", + "uuid": "273543EC-7975-3C35-A7D3-8E8F71568815", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7121158144, + "image_vmaddr": 6576111616, + "image_size": 3973120, + "name": "/System/Library/Frameworks/CFNetwork.framework/CFNetwork", + "uuid": "BCB4A944-3FF3-3CC3-B2F9-546B6D632301", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1402, + "minor_version": 0, + "revision_version": 5 + }, + { + "image_addr": 8366325760, + "image_vmaddr": 7821279232, + "image_size": 552948, + "name": "/usr/lib/libarchive.2.dylib", + "uuid": "3536ACEE-F471-37B4-B958-66EC18A0D052", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 9, + "minor_version": 2, + "revision_version": 0 + }, + { + "image_addr": 7249330176, + "image_vmaddr": 6704283648, + "image_size": 2822144, + "name": "/usr/lib/libicucore.A.dylib", + "uuid": "554ABBE3-39F7-3DF2-8B43-E66A8426DDEF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 70, + "minor_version": 1, + "revision_version": 0 + }, + { + "image_addr": 7757815808, + "image_vmaddr": 7212769280, + "image_size": 970740, + "name": "/usr/lib/libxml2.2.dylib", + "uuid": "DD140B09-99ED-3641-898A-7E7876A9779C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 10, + "minor_version": 9, + "revision_version": 0 + }, + { + "image_addr": 8692477952, + "image_vmaddr": 8147431424, + "image_size": 8192, + "name": "/usr/lib/liblangid.dylib", + "uuid": "BE110698-4CDD-33B7-BF1A-F18FA12B317B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7236509696, + "image_vmaddr": 6691463168, + "image_size": 774144, + "name": "/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit", + "uuid": "DE4734D2-FF9C-3181-9F4F-320480E230BA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 275, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7245357056, + "image_vmaddr": 6700310528, + "image_size": 1376248, + "name": "/System/Library/Frameworks/Combine.framework/Combine", + "uuid": "0840D070-2661-3DED-8049-2A079B2C99E1", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 310, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9331449856, + "image_vmaddr": 8786403328, + "image_size": 4092, + "name": "/System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking", + "uuid": "FBC633A1-23D9-3F69-A474-101F4E596C5A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 44, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8691445760, + "image_vmaddr": 8146399232, + "image_size": 49152, + "name": "/usr/lib/swift/libswiftXPC.dylib", + "uuid": "20260FB2-19DA-358F-8026-83A160D70932", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7274577920, + "image_vmaddr": 6729531392, + "image_size": 372728, + "name": "/usr/lib/swift/libswift_Concurrency.dylib", + "uuid": "E8A871CE-C094-3EB6-BFAC-E6D15FFE75E8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 5, + "minor_version": 7, + "revision_version": 1 + }, + { + "image_addr": 8371253248, + "image_vmaddr": 7826206720, + "image_size": 720892, + "name": "/usr/lib/swift/libswift_StringProcessing.dylib", + "uuid": "360EE16F-34A9-3406-AB95-E42464F51A08", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7005609984, + "image_vmaddr": 6460563456, + "image_size": 208896, + "name": "/System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal", + "uuid": "0348F150-4999-3374-9EEB-B67ED82E14FD", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 483, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9246560256, + "image_vmaddr": 8701513728, + "image_size": 102388, + "name": "/usr/lib/liblzma.5.dylib", + "uuid": "F5839732-2747-303B-8E5B-4273F623D697", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 7234883584, + "image_vmaddr": 6689837056, + "image_size": 1626112, + "name": "/System/Library/Frameworks/Security.framework/Security", + "uuid": "1ABFE211-E145-3935-A5F7-4EC64E1AC086", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 60420, + "minor_version": 60, + "revision_version": 18 + }, + { + "image_addr": 8692486144, + "image_vmaddr": 8147439616, + "image_size": 98300, + "name": "/usr/lib/libapple_nghttp2.dylib", + "uuid": "F3647B6A-5C48-3992-84DD-FCFABAD071AA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 47, + "revision_version": 0 + }, + { + "image_addr": 9075425280, + "image_vmaddr": 8530378752, + "image_size": 4096, + "name": "/usr/lib/libnetwork.dylib", + "uuid": "7907E9DD-568B-3B69-BC63-C752F1DFB711", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7716298752, + "image_vmaddr": 7171252224, + "image_size": 1703932, + "name": "/usr/lib/libsqlite3.dylib", + "uuid": "DE69D6CF-65DC-3869-BFD6-019706F139CE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 346, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7106797568, + "image_vmaddr": 6561751040, + "image_size": 14360576, + "name": "/System/Library/Frameworks/Network.framework/Network", + "uuid": "437DA3E4-8B93-3E6C-ABD3-378E9723FA37", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8692469760, + "image_vmaddr": 8147423232, + "image_size": 8192, + "name": "/usr/lib/libenergytrace.dylib", + "uuid": "9762F770-0EFA-36C3-9810-A30679DF2364", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8002478080, + "image_vmaddr": 7457431552, + "image_size": 69632, + "name": "/usr/lib/libbsm.0.dylib", + "uuid": "50BF596F-9107-3E53-BB21-59E2405BD71F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8691593216, + "image_vmaddr": 8146546688, + "image_size": 36864, + "name": "/usr/lib/libCoreEntitlements.dylib", + "uuid": "ABD48A0E-493A-3EF6-BBE4-775D5999D2D0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8421650432, + "image_vmaddr": 7876603904, + "image_size": 167936, + "name": "/System/Library/PrivateFrameworks/MessageSecurity.framework/MessageSecurity", + "uuid": "22DB4DE5-13ED-377F-AEE6-BE4EFFDA9725", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7626768384, + "image_vmaddr": 7081721856, + "image_size": 106496, + "name": "/System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer", + "uuid": "5468EBA0-8987-39D7-A44A-7C4228CD12F4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 294, + "minor_version": 30, + "revision_version": 6 + }, + { + "image_addr": 8691494912, + "image_vmaddr": 8146448384, + "image_size": 98300, + "name": "/usr/lib/libcoretls.dylib", + "uuid": "50373784-1961-37B0-8A8C-EB4C9261FC82", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 183, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9272012800, + "image_vmaddr": 8726966272, + "image_size": 8192, + "name": "/usr/lib/libcoretls_cfhelpers.dylib", + "uuid": "5BD43C59-4DB5-3935-88CF-04CE26CBA80F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 183, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7489687552, + "image_vmaddr": 6944641024, + "image_size": 466944, + "name": "/usr/lib/libMobileGestalt.dylib", + "uuid": "759C8F09-8169-3564-87EA-6DCB1439CCB9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8690675712, + "image_vmaddr": 8145629184, + "image_size": 24572, + "name": "/usr/lib/libheimdal-asn1.dylib", + "uuid": "937674C9-3372-3BE0-B879-0721F4D4F9B6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8421818368, + "image_vmaddr": 7876771840, + "image_size": 217080, + "name": "/usr/lib/libpcap.A.dylib", + "uuid": "9E33D474-69D3-380A-95E4-3081A02B22D4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8422035456, + "image_vmaddr": 7876988928, + "image_size": 40953, + "name": "/usr/lib/libdns_services.dylib", + "uuid": "DEB447D6-3290-3151-8F10-B1EFA01E38AF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7815962624, + "image_vmaddr": 7270916096, + "image_size": 57344, + "name": "/System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer", + "uuid": "6D4CA45B-07F9-363D-B513-AF2B0B74A069", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7613091840, + "image_vmaddr": 7068045312, + "image_size": 90112, + "name": "/System/Library/Frameworks/IOSurface.framework/IOSurface", + "uuid": "F12E1B87-789D-3234-94AF-5B514DBC57A3", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8692625408, + "image_vmaddr": 8147578880, + "image_size": 53248, + "name": "/usr/lib/libbz2.1.0.dylib", + "uuid": "BA29AE7E-FCA7-39FC-A57A-6E7D1461AD3A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 8 + }, + { + "image_addr": 8689680384, + "image_vmaddr": 8144633856, + "image_size": 995316, + "name": "/usr/lib/libiconv.2.dylib", + "uuid": "FFEEAD45-37AF-38FB-A784-1F3E21CCF225", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 7, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8691441664, + "image_vmaddr": 8146395136, + "image_size": 4096, + "name": "/usr/lib/libcharset.1.dylib", + "uuid": "85CB7383-D295-3F26-8E01-6DD28745993E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8690700288, + "image_vmaddr": 8145653760, + "image_size": 741364, + "name": "/usr/lib/swift/libswift_RegexParser.dylib", + "uuid": "E55693C5-22BE-3246-98DC-11CBA4F9A7A6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715046912, + "image_vmaddr": 8170000384, + "image_size": 4096, + "name": "/System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics", + "uuid": "CB090E08-D9F8-37D6-A841-9D7E2C20148C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 91, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715227136, + "image_vmaddr": 8170180608, + "image_size": 12284, + "name": "/usr/lib/libapp_launch_measurement.dylib", + "uuid": "F89A4C07-5FD0-3D2D-8D03-03E605DF8800", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7613181952, + "image_vmaddr": 7068135424, + "image_size": 184320, + "name": "/System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics", + "uuid": "A41B07B2-F23B-3891-B38B-C652F7662934", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713203712, + "image_vmaddr": 8168157184, + "image_size": 57344, + "name": "/usr/lib/libperfcheck.dylib", + "uuid": "2104DCB8-3E28-3CDF-983C-99DDA86A8630", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7883755520, + "image_vmaddr": 7338708992, + "image_size": 53248, + "name": "/System/Library/PrivateFrameworks/perfdata.framework/perfdata", + "uuid": "F54CA785-40C7-31E3-B577-CB2C687ABFA1", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 94, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713261056, + "image_vmaddr": 8168214528, + "image_size": 36860, + "name": "/usr/lib/libIOReport.dylib", + "uuid": "22AE95F3-6118-3EEC-9F80-BC3F8EF3248F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8692678656, + "image_vmaddr": 8147632128, + "image_size": 151552, + "name": "/System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce", + "uuid": "9445CE3A-18F0-3F4D-A08D-C7E9C3E3499D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7743365120, + "image_vmaddr": 7198318592, + "image_size": 81920, + "name": "/System/Library/PrivateFrameworks/HangTracer.framework/HangTracer", + "uuid": "9DCE0CB8-29A5-305C-ABD9-A2F28EBE2903", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 230, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715014144, + "image_vmaddr": 8169967616, + "image_size": 32768, + "name": "/System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing", + "uuid": "BEED7EEA-8A6B-3E1C-A68B-3C00E4D97AA4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8086278144, + "image_vmaddr": 7541231616, + "image_size": 98304, + "name": "/System/Library/PrivateFrameworks/libEDR.framework/libEDR", + "uuid": "A5DB557F-7E28-3CA8-82CC-E15BC45EBA93", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7328456704, + "image_vmaddr": 6783410176, + "image_size": 352256, + "name": "/System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices", + "uuid": "6024BE15-3680-389A-B5CD-8766BC017A8D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 60, + "revision_version": 5 + }, + { + "image_addr": 9049878528, + "image_vmaddr": 8504832000, + "image_size": 4096, + "name": "/System/Library/Frameworks/Accelerate.framework/Accelerate", + "uuid": "8BE2ED06-BFA3-3150-89C1-3B666F6D3FAC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 4, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8245174272, + "image_vmaddr": 7700127744, + "image_size": 86016, + "name": "/System/Library/PrivateFrameworks/DiagnosticRequest.framework/DiagnosticRequest", + "uuid": "CA3ACE34-6670-3F00-B949-16743786DD20", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7131860992, + "image_vmaddr": 6586814464, + "image_size": 6348788, + "name": "/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics", + "uuid": "C0A89DCA-3E30-3A39-95A9-275BA86825A9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1690, + "minor_version": 3, + "revision_version": 1 + }, + { + "image_addr": 7130009600, + "image_vmaddr": 6584963072, + "image_size": 1851392, + "name": "/System/Library/Frameworks/CoreText.framework/CoreText", + "uuid": "9C205476-4E0A-3053-A622-2390EC2D5C6F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7581634560, + "image_vmaddr": 7036588032, + "image_size": 286720, + "name": "/System/Library/Frameworks/CoreVideo.framework/CoreVideo", + "uuid": "E5E2250D-6D75-3149-9564-8EEC4CD0985D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 5, + "revision_version": 0 + }, + { + "image_addr": 7189815296, + "image_vmaddr": 6644768768, + "image_size": 4841472, + "name": "/System/Library/Frameworks/ImageIO.framework/ImageIO", + "uuid": "F7401F36-9070-34D5-8194-54B0C9B4AD59", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8712421376, + "image_vmaddr": 8167374848, + "image_size": 16384, + "name": "/System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator", + "uuid": "94FB62B1-1881-329D-8872-2288FC3496B5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7015821312, + "image_vmaddr": 6470774784, + "image_size": 1867776, + "name": "/System/Library/Frameworks/Metal.framework/Metal", + "uuid": "85AE8FD2-045B-3F83-BD2D-0DFCA189A3E2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 306, + "minor_version": 3, + "revision_version": 3 + }, + { + "image_addr": 8715051008, + "image_vmaddr": 8170004480, + "image_size": 40960, + "name": "/System/Library/Frameworks/OpenGLES.framework/OpenGLES", + "uuid": "A3354BFA-DC36-3438-B1DA-880931C248A5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7527600128, + "image_vmaddr": 6982553600, + "image_size": 159744, + "name": "/System/Library/PrivateFrameworks/PowerLog.framework/PowerLog", + "uuid": "0051D9D5-81FC-3F53-8EC8-00EE74CC3EDB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7227346944, + "image_vmaddr": 6682300416, + "image_size": 8192, + "name": "/System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary", + "uuid": "4922AA4C-AB90-3462-93D1-A41D4A83F23B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7017689088, + "image_vmaddr": 6472642560, + "image_size": 2043904, + "name": "/System/Library/Frameworks/CoreServices.framework/CoreServices", + "uuid": "22956E2A-6884-339E-ABAD-9CEAC84BDED0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1228, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7849701376, + "image_vmaddr": 7304654848, + "image_size": 798720, + "name": "/System/Library/PrivateFrameworks/InstalledContentLibrary.framework/InstalledContentLibrary", + "uuid": "10461BEC-F229-37D5-B910-6360A5C89DDC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7614418944, + "image_vmaddr": 7069372416, + "image_size": 229376, + "name": "/System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore", + "uuid": "A391B517-659B-394E-8D87-187238FD71A4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1141, + "minor_version": 1, + "revision_version": 0 + }, + { + "image_addr": 8693215232, + "image_vmaddr": 8148168704, + "image_size": 24576, + "name": "/System/Library/PrivateFrameworks/AppleMobileFileIntegrity.framework/AppleMobileFileIntegrity", + "uuid": "A7DA00EF-D805-3D66-9072-053D8072B94C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8693239808, + "image_vmaddr": 8148193280, + "image_size": 81920, + "name": "/usr/lib/libmis.dylib", + "uuid": "9695F16F-F088-3265-9498-D7C056FB9F15", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8693321728, + "image_vmaddr": 8148275200, + "image_size": 28672, + "name": "/System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices", + "uuid": "BE8C5DC7-573B-3752-95C6-6683CBC565CE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7813681152, + "image_vmaddr": 7268634624, + "image_size": 1675264, + "name": "/System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness", + "uuid": "1A0C57C6-80BD-3589-AB29-1842344B64EC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7294349312, + "image_vmaddr": 6749302784, + "image_size": 208896, + "name": "/usr/lib/libAccessibility.dylib", + "uuid": "C5CB486B-0323-36D8-BC73-721BA27EDA33", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8237031424, + "image_vmaddr": 7691984896, + "image_size": 32768, + "name": "/System/Library/PrivateFrameworks/AFKUser.framework/AFKUser", + "uuid": "AEDA8846-47C5-3931-8A8C-76B3E9EBBA37", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7743447040, + "image_vmaddr": 7198400512, + "image_size": 245760, + "name": "/System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories", + "uuid": "5BF66130-5996-30CD-84B8-EBB8E8DC1985", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715124736, + "image_vmaddr": 8170078208, + "image_size": 61440, + "name": "/System/Library/PrivateFrameworks/SystemWake.framework/SystemWake", + "uuid": "F67D63A1-0404-3016-9C5C-A5CDA5867429", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8237924352, + "image_vmaddr": 7692877824, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/CPMS.framework/CPMS", + "uuid": "1C65EF79-A0C9-32E9-BD53-C6419C22CC9C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7288549376, + "image_vmaddr": 6743502848, + "image_size": 565248, + "name": "/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices", + "uuid": "BB8B1A9F-2572-3FB2-8498-91357FC09704", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9069514752, + "image_vmaddr": 8524468224, + "image_size": 4096, + "name": "/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices", + "uuid": "609FD7AF-C1B2-3B41-9F35-A24F5927DBDA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1228, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8086032384, + "image_vmaddr": 7540985856, + "image_size": 36864, + "name": "/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices", + "uuid": "EE18D681-97AC-3FE8-BA47-8613EA5C5BD6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 14, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8237064192, + "image_vmaddr": 7692017664, + "image_size": 69632, + "name": "/System/Library/PrivateFrameworks/HID.framework/HID", + "uuid": "D8BCAA49-77D0-3C69-A28E-8AA5EDE0B49A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7227908096, + "image_vmaddr": 6682861568, + "image_size": 737280, + "name": "/System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard", + "uuid": "727D7804-2767-3204-A0C3-3B704B52041E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7758786560, + "image_vmaddr": 7213740032, + "image_size": 1433600, + "name": "/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib", + "uuid": "9EB67833-83E4-3CED-97C8-4D6DC112AD6A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8712437760, + "image_vmaddr": 8167391232, + "image_size": 45052, + "name": "/System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib", + "uuid": "D30D46AE-E2F1-3C1B-A08C-EDF5150994FB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7194656768, + "image_vmaddr": 6649610240, + "image_size": 3420128, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage", + "uuid": "2BAD4817-BD73-3111-9929-562900AFBB9F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 575, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9081102336, + "image_vmaddr": 8536055808, + "image_size": 4096, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib", + "uuid": "0D97514A-7DF0-334A-AE99-BFAD5DA8C6C7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 818, + "minor_version": 60, + "revision_version": 3 + }, + { + "image_addr": 9357586432, + "image_vmaddr": 8812539904, + "image_size": 380908, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib", + "uuid": "9BEC2231-F5AC-38B5-8722-6B2A29EBD9F9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 818, + "minor_version": 60, + "revision_version": 3 + }, + { + "image_addr": 8697090048, + "image_vmaddr": 8152043520, + "image_size": 962556, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib", + "uuid": "C22F7DCA-9ACC-3146-8A62-5513384DE1AA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8694063104, + "image_vmaddr": 8149016576, + "image_size": 2863100, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib", + "uuid": "74C625DC-8346-3EAC-B457-F187A077CB4B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8698052608, + "image_vmaddr": 8153006080, + "image_size": 5062628, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib", + "uuid": "1046764B-7923-398B-8FB1-555D45BC6C1D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8697004032, + "image_vmaddr": 8151957504, + "image_size": 86016, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib", + "uuid": "B8B76189-2F0F-349D-ABD2-9F0909256DD7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8696926208, + "image_vmaddr": 8151879680, + "image_size": 77824, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib", + "uuid": "67F57FFF-BF48-30F5-A822-1DFC00ACF242", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9321758720, + "image_vmaddr": 8776712192, + "image_size": 20476, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib", + "uuid": "86B33826-E9F9-3938-80A9-D544D3DE71CC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8705998848, + "image_vmaddr": 8160952320, + "image_size": 6131688, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib", + "uuid": "89F5C08F-540C-3258-82B6-C72758D6561A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8693641216, + "image_vmaddr": 8148594688, + "image_size": 421880, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib", + "uuid": "E207854C-4D23-32F9-BD78-11609A7744F8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8703115264, + "image_vmaddr": 8158068736, + "image_size": 2883584, + "name": "/System/Library/PrivateFrameworks/MIL.framework/MIL", + "uuid": "E90CD905-B9CE-3F03-814E-C3A24D3308DC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 4, + "minor_version": 28, + "revision_version": 4 + }, + { + "image_addr": 8712130560, + "image_vmaddr": 8167084032, + "image_size": 290808, + "name": "/System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG", + "uuid": "E94733BD-2373-3068-BFBD-D6A63973EECA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9053429760, + "image_vmaddr": 8508383232, + "image_size": 110588, + "name": "/usr/lib/libexpat.1.dylib", + "uuid": "41F83F59-7953-3E91-918C-4A6CEA9AC2E9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 8, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7244423168, + "image_vmaddr": 6699376640, + "image_size": 835580, + "name": "/System/Library/Frameworks/ColorSync.framework/ColorSync", + "uuid": "0060BB8B-4F11-3D45-AC22-F7BE584C3AE9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8712482816, + "image_vmaddr": 8167436288, + "image_size": 598016, + "name": "/usr/lib/libate.dylib", + "uuid": "C951FDAF-0B26-32F2-B8C0-F781A1CFB3DC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3, + "minor_version": 0, + "revision_version": 7 + }, + { + "image_addr": 7883509760, + "image_vmaddr": 7338463232, + "image_size": 28668, + "name": "/System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator", + "uuid": "18C66DE2-AA65-3C0D-9B43-F364048B6B3C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8693350400, + "image_vmaddr": 8148303872, + "image_size": 290816, + "name": "/usr/lib/libllvm-flatbuffers.dylib", + "uuid": "B16F6937-8F87-3BB4-AD62-2CB6DBE659AB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9075396608, + "image_vmaddr": 8530350080, + "image_size": 28664, + "name": "/System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib", + "uuid": "50ADB9C7-D88A-3170-84D3-55C80F8891A9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9261887488, + "image_vmaddr": 8716840960, + "image_size": 20480, + "name": "/System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libGPUCompilerUtils.dylib", + "uuid": "AF0240CF-E4FB-3981-A2FF-5AA8BCC50FB2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 31001, + "minor_version": 255, + "revision_version": 1 + }, + { + "image_addr": 8713793536, + "image_vmaddr": 8168747008, + "image_size": 36864, + "name": "/System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices", + "uuid": "FEB901DF-1094-306A-8DB0-BF6059239796", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7476764672, + "image_vmaddr": 6931718144, + "image_size": 352256, + "name": "/System/Library/PrivateFrameworks/BoardServices.framework/BoardServices", + "uuid": "FB50F165-00A5-38B8-9893-FBAB7B8EB0EB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7476080640, + "image_vmaddr": 6931034112, + "image_size": 684032, + "name": "/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices", + "uuid": "1E697AFA-FDA9-37C1-828A-40A1BCF4D009", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7227355136, + "image_vmaddr": 6682308608, + "image_size": 552960, + "name": "/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices", + "uuid": "540F736D-F791-3E94-873F-BE0FA92E7F13", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7757582336, + "image_vmaddr": 7212535808, + "image_size": 176128, + "name": "/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation", + "uuid": "1132A5E8-C571-3185-A12D-13018F4B3096", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7757758464, + "image_vmaddr": 7212711936, + "image_size": 57344, + "name": "/System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices", + "uuid": "90976B99-A07F-3DC8-8B4D-B5CEC81CE4EA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 60, + "revision_version": 5 + }, + { + "image_addr": 8713392128, + "image_vmaddr": 8168345600, + "image_size": 401404, + "name": "/System/Library/PrivateFrameworks/Bom.framework/Bom", + "uuid": "5CC990E5-4EF1-3363-BF40-02C906267B8B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 195, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713080832, + "image_vmaddr": 8168034304, + "image_size": 65508, + "name": "/System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression", + "uuid": "C2562307-F3F8-3866-9D89-22EB5D92FB3C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 145, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713830400, + "image_vmaddr": 8168783872, + "image_size": 421828, + "name": "/usr/lib/libParallelCompression.dylib", + "uuid": "707119C0-C404-3D85-A66E-E19858BC40C6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7532482560, + "image_vmaddr": 6987436032, + "image_size": 40960, + "name": "/System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib", + "uuid": "1E10E409-4146-3CAC-BC62-1B2E4646CEEB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7756640256, + "image_vmaddr": 7211593728, + "image_size": 65536, + "name": "/System/Library/PrivateFrameworks/FontServices.framework/FontServices", + "uuid": "21E4F94A-5B14-3712-8990-8517ED54A802", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9139404800, + "image_vmaddr": 8594358272, + "image_size": 262144, + "name": "/System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib", + "uuid": "9DE5C629-461D-3958-B72E-68FC3A1FAAD8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7883239424, + "image_vmaddr": 7338192896, + "image_size": 270336, + "name": "/System/Library/PrivateFrameworks/OTSVG.framework/OTSVG", + "uuid": "C5DA3411-428C-3543-89E2-BA53307DFEF2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7457591296, + "image_vmaddr": 6912544768, + "image_size": 81920, + "name": "/System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers", + "uuid": "91538C0A-7D8D-39C5-8466-B86B0F50C6FA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 709, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7289114624, + "image_vmaddr": 6744068096, + "image_size": 143360, + "name": "/System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities", + "uuid": "EFBC8CD3-6C19-36D9-A933-AF2E597D75B0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7816019968, + "image_vmaddr": 7270973440, + "image_size": 65532, + "name": "/System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility", + "uuid": "4E635EE4-C7A0-3697-B45E-2BEEB0494117", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 62, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715186176, + "image_vmaddr": 8170139648, + "image_size": 40956, + "name": "/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib", + "uuid": "16771749-7C04-332F-9224-841BC0C4AF26", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715239424, + "image_vmaddr": 8170192896, + "image_size": 241664, + "name": "/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib", + "uuid": "EC62500B-1B44-31EC-9897-84A81A832DAA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715091968, + "image_vmaddr": 8170045440, + "image_size": 8192, + "name": "/System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib", + "uuid": "422B68F1-F714-3522-8C25-B7994127D55E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715100160, + "image_vmaddr": 8170053632, + "image_size": 24572, + "name": "/System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib", + "uuid": "26B485CF-C280-367A-83CE-8D78A9A83150", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8739618816, + "image_vmaddr": 8194572288, + "image_size": 303104, + "name": "/System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager", + "uuid": "DCE0296C-385B-36D3-8969-6E0F0C73157E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 280, + "minor_version": 3, + "revision_version": 3 + }, + { + "image_addr": 7553384448, + "image_vmaddr": 7008337920, + "image_size": 1515520, + "name": "/System/Library/Frameworks/FileProvider.framework/FileProvider", + "uuid": "A7986DBB-1523-31B9-8CFA-4839DCE86022", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7138209792, + "image_vmaddr": 6593163264, + "image_size": 25067520, + "name": "/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore", + "uuid": "5F83A575-2862-390F-B15F-D06C182C43C2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6206, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7522471936, + "image_vmaddr": 6977425408, + "image_size": 1036288, + "name": "/System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet", + "uuid": "C356A7C1-A7B7-3CCC-97BC-EF5628D35724", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1852, + "minor_version": 1, + "revision_version": 2 + }, + { + "image_addr": 8317976576, + "image_vmaddr": 7772930048, + "image_size": 598016, + "name": "/System/Library/PrivateFrameworks/PrintKitUI.framework/PrintKitUI", + "uuid": "7F533E98-00FE-303C-B215-70AEAB93B3CA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 15, + "minor_version": 1, + "revision_version": 0 + }, + { + "image_addr": 7684726784, + "image_vmaddr": 7139680256, + "image_size": 331776, + "name": "/System/Library/PrivateFrameworks/IconServices.framework/IconServices", + "uuid": "4FE7A7B2-EC3C-3CDC-B4B9-CEF56AF276B0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 552, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8254009344, + "image_vmaddr": 7708962816, + "image_size": 86016, + "name": "/usr/lib/libprequelite.dylib", + "uuid": "B5AED929-E5AE-3FF6-B5A9-4D3FDC3E8F5F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 125, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8739921920, + "image_vmaddr": 8194875392, + "image_size": 192512, + "name": "/System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore", + "uuid": "2624289E-91E3-3A2A-8275-A5DF1C0D4A5E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 280, + "minor_version": 3, + "revision_version": 3 + }, + { + "image_addr": 7579295744, + "image_vmaddr": 7034249216, + "image_size": 1855488, + "name": "/System/Library/PrivateFrameworks/Sharing.framework/Sharing", + "uuid": "29DF7240-1F7B-3389-8F84-0B0BC001BE25", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1852, + "minor_version": 1, + "revision_version": 2 + }, + { + "image_addr": 7288262656, + "image_vmaddr": 6743216128, + "image_size": 286720, + "name": "/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport", + "uuid": "EEEC759B-F8B5-36E9-883E-8EE9901A0DF2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 29, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7347130368, + "image_vmaddr": 6802083840, + "image_size": 3457024, + "name": "/System/Library/Frameworks/CoreImage.framework/CoreImage", + "uuid": "5B07CF09-7944-3F76-BAAD-5EC9FE1B54F2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 5, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7272996864, + "image_vmaddr": 6727950336, + "image_size": 1581056, + "name": "/System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils", + "uuid": "1B3C61D9-EEF1-3BAC-B3D5-13932F64D81B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7274950656, + "image_vmaddr": 6729904128, + "image_size": 1277952, + "name": "/System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation", + "uuid": "DA37928B-441C-3C6E-8F7E-C182C194AA2C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 856, + "minor_version": 2, + "revision_version": 0 + }, + { + "image_addr": 8401219584, + "image_vmaddr": 7856173056, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/CollectionViewCore.framework/CollectionViewCore", + "uuid": "0F3E2B93-B9F6-34BA-8DE9-9CD3A90C19EE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8725716992, + "image_vmaddr": 8180670464, + "image_size": 36864, + "name": "/System/Library/Frameworks/PushKit.framework/PushKit", + "uuid": "D5296D8C-2D0E-380B-9D8E-B1018E4E7A6B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8730492928, + "image_vmaddr": 8185446400, + "image_size": 20480, + "name": "/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap", + "uuid": "6A11919D-9AAD-3EE4-86DF-30F584696097", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 21240, + "minor_version": 2, + "revision_version": 0 + }, + { + "image_addr": 8316239872, + "image_vmaddr": 7771193344, + "image_size": 1736704, + "name": "/System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy", + "uuid": "005188C2-EC3B-33D5-98E9-B397AA717DFB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 614, + "minor_version": 3, + "revision_version": 4 + }, + { + "image_addr": 7529656320, + "image_vmaddr": 6984609792, + "image_size": 1155072, + "name": "/System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration", + "uuid": "490D92EB-5C41-338F-AA0D-1F5E15185CC2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7799951360, + "image_vmaddr": 7254904832, + "image_size": 233472, + "name": "/System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag", + "uuid": "5D190FAC-3337-3518-B8B0-63E798DBF4F3", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7288188928, + "image_vmaddr": 6743142400, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices", + "uuid": "3A1BE799-739B-3833-B074-7917180FDDAF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7761686528, + "image_vmaddr": 7216640000, + "image_size": 217088, + "name": "/System/Library/PrivateFrameworks/BacklightServices.framework/BacklightServices", + "uuid": "AAFEAD3C-9B5A-3D92-9202-3C25612C8ABD", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8086069248, + "image_vmaddr": 7541022720, + "image_size": 40960, + "name": "/System/Library/PrivateFrameworks/StudyLog.framework/StudyLog", + "uuid": "A3F040AF-7398-32F4-B151-130924547EFC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7762497536, + "image_vmaddr": 7217451008, + "image_size": 98304, + "name": "/System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction", + "uuid": "D3B6CC84-A695-366D-BA69-7E750C2E7B8E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7686176768, + "image_vmaddr": 7141130240, + "image_size": 131072, + "name": "/System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial", + "uuid": "AC870211-C5D9-3221-A194-8CDDACC06F78", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7259291648, + "image_vmaddr": 6714245120, + "image_size": 221184, + "name": "/System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard", + "uuid": "68D080D0-D4CB-30AF-A252-5B06FEE79F0D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8730513408, + "image_vmaddr": 8185466880, + "image_size": 12288, + "name": "/System/Library/Frameworks/DataDetection.framework/DataDetection", + "uuid": "E26807DE-C0F7-39AA-89B3-732167373904", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 727, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7457423360, + "image_vmaddr": 6912376832, + "image_size": 167936, + "name": "/System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput", + "uuid": "6F782F25-B897-3D4C-BA61-F679FCBB6DAF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7651753984, + "image_vmaddr": 7106707456, + "image_size": 884736, + "name": "/System/Library/PrivateFrameworks/CMPhoto.framework/CMPhoto", + "uuid": "12252D97-6A73-3905-BE7C-D16BF94F6121", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7355129856, + "image_vmaddr": 6810083328, + "image_size": 14073856, + "name": "/System/Library/Frameworks/MediaToolbox.framework/MediaToolbox", + "uuid": "914C600C-6AC6-3C81-B4E7-ADFED0F9A399", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7494475776, + "image_vmaddr": 6949429248, + "image_size": 241664, + "name": "/System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore", + "uuid": "66B9AF8A-0868-3542-B9F2-22A244C00B32", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 727, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8716963840, + "image_vmaddr": 8171917312, + "image_size": 233472, + "name": "/System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG", + "uuid": "BFD15F77-ADB5-31DC-A9B7-B4FD8BFF9B79", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 232, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7528665088, + "image_vmaddr": 6983618560, + "image_size": 991232, + "name": "/System/Library/PrivateFrameworks/CoreUI.framework/CoreUI", + "uuid": "DBFE3697-76B8-3D1D-969D-6EF507BE24DA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 802, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7735513088, + "image_vmaddr": 7190466560, + "image_size": 458752, + "name": "/System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset", + "uuid": "6F244D09-D9E2-3AD8-A677-E908FD37A05D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8738803712, + "image_vmaddr": 8193757184, + "image_size": 319488, + "name": "/System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit", + "uuid": "CB3E34B8-956A-3565-8D86-22EC50E991FF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 38, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7878725632, + "image_vmaddr": 7333679104, + "image_size": 151552, + "name": "/System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools", + "uuid": "61A16EAA-30B9-3CDD-A3FB-2EBC7E671865", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7259512832, + "image_vmaddr": 6714466304, + "image_size": 716800, + "name": "/System/Library/PrivateFrameworks/TextInput.framework/TextInput", + "uuid": "EBD06EC0-F3DD-3A17-A578-CE2E0C657D36", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7324745728, + "image_vmaddr": 6779699200, + "image_size": 176128, + "name": "/System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices", + "uuid": "0266437D-F2E3-3470-B417-9CCC505AB554", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6206, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8251940864, + "image_vmaddr": 7706894336, + "image_size": 667648, + "name": "/System/Library/PrivateFrameworks/TextureIO.framework/TextureIO", + "uuid": "179C3FD0-3703-3786-82A0-2108814B6D46", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3, + "minor_version": 10, + "revision_version": 10 + }, + { + "image_addr": 8354725888, + "image_vmaddr": 7809679360, + "image_size": 45056, + "name": "/System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport", + "uuid": "B00B8A73-39CD-383E-A234-BE95B0309357", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 74, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7289257984, + "image_vmaddr": 6744211456, + "image_size": 2191360, + "name": "/System/Library/Frameworks/CoreMedia.framework/CoreMedia", + "uuid": "A7B88014-E6C2-3A81-BA3F-51CBC348E480", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7350587392, + "image_vmaddr": 6805540864, + "image_size": 4542464, + "name": "/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox", + "uuid": "2716506C-0561-30F7-B9B7-4F8EB674EC1A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8264261632, + "image_vmaddr": 7719215104, + "image_size": 49152, + "name": "/System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer", + "uuid": "293A73DF-27FC-3912-97A2-DE926F3755B6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8716902400, + "image_vmaddr": 8171855872, + "image_size": 4093, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders", + "uuid": "20E200F3-37E8-38CD-A86A-FE92501F2075", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 8715653120, + "image_vmaddr": 8170606592, + "image_size": 49152, + "name": "/System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore", + "uuid": "C03B0F74-EC0C-3971-A328-95387832EAE1", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714944512, + "image_vmaddr": 8169897984, + "image_size": 8192, + "name": "/System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient", + "uuid": "66C35BA5-73FE-38D5-A4BC-AA49D3BEB67F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 222, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7684407296, + "image_vmaddr": 7139360768, + "image_size": 45056, + "name": "/System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport", + "uuid": "51FE158E-FAF7-3BEE-82ED-770B1DC9B510", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7820066816, + "image_vmaddr": 7275020288, + "image_size": 6201344, + "name": "/System/Library/Frameworks/CoreAudio.framework/CoreAudio", + "uuid": "B7D94782-EE01-3B4B-A278-D613DE296950", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8692830208, + "image_vmaddr": 8147783680, + "image_size": 368628, + "name": "/System/Library/PrivateFrameworks/APFS.framework/APFS", + "uuid": "55BD714E-5E01-389B-9E76-8B71FF370A08", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8008880128, + "image_vmaddr": 7463833600, + "image_size": 163840, + "name": "/usr/lib/libtailspin.dylib", + "uuid": "D7087E45-5A47-3C8B-B0FB-79FE109EC61D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 139, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 7291449344, + "image_vmaddr": 6746402816, + "image_size": 2818048, + "name": "/System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore", + "uuid": "5A3FC30A-6B7C-35E2-A8E8-BCAF9301AD3F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7794028544, + "image_vmaddr": 7248982016, + "image_size": 40960, + "name": "/System/Library/PrivateFrameworks/CoreTime.framework/CoreTime", + "uuid": "3136D29A-B648-3443-A38B-29C63C1496AC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 311, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9213812736, + "image_vmaddr": 8668766208, + "image_size": 122876, + "name": "/System/Library/PrivateFrameworks/CoreUtilsExtras.framework/CoreUtilsExtras", + "uuid": "75D6D2ED-A74B-3778-9184-671EF18FDC06", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714457088, + "image_vmaddr": 8169410560, + "image_size": 335872, + "name": "/System/Library/PrivateFrameworks/IO80211.framework/IO80211", + "uuid": "F9887E72-7FF2-395A-BB52-C6C2787C711C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7883538432, + "image_vmaddr": 7338491904, + "image_size": 217088, + "name": "/System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi", + "uuid": "55AB6DF7-FE4A-3BFA-AB53-C68C2517C12B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8693198848, + "image_vmaddr": 8148152320, + "image_size": 16376, + "name": "/usr/lib/libutil.dylib", + "uuid": "95A43A33-4E2D-3306-B413-46EA4F7F8007", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7756705792, + "image_vmaddr": 7211659264, + "image_size": 827392, + "name": "/System/Library/PrivateFrameworks/CoreWiFi.framework/CoreWiFi", + "uuid": "DD2C8630-6F10-3B82-A8A1-EC9E7454B3BA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714792960, + "image_vmaddr": 8169746432, + "image_size": 49152, + "name": "/System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork", + "uuid": "0679C2F0-5D64-346A-B99A-80FB2C9BA8B3", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714252288, + "image_vmaddr": 8169205760, + "image_size": 204800, + "name": "/System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X", + "uuid": "0A2FC672-A5E4-3CBF-B072-871BE2A09A83", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7861739520, + "image_vmaddr": 7316692992, + "image_size": 159744, + "name": "/System/Library/PrivateFrameworks/WiFiPeerToPeer.framework/WiFiPeerToPeer", + "uuid": "57FC4921-283D-3693-9131-329BB6F637FE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7328047104, + "image_vmaddr": 6783000576, + "image_size": 409600, + "name": "/System/Library/Frameworks/ExtensionFoundation.framework/ExtensionFoundation", + "uuid": "169CB55F-D192-3AEF-90C7-3851ACA5807F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 97, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7302475776, + "image_vmaddr": 6757429248, + "image_size": 212992, + "name": "/System/Library/PrivateFrameworks/UserManagement.framework/UserManagement", + "uuid": "74BFAF12-ECFD-30CE-AE41-7F21C2EA4FB9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7592255488, + "image_vmaddr": 7047208960, + "image_size": 81906, + "name": "/System/Library/PrivateFrameworks/TCC.framework/TCC", + "uuid": "849B1624-A7A9-3842-93F6-151B57D89639", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7740567552, + "image_vmaddr": 7195521024, + "image_size": 225280, + "name": "/System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit", + "uuid": "15A8A40C-170F-31C4-A0A9-93F6691D6A3D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7125131264, + "image_vmaddr": 6580084736, + "image_size": 1343488, + "name": "/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony", + "uuid": "082EC5BD-13F3-31F8-91B1-A8A5C53E5792", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9331122176, + "image_vmaddr": 8786075648, + "image_size": 32764, + "name": "/usr/lib/libcupolicy.dylib", + "uuid": "20984F60-94B2-31A1-AFEA-C8F3E642D8ED", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7328808960, + "image_vmaddr": 6783762432, + "image_size": 565248, + "name": "/usr/lib/libTelephonyUtilDynamic.dylib", + "uuid": "091A434D-0C21-3CEA-A1AA-7AF92804C96B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7554899968, + "image_vmaddr": 7009853440, + "image_size": 122880, + "name": "/System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities", + "uuid": "65FB47DF-069A-3715-A1BD-C8DC69426CC1", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713297920, + "image_vmaddr": 8168251392, + "image_size": 28672, + "name": "/System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor", + "uuid": "8E2415C3-3DDF-3613-8D9E-2B2C8C9B87AE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7613366272, + "image_vmaddr": 7068319744, + "image_size": 299008, + "name": "/System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics", + "uuid": "864E8120-8865-3CD1-B153-27076F98A429", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7613665280, + "image_vmaddr": 7068618752, + "image_size": 753632, + "name": "/System/Library/PrivateFrameworks/Symbolication.framework/Symbolication", + "uuid": "8E31B78C-8DB4-3BB1-B61C-FB873C1F0FAF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 64556, + "minor_version": 3, + "revision_version": 1 + }, + { + "image_addr": 7800778752, + "image_vmaddr": 7255732224, + "image_size": 864244, + "name": "/System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication", + "uuid": "7A0E609B-93F8-35FC-98AB-9DB4EE4C5B3B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 64555, + "minor_version": 104, + "revision_version": 1 + }, + { + "image_addr": 7757533184, + "image_vmaddr": 7212486656, + "image_size": 49152, + "name": "/System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient", + "uuid": "C8CF640A-3519-3C43-80EB-C04ADEC2812D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713146368, + "image_vmaddr": 8168099840, + "image_size": 57344, + "name": "/System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging", + "uuid": "40853194-560C-315B-95E7-2EBB4FE016FB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713326592, + "image_vmaddr": 8168280064, + "image_size": 65536, + "name": "/usr/lib/libpartition2_dynamic.dylib", + "uuid": "F58484FA-880B-3040-B91F-547F4DCAF281", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7294267392, + "image_vmaddr": 6749220864, + "image_size": 81920, + "name": "/usr/lib/libAudioStatistics.dylib", + "uuid": "1DFF034B-BA0A-394D-97B4-F84F64E15FD4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715481088, + "image_vmaddr": 8170434560, + "image_size": 172032, + "name": "/System/Library/PrivateFrameworks/caulk.framework/caulk", + "uuid": "BED6BADD-B7D6-3DF9-8158-298D72A259F9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8263688192, + "image_vmaddr": 7718641664, + "image_size": 462848, + "name": "/System/Library/Frameworks/CoreMIDI.framework/CoreMIDI", + "uuid": "10E41DEF-5231-37C4-B824-863CF18474B9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 69, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7653322752, + "image_vmaddr": 7108276224, + "image_size": 217088, + "name": "/usr/lib/libAudioToolboxUtility.dylib", + "uuid": "3154F0E8-BDE3-3B92-891C-AD1B6A551F29", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7527174144, + "image_vmaddr": 6982127616, + "image_size": 425984, + "name": "/System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport", + "uuid": "0EFF4AD8-7CFB-3337-AF7B-38266B3C9E04", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1406, + "minor_version": 0, + "revision_version": 15 + }, + { + "image_addr": 7566618624, + "image_vmaddr": 7021572096, + "image_size": 311296, + "name": "/System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport", + "uuid": "B46DBAB6-851E-3553-B8D2-8CCAE5687F0F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 91, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8260706304, + "image_vmaddr": 7715659776, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport", + "uuid": "CCBF19C3-1C70-32EF-AC78-BEC7D5A25EA5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 71, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7741394944, + "image_vmaddr": 7196348416, + "image_size": 716800, + "name": "/System/Library/PrivateFrameworks/ktrace.framework/ktrace", + "uuid": "7F6EEE54-EC24-3820-88D7-4600B7650932", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 521, + "minor_version": 40, + "revision_version": 1 + }, + { + "image_addr": 7883808768, + "image_vmaddr": 7338762240, + "image_size": 1036288, + "name": "/System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis", + "uuid": "0FEE8663-AB70-3BCC-BBF6-FD43E9350CB7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 328, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714977280, + "image_vmaddr": 8169930752, + "image_size": 36860, + "name": "/System/Library/PrivateFrameworks/kperfdata.framework/kperfdata", + "uuid": "B03A640D-7959-35F2-9F54-35369BE37148", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8372310016, + "image_vmaddr": 7827263488, + "image_size": 28672, + "name": "/usr/lib/libdscsym.dylib", + "uuid": "BD249D85-7731-3251-9595-2019FADC7E30", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 328, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714952704, + "image_vmaddr": 8169906176, + "image_size": 24564, + "name": "/System/Library/PrivateFrameworks/kperf.framework/kperf", + "uuid": "306D4BCB-CE25-31DE-9047-18DF49C26527", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9053982720, + "image_vmaddr": 8508936192, + "image_size": 36864, + "name": "/usr/lib/libTLE.dylib", + "uuid": "79E08706-D683-3309-8C69-61F0A24A7DCB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9357578240, + "image_vmaddr": 8812531712, + "image_size": 8188, + "name": "/System/Library/PrivateFrameworks/VideoToolboxParavirtualizationSupport.framework/VideoToolboxParavirtualizationSupport", + "uuid": "ADAA5BBC-4197-3D34-BF3A-C5C7A2244A52", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7371853824, + "image_vmaddr": 6826807296, + "image_size": 2379776, + "name": "/System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience", + "uuid": "182F4DE9-D19A-3133-B82C-C0745951BC4D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8716263424, + "image_vmaddr": 8171216896, + "image_size": 475136, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore", + "uuid": "D3BBA812-EAD5-3306-81D3-FCB61199AD1B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 8715702272, + "image_vmaddr": 8170655744, + "image_size": 561152, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage", + "uuid": "7A26082D-5099-33AE-801B-01F67C7D19FD", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 9200898048, + "image_vmaddr": 8655851520, + "image_size": 2002944, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork", + "uuid": "0A19567C-8585-3EA2-B769-B84416EAE122", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 8716738560, + "image_vmaddr": 8171692032, + "image_size": 163840, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix", + "uuid": "EE7DE198-DE7C-329D-9B7C-0E2D640F6231", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 9211486208, + "image_vmaddr": 8666439680, + "image_size": 327680, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector", + "uuid": "8D99C7CD-7E24-3779-B08E-7052A9B4FBB7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 9261912064, + "image_vmaddr": 8716865536, + "image_size": 786432, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray", + "uuid": "AA4F3510-BAB9-39CC-A975-3343E84899D9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 9102376960, + "image_vmaddr": 8557330432, + "image_size": 81920, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSFunctions.framework/MPSFunctions", + "uuid": "344244DF-7EC8-3131-B0DD-9EFC3BCC0A40", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 8714842112, + "image_vmaddr": 8169795584, + "image_size": 8188, + "name": "/usr/lib/libCTGreenTeaLogger.dylib", + "uuid": "1C4316E0-EA8A-318F-BBA7-B53315F73E64", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7435681792, + "image_vmaddr": 6890635264, + "image_size": 21741568, + "name": "/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore", + "uuid": "73AFC744-EA0A-3167-A1B5-4570794F56A7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 614, + "minor_version": 3, + "revision_version": 4 + }, + { + "image_addr": 7381688320, + "image_vmaddr": 6836641792, + "image_size": 40525824, + "name": "/System/Library/PrivateFrameworks/WebCore.framework/WebCore", + "uuid": "B68311D5-CB91-3ADB-B9E6-12EC03803225", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 614, + "minor_version": 3, + "revision_version": 4 + }, + { + "image_addr": 8358768640, + "image_vmaddr": 7813722112, + "image_size": 3706880, + "name": "/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libANGLE-shared.dylib", + "uuid": "CF687636-1707-3161-A54E-64F43AFFE3C6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 614, + "minor_version": 3, + "revision_version": 4 + }, + { + "image_addr": 7015559168, + "image_vmaddr": 6470512640, + "image_size": 262144, + "name": "/System/Library/PrivateFrameworks/WebGPU.framework/WebGPU", + "uuid": "6D6C7B54-24B6-3DBA-A563-40EC5C5B94B2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 614, + "minor_version": 3, + "revision_version": 4 + }, + { + "image_addr": 8730525696, + "image_vmaddr": 8185479168, + "image_size": 8277792, + "name": "/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib", + "uuid": "238DA88E-17FE-346E-88A6-CA0E01F18B91", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 614, + "minor_version": 3, + "revision_version": 4 + }, + { + "image_addr": 7495524352, + "image_vmaddr": 6950477824, + "image_size": 2080768, + "name": "/System/Library/Frameworks/NetworkExtension.framework/NetworkExtension", + "uuid": "0956689C-ED4B-3F60-9A14-8D925EE4E7DF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8730157056, + "image_vmaddr": 8185110528, + "image_size": 36864, + "name": "/System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting", + "uuid": "809D57A4-572C-306D-8909-6BEEB8E9726E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 212, + "minor_version": 10, + "revision_version": 0 + }, + { + "image_addr": 7557668864, + "image_vmaddr": 7012622336, + "image_size": 2748416, + "name": "/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox", + "uuid": "139880A7-7D61-379B-AB9F-A3A353724F68", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1000, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714903552, + "image_vmaddr": 8169857024, + "image_size": 40953, + "name": "/System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers", + "uuid": "9D9F545F-E126-3334-90EF-EE03907A30A0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8716906496, + "image_vmaddr": 8171859968, + "image_size": 49152, + "name": "/System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter", + "uuid": "E3D0EF78-603B-3223-8CBA-F42990250BCF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8730005504, + "image_vmaddr": 8184958976, + "image_size": 151552, + "name": "/usr/lib/libnetworkextension.dylib", + "uuid": "3B08863D-C968-367B-898E-2FA9CDAB9D6C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7532175360, + "image_vmaddr": 6987128832, + "image_size": 307200, + "name": "/System/Library/PrivateFrameworks/AudioSession.framework/AudioSession", + "uuid": "A27C5201-A634-39A0-B6F8-76D02BECD606", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7819571200, + "image_vmaddr": 7274524672, + "image_size": 495616, + "name": "/System/Library/Frameworks/CoreHaptics.framework/CoreHaptics", + "uuid": "D8199E35-A658-3232-8EDD-B4C42DB87ACE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717541376, + "image_vmaddr": 8172494848, + "image_size": 229376, + "name": "/System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib", + "uuid": "D2EF1ACF-D1B4-3750-82A1-2FF13BDDDCDF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7609774080, + "image_vmaddr": 7064727552, + "image_size": 241664, + "name": "/System/Library/PrivateFrameworks/DMCUtilities.framework/DMCUtilities", + "uuid": "E6756816-0DD7-3FB6-ABB4-22AD1E5AEBF9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7581151232, + "image_vmaddr": 7036104704, + "image_size": 483328, + "name": "/System/Library/Frameworks/Accounts.framework/Accounts", + "uuid": "46F9FA7C-6BAC-34FE-A546-3F3058A457E0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8237690880, + "image_vmaddr": 7692644352, + "image_size": 57344, + "name": "/System/Library/PrivateFrameworks/DataMigration.framework/DataMigration", + "uuid": "05114963-9FFF-321E-93FF-93D30D033E73", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8259616768, + "image_vmaddr": 7714570240, + "image_size": 126976, + "name": "/System/Library/PrivateFrameworks/MDMClientLibrary.framework/MDMClientLibrary", + "uuid": "76BECEC0-04C6-3823-9AE9-2BC6FAB9D34F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714850304, + "image_vmaddr": 8169803776, + "image_size": 53248, + "name": "/usr/lib/liblockdown.dylib", + "uuid": "8EE1F04C-19D3-3F46-87F5-B413D52D133B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8264151040, + "image_vmaddr": 7719104512, + "image_size": 36864, + "name": "/System/Library/PrivateFrameworks/DEPClientLibrary.framework/DEPClientLibrary", + "uuid": "52116185-8EEC-3E00-A755-DB18412BBC79", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8730279936, + "image_vmaddr": 8185233408, + "image_size": 20480, + "name": "/System/Library/PrivateFrameworks/ContextKitCore.framework/ContextKitCore", + "uuid": "7DDF0680-E566-370A-8723-1EBD6E4901A0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8251609088, + "image_vmaddr": 7706562560, + "image_size": 131072, + "name": "/System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage", + "uuid": "FB406FB4-F481-3485-B270-18F94F913D23", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 339, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7342415872, + "image_vmaddr": 6797369344, + "image_size": 983040, + "name": "/System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP", + "uuid": "A82F7C4F-7845-3A07-9AF9-81736959D94E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 303, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8729292800, + "image_vmaddr": 8184246272, + "image_size": 376828, + "name": "/usr/lib/libmecab.dylib", + "uuid": "24797CF9-888A-3210-86C5-112585241C7B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1019, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8729669632, + "image_vmaddr": 8184623104, + "image_size": 212992, + "name": "/usr/lib/libCRFSuite.dylib", + "uuid": "34DAD487-D4D8-3363-BA0E-A84E98E3CB0F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8729280512, + "image_vmaddr": 8184233984, + "image_size": 12284, + "name": "/usr/lib/libgermantok.dylib", + "uuid": "8E41E0D4-9385-36DC-9383-A50BAAFA8601", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9366249472, + "image_vmaddr": 8821202944, + "image_size": 8188, + "name": "/usr/lib/libThaiTokenizer.dylib", + "uuid": "3550BA5D-6E1E-3D33-9484-69BD8A723D77", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717824000, + "image_vmaddr": 8172777472, + "image_size": 86013, + "name": "/System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC", + "uuid": "E0FA3BB8-A08F-3506-8705-CA328C2198B7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7756296192, + "image_vmaddr": 7211249664, + "image_size": 344064, + "name": "/System/Library/PrivateFrameworks/SoftwareUpdateCoreSupport.framework/SoftwareUpdateCoreSupport", + "uuid": "92BD3A35-566D-39C9-A5AA-0AC74E7ECBD7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717262848, + "image_vmaddr": 8172216320, + "image_size": 77824, + "name": "/System/Library/PrivateFrameworks/SoftwareUpdateCoreConnect.framework/SoftwareUpdateCoreConnect", + "uuid": "9B2B87BF-FB77-34C9-9285-C51A7536FB69", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8263430144, + "image_vmaddr": 7718383616, + "image_size": 258048, + "name": "/System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip", + "uuid": "1E241DFE-9397-3416-978A-8E1F1D59FEA0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8238440448, + "image_vmaddr": 7693393920, + "image_size": 65536, + "name": "/System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/RemoteServiceDiscovery", + "uuid": "A8195034-3313-325A-A8C5-340AA80DAB7B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 95, + "minor_version": 60, + "revision_version": 3 + }, + { + "image_addr": 8264187904, + "image_vmaddr": 7719141376, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation", + "uuid": "4686CAE8-CD77-306E-B2FC-0F6995DCD6EC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8259743744, + "image_vmaddr": 7714697216, + "image_size": 155648, + "name": "/System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication", + "uuid": "1E95BACD-E922-39F5-9B43-EC15DCB5B473", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7262629888, + "image_vmaddr": 6717583360, + "image_size": 5873664, + "name": "/System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices", + "uuid": "D5A959BC-30FE-34FB-ADC8-E4DADEDD2CA9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7345647616, + "image_vmaddr": 6800601088, + "image_size": 815104, + "name": "/System/Library/PrivateFrameworks/AuthKit.framework/AuthKit", + "uuid": "F21CD4BC-7FFE-33DE-BD35-6D8CBEEA25C2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8730193920, + "image_vmaddr": 8185147392, + "image_size": 86016, + "name": "/System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager", + "uuid": "716E5238-C38A-39B0-9A1B-453F14795201", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7740792832, + "image_vmaddr": 7195746304, + "image_size": 602112, + "name": "/System/Library/PrivateFrameworks/Rapport.framework/Rapport", + "uuid": "E32B1241-B4D8-3EF3-9BEC-CAF04EAB885F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8251502592, + "image_vmaddr": 7706456064, + "image_size": 106496, + "name": "/System/Library/PrivateFrameworks/IconFoundation.framework/IconFoundation", + "uuid": "91D4B638-CA50-3564-ACE0-AB81D98BDA29", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 552, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717197312, + "image_vmaddr": 8172150784, + "image_size": 65536, + "name": "/System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons", + "uuid": "EEB31845-9937-380D-980F-CB37C81752DB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 372, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8264310784, + "image_vmaddr": 7719264256, + "image_size": 94208, + "name": "/System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity", + "uuid": "7A127F17-19F9-3E5F-8F04-1868FACFC19B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7555022848, + "image_vmaddr": 7009976320, + "image_size": 446464, + "name": "/System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry", + "uuid": "CA928FBF-EF85-3BDB-9E1F-DA283FBED70A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7879491584, + "image_vmaddr": 7334445056, + "image_size": 225280, + "name": "/System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication", + "uuid": "5E2E6F88-A077-3387-95A0-87983C6F857A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1131, + "minor_version": 60, + "revision_version": 19 + }, + { + "image_addr": 8717488128, + "image_vmaddr": 8172441600, + "image_size": 53248, + "name": "/System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport", + "uuid": "FE89F8DB-A7D5-393D-853F-5E5F183BF05D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 103, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8716955648, + "image_vmaddr": 8171909120, + "image_size": 8192, + "name": "/System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers", + "uuid": "1951E21D-7E67-3AFD-B098-B3DB29DE25F5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8265900032, + "image_vmaddr": 7720853504, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/AAAFoundation.framework/AAAFoundation", + "uuid": "1C9E0D7D-669E-3221-8085-2A0163ADE7B0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7879716864, + "image_vmaddr": 7334670336, + "image_size": 372736, + "name": "/System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit", + "uuid": "502E1399-8079-3A01-B93C-E34389C62A9C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 602, + "minor_version": 60, + "revision_version": 5 + }, + { + "image_addr": 7878877184, + "image_vmaddr": 7333830656, + "image_size": 159744, + "name": "/System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils", + "uuid": "3754473F-B1A9-35A8-8729-86C3DE52AC71", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1131, + "minor_version": 60, + "revision_version": 19 + }, + { + "image_addr": 7861551104, + "image_vmaddr": 7316504576, + "image_size": 188416, + "name": "/System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed", + "uuid": "8C17CE44-4E25-3D15-84C9-BF9CF7DA03A7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1732, + "minor_version": 60, + "revision_version": 4 + }, + { + "image_addr": 7311499264, + "image_vmaddr": 6766452736, + "image_size": 1531904, + "name": "/System/Library/PrivateFrameworks/IDS.framework/IDS", + "uuid": "2783D622-7588-33C1-BCDE-D3994C810572", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8729894912, + "image_vmaddr": 8184848384, + "image_size": 102388, + "name": "/usr/lib/libresolv.9.dylib", + "uuid": "053715F0-1E1A-3CFA-8988-F6EED02952B0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7624581120, + "image_vmaddr": 7079534592, + "image_size": 380917, + "name": "/System/Library/Frameworks/CryptoKit.framework/CryptoKit", + "uuid": "34AF0F96-5A76-3CA5-BE56-0B3569EF1B7C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9236504576, + "image_vmaddr": 8691458048, + "image_size": 4092, + "name": "/System/Library/PrivateFrameworks/FeatureFlags.framework/FeatureFlags", + "uuid": "6264FF05-F493-3E46-AED7-808836C5AE5F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 71, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8740368384, + "image_vmaddr": 8195321856, + "image_size": 28668, + "name": "/usr/lib/swift/libswiftCompression.dylib", + "uuid": "2720DBF3-D743-313D-90DE-91ED4C84EB71", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8753197056, + "image_vmaddr": 8208150528, + "image_size": 73722, + "name": "/usr/lib/swift/libswiftExtensionFoundation.dylib", + "uuid": "CFAE9A85-7FAC-356A-AD7B-68A8E00FA6E7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 97, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7566929920, + "image_vmaddr": 7021883392, + "image_size": 524279, + "name": "/usr/lib/swift/libswiftNetwork.dylib", + "uuid": "CFC9BDCF-0773-3880-B759-7FB6167E6C40", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3013, + "minor_version": 60, + "revision_version": 39 + }, + { + "image_addr": 8141369344, + "image_vmaddr": 7596322816, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics", + "uuid": "1AE17883-BEBF-3CD1-8C11-97E0FA5D7F73", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1732, + "minor_version": 60, + "revision_version": 4 + }, + { + "image_addr": 7311007744, + "image_vmaddr": 6765961216, + "image_size": 491520, + "name": "/System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation", + "uuid": "B87A152A-5F35-3296-8D1B-EF179BFE3172", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7491973120, + "image_vmaddr": 6946926592, + "image_size": 2215936, + "name": "/System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation", + "uuid": "860DB501-598B-35A4-B701-884CE1F27ED7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7612727296, + "image_vmaddr": 7067680768, + "image_size": 364544, + "name": "/System/Library/PrivateFrameworks/FTServices.framework/FTServices", + "uuid": "4835D360-BD20-3FB1-BB62-6904AAF877DB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8260616192, + "image_vmaddr": 7715569664, + "image_size": 90112, + "name": "/System/Library/PrivateFrameworks/Engram.framework/Engram", + "uuid": "76D730F9-E8D4-3FFB-9361-030FA7BBEFCE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717352960, + "image_vmaddr": 8172306432, + "image_size": 4096, + "name": "/System/Library/PrivateFrameworks/Marco.framework/Marco", + "uuid": "E41D687F-17C0-36D6-885C-8E677B13D777", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717357056, + "image_vmaddr": 8172310528, + "image_size": 131072, + "name": "/System/Library/PrivateFrameworks/FTAWD.framework/FTAWD", + "uuid": "9029ADC4-D2B3-30AF-BC42-3684DB188F2B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8258281472, + "image_vmaddr": 7713234944, + "image_size": 24576, + "name": "/System/Library/PrivateFrameworks/CryptoKitCBridging.framework/CryptoKitCBridging", + "uuid": "4C73ADB0-A4FA-3E4D-839E-B0EE97E0245D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8725753856, + "image_vmaddr": 8180707328, + "image_size": 8187, + "name": "/usr/lib/swift/libswiftCryptoTokenKit.dylib", + "uuid": "08073E87-354D-3168-97F1-CAB6831024EC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 602, + "minor_version": 60, + "revision_version": 5 + }, + { + "image_addr": 7840178176, + "image_vmaddr": 7295131648, + "image_size": 266240, + "name": "/System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth", + "uuid": "2802DD4C-10D2-3FF5-8108-DBFC80E1BBED", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8131735552, + "image_vmaddr": 7586689024, + "image_size": 991232, + "name": "/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/DesktopServicesPriv", + "uuid": "C47ECA2D-ADEF-3D7B-87C4-A5D0E9E84126", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1545, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7198654464, + "image_vmaddr": 6653607936, + "image_size": 27865088, + "name": "/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices", + "uuid": "8C395382-4E54-3791-AD72-713981464084", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1889, + "minor_version": 32, + "revision_version": 9 + }, + { + "image_addr": 7566409728, + "image_vmaddr": 7021363200, + "image_size": 208896, + "name": "/System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport", + "uuid": "72A8A0DE-D3ED-3CF6-A789-7822EB8AF51D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2780, + "minor_version": 0, + "revision_version": 25 + }, + { + "image_addr": 7652638720, + "image_vmaddr": 7107592192, + "image_size": 684032, + "name": "/System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth", + "uuid": "F3F4539B-C4AB-3A3B-B37D-3449A6F92595", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8265973760, + "image_vmaddr": 7720927232, + "image_size": 20480, + "name": "/System/Library/PrivateFrameworks/GeoServicesCore.framework/GeoServicesCore", + "uuid": "C433662C-FCDC-3B37-BE5B-BE736FCFBBBE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1889, + "minor_version": 32, + "revision_version": 9 + }, + { + "image_addr": 8247484416, + "image_vmaddr": 7702437888, + "image_size": 532480, + "name": "/System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf", + "uuid": "E5EDCCBF-28C2-342C-A027-F6F8CF18DA0A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8744849408, + "image_vmaddr": 8199802880, + "image_size": 102400, + "name": "/System/Library/Frameworks/Accessibility.framework/Accessibility", + "uuid": "7D3D5B31-D74E-3FEA-8770-17D28030A299", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8116875264, + "image_vmaddr": 7571828736, + "image_size": 819188, + "name": "/usr/lib/swift/libswiftAccelerate.dylib", + "uuid": "69F41117-2385-3BF6-B934-F88DF897FB96", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 41, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8728756224, + "image_vmaddr": 8183709696, + "image_size": 98292, + "name": "/usr/lib/swift/libswiftsimd.dylib", + "uuid": "77F018CB-750F-313B-8916-4DDF9004F065", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 9, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 4312350720, + "image_vmaddr": 0, + "image_size": 49152, + "name": "/private/preboot/Cryptexes/OS/usr/lib/libobjc-trampolines.dylib", + "uuid": "50228E97-D295-302B-B3DC-24950F436B70", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 228, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8184983552, + "image_vmaddr": 7639937024, + "image_size": 114688, + "name": "/System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore", + "uuid": "6BC8D827-7BFC-3838-AEA3-D0A264A27205", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7811162112, + "image_vmaddr": 7266115584, + "image_size": 794624, + "name": "/usr/lib/libboringssl.dylib", + "uuid": "A25D7665-80A4-3711-9C87-5C7AA7AFA82A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8756428800, + "image_vmaddr": 8211382272, + "image_size": 442367, + "name": "/usr/lib/libusrtcp.dylib", + "uuid": "92E40B24-4B07-35D1-82A8-FCA1B51B2A99", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8757452800, + "image_vmaddr": 8212406272, + "image_size": 851968, + "name": "/usr/lib/libquic.dylib", + "uuid": "56E8A9E2-402E-3F07-81FA-92AE235936BF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9253244928, + "image_vmaddr": 8708198400, + "image_size": 102396, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib", + "uuid": "2ED77B0F-0923-353E-8616-AE840E0CFEC6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 575, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8765104128, + "image_vmaddr": 8220057600, + "image_size": 12288, + "name": "/usr/lib/log/liblog_network.dylib", + "uuid": "A261DC80-290A-301C-A95B-3CE0F3E6D6EA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7762067456, + "image_vmaddr": 7217020928, + "image_size": 430080, + "name": "/System/Library/PrivateFrameworks/Pegasus.framework/Pegasus", + "uuid": "0F637876-8928-3EE8-B84A-AF70FD67B7EA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7482789888, + "image_vmaddr": 6937743360, + "image_size": 2363392, + "name": "/System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices", + "uuid": "199008B8-071F-3B44-9143-3C834012CD4C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7607701504, + "image_vmaddr": 7062654976, + "image_size": 774144, + "name": "/System/Library/PrivateFrameworks/SAObjects.framework/SAObjects", + "uuid": "73E7C68A-1FFF-3F45-A697-1933D4F55F88", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7374233600, + "image_vmaddr": 6829187072, + "image_size": 3260416, + "name": "/System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote", + "uuid": "617EC65E-E175-3DD9-B61E-51A713B81648", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7677378560, + "image_vmaddr": 7132332032, + "image_size": 6209536, + "name": "/System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation", + "uuid": "8BA914EC-6514-3016-A76E-5F0696550069", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7546937344, + "image_vmaddr": 7001890816, + "image_size": 348160, + "name": "/System/Library/PrivateFrameworks/SiriAnalytics.framework/SiriAnalytics", + "uuid": "8EB4A545-854A-326E-93F7-04546D4F7D8B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8407908352, + "image_vmaddr": 7862861824, + "image_size": 413696, + "name": "/System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices", + "uuid": "49A1DA87-7EB3-3E46-B932-D5D7937CCEA5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7551045632, + "image_vmaddr": 7005999104, + "image_size": 372736, + "name": "/System/Library/PrivateFrameworks/MediaServices.framework/MediaServices", + "uuid": "6C14C475-80FD-39A4-9CED-D58CAED7682E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8131538944, + "image_vmaddr": 7586492416, + "image_size": 196608, + "name": "/System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection", + "uuid": "41D40AC7-9C6C-3284-83F4-981DBC4F434E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7812325376, + "image_vmaddr": 7267278848, + "image_size": 81920, + "name": "/System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger", + "uuid": "2A661192-5B90-3FE2-BD7B-FE4983B7AADF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7481356288, + "image_vmaddr": 6936309760, + "image_size": 1433600, + "name": "/System/Library/PrivateFrameworks/SiriTTSService.framework/SiriTTSService", + "uuid": "13831CCB-DA22-3CC2-BFB0-D04C7B3DB717", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7491522560, + "image_vmaddr": 6946476032, + "image_size": 450560, + "name": "/System/Library/PrivateFrameworks/Trial.framework/Trial", + "uuid": "2DB19EDB-6A32-34D7-89C4-B063FE0F3C0C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8410591232, + "image_vmaddr": 7865544704, + "image_size": 9523200, + "name": "/System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS", + "uuid": "C069B1ED-5E7A-3E73-8861-4D33ED4D0EAB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8728743936, + "image_vmaddr": 8183697408, + "image_size": 4096, + "name": "/System/Library/Frameworks/AVFoundation.framework/AVFoundation", + "uuid": "2BAF6DAD-EAC8-31BF-8AE5-D4298E255DFE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7490154496, + "image_vmaddr": 6945107968, + "image_size": 1368064, + "name": "/System/Library/Frameworks/AVFAudio.framework/AVFAudio", + "uuid": "ACAFC4FF-E467-399D-8EEF-543F98B46B1C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7880089600, + "image_vmaddr": 7335043072, + "image_size": 425984, + "name": "/System/Library/PrivateFrameworks/Osprey.framework/Osprey", + "uuid": "0B260874-6EED-3B09-B1BE-8D2EEFF31F32", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7992082432, + "image_vmaddr": 7447035904, + "image_size": 36864, + "name": "/System/Library/PrivateFrameworks/SiriPowerInstrumentation.framework/SiriPowerInstrumentation", + "uuid": "D3B497E5-9B19-3054-A872-DCF7E2BCF25A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7346462720, + "image_vmaddr": 6801416192, + "image_size": 495616, + "name": "/System/Library/PrivateFrameworks/TrialProto.framework/TrialProto", + "uuid": "EC050012-7CD1-3B48-983A-56CE847DD0F8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8729145344, + "image_vmaddr": 8184098816, + "image_size": 135167, + "name": "/usr/lib/swift/libswiftAVFoundation.dylib", + "uuid": "70FCE724-11EE-3F25-8CE0-A63FBBCE9646", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2140, + "minor_version": 3, + "revision_version": 1 + }, + { + "image_addr": 8376168448, + "image_vmaddr": 7831121920, + "image_size": 36860, + "name": "/usr/lib/swift/libswiftCoreAudio.dylib", + "uuid": "3AD460AD-C948-33C2-89C3-B836F8A399A6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 1, + "revision_version": 0 + }, + { + "image_addr": 8728854528, + "image_vmaddr": 8183808000, + "image_size": 40948, + "name": "/usr/lib/swift/libswiftCoreMIDI.dylib", + "uuid": "296C6604-24A0-387C-B1BD-CBFB1BA7A126", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7870898176, + "image_vmaddr": 7325851648, + "image_size": 229371, + "name": "/usr/lib/swift/libswiftCoreMedia.dylib", + "uuid": "088FC0B0-F344-39E0-A236-E32A8ABBC3C0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3005, + "minor_version": 3, + "revision_version": 1 + }, + { + "image_addr": 8728662016, + "image_vmaddr": 8183615488, + "image_size": 57342, + "name": "/usr/lib/swift/libswiftUniformTypeIdentifiers.dylib", + "uuid": "4EC105FD-173B-3EA4-A8E3-66BA8DAC0E02", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 760, + "minor_version": 2, + "revision_version": 2 + }, + { + "image_addr": 7329374208, + "image_vmaddr": 6784327680, + "image_size": 13041664, + "name": "/System/Library/PrivateFrameworks/Espresso.framework/Espresso", + "uuid": "1FD4CB11-AA9B-3D48-A58F-0BC017282E13", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 123, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7502200832, + "image_vmaddr": 6957154304, + "image_size": 6643712, + "name": "/System/Library/Frameworks/CoreML.framework/CoreML", + "uuid": "B66604D8-0C70-3C11-BB2A-F9F9A6BDD70E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8744669184, + "image_vmaddr": 8199622656, + "image_size": 122872, + "name": "/usr/lib/libedit.3.dylib", + "uuid": "0659CF59-7C19-3009-9772-390484E45894", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7369203712, + "image_vmaddr": 6824157184, + "image_size": 2650112, + "name": "/System/Library/PrivateFrameworks/AVFCore.framework/AVFCore", + "uuid": "D126E582-47DA-351E-9671-2D16C9C4A901", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7530811392, + "image_vmaddr": 6985764864, + "image_size": 1363968, + "name": "/System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture", + "uuid": "D99A8925-792D-341A-8EAD-9D2CE44865CC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8259899392, + "image_vmaddr": 7714852864, + "image_size": 20480, + "name": "/System/Library/PrivateFrameworks/Celestial.framework/Celestial", + "uuid": "79308682-343D-39A0-BFFA-05DAA117BA15", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8260780032, + "image_vmaddr": 7715733504, + "image_size": 1503232, + "name": "/System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync", + "uuid": "0C35A7E6-47C4-3B70-AD9D-3DC259101C98", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7581921280, + "image_vmaddr": 7036874752, + "image_size": 8343552, + "name": "/System/Library/PrivateFrameworks/CMCapture.framework/CMCapture", + "uuid": "8FD16574-5136-3453-BEAC-9CB6682CC7DA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8248016896, + "image_vmaddr": 7702970368, + "image_size": 872448, + "name": "/System/Library/PrivateFrameworks/Quagga.framework/Quagga", + "uuid": "60BED9F8-F0E8-388C-9AD1-95053C577BF5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 155, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 8237133824, + "image_vmaddr": 7692087296, + "image_size": 368640, + "name": "/System/Library/PrivateFrameworks/CMImaging.framework/CMImaging", + "uuid": "97F947B3-CE42-345C-92EA-797E38D3E6D0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9365975040, + "image_vmaddr": 8820928512, + "image_size": 274432, + "name": "/System/Library/PrivateFrameworks/CameraColorProcessing.framework/CameraColorProcessing", + "uuid": "AD3376D4-14E9-3CD6-B220-BAEA2A66D1B7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8263266304, + "image_vmaddr": 7718219776, + "image_size": 163840, + "name": "/System/Library/PrivateFrameworks/CinematicFraming.framework/CinematicFraming", + "uuid": "F2C5E9EA-6F7A-3CF5-AF86-BD2D71386F9A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8725762048, + "image_vmaddr": 8180715520, + "image_size": 2887680, + "name": "/System/Library/PrivateFrameworks/AppC3D.framework/AppC3D", + "uuid": "23E27F62-3308-33C5-AF7B-C96B193C1ABE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 10, + "revision_version": 6 + }, + { + "image_addr": 7818653696, + "image_vmaddr": 7273607168, + "image_size": 475136, + "name": "/System/Library/PrivateFrameworks/AppleCVAPhoto.framework/AppleCVAPhoto", + "uuid": "D788E588-ECBE-377D-9FB0-235001E8DAB7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 91, + "revision_version": 0 + }, + { + "image_addr": 7294558208, + "image_vmaddr": 6749511680, + "image_size": 4202496, + "name": "/System/Library/Frameworks/CoreMotion.framework/CoreMotion", + "uuid": "D59CB138-D760-3FA0-BDFF-6E9958AC784C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2780, + "minor_version": 0, + "revision_version": 25 + }, + { + "image_addr": 8251740160, + "image_vmaddr": 7706693632, + "image_size": 57344, + "name": "/System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet", + "uuid": "B0C138D2-54CE-3C46-8243-2140081760ED", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8237502464, + "image_vmaddr": 7692455936, + "image_size": 188416, + "name": "/System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine", + "uuid": "99A1DCC0-0C35-39E5-9B79-08C96B51037C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8719319040, + "image_vmaddr": 8174272512, + "image_size": 6266868, + "name": "/System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler", + "uuid": "90856DF1-FF74-381B-9DF9-761413D88B54", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 6988529664, + "image_vmaddr": 6443483136, + "image_size": 11407360, + "name": "/System/Library/Frameworks/MetalPerformanceShadersGraph.framework/MetalPerformanceShadersGraph", + "uuid": "2CCE2ED3-DCA8-35EE-9966-A7C4B070D113", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717910016, + "image_vmaddr": 8172863488, + "image_size": 1409016, + "name": "/System/Library/PrivateFrameworks/MilAneflow.framework/MilAneflow", + "uuid": "1A4D3553-29D2-3BED-8570-F74C9E53FF02", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8725585920, + "image_vmaddr": 8180539392, + "image_size": 131072, + "name": "/System/Library/PrivateFrameworks/ANEServices.framework/ANEServices", + "uuid": "6E76B8E7-1B36-3682-B745-6743790CB2CA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717340672, + "image_vmaddr": 8172294144, + "image_size": 12288, + "name": "/usr/lib/libsandbox.1.dylib", + "uuid": "65C53941-20F7-3984-80F7-1E2F32F4DD4B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9235009536, + "image_vmaddr": 8689963008, + "image_size": 32764, + "name": "/usr/lib/libMatch.1.dylib", + "uuid": "FE3A9327-B3DD-3F91-9242-799D59188DDC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7992119296, + "image_vmaddr": 7447072768, + "image_size": 200700, + "name": "/usr/lib/libncurses.5.4.dylib", + "uuid": "9EDA16DF-ED0D-32CC-82D7-212A94B10423", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 5, + "minor_version": 4, + "revision_version": 0 + }, + { + "image_addr": 7819128832, + "image_vmaddr": 7274082304, + "image_size": 442368, + "name": "/System/Library/PrivateFrameworks/TimeSync.framework/TimeSync", + "uuid": "4491DFFA-B11A-3365-8C88-09B5D0E6BB70", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8256761856, + "image_vmaddr": 7711715328, + "image_size": 1519616, + "name": "/System/Library/Frameworks/MLCompute.framework/MLCompute", + "uuid": "EACB13F3-333D-391A-9B2C-EDEB2355B636", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7232180224, + "image_vmaddr": 6687133696, + "image_size": 2703360, + "name": "/System/Library/Frameworks/CloudKit.framework/CloudKit", + "uuid": "CA4E690F-6234-391D-9C1F-3B7F19E0AF01", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2030, + "minor_version": 17, + "revision_version": 0 + }, + { + "image_addr": 8245260288, + "image_vmaddr": 7700213760, + "image_size": 1298432, + "name": "/System/Library/PrivateFrameworks/MLAssetIO.framework/MLAssetIO", + "uuid": "6C293F93-2901-3CE4-B810-783E3D9E2EEE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1436, + "minor_version": 60, + "revision_version": 2 + }, + { + "image_addr": 7246733312, + "image_vmaddr": 6701686784, + "image_size": 114688, + "name": "/System/Library/Frameworks/SharedWithYouCore.framework/SharedWithYouCore", + "uuid": "65C3E00A-935D-3F82-88A4-5E7A38140363", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7716290560, + "image_vmaddr": 7171244032, + "image_size": 8192, + "name": "/usr/lib/libBASupport.dylib", + "uuid": "109F1187-06D0-32F7-A695-4E31786F0378", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7527759872, + "image_vmaddr": 6982713344, + "image_size": 905216, + "name": "/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount", + "uuid": "51D6839D-95C7-392A-AAAB-1A6083F87B45", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7494189056, + "image_vmaddr": 6949142528, + "image_size": 180224, + "name": "/System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService", + "uuid": "726106DB-26B2-3470-835B-16FC4F62E2A4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8262926336, + "image_vmaddr": 7717879808, + "image_size": 290816, + "name": "/System/Library/PrivateFrameworks/C2.framework/C2", + "uuid": "D10391A2-BEDB-34AA-B828-19926F1C79ED", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2000, + "minor_version": 129, + "revision_version": 2 + }, + { + "image_addr": 8258306048, + "image_vmaddr": 7713259520, + "image_size": 1310720, + "name": "/System/Library/PrivateFrameworks/CloudKitDistributedSync.framework/CloudKitDistributedSync", + "uuid": "35E0BFF7-A075-3EFE-85B6-22836127A1D0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2030, + "minor_version": 17, + "revision_version": 0 + }, + { + "image_addr": 7669108736, + "image_vmaddr": 7124062208, + "image_size": 368640, + "name": "/System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage", + "uuid": "60EE4A4E-A43F-3FBC-A2DB-A40DBCD6C1A4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8728895488, + "image_vmaddr": 8183848960, + "image_size": 249856, + "name": "/System/Library/Frameworks/CoreTransferable.framework/CoreTransferable", + "uuid": "165D84E1-D794-3AAB-A2E8-D46AD23805B0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7614648320, + "image_vmaddr": 7069601792, + "image_size": 344064, + "name": "/System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant", + "uuid": "A6DF4299-8AB2-38BC-B8E8-A82BA2388DDE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7871262720, + "image_vmaddr": 7326216192, + "image_size": 114688, + "name": "/System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp", + "uuid": "B268A700-8931-3961-B28D-5A1A5961411C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8253755392, + "image_vmaddr": 7708708864, + "image_size": 114688, + "name": "/System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport", + "uuid": "38A4B148-0F24-3F38-8EA9-5438467492ED", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8266350592, + "image_vmaddr": 7721304064, + "image_size": 438272, + "name": "/System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup", + "uuid": "448D1FB3-93D1-3B72-9C1E-548A0AF00CB4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1830, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8264404992, + "image_vmaddr": 7719358464, + "image_size": 90112, + "name": "/System/Library/PrivateFrameworks/Seeding.framework/Seeding", + "uuid": "95DD8517-B451-306A-9CBB-1C19ED6E1DB9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8253992960, + "image_vmaddr": 7708946432, + "image_size": 16384, + "name": "/System/Library/PrivateFrameworks/OSASubmissionClient.framework/OSASubmissionClient", + "uuid": "3F1D171B-3F43-3F7F-8FF3-AB6D2DC83522", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7879036928, + "image_vmaddr": 7333990400, + "image_size": 139264, + "name": "/System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences", + "uuid": "5862C4D3-4F7B-33C6-89CD-090612670AAC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 397, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7813607424, + "image_vmaddr": 7268560896, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync", + "uuid": "A2B80FBA-D5AE-3987-B882-A393321CEE51", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8262295552, + "image_vmaddr": 7717249024, + "image_size": 192512, + "name": "/System/Library/PrivateFrameworks/AppConduit.framework/AppConduit", + "uuid": "C60F397A-E824-316E-A44D-C68A296E50F8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7592337408, + "image_vmaddr": 7047290880, + "image_size": 282624, + "name": "/System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete", + "uuid": "2CCF281A-62A4-37CE-B368-D8C3FBC19218", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717770752, + "image_vmaddr": 8172724224, + "image_size": 53248, + "name": "/System/Library/PrivateFrameworks/FSEvents.framework/FSEvents", + "uuid": "849DF6A1-7CFD-32FB-A64E-E3C8D7D26BEA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1355, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8245043200, + "image_vmaddr": 7699996672, + "image_size": 131072, + "name": "/System/Library/PrivateFrameworks/OSAnalyticsPrivate.framework/OSAnalyticsPrivate", + "uuid": "87F72FF8-4B58-353F-AF8B-1AF5B5C74E33", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8252608512, + "image_vmaddr": 7707561984, + "image_size": 86016, + "name": "/System/Library/PrivateFrameworks/RemoteXPC.framework/RemoteXPC", + "uuid": "353F6574-F0BD-37E5-84A4-93D473CEA352", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2462, + "minor_version": 60, + "revision_version": 14 + }, + { + "image_addr": 7552577536, + "image_vmaddr": 7007531008, + "image_size": 544768, + "name": "/System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport", + "uuid": "256FD9EE-98A2-361F-8A86-762ACC29EDCE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 365, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 7302320128, + "image_vmaddr": 6757273600, + "image_size": 155648, + "name": "/System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker", + "uuid": "D36ACE86-A62F-3F12-945C-C9E96EE645CA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 365, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 8729882624, + "image_vmaddr": 8184836096, + "image_size": 12288, + "name": "/System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch", + "uuid": "67C8548C-5D0E-31FE-9795-EFFF78F65C3A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7346958336, + "image_vmaddr": 6801911808, + "image_size": 172032, + "name": "/System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting", + "uuid": "4D6CD2E3-5C33-3EC8-9A5F-B17749B30127", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7738712064, + "image_vmaddr": 7193665536, + "image_size": 1261561, + "name": "/System/Library/PrivateFrameworks/InternalSwiftProtobuf.framework/InternalSwiftProtobuf", + "uuid": "10C78C3C-CFD6-34ED-988B-14ACC8221D22", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7477116928, + "image_vmaddr": 6932070400, + "image_size": 151552, + "name": "/System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust", + "uuid": "A3D69A72-E5C0-3082-AFAE-B5004F77EB88", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7871127552, + "image_vmaddr": 7326081024, + "image_size": 135168, + "name": "/System/Library/PrivateFrameworks/SecurityFoundation.framework/SecurityFoundation", + "uuid": "A6F6B99E-2E82-3A5C-B497-49D0D3C7586E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7600144384, + "image_vmaddr": 7055097856, + "image_size": 589824, + "name": "/System/Library/Frameworks/CallKit.framework/CallKit", + "uuid": "BA01CF7B-1051-3E67-A5DE-D425B2D513FA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + } + ], + "process": {}, + "system": { + "system_name": "iOS", + "system_version": "16.2", + "machine": "iPhone11,8", + "model": "N841AP", + "kernel_version": "Darwin Kernel Version 22.2.0: Tue Nov 1 21:21:17 PDT 2022; root:xnu-8792.60.51.122.1~1/RELEASE_ARM64_T8020", + "os_version": "20C5043e", + "jailbroken": false, + "boot_time": "2023-01-30T08:43:25Z", + "app_start_time": "2023-01-30T09:05:01Z", + "CFBundleExecutablePath": "/private/var/containers/Bundle/Application/53C684E3-9F0E-4FE3-8291-88677BAB718C/iOS-Swift.app/iOS-Swift", + "CFBundleExecutable": "iOS-Swift", + "CFBundleIdentifier": "io.sentry.sample.iOS-Swift", + "CFBundleName": "iOS-Swift", + "CFBundleVersion": "1", + "CFBundleShortVersionString": "7.31.5", + "app_uuid": "C488D0BE-E733-3031-AEF3-CC5182AB1E3B", + "cpu_arch": "arm64", + "cpu_type": 16777228, + "cpu_subtype": 2, + "binary_cpu_type": 16777228, + "binary_cpu_subtype": 0, + "process_name": "iOS-Swift", + "process_id": 495, + "parent_process_id": 1, + "device_app_hash": "9116712086e95f0c91b259ee97270e8f6a8a7768", + "build_type": "debug", + "total_storage": 63933894656, + "free_storage": 26521919488, + "memory": { + "size": 2976202752, + "usable": 2550726656, + "free": 66846720 + }, + "application_stats": { + "application_active": true, + "application_in_foreground": true, + "launches_since_last_crash": 1, + "sessions_since_last_crash": 2, + "active_time_since_last_crash": 120.664, + "background_time_since_last_crash": 12.2669, + "sessions_since_launch": 2, + "active_time_since_launch": 120.664, + "background_time_since_launch": 12.2669 + } + }, + "crash": { + "error": { + "mach": { + "exception": 1, + "exception_name": "EXC_BAD_ACCESS", + "code": 257, + "subcode": 5365848110 + }, + "signal": { + "signal": 10, + "name": "SIGBUS", + "code": 0, + "code_name": "BUS_NOOP" + }, + "address": 5365848110, + "type": "mach" + }, + "threads": [ + { + "backtrace": { + "contents": [ + { + "instruction_addr": 5365848110 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309617184, + "instruction_addr": 4309617228 + }, + { + "object_name": "iOS-Swift", + "object_addr": 4306583552, + "symbol_name": "$s9iOS_Swift14ViewControllerC5crashyyypF", + "symbol_addr": 4306654892, + "instruction_addr": 4306654944 + }, + { + "object_name": "iOS-Swift", + "object_addr": 4306583552, + "symbol_name": "", + "symbol_addr": 4306654956, + "instruction_addr": 4306655024 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7140628492, + "instruction_addr": 7140628592 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309427996, + "instruction_addr": 4309428196 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7140627712, + "instruction_addr": 7140627824 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7140625856, + "instruction_addr": 7140626180 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7140625708, + "instruction_addr": 7140625832 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7140624364, + "instruction_addr": 7140624764 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7139242572, + "instruction_addr": 7139243348 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7139237020, + "instruction_addr": 7139240304 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7139236240, + "instruction_addr": 7139236912 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7139227456, + "instruction_addr": 7139234540 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7139523072, + "instruction_addr": 7139528704 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7142709604, + "instruction_addr": 7142709828 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103586072, + "instruction_addr": 7103586100 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103636060, + "instruction_addr": 7103636236 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103127772, + "instruction_addr": 7103128016 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103215688, + "instruction_addr": 7103216524 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "CFRunLoopRunSpecific", + "symbol_addr": 7103237204, + "instruction_addr": 7103237816 + }, + { + "object_name": "GraphicsServices", + "object_addr": 8086032384, + "symbol_name": "GSEventRunModal", + "symbol_addr": 8086037188, + "instruction_addr": 8086037352 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7142017500, + "instruction_addr": 7142018388 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "UIApplicationMain", + "symbol_addr": 7142017124, + "instruction_addr": 7142017464 + }, + { + "object_name": "iOS-Swift", + "object_addr": 4306583552, + "symbol_name": "main", + "symbol_addr": 4306715508, + "instruction_addr": 4306715572 + }, + { + "instruction_addr": 7625050464 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 4310376784, + "x1": 4306839947, + "x2": 259, + "x3": 10762518888, + "x4": 5803094048, + "x5": 10766664720, + "x6": 10, + "x7": 1, + "x8": 5365848110, + "x9": 259, + "x10": 10767712640, + "x11": 6162675, + "x12": 8, + "x13": 0, + "x14": 6987497472, + "x15": 9917497344, + "x16": 4310376826, + "x17": 4309617184, + "x18": 0, + "x19": 10766664720, + "x20": 5801794240, + "x21": 5803094048, + "x22": 4306840396, + "x23": 10774023360, + "x24": 8552160384, + "x25": 10786661184, + "x26": 4306840396, + "x27": 5801794240, + "x28": 1, + "fp": 6160290192, + "lr": 4309617228, + "sp": 6160290160, + "pc": 5365848110, + "cpsr": 1073741824 + }, + "exception": { + "exception": 0, + "esr": 2315255808, + "far": 5365848110 + } + }, + "index": 0, + "crashed": true, + "current_thread": false, + "stack": { + "grow_direction": "-", + "dump_start": 6160290080, + "dump_end": 6160290320, + "stack_pointer": 6160290160, + "overflow": false, + "contents": "91E5430FD82FC8465829D484D012904A4591AAE83A48D072B6F54CC5C4C622185021EB00010000008B29B50001000000030100000000000068017F81020000002030E459010000001044BE81020000000A000000000000002E58D43F010000008B29B500010000005021EB0001000000B0912E6F01000000E056B20001000000C05AD05901000000E0912E6F0100000010922E6F010000003057B20001000000C05AD05901000000E0912E6F010000002030E45901000000C05AD059010000002030E459010000001044BE81020000000A0000000000000058F9BAFD01000000C05AD059010000001044BE8102000000" + }, + "notable_addresses": { + "x0": { + "address": 4310376784, + "type": "objc_class", + "class": "SentrySDK" + }, + "x1": { + "address": 4306839947, + "type": "string", + "value": "crash" + }, + "x14": { + "address": 6987497472, + "type": "string", + "value": "dyld_v1 arm64e" + }, + "x22": { + "address": 4306840396, + "type": "string", + "value": "crash:" + }, + "x26": { + "address": 4306840396, + "type": "string", + "value": "crash:" + }, + "stack@0x16f2e9140": { + "address": 4310376784, + "type": "objc_class", + "class": "SentrySDK" + }, + "stack@0x16f2e9148": { + "address": 4306839947, + "type": "string", + "value": "crash" + }, + "stack@0x16f2e9180": { + "address": 4306839947, + "type": "string", + "value": "crash" + }, + "stack@0x16f2e9188": { + "address": 4310376784, + "type": "objc_class", + "class": "SentrySDK" + } + } + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_trap", + "symbol_addr": 8145336992, + "instruction_addr": 8145337000 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_internal", + "symbol_addr": 8145411956, + "instruction_addr": 8145412036 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg_overwrite", + "symbol_addr": 8145412224, + "instruction_addr": 8145412612 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg", + "symbol_addr": 8145338324, + "instruction_addr": 8145338348 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103212084, + "instruction_addr": 7103212244 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103215688, + "instruction_addr": 7103216920 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "CFRunLoopRunSpecific", + "symbol_addr": 7103237204, + "instruction_addr": 7103237816 + }, + { + "object_name": "Foundation", + "object_addr": 7005818880, + "symbol_name": "", + "symbol_addr": 7006089216, + "instruction_addr": 7006089428 + }, + { + "object_name": "Foundation", + "object_addr": 7005818880, + "symbol_name": "", + "symbol_addr": 7006089084, + "instruction_addr": 7006089148 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7143283180, + "instruction_addr": 7143283616 + }, + { + "object_name": "Foundation", + "object_addr": 7005818880, + "symbol_name": "", + "symbol_addr": 7006192348, + "instruction_addr": 7006193064 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_start", + "symbol_addr": 8421037624, + "instruction_addr": 8421037772 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 0, + "x1": 21592279046, + "x2": 8589934592, + "x3": 39595303501824, + "x4": 0, + "x5": 39595303501824, + "x6": 2, + "x7": 4294967295, + "x8": 18446744073709550527, + "x9": 0, + "x10": 9219, + "x11": 0, + "x12": 64515, + "x13": 9219, + "x14": 0, + "x15": 0, + "x16": 18446744073709551569, + "x17": 2, + "x18": 0, + "x19": 4294967295, + "x20": 2, + "x21": 39595303501824, + "x22": 0, + "x23": 39595303501824, + "x24": 6162570584, + "x25": 8589934592, + "x26": 21592279046, + "x27": 21592279046, + "x28": 8551669760, + "fp": 6162570432, + "lr": 8145412036, + "sp": 6162570352, + "pc": 8145337000, + "cpsr": 1073741824 + } + }, + "index": 1, + "name": "com.apple.uikit.eventfetch-thread", + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "", + "symbol_addr": 8421034640, + "instruction_addr": 8421034896 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 6163722240, + "x1": 14339, + "x2": 6163185664, + "x3": 6163721088, + "x4": 5128197, + "x5": 1, + "x6": 0, + "x7": 0, + "x8": 0, + "x9": 0, + "x10": 0, + "x11": 0, + "x12": 0, + "x13": 0, + "x14": 0, + "x15": 0, + "x16": 0, + "x17": 0, + "x18": 0, + "x19": 0, + "x20": 0, + "x21": 0, + "x22": 0, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 0, + "lr": 0, + "sp": 6163721072, + "pc": 8421034896, + "cpsr": 0 + } + }, + "index": 2, + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "__semwait_signal", + "symbol_addr": 8145338208, + "instruction_addr": 8145338216 + }, + { + "object_name": "libsystem_c.dylib", + "object_addr": 7226810368, + "symbol_name": "nanosleep", + "symbol_addr": 7226832636, + "instruction_addr": 7226832856 + }, + { + "object_name": "libsystem_c.dylib", + "object_addr": 7226810368, + "symbol_name": "sleep", + "symbol_addr": 7226915492, + "instruction_addr": 7226915544 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309468048, + "instruction_addr": 4309468176 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_start", + "symbol_addr": 8421037624, + "instruction_addr": 8421037772 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 7939, + "x1": 0, + "x2": 1, + "x3": 1, + "x4": 60, + "x5": 0, + "x6": 52, + "x7": 0, + "x8": 8551680796, + "x9": 16387, + "x10": 17, + "x11": 2043, + "x12": 3492106266, + "x13": 2045, + "x14": 3494205461, + "x15": 3492106266, + "x16": 334, + "x17": 1346371584, + "x18": 0, + "x19": 6164868976, + "x20": 6164868992, + "x21": 0, + "x22": 0, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 6164868960, + "lr": 7226832856, + "sp": 6164868912, + "pc": 8145338216, + "cpsr": 1073741824 + } + }, + "index": 3, + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_trap", + "symbol_addr": 8145336992, + "instruction_addr": 8145337000 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_internal", + "symbol_addr": 8145411956, + "instruction_addr": 8145412036 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg_overwrite", + "symbol_addr": 8145412224, + "instruction_addr": 8145412612 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg", + "symbol_addr": 8145338324, + "instruction_addr": 8145338348 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309338964, + "instruction_addr": 4309339160 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_start", + "symbol_addr": 8421037624, + "instruction_addr": 8421037772 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 6165441892, + "x1": 17179869186, + "x2": 0, + "x3": 0, + "x4": 0, + "x5": 95670396518400, + "x6": 580, + "x7": 0, + "x8": 18446744073709550527, + "x9": 22275, + "x10": 0, + "x11": 0, + "x12": 0, + "x13": 22275, + "x14": 0, + "x15": 0, + "x16": 18446744073709551569, + "x17": 6165442560, + "x18": 0, + "x19": 0, + "x20": 580, + "x21": 95670396518400, + "x22": 0, + "x23": 0, + "x24": 6165441892, + "x25": 0, + "x26": 17179869186, + "x27": 17179869186, + "x28": 8551669760, + "fp": 6165441424, + "lr": 8145412036, + "sp": 6165441344, + "pc": 8145337000, + "cpsr": 1073741824 + } + }, + "index": 4, + "name": "SentryCrash Exception Handler (Secondary)", + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [], + "skipped": 0 + }, + "index": 5, + "name": "SentryCrash Exception Handler (Primary)", + "crashed": false, + "current_thread": true + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "__semwait_signal", + "symbol_addr": 8145338208, + "instruction_addr": 8145338216 + }, + { + "object_name": "libsystem_c.dylib", + "object_addr": 7226810368, + "symbol_name": "nanosleep", + "symbol_addr": 7226832636, + "instruction_addr": 7226832856 + }, + { + "object_name": "Foundation", + "object_addr": 7005818880, + "symbol_name": "", + "symbol_addr": 7006550208, + "instruction_addr": 7006550368 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309435272, + "instruction_addr": 4309435316 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309186272, + "instruction_addr": 4309186996 + }, + { + "object_name": "Foundation", + "object_addr": 7005818880, + "symbol_name": "", + "symbol_addr": 7006192348, + "instruction_addr": 7006193064 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_start", + "symbol_addr": 8421037624, + "instruction_addr": 8421037772 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 7939, + "x1": 0, + "x2": 1, + "x3": 1, + "x4": 0, + "x5": 400000000, + "x6": 0, + "x7": 0, + "x8": 8551680796, + "x9": 3, + "x10": 17, + "x11": 1970335589992960, + "x12": 3, + "x13": 10753018400, + "x14": 8551779536, + "x15": 8551779536, + "x16": 334, + "x17": 8572711128, + "x18": 0, + "x19": 0, + "x20": 6166587824, + "x21": 0, + "x22": 0, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 6166587776, + "lr": 7226832856, + "sp": 6166587728, + "pc": 8145338216, + "cpsr": 2147483648 + } + }, + "index": 6, + "name": "io.sentry.app-hang-tracker", + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_trap", + "symbol_addr": 8145336992, + "instruction_addr": 8145337000 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_internal", + "symbol_addr": 8145411956, + "instruction_addr": 8145412036 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg_overwrite", + "symbol_addr": 8145412224, + "instruction_addr": 8145412612 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg", + "symbol_addr": 8145338324, + "instruction_addr": 8145338348 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103212084, + "instruction_addr": 7103212244 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103215688, + "instruction_addr": 7103216920 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "CFRunLoopRunSpecific", + "symbol_addr": 7103237204, + "instruction_addr": 7103237816 + }, + { + "object_name": "CFNetwork", + "object_addr": 7121158144, + "symbol_name": "_CFURLStorageSessionDisableCache", + "symbol_addr": 7123554872, + "instruction_addr": 7123615960 + }, + { + "object_name": "Foundation", + "object_addr": 7005818880, + "symbol_name": "", + "symbol_addr": 7006192348, + "instruction_addr": 7006193064 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_start", + "symbol_addr": 8421037624, + "instruction_addr": 8421037772 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 6167731512, + "x1": 21592279046, + "x2": 8589934592, + "x3": 118777320570880, + "x4": 0, + "x5": 118777320570880, + "x6": 2, + "x7": 4294967295, + "x8": 18446744073709550527, + "x9": 0, + "x10": 27655, + "x11": 0, + "x12": 621831, + "x13": 27655, + "x14": 8796093022208, + "x15": 0, + "x16": 18446744073709551569, + "x17": 8796093024258, + "x18": 0, + "x19": 4294967295, + "x20": 2, + "x21": 118777320570880, + "x22": 0, + "x23": 118777320570880, + "x24": 6167731512, + "x25": 8589934592, + "x26": 21592279046, + "x27": 21592279046, + "x28": 8551669760, + "fp": 6167731360, + "lr": 8145412036, + "sp": 6167731280, + "pc": 8145337000, + "cpsr": 1073741824 + } + }, + "index": 7, + "name": "com.apple.NSURLConnectionLoader", + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "__workq_kernreturn", + "symbol_addr": 8145338280, + "instruction_addr": 8145338288 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_wqthread", + "symbol_addr": 8421035224, + "instruction_addr": 8421035588 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 256, + "x1": 6160853888, + "x2": 2, + "x3": 0, + "x4": 0, + "x5": 19804094201856, + "x6": 32, + "x7": 0, + "x8": 10753049473, + "x9": 6160853960, + "x10": 10753049528, + "x11": 1, + "x12": 0, + "x13": 7, + "x14": 1, + "x15": 72, + "x16": 368, + "x17": 8592134544, + "x18": 0, + "x19": 6160855040, + "x20": 1, + "x21": 6160855200, + "x22": 6160855192, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 6160853840, + "lr": 8421035588, + "sp": 6160853808, + "pc": 8145338288, + "cpsr": 1073741824 + } + }, + "index": 8, + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "__workq_kernreturn", + "symbol_addr": 8145338280, + "instruction_addr": 8145338288 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_wqthread", + "symbol_addr": 8421035224, + "instruction_addr": 8421035588 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 256, + "x1": 6161427328, + "x2": 1, + "x3": 0, + "x4": 10753040512, + "x5": 32, + "x6": 0, + "x7": 0, + "x8": 10753085185, + "x9": 6161427328, + "x10": 10753085240, + "x11": 1, + "x12": 0, + "x13": 7, + "x14": 1, + "x15": 72, + "x16": 368, + "x17": 681574400, + "x18": 0, + "x19": 6161428480, + "x20": 1, + "x21": 6161428640, + "x22": 6161428632, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 6161427280, + "lr": 8421035588, + "sp": 6161427248, + "pc": 8145338288, + "cpsr": 1073741824 + } + }, + "index": 9, + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "__workq_kernreturn", + "symbol_addr": 8145338280, + "instruction_addr": 8145338288 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_wqthread", + "symbol_addr": 8421035224, + "instruction_addr": 8421035588 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 64, + "x1": 6162000768, + "x2": 0, + "x3": 0, + "x4": 8551681480, + "x5": 32, + "x6": 0, + "x7": 0, + "x8": 0, + "x9": 18016666252228108, + "x10": 18428727476176814080, + "x11": 68719476736, + "x12": 8551684600, + "x13": 24000000, + "x14": 27021756678018581, + "x15": 27021756678018581, + "x16": 368, + "x17": 27021756678018581, + "x18": 0, + "x19": 6162001920, + "x20": 1, + "x21": 6162002080, + "x22": 6162002072, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 6162000736, + "lr": 8421035588, + "sp": 6162000704, + "pc": 8145338288, + "cpsr": 1073741824 + } + }, + "index": 10, + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 0, + "x1": 0, + "x2": 0, + "x3": 0, + "x4": 0, + "x5": 0, + "x6": 0, + "x7": 0, + "x8": 0, + "x9": 0, + "x10": 0, + "x11": 0, + "x12": 0, + "x13": 0, + "x14": 0, + "x15": 0, + "x16": 0, + "x17": 0, + "x18": 0, + "x19": 0, + "x20": 0, + "x21": 0, + "x22": 0, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 0, + "lr": 0, + "sp": 0, + "pc": 0, + "cpsr": 0 + } + }, + "index": 11, + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_trap", + "symbol_addr": 8145336992, + "instruction_addr": 8145337000 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_internal", + "symbol_addr": 8145411956, + "instruction_addr": 8145412036 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg_overwrite", + "symbol_addr": 8145412224, + "instruction_addr": 8145412612 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg", + "symbol_addr": 8145338324, + "instruction_addr": 8145338348 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309094108, + "instruction_addr": 4309094396 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309112564, + "instruction_addr": 4309112772 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309112312, + "instruction_addr": 4309112488 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309107428, + "instruction_addr": 4309107512 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_start", + "symbol_addr": 8421037624, + "instruction_addr": 8421037772 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 0, + "x1": 17179869186, + "x2": 0, + "x3": 0, + "x4": 0, + "x5": 113314122170368, + "x6": 512, + "x7": 0, + "x8": 18446744073709550527, + "x9": 26383, + "x10": 0, + "x11": 0, + "x12": 0, + "x13": 26383, + "x14": 4294967295, + "x15": 5768233088, + "x16": 18446744073709551569, + "x17": 6164295680, + "x18": 0, + "x19": 0, + "x20": 512, + "x21": 113314122170368, + "x22": 0, + "x23": 0, + "x24": 5768263120, + "x25": 0, + "x26": 17179869186, + "x27": 17179869186, + "x28": 8551669760, + "fp": 6164294656, + "lr": 8145412036, + "sp": 6164294576, + "pc": 8145337000, + "cpsr": 1073741824 + } + }, + "index": 12, + "crashed": false, + "current_thread": false + } + ] + }, + "sentry_sdk_scope": { + "user": { + "email": "tony1@example.com", + "id": "1" + }, + "environment": "debug", + "tags": { + "language": "swift" + }, + "extra": { + "currentViewController": "" + }, + "breadcrumbs": [ + { + "category": "started", + "level": "info", + "message": "Breadcrumb Tracking", + "timestamp": "2023-01-30T09:05:01.740Z", + "type": "debug" + }, + { + "category": "device.orientation", + "data": { + "position": "portrait" + }, + "level": "info", + "timestamp": "2023-01-30T09:05:01.757Z", + "type": "navigation" + }, + { + "category": "ui.lifecycle", + "data": { + "beingPresented": "false", + "is_window_rootViewController": "true", + "screen": "UINavigationController", + "window": "; backgroundColor = ; layer = >", + "window_isKeyWindow": "true", + "window_windowLevel": "0.000000" + }, + "level": "info", + "timestamp": "2023-01-30T09:05:01.819Z", + "type": "navigation" + }, + { + "category": "ui.lifecycle", + "data": { + "beingPresented": "false", + "is_window_rootViewController": "false", + "parentViewController": "UINavigationController", + "screen": "ViewController", + "title": "Sentry Test App (Swift)", + "window": "; backgroundColor = ; layer = >", + "window_isKeyWindow": "true", + "window_windowLevel": "0.000000" + }, + "level": "info", + "timestamp": "2023-01-30T09:05:01.819Z", + "type": "navigation" + }, + { + "category": "app.lifecycle", + "data": { + "state": "foreground" + }, + "level": "info", + "timestamp": "2023-01-30T09:05:01.987Z", + "type": "navigation" + }, + { + "category": "device.event", + "data": { + "action": "BATTERY_STATE_CHANGE", + "level": 4, + "plugged": true + }, + "level": "info", + "timestamp": "2023-01-30T09:05:21.053Z", + "type": "system" + }, + { + "category": "device.event", + "data": { + "action": "BATTERY_STATE_CHANGE", + "level": 3, + "plugged": true + }, + "level": "info", + "timestamp": "2023-01-30T09:05:41.050Z", + "type": "system" + }, + { + "category": "device.event", + "data": { + "action": "BATTERY_STATE_CHANGE", + "level": 4, + "plugged": true + }, + "level": "info", + "timestamp": "2023-01-30T09:06:01.086Z", + "type": "system" + }, + { + "category": "device.event", + "data": { + "action": "BATTERY_STATE_CHANGE", + "level": 3, + "plugged": true + }, + "level": "info", + "timestamp": "2023-01-30T09:06:21.115Z", + "type": "system" + }, + { + "category": "app.lifecycle", + "data": { + "state": "background" + }, + "level": "info", + "timestamp": "2023-01-30T09:07:02.658Z", + "type": "navigation" + }, + { + "category": "device.orientation", + "data": { + "position": "portrait" + }, + "level": "info", + "timestamp": "2023-01-30T09:07:14.286Z", + "type": "navigation" + }, + { + "category": "app.lifecycle", + "data": { + "state": "foreground" + }, + "level": "info", + "timestamp": "2023-01-30T09:07:15.480Z", + "type": "navigation" + }, + { + "category": "touch", + "data": { + "title": "crash", + "view": ">" + }, + "level": "info", + "message": "crash:", + "timestamp": "2023-01-30T09:07:16.198Z", + "type": "user" + } + ] + }, + "user": { + "context": { + "app": { + "app_build": "1", + "app_id": "C488D0BE-E733-3031-AEF3-CC5182AB1E3B", + "app_identifier": "io.sentry.sample.iOS-Swift", + "app_name": "iOS-Swift", + "app_start_time": "2023-01-30T09:05:01Z", + "app_version": "7.31.5", + "build_type": "debug", + "device_app_hash": "9116712086e95f0c91b259ee97270e8f6a8a7768" + }, + "device": { + "arch": "arm64", + "boot_time": "2023-01-30T08:43:25Z", + "family": "iOS", + "free_memory": 38764544, + "free_storage": 26521919488, + "locale": "en_AT", + "memory_size": 2976202752, + "model": "iPhone11,8", + "model_id": "N841AP", + "screen_height_pixels": 896, + "screen_width_pixels": 414, + "simulator": false, + "storage_size": 63933894656, + "usable_memory": 2552430592 + }, + "os": { + "build": "20C5043e", + "kernel_version": "Darwin Kernel Version 22.2.0: Tue Nov 1 21:21:17 PDT 2022; root:xnu-8792.60.51.122.1~1/RELEASE_ARM64_T8020", + "name": "iOS", + "rooted": false, + "version": "16.2" + } + }, + "release": "io.sentry.sample.iOS-Swift@7.31.5+1" + }, + "debug": {} +} diff --git a/Tests/Resources/crash-bad-access.json b/Tests/Resources/crash-bad-access.json new file mode 100644 index 00000000000..a33616eeb8e --- /dev/null +++ b/Tests/Resources/crash-bad-access.json @@ -0,0 +1,6789 @@ +{ + "report": { + "version": "3.2.0", + "id": "42A64046-9255-4995-98C2-553FA204DF4D", + "process_name": "iOS-Swift", + "timestamp": 1675069636, + "type": "standard" + }, + "binary_images": [ + { + "image_addr": 4306583552, + "image_vmaddr": 4294967296, + "image_size": 278528, + "name": "/private/var/containers/Bundle/Application/53C684E3-9F0E-4FE3-8291-88677BAB718C/iOS-Swift.app/iOS-Swift", + "uuid": "C488D0BE-E733-3031-AEF3-CC5182AB1E3B", + "cpu_type": 16777228, + "cpu_subtype": 0, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 4308959232, + "image_vmaddr": 0, + "image_size": 1212416, + "name": "/private/var/containers/Bundle/Application/53C684E3-9F0E-4FE3-8291-88677BAB718C/iOS-Swift.app/Frameworks/Sentry.framework/Sentry", + "uuid": "D9FC174C-62AD-3343-825B-DABBC5743CDC", + "cpu_type": 16777228, + "cpu_subtype": 0, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7005818880, + "image_vmaddr": 6460772352, + "image_size": 9740288, + "name": "/System/Library/Frameworks/Foundation.framework/Foundation", + "uuid": "C1224D80-B336-3E92-8CAD-7B6417720DAE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1953, + "minor_version": 255, + "revision_version": 0 + }, + { + "image_addr": 6988251136, + "image_vmaddr": 6443204608, + "image_size": 278048, + "name": "/usr/lib/libobjc.A.dylib", + "uuid": "79BC93BC-DF0F-300A-BD7B-07DCB2E13482", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 228, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7345225728, + "image_vmaddr": 6800179200, + "image_size": 421876, + "name": "/usr/lib/libc++.1.dylib", + "uuid": "3919F6F0-11CC-3281-B454-E308ACA8B8C1", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1300, + "minor_version": 36, + "revision_version": 0 + }, + { + "image_addr": 8421642240, + "image_vmaddr": 7876595712, + "image_size": 8192, + "name": "/usr/lib/libSystem.B.dylib", + "uuid": "C8734DFD-F789-3EF7-884B-AF518D6D009E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1319, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7228645376, + "image_vmaddr": 6683598848, + "image_size": 3534848, + "name": "/System/Library/Frameworks/CoreData.framework/CoreData", + "uuid": "6843123C-6E88-376B-8282-AC09FF51C135", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1244, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 7102709760, + "image_vmaddr": 6557663232, + "image_size": 4087808, + "name": "/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation", + "uuid": "FB98BD04-E2CF-31BF-BA9E-BD12CEAEFE13", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1953, + "minor_version": 255, + "revision_version": 0 + }, + { + "image_addr": 7298760704, + "image_vmaddr": 6753714176, + "image_size": 1019904, + "name": "/System/Library/Frameworks/CoreLocation.framework/CoreLocation", + "uuid": "2A296B42-101B-3BE9-B337-2A725B05DB5F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2780, + "minor_version": 0, + "revision_version": 25 + }, + { + "image_addr": 9027309568, + "image_vmaddr": 8482263040, + "image_size": 94208, + "name": "/System/Library/Frameworks/MetricKit.framework/MetricKit", + "uuid": "8993EC3F-6ACD-3CDA-8DC1-17E9FE694A2D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9057779712, + "image_vmaddr": 8512733184, + "image_size": 4096, + "name": "/System/Library/Frameworks/UIKit.framework/UIKit", + "uuid": "A3576478-3C57-348A-9469-C0C67330562D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6206, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7684452352, + "image_vmaddr": 7139405824, + "image_size": 274432, + "name": "/System/Library/Frameworks/UserNotifications.framework/UserNotifications", + "uuid": "62067F90-0095-3C25-8F7A-E8A42768C343", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8744951808, + "image_vmaddr": 8199905280, + "image_size": 4096, + "name": "/usr/lib/swift/libswiftDataDetection.dylib", + "uuid": "220B64FB-EB0D-370B-BEFF-F8E0C497E0EB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 727, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8744792064, + "image_vmaddr": 8199745536, + "image_size": 4093, + "name": "/usr/lib/swift/libswiftFileProvider.dylib", + "uuid": "F9BB3968-F084-32EE-AA3A-3CCEC5A199D8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 730, + "minor_version": 60, + "revision_version": 38 + }, + { + "image_addr": 9239728128, + "image_vmaddr": 8694681600, + "image_size": 8188, + "name": "/usr/lib/swift/libswiftMetricKit.dylib", + "uuid": "BD4378B8-7F9F-3D8F-BAA9-94A881E42889", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 6999937024, + "image_vmaddr": 6454890496, + "image_size": 5672960, + "name": "/usr/lib/swift/libswiftCore.dylib", + "uuid": "E3D0EECA-73D4-3781-BC4C-FE11385B549C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 5, + "minor_version": 7, + "revision_version": 1 + }, + { + "image_addr": 7890931712, + "image_vmaddr": 7345885184, + "image_size": 32756, + "name": "/usr/lib/swift/libswiftCoreFoundation.dylib", + "uuid": "90281A04-38C2-3F71-A1FB-3E2DDFB78C7D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 120, + "minor_version": 100, + "revision_version": 0 + }, + { + "image_addr": 8744845312, + "image_vmaddr": 8199798784, + "image_size": 4096, + "name": "/usr/lib/swift/libswiftCoreImage.dylib", + "uuid": "92814928-95C7-3E1B-AF6D-040EE873EE6D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8728649728, + "image_vmaddr": 8183603200, + "image_size": 12281, + "name": "/usr/lib/swift/libswiftCoreLocation.dylib", + "uuid": "AAA8C904-7B5B-3774-8749-4D595795D2D5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 9, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8692584448, + "image_vmaddr": 8147537920, + "image_size": 40956, + "name": "/usr/lib/swift/libswiftDarwin.dylib", + "uuid": "5C6DFE34-C9FE-370B-BE32-59D7DCC4FA9B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7245258752, + "image_vmaddr": 6700212224, + "image_size": 98296, + "name": "/usr/lib/swift/libswiftDispatch.dylib", + "uuid": "808E995E-BE7D-3E8D-838A-428C10446E99", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 17, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8728719360, + "image_vmaddr": 8183672832, + "image_size": 24563, + "name": "/usr/lib/swift/libswiftMetal.dylib", + "uuid": "9FE27A5D-C266-3AF7-B5F3-5894F2BD1CD9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 306, + "minor_version": 3, + "revision_version": 3 + }, + { + "image_addr": 7767056384, + "image_vmaddr": 7222009856, + "image_size": 16370, + "name": "/usr/lib/swift/libswiftObjectiveC.dylib", + "uuid": "A39BB68D-EF0F-3B5B-93CB-F30C7F043138", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8728748032, + "image_vmaddr": 8183701504, + "image_size": 8188, + "name": "/usr/lib/swift/libswiftQuartzCore.dylib", + "uuid": "E15B9538-0C07-39E4-9B38-5E54955DF046", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7248850944, + "image_vmaddr": 6703804416, + "image_size": 479232, + "name": "/usr/lib/swift/libswiftUIKit.dylib", + "uuid": "FF9071D9-FE4A-3CB5-8840-5EF960E2B60C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6206, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7343546368, + "image_vmaddr": 6798499840, + "image_size": 110592, + "name": "/usr/lib/swift/libswiftos.dylib", + "uuid": "D73C5E6E-DC16-3116-B93C-13FF0CF53B45", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1034, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7699828736, + "image_vmaddr": 7154782208, + "image_size": 28672, + "name": "/usr/lib/swift/libswiftCoreGraphics.dylib", + "uuid": "79326C40-3A28-3FBD-A265-3AD259F5F494", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 15, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9061621760, + "image_vmaddr": 8516575232, + "image_size": 4094, + "name": "/usr/lib/swift/libswiftFoundation.dylib", + "uuid": "D896344D-3C00-379F-8ECF-FE8CB3ADC7A3", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 120, + "minor_version": 100, + "revision_version": 0 + }, + { + "image_addr": 9072156672, + "image_vmaddr": 8527110144, + "image_size": 4096, + "name": "/usr/lib/swift/libswiftCoreData.dylib", + "uuid": "2406573C-7451-3F2C-BFFB-845870447191", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 25, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9313681408, + "image_vmaddr": 8768634880, + "image_size": 73720, + "name": "/usr/lib/libz.1.dylib", + "uuid": "3C9ACC54-1480-3DA0-B610-A5582B44FACE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 2, + "revision_version": 11 + }, + { + "image_addr": 7126474752, + "image_vmaddr": 6581428224, + "image_size": 3534848, + "name": "/System/Library/Frameworks/QuartzCore.framework/QuartzCore", + "uuid": "8402973D-62D0-3612-94E6-16F326902D2D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 11, + "revision_version": 0 + }, + { + "image_addr": 7272476672, + "image_vmaddr": 6727430144, + "image_size": 520180, + "name": "/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration", + "uuid": "420FA60E-6887-31AD-863F-F3D7DC456BE6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1241, + "minor_version": 60, + "revision_version": 3 + }, + { + "image_addr": 9075372032, + "image_vmaddr": 8530325504, + "image_size": 24572, + "name": "/usr/lib/system/libcache.dylib", + "uuid": "9E4C0BF8-E5FA-323C-AE2B-2AC409BB4169", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 90, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8420151296, + "image_vmaddr": 7875104768, + "image_size": 53244, + "name": "/usr/lib/system/libcommonCrypto.dylib", + "uuid": "4AFEA8A5-3328-3A50-B10E-837BD3C598B4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 60198, + "minor_version": 60, + "revision_version": 2 + }, + { + "image_addr": 8420347904, + "image_vmaddr": 7875301376, + "image_size": 16380, + "name": "/usr/lib/system/libcompiler_rt.dylib", + "uuid": "8F3B18FB-3775-308A-851E-00891292C60E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 103, + "minor_version": 1, + "revision_version": 0 + }, + { + "image_addr": 8420114432, + "image_vmaddr": 7875067904, + "image_size": 36860, + "name": "/usr/lib/system/libcopyfile.dylib", + "uuid": "0BEE745D-03C4-3F36-B3F4-B9C0023E3E1E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8420450304, + "image_vmaddr": 7875403776, + "image_size": 561132, + "name": "/usr/lib/system/libcorecrypto.dylib", + "uuid": "77F3650A-2784-3F51-A92B-00DC780DE460", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1386, + "minor_version": 60, + "revision_version": 5 + }, + { + "image_addr": 7226519552, + "image_vmaddr": 6681473024, + "image_size": 290816, + "name": "/usr/lib/system/libdispatch.dylib", + "uuid": "7F5305B9-A9D6-393E-9D4F-CEFD318D0F85", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1412, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7668965376, + "image_vmaddr": 7123918848, + "image_size": 143352, + "name": "/usr/lib/system/libdyld.dylib", + "uuid": "77BE1613-0536-33B3-9971-003AEBB612BC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9212162048, + "image_vmaddr": 8667115520, + "image_size": 24568, + "name": "/usr/lib/system/libmacho.dylib", + "uuid": "4F23F0E4-AFD6-3CF3-8391-C1F9CC7B4C76", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1001, + "minor_version": 2, + "revision_version": 0 + }, + { + "image_addr": 9075085312, + "image_vmaddr": 8530038784, + "image_size": 12288, + "name": "/usr/lib/system/libremovefile.dylib", + "uuid": "B68584DB-9599-3328-B6BB-0AA443BC4BF1", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 63, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8410468352, + "image_vmaddr": 7865421824, + "image_size": 98296, + "name": "/usr/lib/system/libsystem_asl.dylib", + "uuid": "2EA05356-4A8B-312B-B6BF-70FB5290A4CD", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 395, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8421011456, + "image_vmaddr": 7875964928, + "image_size": 20475, + "name": "/usr/lib/system/libsystem_blocks.dylib", + "uuid": "B079ACC8-133C-3F16-A7F5-9471A0CB115C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 84, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7226810368, + "image_vmaddr": 6681763840, + "image_size": 524280, + "name": "/usr/lib/system/libsystem_c.dylib", + "uuid": "872A3077-A853-3D82-BCF4-D2B35D9C8D93", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1534, + "minor_version": 40, + "revision_version": 2 + }, + { + "image_addr": 9271627776, + "image_vmaddr": 8726581248, + "image_size": 20476, + "name": "/usr/lib/system/libsystem_collections.dylib", + "uuid": "A4787C1A-C552-35BD-8A87-D0A3FD18A139", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1534, + "minor_version": 40, + "revision_version": 2 + }, + { + "image_addr": 8421576704, + "image_vmaddr": 7876530176, + "image_size": 20476, + "name": "/usr/lib/system/libsystem_configuration.dylib", + "uuid": "87AA5A56-632C-3239-8F9A-5AE55087EC1E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1241, + "minor_version": 60, + "revision_version": 3 + }, + { + "image_addr": 8188010496, + "image_vmaddr": 7642963968, + "image_size": 204800, + "name": "/usr/lib/system/libsystem_containermanager.dylib", + "uuid": "53ED7AB0-F804-30AB-9620-6D18576429D8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7227334656, + "image_vmaddr": 6682288128, + "image_size": 12284, + "name": "/usr/lib/system/libsystem_coreservices.dylib", + "uuid": "F648EB18-3B55-3609-A1FD-3A1FA4EB8281", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 129, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8421597184, + "image_vmaddr": 7876550656, + "image_size": 45056, + "name": "/usr/lib/system/libsystem_darwin.dylib", + "uuid": "28513438-1492-35C1-95D8-187DAA4DBC93", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8420384768, + "image_vmaddr": 7875338240, + "image_size": 36864, + "name": "/usr/lib/system/libsystem_dnssd.dylib", + "uuid": "9E07228F-7CA1-3AA8-B01A-ECE803E4B9F3", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1790, + "minor_version": 60, + "revision_version": 24 + }, + { + "image_addr": 8145559552, + "image_vmaddr": 7600513024, + "image_size": 12284, + "name": "/usr/lib/system/libsystem_featureflags.dylib", + "uuid": "82974BFB-73D8-3D35-9C57-7B6972FA67D6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 71, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7345070080, + "image_vmaddr": 6800023552, + "image_size": 155648, + "name": "/usr/lib/system/libsystem_info.dylib", + "uuid": "BAF0A5DB-4A7F-3790-8781-5E2C48194832", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8421081088, + "image_vmaddr": 7876034560, + "image_size": 229352, + "name": "/usr/lib/system/libsystem_m.dylib", + "uuid": "7FAF6F58-517D-34E4-951A-53B96926E519", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3226, + "minor_version": 0, + "revision_version": 1 + }, + { + "image_addr": 7343398912, + "image_vmaddr": 6798352384, + "image_size": 147456, + "name": "/usr/lib/system/libsystem_malloc.dylib", + "uuid": "D583161F-E37C-311E-A3EB-9CA5B4AC578A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 409, + "minor_version": 60, + "revision_version": 4 + }, + { + "image_addr": 7495409664, + "image_vmaddr": 6950363136, + "image_size": 114676, + "name": "/usr/lib/system/libsystem_networkextension.dylib", + "uuid": "63AECBCC-A313-363E-9B7A-1F24AA8BB0B2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7736672256, + "image_vmaddr": 7191625728, + "image_size": 45048, + "name": "/usr/lib/system/libsystem_notify.dylib", + "uuid": "13CD57C8-F279-3CB0-A7E9-0443B3236DBA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 306, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8420364288, + "image_vmaddr": 7875317760, + "image_size": 20468, + "name": "/usr/lib/system/libsystem_sandbox.dylib", + "uuid": "2B6DF560-412B-308C-AF2D-285465222A1A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1845, + "minor_version": 60, + "revision_version": 8 + }, + { + "image_addr": 8145317888, + "image_vmaddr": 7600271360, + "image_size": 241652, + "name": "/usr/lib/system/libsystem_kernel.dylib", + "uuid": "96473C26-5219-3DE9-87C2-02B9C4CBAF39", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 8792, + "minor_version": 60, + "revision_version": 51 + }, + { + "image_addr": 8420421632, + "image_vmaddr": 7875375104, + "image_size": 28660, + "name": "/usr/lib/system/libsystem_platform.dylib", + "uuid": "B94924B8-8290-38C4-8F83-3F0DE8542C14", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 288, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8421031936, + "image_vmaddr": 7875985408, + "image_size": 49152, + "name": "/usr/lib/system/libsystem_pthread.dylib", + "uuid": "7F4C3946-4F85-3BB7-B08D-05F2FA4AE964", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 514, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8096763904, + "image_vmaddr": 7551717376, + "image_size": 36856, + "name": "/usr/lib/system/libsystem_symptoms.dylib", + "uuid": "9A5471D8-7E10-31D5-84FC-A1BC9E0ECC78", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7494369280, + "image_vmaddr": 6949322752, + "image_size": 106496, + "name": "/usr/lib/system/libsystem_trace.dylib", + "uuid": "F7714C31-A962-33CF-A14D-5706B274D00A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1406, + "minor_version": 0, + "revision_version": 15 + }, + { + "image_addr": 8420302848, + "image_vmaddr": 7875256320, + "image_size": 45056, + "name": "/usr/lib/system/libunwind.dylib", + "uuid": "8430DFCC-6C7B-3619-84AE-781DE2FAA58F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 202, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 8421310464, + "image_vmaddr": 7876263936, + "image_size": 266240, + "name": "/usr/lib/system/libxpc.dylib", + "uuid": "6CCE8B9A-1DAA-3E9B-B604-31098593EF33", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2462, + "minor_version": 60, + "revision_version": 14 + }, + { + "image_addr": 8420204544, + "image_vmaddr": 7875158016, + "image_size": 98300, + "name": "/usr/lib/libc++abi.dylib", + "uuid": "94CAB44E-88C8-3105-B294-B4A84CB37CF5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1300, + "minor_version": 36, + "revision_version": 0 + }, + { + "image_addr": 7592939520, + "image_vmaddr": 7047892992, + "image_size": 299008, + "name": "/System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout", + "uuid": "85779EDD-7775-3AD1-9187-859DE7DC32E5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 29, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8691630080, + "image_vmaddr": 8146583552, + "image_size": 839620, + "name": "/usr/lib/libcompression.dylib", + "uuid": "273543EC-7975-3C35-A7D3-8E8F71568815", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7121158144, + "image_vmaddr": 6576111616, + "image_size": 3973120, + "name": "/System/Library/Frameworks/CFNetwork.framework/CFNetwork", + "uuid": "BCB4A944-3FF3-3CC3-B2F9-546B6D632301", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1402, + "minor_version": 0, + "revision_version": 5 + }, + { + "image_addr": 8366325760, + "image_vmaddr": 7821279232, + "image_size": 552948, + "name": "/usr/lib/libarchive.2.dylib", + "uuid": "3536ACEE-F471-37B4-B958-66EC18A0D052", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 9, + "minor_version": 2, + "revision_version": 0 + }, + { + "image_addr": 7249330176, + "image_vmaddr": 6704283648, + "image_size": 2822144, + "name": "/usr/lib/libicucore.A.dylib", + "uuid": "554ABBE3-39F7-3DF2-8B43-E66A8426DDEF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 70, + "minor_version": 1, + "revision_version": 0 + }, + { + "image_addr": 7757815808, + "image_vmaddr": 7212769280, + "image_size": 970740, + "name": "/usr/lib/libxml2.2.dylib", + "uuid": "DD140B09-99ED-3641-898A-7E7876A9779C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 10, + "minor_version": 9, + "revision_version": 0 + }, + { + "image_addr": 8692477952, + "image_vmaddr": 8147431424, + "image_size": 8192, + "name": "/usr/lib/liblangid.dylib", + "uuid": "BE110698-4CDD-33B7-BF1A-F18FA12B317B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7236509696, + "image_vmaddr": 6691463168, + "image_size": 774144, + "name": "/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit", + "uuid": "DE4734D2-FF9C-3181-9F4F-320480E230BA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 275, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7245357056, + "image_vmaddr": 6700310528, + "image_size": 1376248, + "name": "/System/Library/Frameworks/Combine.framework/Combine", + "uuid": "0840D070-2661-3DED-8049-2A079B2C99E1", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 310, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9331449856, + "image_vmaddr": 8786403328, + "image_size": 4092, + "name": "/System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking", + "uuid": "FBC633A1-23D9-3F69-A474-101F4E596C5A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 44, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8691445760, + "image_vmaddr": 8146399232, + "image_size": 49152, + "name": "/usr/lib/swift/libswiftXPC.dylib", + "uuid": "20260FB2-19DA-358F-8026-83A160D70932", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7274577920, + "image_vmaddr": 6729531392, + "image_size": 372728, + "name": "/usr/lib/swift/libswift_Concurrency.dylib", + "uuid": "E8A871CE-C094-3EB6-BFAC-E6D15FFE75E8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 5, + "minor_version": 7, + "revision_version": 1 + }, + { + "image_addr": 8371253248, + "image_vmaddr": 7826206720, + "image_size": 720892, + "name": "/usr/lib/swift/libswift_StringProcessing.dylib", + "uuid": "360EE16F-34A9-3406-AB95-E42464F51A08", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7005609984, + "image_vmaddr": 6460563456, + "image_size": 208896, + "name": "/System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal", + "uuid": "0348F150-4999-3374-9EEB-B67ED82E14FD", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 483, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9246560256, + "image_vmaddr": 8701513728, + "image_size": 102388, + "name": "/usr/lib/liblzma.5.dylib", + "uuid": "F5839732-2747-303B-8E5B-4273F623D697", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 7234883584, + "image_vmaddr": 6689837056, + "image_size": 1626112, + "name": "/System/Library/Frameworks/Security.framework/Security", + "uuid": "1ABFE211-E145-3935-A5F7-4EC64E1AC086", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 60420, + "minor_version": 60, + "revision_version": 18 + }, + { + "image_addr": 8692486144, + "image_vmaddr": 8147439616, + "image_size": 98300, + "name": "/usr/lib/libapple_nghttp2.dylib", + "uuid": "F3647B6A-5C48-3992-84DD-FCFABAD071AA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 47, + "revision_version": 0 + }, + { + "image_addr": 9075425280, + "image_vmaddr": 8530378752, + "image_size": 4096, + "name": "/usr/lib/libnetwork.dylib", + "uuid": "7907E9DD-568B-3B69-BC63-C752F1DFB711", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7716298752, + "image_vmaddr": 7171252224, + "image_size": 1703932, + "name": "/usr/lib/libsqlite3.dylib", + "uuid": "DE69D6CF-65DC-3869-BFD6-019706F139CE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 346, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7106797568, + "image_vmaddr": 6561751040, + "image_size": 14360576, + "name": "/System/Library/Frameworks/Network.framework/Network", + "uuid": "437DA3E4-8B93-3E6C-ABD3-378E9723FA37", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8692469760, + "image_vmaddr": 8147423232, + "image_size": 8192, + "name": "/usr/lib/libenergytrace.dylib", + "uuid": "9762F770-0EFA-36C3-9810-A30679DF2364", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8002478080, + "image_vmaddr": 7457431552, + "image_size": 69632, + "name": "/usr/lib/libbsm.0.dylib", + "uuid": "50BF596F-9107-3E53-BB21-59E2405BD71F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8691593216, + "image_vmaddr": 8146546688, + "image_size": 36864, + "name": "/usr/lib/libCoreEntitlements.dylib", + "uuid": "ABD48A0E-493A-3EF6-BBE4-775D5999D2D0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8421650432, + "image_vmaddr": 7876603904, + "image_size": 167936, + "name": "/System/Library/PrivateFrameworks/MessageSecurity.framework/MessageSecurity", + "uuid": "22DB4DE5-13ED-377F-AEE6-BE4EFFDA9725", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7626768384, + "image_vmaddr": 7081721856, + "image_size": 106496, + "name": "/System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer", + "uuid": "5468EBA0-8987-39D7-A44A-7C4228CD12F4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 294, + "minor_version": 30, + "revision_version": 6 + }, + { + "image_addr": 8691494912, + "image_vmaddr": 8146448384, + "image_size": 98300, + "name": "/usr/lib/libcoretls.dylib", + "uuid": "50373784-1961-37B0-8A8C-EB4C9261FC82", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 183, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9272012800, + "image_vmaddr": 8726966272, + "image_size": 8192, + "name": "/usr/lib/libcoretls_cfhelpers.dylib", + "uuid": "5BD43C59-4DB5-3935-88CF-04CE26CBA80F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 183, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7489687552, + "image_vmaddr": 6944641024, + "image_size": 466944, + "name": "/usr/lib/libMobileGestalt.dylib", + "uuid": "759C8F09-8169-3564-87EA-6DCB1439CCB9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8690675712, + "image_vmaddr": 8145629184, + "image_size": 24572, + "name": "/usr/lib/libheimdal-asn1.dylib", + "uuid": "937674C9-3372-3BE0-B879-0721F4D4F9B6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8421818368, + "image_vmaddr": 7876771840, + "image_size": 217080, + "name": "/usr/lib/libpcap.A.dylib", + "uuid": "9E33D474-69D3-380A-95E4-3081A02B22D4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8422035456, + "image_vmaddr": 7876988928, + "image_size": 40953, + "name": "/usr/lib/libdns_services.dylib", + "uuid": "DEB447D6-3290-3151-8F10-B1EFA01E38AF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7815962624, + "image_vmaddr": 7270916096, + "image_size": 57344, + "name": "/System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer", + "uuid": "6D4CA45B-07F9-363D-B513-AF2B0B74A069", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7613091840, + "image_vmaddr": 7068045312, + "image_size": 90112, + "name": "/System/Library/Frameworks/IOSurface.framework/IOSurface", + "uuid": "F12E1B87-789D-3234-94AF-5B514DBC57A3", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8692625408, + "image_vmaddr": 8147578880, + "image_size": 53248, + "name": "/usr/lib/libbz2.1.0.dylib", + "uuid": "BA29AE7E-FCA7-39FC-A57A-6E7D1461AD3A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 8 + }, + { + "image_addr": 8689680384, + "image_vmaddr": 8144633856, + "image_size": 995316, + "name": "/usr/lib/libiconv.2.dylib", + "uuid": "FFEEAD45-37AF-38FB-A784-1F3E21CCF225", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 7, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8691441664, + "image_vmaddr": 8146395136, + "image_size": 4096, + "name": "/usr/lib/libcharset.1.dylib", + "uuid": "85CB7383-D295-3F26-8E01-6DD28745993E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8690700288, + "image_vmaddr": 8145653760, + "image_size": 741364, + "name": "/usr/lib/swift/libswift_RegexParser.dylib", + "uuid": "E55693C5-22BE-3246-98DC-11CBA4F9A7A6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715046912, + "image_vmaddr": 8170000384, + "image_size": 4096, + "name": "/System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics", + "uuid": "CB090E08-D9F8-37D6-A841-9D7E2C20148C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 91, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715227136, + "image_vmaddr": 8170180608, + "image_size": 12284, + "name": "/usr/lib/libapp_launch_measurement.dylib", + "uuid": "F89A4C07-5FD0-3D2D-8D03-03E605DF8800", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7613181952, + "image_vmaddr": 7068135424, + "image_size": 184320, + "name": "/System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics", + "uuid": "A41B07B2-F23B-3891-B38B-C652F7662934", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713203712, + "image_vmaddr": 8168157184, + "image_size": 57344, + "name": "/usr/lib/libperfcheck.dylib", + "uuid": "2104DCB8-3E28-3CDF-983C-99DDA86A8630", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7883755520, + "image_vmaddr": 7338708992, + "image_size": 53248, + "name": "/System/Library/PrivateFrameworks/perfdata.framework/perfdata", + "uuid": "F54CA785-40C7-31E3-B577-CB2C687ABFA1", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 94, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713261056, + "image_vmaddr": 8168214528, + "image_size": 36860, + "name": "/usr/lib/libIOReport.dylib", + "uuid": "22AE95F3-6118-3EEC-9F80-BC3F8EF3248F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8692678656, + "image_vmaddr": 8147632128, + "image_size": 151552, + "name": "/System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce", + "uuid": "9445CE3A-18F0-3F4D-A08D-C7E9C3E3499D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7743365120, + "image_vmaddr": 7198318592, + "image_size": 81920, + "name": "/System/Library/PrivateFrameworks/HangTracer.framework/HangTracer", + "uuid": "9DCE0CB8-29A5-305C-ABD9-A2F28EBE2903", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 230, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715014144, + "image_vmaddr": 8169967616, + "image_size": 32768, + "name": "/System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing", + "uuid": "BEED7EEA-8A6B-3E1C-A68B-3C00E4D97AA4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8086278144, + "image_vmaddr": 7541231616, + "image_size": 98304, + "name": "/System/Library/PrivateFrameworks/libEDR.framework/libEDR", + "uuid": "A5DB557F-7E28-3CA8-82CC-E15BC45EBA93", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7328456704, + "image_vmaddr": 6783410176, + "image_size": 352256, + "name": "/System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices", + "uuid": "6024BE15-3680-389A-B5CD-8766BC017A8D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 60, + "revision_version": 5 + }, + { + "image_addr": 9049878528, + "image_vmaddr": 8504832000, + "image_size": 4096, + "name": "/System/Library/Frameworks/Accelerate.framework/Accelerate", + "uuid": "8BE2ED06-BFA3-3150-89C1-3B666F6D3FAC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 4, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8245174272, + "image_vmaddr": 7700127744, + "image_size": 86016, + "name": "/System/Library/PrivateFrameworks/DiagnosticRequest.framework/DiagnosticRequest", + "uuid": "CA3ACE34-6670-3F00-B949-16743786DD20", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7131860992, + "image_vmaddr": 6586814464, + "image_size": 6348788, + "name": "/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics", + "uuid": "C0A89DCA-3E30-3A39-95A9-275BA86825A9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1690, + "minor_version": 3, + "revision_version": 1 + }, + { + "image_addr": 7130009600, + "image_vmaddr": 6584963072, + "image_size": 1851392, + "name": "/System/Library/Frameworks/CoreText.framework/CoreText", + "uuid": "9C205476-4E0A-3053-A622-2390EC2D5C6F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7581634560, + "image_vmaddr": 7036588032, + "image_size": 286720, + "name": "/System/Library/Frameworks/CoreVideo.framework/CoreVideo", + "uuid": "E5E2250D-6D75-3149-9564-8EEC4CD0985D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 5, + "revision_version": 0 + }, + { + "image_addr": 7189815296, + "image_vmaddr": 6644768768, + "image_size": 4841472, + "name": "/System/Library/Frameworks/ImageIO.framework/ImageIO", + "uuid": "F7401F36-9070-34D5-8194-54B0C9B4AD59", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8712421376, + "image_vmaddr": 8167374848, + "image_size": 16384, + "name": "/System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator", + "uuid": "94FB62B1-1881-329D-8872-2288FC3496B5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7015821312, + "image_vmaddr": 6470774784, + "image_size": 1867776, + "name": "/System/Library/Frameworks/Metal.framework/Metal", + "uuid": "85AE8FD2-045B-3F83-BD2D-0DFCA189A3E2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 306, + "minor_version": 3, + "revision_version": 3 + }, + { + "image_addr": 8715051008, + "image_vmaddr": 8170004480, + "image_size": 40960, + "name": "/System/Library/Frameworks/OpenGLES.framework/OpenGLES", + "uuid": "A3354BFA-DC36-3438-B1DA-880931C248A5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7527600128, + "image_vmaddr": 6982553600, + "image_size": 159744, + "name": "/System/Library/PrivateFrameworks/PowerLog.framework/PowerLog", + "uuid": "0051D9D5-81FC-3F53-8EC8-00EE74CC3EDB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7227346944, + "image_vmaddr": 6682300416, + "image_size": 8192, + "name": "/System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary", + "uuid": "4922AA4C-AB90-3462-93D1-A41D4A83F23B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7017689088, + "image_vmaddr": 6472642560, + "image_size": 2043904, + "name": "/System/Library/Frameworks/CoreServices.framework/CoreServices", + "uuid": "22956E2A-6884-339E-ABAD-9CEAC84BDED0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1228, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7849701376, + "image_vmaddr": 7304654848, + "image_size": 798720, + "name": "/System/Library/PrivateFrameworks/InstalledContentLibrary.framework/InstalledContentLibrary", + "uuid": "10461BEC-F229-37D5-B910-6360A5C89DDC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7614418944, + "image_vmaddr": 7069372416, + "image_size": 229376, + "name": "/System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore", + "uuid": "A391B517-659B-394E-8D87-187238FD71A4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1141, + "minor_version": 1, + "revision_version": 0 + }, + { + "image_addr": 8693215232, + "image_vmaddr": 8148168704, + "image_size": 24576, + "name": "/System/Library/PrivateFrameworks/AppleMobileFileIntegrity.framework/AppleMobileFileIntegrity", + "uuid": "A7DA00EF-D805-3D66-9072-053D8072B94C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8693239808, + "image_vmaddr": 8148193280, + "image_size": 81920, + "name": "/usr/lib/libmis.dylib", + "uuid": "9695F16F-F088-3265-9498-D7C056FB9F15", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8693321728, + "image_vmaddr": 8148275200, + "image_size": 28672, + "name": "/System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices", + "uuid": "BE8C5DC7-573B-3752-95C6-6683CBC565CE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7813681152, + "image_vmaddr": 7268634624, + "image_size": 1675264, + "name": "/System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness", + "uuid": "1A0C57C6-80BD-3589-AB29-1842344B64EC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7294349312, + "image_vmaddr": 6749302784, + "image_size": 208896, + "name": "/usr/lib/libAccessibility.dylib", + "uuid": "C5CB486B-0323-36D8-BC73-721BA27EDA33", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8237031424, + "image_vmaddr": 7691984896, + "image_size": 32768, + "name": "/System/Library/PrivateFrameworks/AFKUser.framework/AFKUser", + "uuid": "AEDA8846-47C5-3931-8A8C-76B3E9EBBA37", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7743447040, + "image_vmaddr": 7198400512, + "image_size": 245760, + "name": "/System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories", + "uuid": "5BF66130-5996-30CD-84B8-EBB8E8DC1985", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715124736, + "image_vmaddr": 8170078208, + "image_size": 61440, + "name": "/System/Library/PrivateFrameworks/SystemWake.framework/SystemWake", + "uuid": "F67D63A1-0404-3016-9C5C-A5CDA5867429", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8237924352, + "image_vmaddr": 7692877824, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/CPMS.framework/CPMS", + "uuid": "1C65EF79-A0C9-32E9-BD53-C6419C22CC9C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7288549376, + "image_vmaddr": 6743502848, + "image_size": 565248, + "name": "/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices", + "uuid": "BB8B1A9F-2572-3FB2-8498-91357FC09704", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9069514752, + "image_vmaddr": 8524468224, + "image_size": 4096, + "name": "/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices", + "uuid": "609FD7AF-C1B2-3B41-9F35-A24F5927DBDA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1228, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8086032384, + "image_vmaddr": 7540985856, + "image_size": 36864, + "name": "/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices", + "uuid": "EE18D681-97AC-3FE8-BA47-8613EA5C5BD6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 14, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8237064192, + "image_vmaddr": 7692017664, + "image_size": 69632, + "name": "/System/Library/PrivateFrameworks/HID.framework/HID", + "uuid": "D8BCAA49-77D0-3C69-A28E-8AA5EDE0B49A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7227908096, + "image_vmaddr": 6682861568, + "image_size": 737280, + "name": "/System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard", + "uuid": "727D7804-2767-3204-A0C3-3B704B52041E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7758786560, + "image_vmaddr": 7213740032, + "image_size": 1433600, + "name": "/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib", + "uuid": "9EB67833-83E4-3CED-97C8-4D6DC112AD6A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8712437760, + "image_vmaddr": 8167391232, + "image_size": 45052, + "name": "/System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib", + "uuid": "D30D46AE-E2F1-3C1B-A08C-EDF5150994FB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7194656768, + "image_vmaddr": 6649610240, + "image_size": 3420128, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage", + "uuid": "2BAD4817-BD73-3111-9929-562900AFBB9F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 575, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9081102336, + "image_vmaddr": 8536055808, + "image_size": 4096, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib", + "uuid": "0D97514A-7DF0-334A-AE99-BFAD5DA8C6C7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 818, + "minor_version": 60, + "revision_version": 3 + }, + { + "image_addr": 9357586432, + "image_vmaddr": 8812539904, + "image_size": 380908, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib", + "uuid": "9BEC2231-F5AC-38B5-8722-6B2A29EBD9F9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 818, + "minor_version": 60, + "revision_version": 3 + }, + { + "image_addr": 8697090048, + "image_vmaddr": 8152043520, + "image_size": 962556, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib", + "uuid": "C22F7DCA-9ACC-3146-8A62-5513384DE1AA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8694063104, + "image_vmaddr": 8149016576, + "image_size": 2863100, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib", + "uuid": "74C625DC-8346-3EAC-B457-F187A077CB4B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8698052608, + "image_vmaddr": 8153006080, + "image_size": 5062628, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib", + "uuid": "1046764B-7923-398B-8FB1-555D45BC6C1D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8697004032, + "image_vmaddr": 8151957504, + "image_size": 86016, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib", + "uuid": "B8B76189-2F0F-349D-ABD2-9F0909256DD7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8696926208, + "image_vmaddr": 8151879680, + "image_size": 77824, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib", + "uuid": "67F57FFF-BF48-30F5-A822-1DFC00ACF242", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9321758720, + "image_vmaddr": 8776712192, + "image_size": 20476, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib", + "uuid": "86B33826-E9F9-3938-80A9-D544D3DE71CC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8705998848, + "image_vmaddr": 8160952320, + "image_size": 6131688, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib", + "uuid": "89F5C08F-540C-3258-82B6-C72758D6561A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8693641216, + "image_vmaddr": 8148594688, + "image_size": 421880, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib", + "uuid": "E207854C-4D23-32F9-BD78-11609A7744F8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8703115264, + "image_vmaddr": 8158068736, + "image_size": 2883584, + "name": "/System/Library/PrivateFrameworks/MIL.framework/MIL", + "uuid": "E90CD905-B9CE-3F03-814E-C3A24D3308DC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 4, + "minor_version": 28, + "revision_version": 4 + }, + { + "image_addr": 8712130560, + "image_vmaddr": 8167084032, + "image_size": 290808, + "name": "/System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG", + "uuid": "E94733BD-2373-3068-BFBD-D6A63973EECA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9053429760, + "image_vmaddr": 8508383232, + "image_size": 110588, + "name": "/usr/lib/libexpat.1.dylib", + "uuid": "41F83F59-7953-3E91-918C-4A6CEA9AC2E9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 8, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7244423168, + "image_vmaddr": 6699376640, + "image_size": 835580, + "name": "/System/Library/Frameworks/ColorSync.framework/ColorSync", + "uuid": "0060BB8B-4F11-3D45-AC22-F7BE584C3AE9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8712482816, + "image_vmaddr": 8167436288, + "image_size": 598016, + "name": "/usr/lib/libate.dylib", + "uuid": "C951FDAF-0B26-32F2-B8C0-F781A1CFB3DC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3, + "minor_version": 0, + "revision_version": 7 + }, + { + "image_addr": 7883509760, + "image_vmaddr": 7338463232, + "image_size": 28668, + "name": "/System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator", + "uuid": "18C66DE2-AA65-3C0D-9B43-F364048B6B3C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8693350400, + "image_vmaddr": 8148303872, + "image_size": 290816, + "name": "/usr/lib/libllvm-flatbuffers.dylib", + "uuid": "B16F6937-8F87-3BB4-AD62-2CB6DBE659AB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9075396608, + "image_vmaddr": 8530350080, + "image_size": 28664, + "name": "/System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib", + "uuid": "50ADB9C7-D88A-3170-84D3-55C80F8891A9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9261887488, + "image_vmaddr": 8716840960, + "image_size": 20480, + "name": "/System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libGPUCompilerUtils.dylib", + "uuid": "AF0240CF-E4FB-3981-A2FF-5AA8BCC50FB2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 31001, + "minor_version": 255, + "revision_version": 1 + }, + { + "image_addr": 8713793536, + "image_vmaddr": 8168747008, + "image_size": 36864, + "name": "/System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices", + "uuid": "FEB901DF-1094-306A-8DB0-BF6059239796", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7476764672, + "image_vmaddr": 6931718144, + "image_size": 352256, + "name": "/System/Library/PrivateFrameworks/BoardServices.framework/BoardServices", + "uuid": "FB50F165-00A5-38B8-9893-FBAB7B8EB0EB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7476080640, + "image_vmaddr": 6931034112, + "image_size": 684032, + "name": "/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices", + "uuid": "1E697AFA-FDA9-37C1-828A-40A1BCF4D009", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7227355136, + "image_vmaddr": 6682308608, + "image_size": 552960, + "name": "/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices", + "uuid": "540F736D-F791-3E94-873F-BE0FA92E7F13", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7757582336, + "image_vmaddr": 7212535808, + "image_size": 176128, + "name": "/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation", + "uuid": "1132A5E8-C571-3185-A12D-13018F4B3096", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7757758464, + "image_vmaddr": 7212711936, + "image_size": 57344, + "name": "/System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices", + "uuid": "90976B99-A07F-3DC8-8B4D-B5CEC81CE4EA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 60, + "revision_version": 5 + }, + { + "image_addr": 8713392128, + "image_vmaddr": 8168345600, + "image_size": 401404, + "name": "/System/Library/PrivateFrameworks/Bom.framework/Bom", + "uuid": "5CC990E5-4EF1-3363-BF40-02C906267B8B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 195, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713080832, + "image_vmaddr": 8168034304, + "image_size": 65508, + "name": "/System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression", + "uuid": "C2562307-F3F8-3866-9D89-22EB5D92FB3C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 145, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713830400, + "image_vmaddr": 8168783872, + "image_size": 421828, + "name": "/usr/lib/libParallelCompression.dylib", + "uuid": "707119C0-C404-3D85-A66E-E19858BC40C6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7532482560, + "image_vmaddr": 6987436032, + "image_size": 40960, + "name": "/System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib", + "uuid": "1E10E409-4146-3CAC-BC62-1B2E4646CEEB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7756640256, + "image_vmaddr": 7211593728, + "image_size": 65536, + "name": "/System/Library/PrivateFrameworks/FontServices.framework/FontServices", + "uuid": "21E4F94A-5B14-3712-8990-8517ED54A802", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9139404800, + "image_vmaddr": 8594358272, + "image_size": 262144, + "name": "/System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib", + "uuid": "9DE5C629-461D-3958-B72E-68FC3A1FAAD8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7883239424, + "image_vmaddr": 7338192896, + "image_size": 270336, + "name": "/System/Library/PrivateFrameworks/OTSVG.framework/OTSVG", + "uuid": "C5DA3411-428C-3543-89E2-BA53307DFEF2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7457591296, + "image_vmaddr": 6912544768, + "image_size": 81920, + "name": "/System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers", + "uuid": "91538C0A-7D8D-39C5-8466-B86B0F50C6FA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 709, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7289114624, + "image_vmaddr": 6744068096, + "image_size": 143360, + "name": "/System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities", + "uuid": "EFBC8CD3-6C19-36D9-A933-AF2E597D75B0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7816019968, + "image_vmaddr": 7270973440, + "image_size": 65532, + "name": "/System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility", + "uuid": "4E635EE4-C7A0-3697-B45E-2BEEB0494117", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 62, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715186176, + "image_vmaddr": 8170139648, + "image_size": 40956, + "name": "/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib", + "uuid": "16771749-7C04-332F-9224-841BC0C4AF26", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715239424, + "image_vmaddr": 8170192896, + "image_size": 241664, + "name": "/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib", + "uuid": "EC62500B-1B44-31EC-9897-84A81A832DAA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715091968, + "image_vmaddr": 8170045440, + "image_size": 8192, + "name": "/System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib", + "uuid": "422B68F1-F714-3522-8C25-B7994127D55E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715100160, + "image_vmaddr": 8170053632, + "image_size": 24572, + "name": "/System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib", + "uuid": "26B485CF-C280-367A-83CE-8D78A9A83150", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8739618816, + "image_vmaddr": 8194572288, + "image_size": 303104, + "name": "/System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager", + "uuid": "DCE0296C-385B-36D3-8969-6E0F0C73157E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 280, + "minor_version": 3, + "revision_version": 3 + }, + { + "image_addr": 7553384448, + "image_vmaddr": 7008337920, + "image_size": 1515520, + "name": "/System/Library/Frameworks/FileProvider.framework/FileProvider", + "uuid": "A7986DBB-1523-31B9-8CFA-4839DCE86022", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7138209792, + "image_vmaddr": 6593163264, + "image_size": 25067520, + "name": "/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore", + "uuid": "5F83A575-2862-390F-B15F-D06C182C43C2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6206, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7522471936, + "image_vmaddr": 6977425408, + "image_size": 1036288, + "name": "/System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet", + "uuid": "C356A7C1-A7B7-3CCC-97BC-EF5628D35724", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1852, + "minor_version": 1, + "revision_version": 2 + }, + { + "image_addr": 8317976576, + "image_vmaddr": 7772930048, + "image_size": 598016, + "name": "/System/Library/PrivateFrameworks/PrintKitUI.framework/PrintKitUI", + "uuid": "7F533E98-00FE-303C-B215-70AEAB93B3CA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 15, + "minor_version": 1, + "revision_version": 0 + }, + { + "image_addr": 7684726784, + "image_vmaddr": 7139680256, + "image_size": 331776, + "name": "/System/Library/PrivateFrameworks/IconServices.framework/IconServices", + "uuid": "4FE7A7B2-EC3C-3CDC-B4B9-CEF56AF276B0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 552, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8254009344, + "image_vmaddr": 7708962816, + "image_size": 86016, + "name": "/usr/lib/libprequelite.dylib", + "uuid": "B5AED929-E5AE-3FF6-B5A9-4D3FDC3E8F5F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 125, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8739921920, + "image_vmaddr": 8194875392, + "image_size": 192512, + "name": "/System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore", + "uuid": "2624289E-91E3-3A2A-8275-A5DF1C0D4A5E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 280, + "minor_version": 3, + "revision_version": 3 + }, + { + "image_addr": 7579295744, + "image_vmaddr": 7034249216, + "image_size": 1855488, + "name": "/System/Library/PrivateFrameworks/Sharing.framework/Sharing", + "uuid": "29DF7240-1F7B-3389-8F84-0B0BC001BE25", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1852, + "minor_version": 1, + "revision_version": 2 + }, + { + "image_addr": 7288262656, + "image_vmaddr": 6743216128, + "image_size": 286720, + "name": "/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport", + "uuid": "EEEC759B-F8B5-36E9-883E-8EE9901A0DF2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 29, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7347130368, + "image_vmaddr": 6802083840, + "image_size": 3457024, + "name": "/System/Library/Frameworks/CoreImage.framework/CoreImage", + "uuid": "5B07CF09-7944-3F76-BAAD-5EC9FE1B54F2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 5, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7272996864, + "image_vmaddr": 6727950336, + "image_size": 1581056, + "name": "/System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils", + "uuid": "1B3C61D9-EEF1-3BAC-B3D5-13932F64D81B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7274950656, + "image_vmaddr": 6729904128, + "image_size": 1277952, + "name": "/System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation", + "uuid": "DA37928B-441C-3C6E-8F7E-C182C194AA2C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 856, + "minor_version": 2, + "revision_version": 0 + }, + { + "image_addr": 8401219584, + "image_vmaddr": 7856173056, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/CollectionViewCore.framework/CollectionViewCore", + "uuid": "0F3E2B93-B9F6-34BA-8DE9-9CD3A90C19EE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8725716992, + "image_vmaddr": 8180670464, + "image_size": 36864, + "name": "/System/Library/Frameworks/PushKit.framework/PushKit", + "uuid": "D5296D8C-2D0E-380B-9D8E-B1018E4E7A6B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8730492928, + "image_vmaddr": 8185446400, + "image_size": 20480, + "name": "/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap", + "uuid": "6A11919D-9AAD-3EE4-86DF-30F584696097", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 21240, + "minor_version": 2, + "revision_version": 0 + }, + { + "image_addr": 8316239872, + "image_vmaddr": 7771193344, + "image_size": 1736704, + "name": "/System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy", + "uuid": "005188C2-EC3B-33D5-98E9-B397AA717DFB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 614, + "minor_version": 3, + "revision_version": 4 + }, + { + "image_addr": 7529656320, + "image_vmaddr": 6984609792, + "image_size": 1155072, + "name": "/System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration", + "uuid": "490D92EB-5C41-338F-AA0D-1F5E15185CC2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7799951360, + "image_vmaddr": 7254904832, + "image_size": 233472, + "name": "/System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag", + "uuid": "5D190FAC-3337-3518-B8B0-63E798DBF4F3", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7288188928, + "image_vmaddr": 6743142400, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices", + "uuid": "3A1BE799-739B-3833-B074-7917180FDDAF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7761686528, + "image_vmaddr": 7216640000, + "image_size": 217088, + "name": "/System/Library/PrivateFrameworks/BacklightServices.framework/BacklightServices", + "uuid": "AAFEAD3C-9B5A-3D92-9202-3C25612C8ABD", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8086069248, + "image_vmaddr": 7541022720, + "image_size": 40960, + "name": "/System/Library/PrivateFrameworks/StudyLog.framework/StudyLog", + "uuid": "A3F040AF-7398-32F4-B151-130924547EFC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7762497536, + "image_vmaddr": 7217451008, + "image_size": 98304, + "name": "/System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction", + "uuid": "D3B6CC84-A695-366D-BA69-7E750C2E7B8E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7686176768, + "image_vmaddr": 7141130240, + "image_size": 131072, + "name": "/System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial", + "uuid": "AC870211-C5D9-3221-A194-8CDDACC06F78", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7259291648, + "image_vmaddr": 6714245120, + "image_size": 221184, + "name": "/System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard", + "uuid": "68D080D0-D4CB-30AF-A252-5B06FEE79F0D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8730513408, + "image_vmaddr": 8185466880, + "image_size": 12288, + "name": "/System/Library/Frameworks/DataDetection.framework/DataDetection", + "uuid": "E26807DE-C0F7-39AA-89B3-732167373904", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 727, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7457423360, + "image_vmaddr": 6912376832, + "image_size": 167936, + "name": "/System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput", + "uuid": "6F782F25-B897-3D4C-BA61-F679FCBB6DAF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7651753984, + "image_vmaddr": 7106707456, + "image_size": 884736, + "name": "/System/Library/PrivateFrameworks/CMPhoto.framework/CMPhoto", + "uuid": "12252D97-6A73-3905-BE7C-D16BF94F6121", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7355129856, + "image_vmaddr": 6810083328, + "image_size": 14073856, + "name": "/System/Library/Frameworks/MediaToolbox.framework/MediaToolbox", + "uuid": "914C600C-6AC6-3C81-B4E7-ADFED0F9A399", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7494475776, + "image_vmaddr": 6949429248, + "image_size": 241664, + "name": "/System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore", + "uuid": "66B9AF8A-0868-3542-B9F2-22A244C00B32", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 727, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8716963840, + "image_vmaddr": 8171917312, + "image_size": 233472, + "name": "/System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG", + "uuid": "BFD15F77-ADB5-31DC-A9B7-B4FD8BFF9B79", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 232, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7528665088, + "image_vmaddr": 6983618560, + "image_size": 991232, + "name": "/System/Library/PrivateFrameworks/CoreUI.framework/CoreUI", + "uuid": "DBFE3697-76B8-3D1D-969D-6EF507BE24DA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 802, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7735513088, + "image_vmaddr": 7190466560, + "image_size": 458752, + "name": "/System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset", + "uuid": "6F244D09-D9E2-3AD8-A677-E908FD37A05D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8738803712, + "image_vmaddr": 8193757184, + "image_size": 319488, + "name": "/System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit", + "uuid": "CB3E34B8-956A-3565-8D86-22EC50E991FF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 38, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7878725632, + "image_vmaddr": 7333679104, + "image_size": 151552, + "name": "/System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools", + "uuid": "61A16EAA-30B9-3CDD-A3FB-2EBC7E671865", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7259512832, + "image_vmaddr": 6714466304, + "image_size": 716800, + "name": "/System/Library/PrivateFrameworks/TextInput.framework/TextInput", + "uuid": "EBD06EC0-F3DD-3A17-A578-CE2E0C657D36", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7324745728, + "image_vmaddr": 6779699200, + "image_size": 176128, + "name": "/System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices", + "uuid": "0266437D-F2E3-3470-B417-9CCC505AB554", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6206, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8251940864, + "image_vmaddr": 7706894336, + "image_size": 667648, + "name": "/System/Library/PrivateFrameworks/TextureIO.framework/TextureIO", + "uuid": "179C3FD0-3703-3786-82A0-2108814B6D46", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3, + "minor_version": 10, + "revision_version": 10 + }, + { + "image_addr": 8354725888, + "image_vmaddr": 7809679360, + "image_size": 45056, + "name": "/System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport", + "uuid": "B00B8A73-39CD-383E-A234-BE95B0309357", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 74, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7289257984, + "image_vmaddr": 6744211456, + "image_size": 2191360, + "name": "/System/Library/Frameworks/CoreMedia.framework/CoreMedia", + "uuid": "A7B88014-E6C2-3A81-BA3F-51CBC348E480", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7350587392, + "image_vmaddr": 6805540864, + "image_size": 4542464, + "name": "/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox", + "uuid": "2716506C-0561-30F7-B9B7-4F8EB674EC1A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8264261632, + "image_vmaddr": 7719215104, + "image_size": 49152, + "name": "/System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer", + "uuid": "293A73DF-27FC-3912-97A2-DE926F3755B6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8716902400, + "image_vmaddr": 8171855872, + "image_size": 4093, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders", + "uuid": "20E200F3-37E8-38CD-A86A-FE92501F2075", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 8715653120, + "image_vmaddr": 8170606592, + "image_size": 49152, + "name": "/System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore", + "uuid": "C03B0F74-EC0C-3971-A328-95387832EAE1", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714944512, + "image_vmaddr": 8169897984, + "image_size": 8192, + "name": "/System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient", + "uuid": "66C35BA5-73FE-38D5-A4BC-AA49D3BEB67F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 222, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7684407296, + "image_vmaddr": 7139360768, + "image_size": 45056, + "name": "/System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport", + "uuid": "51FE158E-FAF7-3BEE-82ED-770B1DC9B510", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7820066816, + "image_vmaddr": 7275020288, + "image_size": 6201344, + "name": "/System/Library/Frameworks/CoreAudio.framework/CoreAudio", + "uuid": "B7D94782-EE01-3B4B-A278-D613DE296950", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8692830208, + "image_vmaddr": 8147783680, + "image_size": 368628, + "name": "/System/Library/PrivateFrameworks/APFS.framework/APFS", + "uuid": "55BD714E-5E01-389B-9E76-8B71FF370A08", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8008880128, + "image_vmaddr": 7463833600, + "image_size": 163840, + "name": "/usr/lib/libtailspin.dylib", + "uuid": "D7087E45-5A47-3C8B-B0FB-79FE109EC61D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 139, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 7291449344, + "image_vmaddr": 6746402816, + "image_size": 2818048, + "name": "/System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore", + "uuid": "5A3FC30A-6B7C-35E2-A8E8-BCAF9301AD3F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7794028544, + "image_vmaddr": 7248982016, + "image_size": 40960, + "name": "/System/Library/PrivateFrameworks/CoreTime.framework/CoreTime", + "uuid": "3136D29A-B648-3443-A38B-29C63C1496AC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 311, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9213812736, + "image_vmaddr": 8668766208, + "image_size": 122876, + "name": "/System/Library/PrivateFrameworks/CoreUtilsExtras.framework/CoreUtilsExtras", + "uuid": "75D6D2ED-A74B-3778-9184-671EF18FDC06", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714457088, + "image_vmaddr": 8169410560, + "image_size": 335872, + "name": "/System/Library/PrivateFrameworks/IO80211.framework/IO80211", + "uuid": "F9887E72-7FF2-395A-BB52-C6C2787C711C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7883538432, + "image_vmaddr": 7338491904, + "image_size": 217088, + "name": "/System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi", + "uuid": "55AB6DF7-FE4A-3BFA-AB53-C68C2517C12B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8693198848, + "image_vmaddr": 8148152320, + "image_size": 16376, + "name": "/usr/lib/libutil.dylib", + "uuid": "95A43A33-4E2D-3306-B413-46EA4F7F8007", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7756705792, + "image_vmaddr": 7211659264, + "image_size": 827392, + "name": "/System/Library/PrivateFrameworks/CoreWiFi.framework/CoreWiFi", + "uuid": "DD2C8630-6F10-3B82-A8A1-EC9E7454B3BA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714792960, + "image_vmaddr": 8169746432, + "image_size": 49152, + "name": "/System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork", + "uuid": "0679C2F0-5D64-346A-B99A-80FB2C9BA8B3", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714252288, + "image_vmaddr": 8169205760, + "image_size": 204800, + "name": "/System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X", + "uuid": "0A2FC672-A5E4-3CBF-B072-871BE2A09A83", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7861739520, + "image_vmaddr": 7316692992, + "image_size": 159744, + "name": "/System/Library/PrivateFrameworks/WiFiPeerToPeer.framework/WiFiPeerToPeer", + "uuid": "57FC4921-283D-3693-9131-329BB6F637FE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7328047104, + "image_vmaddr": 6783000576, + "image_size": 409600, + "name": "/System/Library/Frameworks/ExtensionFoundation.framework/ExtensionFoundation", + "uuid": "169CB55F-D192-3AEF-90C7-3851ACA5807F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 97, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7302475776, + "image_vmaddr": 6757429248, + "image_size": 212992, + "name": "/System/Library/PrivateFrameworks/UserManagement.framework/UserManagement", + "uuid": "74BFAF12-ECFD-30CE-AE41-7F21C2EA4FB9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7592255488, + "image_vmaddr": 7047208960, + "image_size": 81906, + "name": "/System/Library/PrivateFrameworks/TCC.framework/TCC", + "uuid": "849B1624-A7A9-3842-93F6-151B57D89639", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7740567552, + "image_vmaddr": 7195521024, + "image_size": 225280, + "name": "/System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit", + "uuid": "15A8A40C-170F-31C4-A0A9-93F6691D6A3D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7125131264, + "image_vmaddr": 6580084736, + "image_size": 1343488, + "name": "/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony", + "uuid": "082EC5BD-13F3-31F8-91B1-A8A5C53E5792", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9331122176, + "image_vmaddr": 8786075648, + "image_size": 32764, + "name": "/usr/lib/libcupolicy.dylib", + "uuid": "20984F60-94B2-31A1-AFEA-C8F3E642D8ED", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7328808960, + "image_vmaddr": 6783762432, + "image_size": 565248, + "name": "/usr/lib/libTelephonyUtilDynamic.dylib", + "uuid": "091A434D-0C21-3CEA-A1AA-7AF92804C96B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7554899968, + "image_vmaddr": 7009853440, + "image_size": 122880, + "name": "/System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities", + "uuid": "65FB47DF-069A-3715-A1BD-C8DC69426CC1", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713297920, + "image_vmaddr": 8168251392, + "image_size": 28672, + "name": "/System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor", + "uuid": "8E2415C3-3DDF-3613-8D9E-2B2C8C9B87AE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7613366272, + "image_vmaddr": 7068319744, + "image_size": 299008, + "name": "/System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics", + "uuid": "864E8120-8865-3CD1-B153-27076F98A429", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7613665280, + "image_vmaddr": 7068618752, + "image_size": 753632, + "name": "/System/Library/PrivateFrameworks/Symbolication.framework/Symbolication", + "uuid": "8E31B78C-8DB4-3BB1-B61C-FB873C1F0FAF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 64556, + "minor_version": 3, + "revision_version": 1 + }, + { + "image_addr": 7800778752, + "image_vmaddr": 7255732224, + "image_size": 864244, + "name": "/System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication", + "uuid": "7A0E609B-93F8-35FC-98AB-9DB4EE4C5B3B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 64555, + "minor_version": 104, + "revision_version": 1 + }, + { + "image_addr": 7757533184, + "image_vmaddr": 7212486656, + "image_size": 49152, + "name": "/System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient", + "uuid": "C8CF640A-3519-3C43-80EB-C04ADEC2812D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713146368, + "image_vmaddr": 8168099840, + "image_size": 57344, + "name": "/System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging", + "uuid": "40853194-560C-315B-95E7-2EBB4FE016FB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8713326592, + "image_vmaddr": 8168280064, + "image_size": 65536, + "name": "/usr/lib/libpartition2_dynamic.dylib", + "uuid": "F58484FA-880B-3040-B91F-547F4DCAF281", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7294267392, + "image_vmaddr": 6749220864, + "image_size": 81920, + "name": "/usr/lib/libAudioStatistics.dylib", + "uuid": "1DFF034B-BA0A-394D-97B4-F84F64E15FD4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8715481088, + "image_vmaddr": 8170434560, + "image_size": 172032, + "name": "/System/Library/PrivateFrameworks/caulk.framework/caulk", + "uuid": "BED6BADD-B7D6-3DF9-8158-298D72A259F9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8263688192, + "image_vmaddr": 7718641664, + "image_size": 462848, + "name": "/System/Library/Frameworks/CoreMIDI.framework/CoreMIDI", + "uuid": "10E41DEF-5231-37C4-B824-863CF18474B9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 69, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7653322752, + "image_vmaddr": 7108276224, + "image_size": 217088, + "name": "/usr/lib/libAudioToolboxUtility.dylib", + "uuid": "3154F0E8-BDE3-3B92-891C-AD1B6A551F29", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7527174144, + "image_vmaddr": 6982127616, + "image_size": 425984, + "name": "/System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport", + "uuid": "0EFF4AD8-7CFB-3337-AF7B-38266B3C9E04", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1406, + "minor_version": 0, + "revision_version": 15 + }, + { + "image_addr": 7566618624, + "image_vmaddr": 7021572096, + "image_size": 311296, + "name": "/System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport", + "uuid": "B46DBAB6-851E-3553-B8D2-8CCAE5687F0F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 91, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8260706304, + "image_vmaddr": 7715659776, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport", + "uuid": "CCBF19C3-1C70-32EF-AC78-BEC7D5A25EA5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 71, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7741394944, + "image_vmaddr": 7196348416, + "image_size": 716800, + "name": "/System/Library/PrivateFrameworks/ktrace.framework/ktrace", + "uuid": "7F6EEE54-EC24-3820-88D7-4600B7650932", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 521, + "minor_version": 40, + "revision_version": 1 + }, + { + "image_addr": 7883808768, + "image_vmaddr": 7338762240, + "image_size": 1036288, + "name": "/System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis", + "uuid": "0FEE8663-AB70-3BCC-BBF6-FD43E9350CB7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 328, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714977280, + "image_vmaddr": 8169930752, + "image_size": 36860, + "name": "/System/Library/PrivateFrameworks/kperfdata.framework/kperfdata", + "uuid": "B03A640D-7959-35F2-9F54-35369BE37148", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8372310016, + "image_vmaddr": 7827263488, + "image_size": 28672, + "name": "/usr/lib/libdscsym.dylib", + "uuid": "BD249D85-7731-3251-9595-2019FADC7E30", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 328, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714952704, + "image_vmaddr": 8169906176, + "image_size": 24564, + "name": "/System/Library/PrivateFrameworks/kperf.framework/kperf", + "uuid": "306D4BCB-CE25-31DE-9047-18DF49C26527", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9053982720, + "image_vmaddr": 8508936192, + "image_size": 36864, + "name": "/usr/lib/libTLE.dylib", + "uuid": "79E08706-D683-3309-8C69-61F0A24A7DCB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9357578240, + "image_vmaddr": 8812531712, + "image_size": 8188, + "name": "/System/Library/PrivateFrameworks/VideoToolboxParavirtualizationSupport.framework/VideoToolboxParavirtualizationSupport", + "uuid": "ADAA5BBC-4197-3D34-BF3A-C5C7A2244A52", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7371853824, + "image_vmaddr": 6826807296, + "image_size": 2379776, + "name": "/System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience", + "uuid": "182F4DE9-D19A-3133-B82C-C0745951BC4D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8716263424, + "image_vmaddr": 8171216896, + "image_size": 475136, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore", + "uuid": "D3BBA812-EAD5-3306-81D3-FCB61199AD1B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 8715702272, + "image_vmaddr": 8170655744, + "image_size": 561152, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage", + "uuid": "7A26082D-5099-33AE-801B-01F67C7D19FD", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 9200898048, + "image_vmaddr": 8655851520, + "image_size": 2002944, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork", + "uuid": "0A19567C-8585-3EA2-B769-B84416EAE122", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 8716738560, + "image_vmaddr": 8171692032, + "image_size": 163840, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix", + "uuid": "EE7DE198-DE7C-329D-9B7C-0E2D640F6231", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 9211486208, + "image_vmaddr": 8666439680, + "image_size": 327680, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector", + "uuid": "8D99C7CD-7E24-3779-B08E-7052A9B4FBB7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 9261912064, + "image_vmaddr": 8716865536, + "image_size": 786432, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray", + "uuid": "AA4F3510-BAB9-39CC-A975-3343E84899D9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 9102376960, + "image_vmaddr": 8557330432, + "image_size": 81920, + "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSFunctions.framework/MPSFunctions", + "uuid": "344244DF-7EC8-3131-B0DD-9EFC3BCC0A40", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 126, + "minor_version": 0, + "revision_version": 21 + }, + { + "image_addr": 8714842112, + "image_vmaddr": 8169795584, + "image_size": 8188, + "name": "/usr/lib/libCTGreenTeaLogger.dylib", + "uuid": "1C4316E0-EA8A-318F-BBA7-B53315F73E64", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7435681792, + "image_vmaddr": 6890635264, + "image_size": 21741568, + "name": "/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore", + "uuid": "73AFC744-EA0A-3167-A1B5-4570794F56A7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 614, + "minor_version": 3, + "revision_version": 4 + }, + { + "image_addr": 7381688320, + "image_vmaddr": 6836641792, + "image_size": 40525824, + "name": "/System/Library/PrivateFrameworks/WebCore.framework/WebCore", + "uuid": "B68311D5-CB91-3ADB-B9E6-12EC03803225", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 614, + "minor_version": 3, + "revision_version": 4 + }, + { + "image_addr": 8358768640, + "image_vmaddr": 7813722112, + "image_size": 3706880, + "name": "/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libANGLE-shared.dylib", + "uuid": "CF687636-1707-3161-A54E-64F43AFFE3C6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 614, + "minor_version": 3, + "revision_version": 4 + }, + { + "image_addr": 7015559168, + "image_vmaddr": 6470512640, + "image_size": 262144, + "name": "/System/Library/PrivateFrameworks/WebGPU.framework/WebGPU", + "uuid": "6D6C7B54-24B6-3DBA-A563-40EC5C5B94B2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 614, + "minor_version": 3, + "revision_version": 4 + }, + { + "image_addr": 8730525696, + "image_vmaddr": 8185479168, + "image_size": 8277792, + "name": "/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib", + "uuid": "238DA88E-17FE-346E-88A6-CA0E01F18B91", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 614, + "minor_version": 3, + "revision_version": 4 + }, + { + "image_addr": 7495524352, + "image_vmaddr": 6950477824, + "image_size": 2080768, + "name": "/System/Library/Frameworks/NetworkExtension.framework/NetworkExtension", + "uuid": "0956689C-ED4B-3F60-9A14-8D925EE4E7DF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8730157056, + "image_vmaddr": 8185110528, + "image_size": 36864, + "name": "/System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting", + "uuid": "809D57A4-572C-306D-8909-6BEEB8E9726E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 212, + "minor_version": 10, + "revision_version": 0 + }, + { + "image_addr": 7557668864, + "image_vmaddr": 7012622336, + "image_size": 2748416, + "name": "/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox", + "uuid": "139880A7-7D61-379B-AB9F-A3A353724F68", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1000, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714903552, + "image_vmaddr": 8169857024, + "image_size": 40953, + "name": "/System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers", + "uuid": "9D9F545F-E126-3334-90EF-EE03907A30A0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8716906496, + "image_vmaddr": 8171859968, + "image_size": 49152, + "name": "/System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter", + "uuid": "E3D0EF78-603B-3223-8CBA-F42990250BCF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8730005504, + "image_vmaddr": 8184958976, + "image_size": 151552, + "name": "/usr/lib/libnetworkextension.dylib", + "uuid": "3B08863D-C968-367B-898E-2FA9CDAB9D6C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7532175360, + "image_vmaddr": 6987128832, + "image_size": 307200, + "name": "/System/Library/PrivateFrameworks/AudioSession.framework/AudioSession", + "uuid": "A27C5201-A634-39A0-B6F8-76D02BECD606", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7819571200, + "image_vmaddr": 7274524672, + "image_size": 495616, + "name": "/System/Library/Frameworks/CoreHaptics.framework/CoreHaptics", + "uuid": "D8199E35-A658-3232-8EDD-B4C42DB87ACE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717541376, + "image_vmaddr": 8172494848, + "image_size": 229376, + "name": "/System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib", + "uuid": "D2EF1ACF-D1B4-3750-82A1-2FF13BDDDCDF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7609774080, + "image_vmaddr": 7064727552, + "image_size": 241664, + "name": "/System/Library/PrivateFrameworks/DMCUtilities.framework/DMCUtilities", + "uuid": "E6756816-0DD7-3FB6-ABB4-22AD1E5AEBF9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7581151232, + "image_vmaddr": 7036104704, + "image_size": 483328, + "name": "/System/Library/Frameworks/Accounts.framework/Accounts", + "uuid": "46F9FA7C-6BAC-34FE-A546-3F3058A457E0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8237690880, + "image_vmaddr": 7692644352, + "image_size": 57344, + "name": "/System/Library/PrivateFrameworks/DataMigration.framework/DataMigration", + "uuid": "05114963-9FFF-321E-93FF-93D30D033E73", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8259616768, + "image_vmaddr": 7714570240, + "image_size": 126976, + "name": "/System/Library/PrivateFrameworks/MDMClientLibrary.framework/MDMClientLibrary", + "uuid": "76BECEC0-04C6-3823-9AE9-2BC6FAB9D34F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8714850304, + "image_vmaddr": 8169803776, + "image_size": 53248, + "name": "/usr/lib/liblockdown.dylib", + "uuid": "8EE1F04C-19D3-3F46-87F5-B413D52D133B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8264151040, + "image_vmaddr": 7719104512, + "image_size": 36864, + "name": "/System/Library/PrivateFrameworks/DEPClientLibrary.framework/DEPClientLibrary", + "uuid": "52116185-8EEC-3E00-A755-DB18412BBC79", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8730279936, + "image_vmaddr": 8185233408, + "image_size": 20480, + "name": "/System/Library/PrivateFrameworks/ContextKitCore.framework/ContextKitCore", + "uuid": "7DDF0680-E566-370A-8723-1EBD6E4901A0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8251609088, + "image_vmaddr": 7706562560, + "image_size": 131072, + "name": "/System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage", + "uuid": "FB406FB4-F481-3485-B270-18F94F913D23", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 339, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7342415872, + "image_vmaddr": 6797369344, + "image_size": 983040, + "name": "/System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP", + "uuid": "A82F7C4F-7845-3A07-9AF9-81736959D94E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 303, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8729292800, + "image_vmaddr": 8184246272, + "image_size": 376828, + "name": "/usr/lib/libmecab.dylib", + "uuid": "24797CF9-888A-3210-86C5-112585241C7B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1019, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8729669632, + "image_vmaddr": 8184623104, + "image_size": 212992, + "name": "/usr/lib/libCRFSuite.dylib", + "uuid": "34DAD487-D4D8-3363-BA0E-A84E98E3CB0F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8729280512, + "image_vmaddr": 8184233984, + "image_size": 12284, + "name": "/usr/lib/libgermantok.dylib", + "uuid": "8E41E0D4-9385-36DC-9383-A50BAAFA8601", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9366249472, + "image_vmaddr": 8821202944, + "image_size": 8188, + "name": "/usr/lib/libThaiTokenizer.dylib", + "uuid": "3550BA5D-6E1E-3D33-9484-69BD8A723D77", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717824000, + "image_vmaddr": 8172777472, + "image_size": 86013, + "name": "/System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC", + "uuid": "E0FA3BB8-A08F-3506-8705-CA328C2198B7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7756296192, + "image_vmaddr": 7211249664, + "image_size": 344064, + "name": "/System/Library/PrivateFrameworks/SoftwareUpdateCoreSupport.framework/SoftwareUpdateCoreSupport", + "uuid": "92BD3A35-566D-39C9-A5AA-0AC74E7ECBD7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717262848, + "image_vmaddr": 8172216320, + "image_size": 77824, + "name": "/System/Library/PrivateFrameworks/SoftwareUpdateCoreConnect.framework/SoftwareUpdateCoreConnect", + "uuid": "9B2B87BF-FB77-34C9-9285-C51A7536FB69", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8263430144, + "image_vmaddr": 7718383616, + "image_size": 258048, + "name": "/System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip", + "uuid": "1E241DFE-9397-3416-978A-8E1F1D59FEA0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8238440448, + "image_vmaddr": 7693393920, + "image_size": 65536, + "name": "/System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/RemoteServiceDiscovery", + "uuid": "A8195034-3313-325A-A8C5-340AA80DAB7B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 95, + "minor_version": 60, + "revision_version": 3 + }, + { + "image_addr": 8264187904, + "image_vmaddr": 7719141376, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation", + "uuid": "4686CAE8-CD77-306E-B2FC-0F6995DCD6EC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8259743744, + "image_vmaddr": 7714697216, + "image_size": 155648, + "name": "/System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication", + "uuid": "1E95BACD-E922-39F5-9B43-EC15DCB5B473", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7262629888, + "image_vmaddr": 6717583360, + "image_size": 5873664, + "name": "/System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices", + "uuid": "D5A959BC-30FE-34FB-ADC8-E4DADEDD2CA9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7345647616, + "image_vmaddr": 6800601088, + "image_size": 815104, + "name": "/System/Library/PrivateFrameworks/AuthKit.framework/AuthKit", + "uuid": "F21CD4BC-7FFE-33DE-BD35-6D8CBEEA25C2", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8730193920, + "image_vmaddr": 8185147392, + "image_size": 86016, + "name": "/System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager", + "uuid": "716E5238-C38A-39B0-9A1B-453F14795201", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7740792832, + "image_vmaddr": 7195746304, + "image_size": 602112, + "name": "/System/Library/PrivateFrameworks/Rapport.framework/Rapport", + "uuid": "E32B1241-B4D8-3EF3-9BEC-CAF04EAB885F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8251502592, + "image_vmaddr": 7706456064, + "image_size": 106496, + "name": "/System/Library/PrivateFrameworks/IconFoundation.framework/IconFoundation", + "uuid": "91D4B638-CA50-3564-ACE0-AB81D98BDA29", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 552, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717197312, + "image_vmaddr": 8172150784, + "image_size": 65536, + "name": "/System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons", + "uuid": "EEB31845-9937-380D-980F-CB37C81752DB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 372, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8264310784, + "image_vmaddr": 7719264256, + "image_size": 94208, + "name": "/System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity", + "uuid": "7A127F17-19F9-3E5F-8F04-1868FACFC19B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 0, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7555022848, + "image_vmaddr": 7009976320, + "image_size": 446464, + "name": "/System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry", + "uuid": "CA928FBF-EF85-3BDB-9E1F-DA283FBED70A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7879491584, + "image_vmaddr": 7334445056, + "image_size": 225280, + "name": "/System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication", + "uuid": "5E2E6F88-A077-3387-95A0-87983C6F857A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1131, + "minor_version": 60, + "revision_version": 19 + }, + { + "image_addr": 8717488128, + "image_vmaddr": 8172441600, + "image_size": 53248, + "name": "/System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport", + "uuid": "FE89F8DB-A7D5-393D-853F-5E5F183BF05D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 103, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8716955648, + "image_vmaddr": 8171909120, + "image_size": 8192, + "name": "/System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers", + "uuid": "1951E21D-7E67-3AFD-B098-B3DB29DE25F5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8265900032, + "image_vmaddr": 7720853504, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/AAAFoundation.framework/AAAFoundation", + "uuid": "1C9E0D7D-669E-3221-8085-2A0163ADE7B0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7879716864, + "image_vmaddr": 7334670336, + "image_size": 372736, + "name": "/System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit", + "uuid": "502E1399-8079-3A01-B93C-E34389C62A9C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 602, + "minor_version": 60, + "revision_version": 5 + }, + { + "image_addr": 7878877184, + "image_vmaddr": 7333830656, + "image_size": 159744, + "name": "/System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils", + "uuid": "3754473F-B1A9-35A8-8729-86C3DE52AC71", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1131, + "minor_version": 60, + "revision_version": 19 + }, + { + "image_addr": 7861551104, + "image_vmaddr": 7316504576, + "image_size": 188416, + "name": "/System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed", + "uuid": "8C17CE44-4E25-3D15-84C9-BF9CF7DA03A7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1732, + "minor_version": 60, + "revision_version": 4 + }, + { + "image_addr": 7311499264, + "image_vmaddr": 6766452736, + "image_size": 1531904, + "name": "/System/Library/PrivateFrameworks/IDS.framework/IDS", + "uuid": "2783D622-7588-33C1-BCDE-D3994C810572", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8729894912, + "image_vmaddr": 8184848384, + "image_size": 102388, + "name": "/usr/lib/libresolv.9.dylib", + "uuid": "053715F0-1E1A-3CFA-8988-F6EED02952B0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7624581120, + "image_vmaddr": 7079534592, + "image_size": 380917, + "name": "/System/Library/Frameworks/CryptoKit.framework/CryptoKit", + "uuid": "34AF0F96-5A76-3CA5-BE56-0B3569EF1B7C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9236504576, + "image_vmaddr": 8691458048, + "image_size": 4092, + "name": "/System/Library/PrivateFrameworks/FeatureFlags.framework/FeatureFlags", + "uuid": "6264FF05-F493-3E46-AED7-808836C5AE5F", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 71, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8740368384, + "image_vmaddr": 8195321856, + "image_size": 28668, + "name": "/usr/lib/swift/libswiftCompression.dylib", + "uuid": "2720DBF3-D743-313D-90DE-91ED4C84EB71", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8753197056, + "image_vmaddr": 8208150528, + "image_size": 73722, + "name": "/usr/lib/swift/libswiftExtensionFoundation.dylib", + "uuid": "CFAE9A85-7FAC-356A-AD7B-68A8E00FA6E7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 97, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7566929920, + "image_vmaddr": 7021883392, + "image_size": 524279, + "name": "/usr/lib/swift/libswiftNetwork.dylib", + "uuid": "CFC9BDCF-0773-3880-B759-7FB6167E6C40", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3013, + "minor_version": 60, + "revision_version": 39 + }, + { + "image_addr": 8141369344, + "image_vmaddr": 7596322816, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics", + "uuid": "1AE17883-BEBF-3CD1-8C11-97E0FA5D7F73", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1732, + "minor_version": 60, + "revision_version": 4 + }, + { + "image_addr": 7311007744, + "image_vmaddr": 6765961216, + "image_size": 491520, + "name": "/System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation", + "uuid": "B87A152A-5F35-3296-8D1B-EF179BFE3172", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7491973120, + "image_vmaddr": 6946926592, + "image_size": 2215936, + "name": "/System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation", + "uuid": "860DB501-598B-35A4-B701-884CE1F27ED7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7612727296, + "image_vmaddr": 7067680768, + "image_size": 364544, + "name": "/System/Library/PrivateFrameworks/FTServices.framework/FTServices", + "uuid": "4835D360-BD20-3FB1-BB62-6904AAF877DB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8260616192, + "image_vmaddr": 7715569664, + "image_size": 90112, + "name": "/System/Library/PrivateFrameworks/Engram.framework/Engram", + "uuid": "76D730F9-E8D4-3FFB-9361-030FA7BBEFCE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717352960, + "image_vmaddr": 8172306432, + "image_size": 4096, + "name": "/System/Library/PrivateFrameworks/Marco.framework/Marco", + "uuid": "E41D687F-17C0-36D6-885C-8E677B13D777", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717357056, + "image_vmaddr": 8172310528, + "image_size": 131072, + "name": "/System/Library/PrivateFrameworks/FTAWD.framework/FTAWD", + "uuid": "9029ADC4-D2B3-30AF-BC42-3684DB188F2B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 800, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8258281472, + "image_vmaddr": 7713234944, + "image_size": 24576, + "name": "/System/Library/PrivateFrameworks/CryptoKitCBridging.framework/CryptoKitCBridging", + "uuid": "4C73ADB0-A4FA-3E4D-839E-B0EE97E0245D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8725753856, + "image_vmaddr": 8180707328, + "image_size": 8187, + "name": "/usr/lib/swift/libswiftCryptoTokenKit.dylib", + "uuid": "08073E87-354D-3168-97F1-CAB6831024EC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 602, + "minor_version": 60, + "revision_version": 5 + }, + { + "image_addr": 7840178176, + "image_vmaddr": 7295131648, + "image_size": 266240, + "name": "/System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth", + "uuid": "2802DD4C-10D2-3FF5-8108-DBFC80E1BBED", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8131735552, + "image_vmaddr": 7586689024, + "image_size": 991232, + "name": "/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/DesktopServicesPriv", + "uuid": "C47ECA2D-ADEF-3D7B-87C4-A5D0E9E84126", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1545, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7198654464, + "image_vmaddr": 6653607936, + "image_size": 27865088, + "name": "/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices", + "uuid": "8C395382-4E54-3791-AD72-713981464084", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1889, + "minor_version": 32, + "revision_version": 9 + }, + { + "image_addr": 7566409728, + "image_vmaddr": 7021363200, + "image_size": 208896, + "name": "/System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport", + "uuid": "72A8A0DE-D3ED-3CF6-A789-7822EB8AF51D", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2780, + "minor_version": 0, + "revision_version": 25 + }, + { + "image_addr": 7652638720, + "image_vmaddr": 7107592192, + "image_size": 684032, + "name": "/System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth", + "uuid": "F3F4539B-C4AB-3A3B-B37D-3449A6F92595", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8265973760, + "image_vmaddr": 7720927232, + "image_size": 20480, + "name": "/System/Library/PrivateFrameworks/GeoServicesCore.framework/GeoServicesCore", + "uuid": "C433662C-FCDC-3B37-BE5B-BE736FCFBBBE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1889, + "minor_version": 32, + "revision_version": 9 + }, + { + "image_addr": 8247484416, + "image_vmaddr": 7702437888, + "image_size": 532480, + "name": "/System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf", + "uuid": "E5EDCCBF-28C2-342C-A027-F6F8CF18DA0A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8744849408, + "image_vmaddr": 8199802880, + "image_size": 102400, + "name": "/System/Library/Frameworks/Accessibility.framework/Accessibility", + "uuid": "7D3D5B31-D74E-3FEA-8770-17D28030A299", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8116875264, + "image_vmaddr": 7571828736, + "image_size": 819188, + "name": "/usr/lib/swift/libswiftAccelerate.dylib", + "uuid": "69F41117-2385-3BF6-B934-F88DF897FB96", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 41, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8728756224, + "image_vmaddr": 8183709696, + "image_size": 98292, + "name": "/usr/lib/swift/libswiftsimd.dylib", + "uuid": "77F018CB-750F-313B-8916-4DDF9004F065", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 9, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 4312350720, + "image_vmaddr": 0, + "image_size": 49152, + "name": "/private/preboot/Cryptexes/OS/usr/lib/libobjc-trampolines.dylib", + "uuid": "50228E97-D295-302B-B3DC-24950F436B70", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 228, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8184983552, + "image_vmaddr": 7639937024, + "image_size": 114688, + "name": "/System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore", + "uuid": "6BC8D827-7BFC-3838-AEA3-D0A264A27205", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7811162112, + "image_vmaddr": 7266115584, + "image_size": 794624, + "name": "/usr/lib/libboringssl.dylib", + "uuid": "A25D7665-80A4-3711-9C87-5C7AA7AFA82A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8756428800, + "image_vmaddr": 8211382272, + "image_size": 442367, + "name": "/usr/lib/libusrtcp.dylib", + "uuid": "92E40B24-4B07-35D1-82A8-FCA1B51B2A99", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8757452800, + "image_vmaddr": 8212406272, + "image_size": 851968, + "name": "/usr/lib/libquic.dylib", + "uuid": "56E8A9E2-402E-3F07-81FA-92AE235936BF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9253244928, + "image_vmaddr": 8708198400, + "image_size": 102396, + "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib", + "uuid": "2ED77B0F-0923-353E-8616-AE840E0CFEC6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 575, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8765104128, + "image_vmaddr": 8220057600, + "image_size": 12288, + "name": "/usr/lib/log/liblog_network.dylib", + "uuid": "A261DC80-290A-301C-A95B-3CE0F3E6D6EA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7762067456, + "image_vmaddr": 7217020928, + "image_size": 430080, + "name": "/System/Library/PrivateFrameworks/Pegasus.framework/Pegasus", + "uuid": "0F637876-8928-3EE8-B84A-AF70FD67B7EA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7482789888, + "image_vmaddr": 6937743360, + "image_size": 2363392, + "name": "/System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices", + "uuid": "199008B8-071F-3B44-9143-3C834012CD4C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7607701504, + "image_vmaddr": 7062654976, + "image_size": 774144, + "name": "/System/Library/PrivateFrameworks/SAObjects.framework/SAObjects", + "uuid": "73E7C68A-1FFF-3F45-A697-1933D4F55F88", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7374233600, + "image_vmaddr": 6829187072, + "image_size": 3260416, + "name": "/System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote", + "uuid": "617EC65E-E175-3DD9-B61E-51A713B81648", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7677378560, + "image_vmaddr": 7132332032, + "image_size": 6209536, + "name": "/System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation", + "uuid": "8BA914EC-6514-3016-A76E-5F0696550069", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7546937344, + "image_vmaddr": 7001890816, + "image_size": 348160, + "name": "/System/Library/PrivateFrameworks/SiriAnalytics.framework/SiriAnalytics", + "uuid": "8EB4A545-854A-326E-93F7-04546D4F7D8B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8407908352, + "image_vmaddr": 7862861824, + "image_size": 413696, + "name": "/System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices", + "uuid": "49A1DA87-7EB3-3E46-B932-D5D7937CCEA5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7551045632, + "image_vmaddr": 7005999104, + "image_size": 372736, + "name": "/System/Library/PrivateFrameworks/MediaServices.framework/MediaServices", + "uuid": "6C14C475-80FD-39A4-9CED-D58CAED7682E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8131538944, + "image_vmaddr": 7586492416, + "image_size": 196608, + "name": "/System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection", + "uuid": "41D40AC7-9C6C-3284-83F4-981DBC4F434E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7812325376, + "image_vmaddr": 7267278848, + "image_size": 81920, + "name": "/System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger", + "uuid": "2A661192-5B90-3FE2-BD7B-FE4983B7AADF", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7481356288, + "image_vmaddr": 6936309760, + "image_size": 1433600, + "name": "/System/Library/PrivateFrameworks/SiriTTSService.framework/SiriTTSService", + "uuid": "13831CCB-DA22-3CC2-BFB0-D04C7B3DB717", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7491522560, + "image_vmaddr": 6946476032, + "image_size": 450560, + "name": "/System/Library/PrivateFrameworks/Trial.framework/Trial", + "uuid": "2DB19EDB-6A32-34D7-89C4-B063FE0F3C0C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8410591232, + "image_vmaddr": 7865544704, + "image_size": 9523200, + "name": "/System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS", + "uuid": "C069B1ED-5E7A-3E73-8861-4D33ED4D0EAB", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8728743936, + "image_vmaddr": 8183697408, + "image_size": 4096, + "name": "/System/Library/Frameworks/AVFoundation.framework/AVFoundation", + "uuid": "2BAF6DAD-EAC8-31BF-8AE5-D4298E255DFE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7490154496, + "image_vmaddr": 6945107968, + "image_size": 1368064, + "name": "/System/Library/Frameworks/AVFAudio.framework/AVFAudio", + "uuid": "ACAFC4FF-E467-399D-8EEF-543F98B46B1C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7880089600, + "image_vmaddr": 7335043072, + "image_size": 425984, + "name": "/System/Library/PrivateFrameworks/Osprey.framework/Osprey", + "uuid": "0B260874-6EED-3B09-B1BE-8D2EEFF31F32", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7992082432, + "image_vmaddr": 7447035904, + "image_size": 36864, + "name": "/System/Library/PrivateFrameworks/SiriPowerInstrumentation.framework/SiriPowerInstrumentation", + "uuid": "D3B497E5-9B19-3054-A872-DCF7E2BCF25A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7346462720, + "image_vmaddr": 6801416192, + "image_size": 495616, + "name": "/System/Library/PrivateFrameworks/TrialProto.framework/TrialProto", + "uuid": "EC050012-7CD1-3B48-983A-56CE847DD0F8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8729145344, + "image_vmaddr": 8184098816, + "image_size": 135167, + "name": "/usr/lib/swift/libswiftAVFoundation.dylib", + "uuid": "70FCE724-11EE-3F25-8CE0-A63FBBCE9646", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2140, + "minor_version": 3, + "revision_version": 1 + }, + { + "image_addr": 8376168448, + "image_vmaddr": 7831121920, + "image_size": 36860, + "name": "/usr/lib/swift/libswiftCoreAudio.dylib", + "uuid": "3AD460AD-C948-33C2-89C3-B836F8A399A6", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 1, + "revision_version": 0 + }, + { + "image_addr": 8728854528, + "image_vmaddr": 8183808000, + "image_size": 40948, + "name": "/usr/lib/swift/libswiftCoreMIDI.dylib", + "uuid": "296C6604-24A0-387C-B1BD-CBFB1BA7A126", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 6, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7870898176, + "image_vmaddr": 7325851648, + "image_size": 229371, + "name": "/usr/lib/swift/libswiftCoreMedia.dylib", + "uuid": "088FC0B0-F344-39E0-A236-E32A8ABBC3C0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3005, + "minor_version": 3, + "revision_version": 1 + }, + { + "image_addr": 8728662016, + "image_vmaddr": 8183615488, + "image_size": 57342, + "name": "/usr/lib/swift/libswiftUniformTypeIdentifiers.dylib", + "uuid": "4EC105FD-173B-3EA4-A8E3-66BA8DAC0E02", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 760, + "minor_version": 2, + "revision_version": 2 + }, + { + "image_addr": 7329374208, + "image_vmaddr": 6784327680, + "image_size": 13041664, + "name": "/System/Library/PrivateFrameworks/Espresso.framework/Espresso", + "uuid": "1FD4CB11-AA9B-3D48-A58F-0BC017282E13", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 123, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7502200832, + "image_vmaddr": 6957154304, + "image_size": 6643712, + "name": "/System/Library/Frameworks/CoreML.framework/CoreML", + "uuid": "B66604D8-0C70-3C11-BB2A-F9F9A6BDD70E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8744669184, + "image_vmaddr": 8199622656, + "image_size": 122872, + "name": "/usr/lib/libedit.3.dylib", + "uuid": "0659CF59-7C19-3009-9772-390484E45894", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 3, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7369203712, + "image_vmaddr": 6824157184, + "image_size": 2650112, + "name": "/System/Library/PrivateFrameworks/AVFCore.framework/AVFCore", + "uuid": "D126E582-47DA-351E-9671-2D16C9C4A901", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7530811392, + "image_vmaddr": 6985764864, + "image_size": 1363968, + "name": "/System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture", + "uuid": "D99A8925-792D-341A-8EAD-9D2CE44865CC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8259899392, + "image_vmaddr": 7714852864, + "image_size": 20480, + "name": "/System/Library/PrivateFrameworks/Celestial.framework/Celestial", + "uuid": "79308682-343D-39A0-BFFA-05DAA117BA15", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8260780032, + "image_vmaddr": 7715733504, + "image_size": 1503232, + "name": "/System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync", + "uuid": "0C35A7E6-47C4-3B70-AD9D-3DC259101C98", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7581921280, + "image_vmaddr": 7036874752, + "image_size": 8343552, + "name": "/System/Library/PrivateFrameworks/CMCapture.framework/CMCapture", + "uuid": "8FD16574-5136-3453-BEAC-9CB6682CC7DA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8248016896, + "image_vmaddr": 7702970368, + "image_size": 872448, + "name": "/System/Library/PrivateFrameworks/Quagga.framework/Quagga", + "uuid": "60BED9F8-F0E8-388C-9AD1-95053C577BF5", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 155, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 8237133824, + "image_vmaddr": 7692087296, + "image_size": 368640, + "name": "/System/Library/PrivateFrameworks/CMImaging.framework/CMImaging", + "uuid": "97F947B3-CE42-345C-92EA-797E38D3E6D0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9365975040, + "image_vmaddr": 8820928512, + "image_size": 274432, + "name": "/System/Library/PrivateFrameworks/CameraColorProcessing.framework/CameraColorProcessing", + "uuid": "AD3376D4-14E9-3CD6-B220-BAEA2A66D1B7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8263266304, + "image_vmaddr": 7718219776, + "image_size": 163840, + "name": "/System/Library/PrivateFrameworks/CinematicFraming.framework/CinematicFraming", + "uuid": "F2C5E9EA-6F7A-3CF5-AF86-BD2D71386F9A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8725762048, + "image_vmaddr": 8180715520, + "image_size": 2887680, + "name": "/System/Library/PrivateFrameworks/AppC3D.framework/AppC3D", + "uuid": "23E27F62-3308-33C5-AF7B-C96B193C1ABE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 10, + "revision_version": 6 + }, + { + "image_addr": 7818653696, + "image_vmaddr": 7273607168, + "image_size": 475136, + "name": "/System/Library/PrivateFrameworks/AppleCVAPhoto.framework/AppleCVAPhoto", + "uuid": "D788E588-ECBE-377D-9FB0-235001E8DAB7", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 91, + "revision_version": 0 + }, + { + "image_addr": 7294558208, + "image_vmaddr": 6749511680, + "image_size": 4202496, + "name": "/System/Library/Frameworks/CoreMotion.framework/CoreMotion", + "uuid": "D59CB138-D760-3FA0-BDFF-6E9958AC784C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2780, + "minor_version": 0, + "revision_version": 25 + }, + { + "image_addr": 8251740160, + "image_vmaddr": 7706693632, + "image_size": 57344, + "name": "/System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet", + "uuid": "B0C138D2-54CE-3C46-8243-2140081760ED", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8237502464, + "image_vmaddr": 7692455936, + "image_size": 188416, + "name": "/System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine", + "uuid": "99A1DCC0-0C35-39E5-9B79-08C96B51037C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8719319040, + "image_vmaddr": 8174272512, + "image_size": 6266868, + "name": "/System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler", + "uuid": "90856DF1-FF74-381B-9DF9-761413D88B54", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 6988529664, + "image_vmaddr": 6443483136, + "image_size": 11407360, + "name": "/System/Library/Frameworks/MetalPerformanceShadersGraph.framework/MetalPerformanceShadersGraph", + "uuid": "2CCE2ED3-DCA8-35EE-9966-A7C4B070D113", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717910016, + "image_vmaddr": 8172863488, + "image_size": 1409016, + "name": "/System/Library/PrivateFrameworks/MilAneflow.framework/MilAneflow", + "uuid": "1A4D3553-29D2-3BED-8570-F74C9E53FF02", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8725585920, + "image_vmaddr": 8180539392, + "image_size": 131072, + "name": "/System/Library/PrivateFrameworks/ANEServices.framework/ANEServices", + "uuid": "6E76B8E7-1B36-3682-B745-6743790CB2CA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717340672, + "image_vmaddr": 8172294144, + "image_size": 12288, + "name": "/usr/lib/libsandbox.1.dylib", + "uuid": "65C53941-20F7-3984-80F7-1E2F32F4DD4B", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 9235009536, + "image_vmaddr": 8689963008, + "image_size": 32764, + "name": "/usr/lib/libMatch.1.dylib", + "uuid": "FE3A9327-B3DD-3F91-9242-799D59188DDC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7992119296, + "image_vmaddr": 7447072768, + "image_size": 200700, + "name": "/usr/lib/libncurses.5.4.dylib", + "uuid": "9EDA16DF-ED0D-32CC-82D7-212A94B10423", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 5, + "minor_version": 4, + "revision_version": 0 + }, + { + "image_addr": 7819128832, + "image_vmaddr": 7274082304, + "image_size": 442368, + "name": "/System/Library/PrivateFrameworks/TimeSync.framework/TimeSync", + "uuid": "4491DFFA-B11A-3365-8C88-09B5D0E6BB70", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8256761856, + "image_vmaddr": 7711715328, + "image_size": 1519616, + "name": "/System/Library/Frameworks/MLCompute.framework/MLCompute", + "uuid": "EACB13F3-333D-391A-9B2C-EDEB2355B636", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7232180224, + "image_vmaddr": 6687133696, + "image_size": 2703360, + "name": "/System/Library/Frameworks/CloudKit.framework/CloudKit", + "uuid": "CA4E690F-6234-391D-9C1F-3B7F19E0AF01", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2030, + "minor_version": 17, + "revision_version": 0 + }, + { + "image_addr": 8245260288, + "image_vmaddr": 7700213760, + "image_size": 1298432, + "name": "/System/Library/PrivateFrameworks/MLAssetIO.framework/MLAssetIO", + "uuid": "6C293F93-2901-3CE4-B810-783E3D9E2EEE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1436, + "minor_version": 60, + "revision_version": 2 + }, + { + "image_addr": 7246733312, + "image_vmaddr": 6701686784, + "image_size": 114688, + "name": "/System/Library/Frameworks/SharedWithYouCore.framework/SharedWithYouCore", + "uuid": "65C3E00A-935D-3F82-88A4-5E7A38140363", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7716290560, + "image_vmaddr": 7171244032, + "image_size": 8192, + "name": "/usr/lib/libBASupport.dylib", + "uuid": "109F1187-06D0-32F7-A695-4E31786F0378", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7527759872, + "image_vmaddr": 6982713344, + "image_size": 905216, + "name": "/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount", + "uuid": "51D6839D-95C7-392A-AAAB-1A6083F87B45", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7494189056, + "image_vmaddr": 6949142528, + "image_size": 180224, + "name": "/System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService", + "uuid": "726106DB-26B2-3470-835B-16FC4F62E2A4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8262926336, + "image_vmaddr": 7717879808, + "image_size": 290816, + "name": "/System/Library/PrivateFrameworks/C2.framework/C2", + "uuid": "D10391A2-BEDB-34AA-B828-19926F1C79ED", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2000, + "minor_version": 129, + "revision_version": 2 + }, + { + "image_addr": 8258306048, + "image_vmaddr": 7713259520, + "image_size": 1310720, + "name": "/System/Library/PrivateFrameworks/CloudKitDistributedSync.framework/CloudKitDistributedSync", + "uuid": "35E0BFF7-A075-3EFE-85B6-22836127A1D0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2030, + "minor_version": 17, + "revision_version": 0 + }, + { + "image_addr": 7669108736, + "image_vmaddr": 7124062208, + "image_size": 368640, + "name": "/System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage", + "uuid": "60EE4A4E-A43F-3FBC-A2DB-A40DBCD6C1A4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8728895488, + "image_vmaddr": 8183848960, + "image_size": 249856, + "name": "/System/Library/Frameworks/CoreTransferable.framework/CoreTransferable", + "uuid": "165D84E1-D794-3AAB-A2E8-D46AD23805B0", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7614648320, + "image_vmaddr": 7069601792, + "image_size": 344064, + "name": "/System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant", + "uuid": "A6DF4299-8AB2-38BC-B8E8-A82BA2388DDE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7871262720, + "image_vmaddr": 7326216192, + "image_size": 114688, + "name": "/System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp", + "uuid": "B268A700-8931-3961-B28D-5A1A5961411C", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8253755392, + "image_vmaddr": 7708708864, + "image_size": 114688, + "name": "/System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport", + "uuid": "38A4B148-0F24-3F38-8EA9-5438467492ED", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8266350592, + "image_vmaddr": 7721304064, + "image_size": 438272, + "name": "/System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup", + "uuid": "448D1FB3-93D1-3B72-9C1E-548A0AF00CB4", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1830, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8264404992, + "image_vmaddr": 7719358464, + "image_size": 90112, + "name": "/System/Library/PrivateFrameworks/Seeding.framework/Seeding", + "uuid": "95DD8517-B451-306A-9CBB-1C19ED6E1DB9", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8253992960, + "image_vmaddr": 7708946432, + "image_size": 16384, + "name": "/System/Library/PrivateFrameworks/OSASubmissionClient.framework/OSASubmissionClient", + "uuid": "3F1D171B-3F43-3F7F-8FF3-AB6D2DC83522", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7879036928, + "image_vmaddr": 7333990400, + "image_size": 139264, + "name": "/System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences", + "uuid": "5862C4D3-4F7B-33C6-89CD-090612670AAC", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 397, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7813607424, + "image_vmaddr": 7268560896, + "image_size": 73728, + "name": "/System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync", + "uuid": "A2B80FBA-D5AE-3987-B882-A393321CEE51", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8262295552, + "image_vmaddr": 7717249024, + "image_size": 192512, + "name": "/System/Library/PrivateFrameworks/AppConduit.framework/AppConduit", + "uuid": "C60F397A-E824-316E-A44D-C68A296E50F8", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7592337408, + "image_vmaddr": 7047290880, + "image_size": 282624, + "name": "/System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete", + "uuid": "2CCF281A-62A4-37CE-B368-D8C3FBC19218", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8717770752, + "image_vmaddr": 8172724224, + "image_size": 53248, + "name": "/System/Library/PrivateFrameworks/FSEvents.framework/FSEvents", + "uuid": "849DF6A1-7CFD-32FB-A64E-E3C8D7D26BEA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1355, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8245043200, + "image_vmaddr": 7699996672, + "image_size": 131072, + "name": "/System/Library/PrivateFrameworks/OSAnalyticsPrivate.framework/OSAnalyticsPrivate", + "uuid": "87F72FF8-4B58-353F-AF8B-1AF5B5C74E33", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 8252608512, + "image_vmaddr": 7707561984, + "image_size": 86016, + "name": "/System/Library/PrivateFrameworks/RemoteXPC.framework/RemoteXPC", + "uuid": "353F6574-F0BD-37E5-84A4-93D473CEA352", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 2462, + "minor_version": 60, + "revision_version": 14 + }, + { + "image_addr": 7552577536, + "image_vmaddr": 7007531008, + "image_size": 544768, + "name": "/System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport", + "uuid": "256FD9EE-98A2-361F-8A86-762ACC29EDCE", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 365, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 7302320128, + "image_vmaddr": 6757273600, + "image_size": 155648, + "name": "/System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker", + "uuid": "D36ACE86-A62F-3F12-945C-C9E96EE645CA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 365, + "minor_version": 3, + "revision_version": 0 + }, + { + "image_addr": 8729882624, + "image_vmaddr": 8184836096, + "image_size": 12288, + "name": "/System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch", + "uuid": "67C8548C-5D0E-31FE-9795-EFFF78F65C3A", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7346958336, + "image_vmaddr": 6801911808, + "image_size": 172032, + "name": "/System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting", + "uuid": "4D6CD2E3-5C33-3EC8-9A5F-B17749B30127", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7738712064, + "image_vmaddr": 7193665536, + "image_size": 1261561, + "name": "/System/Library/PrivateFrameworks/InternalSwiftProtobuf.framework/InternalSwiftProtobuf", + "uuid": "10C78C3C-CFD6-34ED-988B-14ACC8221D22", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7477116928, + "image_vmaddr": 6932070400, + "image_size": 151552, + "name": "/System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust", + "uuid": "A3D69A72-E5C0-3082-AFAE-B5004F77EB88", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7871127552, + "image_vmaddr": 7326081024, + "image_size": 135168, + "name": "/System/Library/PrivateFrameworks/SecurityFoundation.framework/SecurityFoundation", + "uuid": "A6F6B99E-2E82-3A5C-B497-49D0D3C7586E", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + }, + { + "image_addr": 7600144384, + "image_vmaddr": 7055097856, + "image_size": 589824, + "name": "/System/Library/Frameworks/CallKit.framework/CallKit", + "uuid": "BA01CF7B-1051-3E67-A5DE-D425B2D513FA", + "cpu_type": 16777228, + "cpu_subtype": -2147483646, + "major_version": 1, + "minor_version": 0, + "revision_version": 0 + } + ], + "process": {}, + "system": { + "system_name": "iOS", + "system_version": "16.2", + "machine": "iPhone11,8", + "model": "N841AP", + "kernel_version": "Darwin Kernel Version 22.2.0: Tue Nov 1 21:21:17 PDT 2022; root:xnu-8792.60.51.122.1~1/RELEASE_ARM64_T8020", + "os_version": "20C5043e", + "jailbroken": false, + "boot_time": "2023-01-30T08:43:25Z", + "app_start_time": "2023-01-30T09:05:01Z", + "CFBundleExecutablePath": "/private/var/containers/Bundle/Application/53C684E3-9F0E-4FE3-8291-88677BAB718C/iOS-Swift.app/iOS-Swift", + "CFBundleExecutable": "iOS-Swift", + "CFBundleIdentifier": "io.sentry.sample.iOS-Swift", + "CFBundleName": "iOS-Swift", + "CFBundleVersion": "1", + "CFBundleShortVersionString": "7.31.5", + "app_uuid": "C488D0BE-E733-3031-AEF3-CC5182AB1E3B", + "cpu_arch": "arm64", + "cpu_type": 16777228, + "cpu_subtype": 2, + "binary_cpu_type": 16777228, + "binary_cpu_subtype": 0, + "process_name": "iOS-Swift", + "process_id": 495, + "parent_process_id": 1, + "device_app_hash": "9116712086e95f0c91b259ee97270e8f6a8a7768", + "build_type": "debug", + "total_storage": 63933894656, + "free_storage": 26521919488, + "memory": { + "size": 2976202752, + "usable": 2550726656, + "free": 66846720 + }, + "application_stats": { + "application_active": true, + "application_in_foreground": true, + "launches_since_last_crash": 1, + "sessions_since_last_crash": 2, + "active_time_since_last_crash": 120.664, + "background_time_since_last_crash": 12.2669, + "sessions_since_launch": 2, + "active_time_since_launch": 120.664, + "background_time_since_launch": 12.2669 + } + }, + "crash": { + "error": { + "mach": { + "exception": 1, + "exception_name": "EXC_BAD_ACCESS", + "code": 257, + "code_name": "EXC_ARM_DA_ALIGN", + "subcode": 5365848110 + }, + "signal": { + "signal": 10, + "name": "SIGBUS", + "code": 0, + "code_name": "BUS_NOOP" + }, + "address": 5365848110, + "type": "mach" + }, + "threads": [ + { + "backtrace": { + "contents": [ + { + "instruction_addr": 5365848110 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309617184, + "instruction_addr": 4309617228 + }, + { + "object_name": "iOS-Swift", + "object_addr": 4306583552, + "symbol_name": "$s9iOS_Swift14ViewControllerC5crashyyypF", + "symbol_addr": 4306654892, + "instruction_addr": 4306654944 + }, + { + "object_name": "iOS-Swift", + "object_addr": 4306583552, + "symbol_name": "", + "symbol_addr": 4306654956, + "instruction_addr": 4306655024 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7140628492, + "instruction_addr": 7140628592 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309427996, + "instruction_addr": 4309428196 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7140627712, + "instruction_addr": 7140627824 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7140625856, + "instruction_addr": 7140626180 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7140625708, + "instruction_addr": 7140625832 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7140624364, + "instruction_addr": 7140624764 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7139242572, + "instruction_addr": 7139243348 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7139237020, + "instruction_addr": 7139240304 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7139236240, + "instruction_addr": 7139236912 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7139227456, + "instruction_addr": 7139234540 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7139523072, + "instruction_addr": 7139528704 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7142709604, + "instruction_addr": 7142709828 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103586072, + "instruction_addr": 7103586100 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103636060, + "instruction_addr": 7103636236 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103127772, + "instruction_addr": 7103128016 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103215688, + "instruction_addr": 7103216524 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "CFRunLoopRunSpecific", + "symbol_addr": 7103237204, + "instruction_addr": 7103237816 + }, + { + "object_name": "GraphicsServices", + "object_addr": 8086032384, + "symbol_name": "GSEventRunModal", + "symbol_addr": 8086037188, + "instruction_addr": 8086037352 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7142017500, + "instruction_addr": 7142018388 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "UIApplicationMain", + "symbol_addr": 7142017124, + "instruction_addr": 7142017464 + }, + { + "object_name": "iOS-Swift", + "object_addr": 4306583552, + "symbol_name": "main", + "symbol_addr": 4306715508, + "instruction_addr": 4306715572 + }, + { + "instruction_addr": 7625050464 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 4310376784, + "x1": 4306839947, + "x2": 259, + "x3": 10762518888, + "x4": 5803094048, + "x5": 10766664720, + "x6": 10, + "x7": 1, + "x8": 5365848110, + "x9": 259, + "x10": 10767712640, + "x11": 6162675, + "x12": 8, + "x13": 0, + "x14": 6987497472, + "x15": 9917497344, + "x16": 4310376826, + "x17": 4309617184, + "x18": 0, + "x19": 10766664720, + "x20": 5801794240, + "x21": 5803094048, + "x22": 4306840396, + "x23": 10774023360, + "x24": 8552160384, + "x25": 10786661184, + "x26": 4306840396, + "x27": 5801794240, + "x28": 1, + "fp": 6160290192, + "lr": 4309617228, + "sp": 6160290160, + "pc": 5365848110, + "cpsr": 1073741824 + }, + "exception": { + "exception": 0, + "esr": 2315255808, + "far": 5365848110 + } + }, + "index": 0, + "crashed": true, + "current_thread": false, + "stack": { + "grow_direction": "-", + "dump_start": 6160290080, + "dump_end": 6160290320, + "stack_pointer": 6160290160, + "overflow": false, + "contents": "91E5430FD82FC8465829D484D012904A4591AAE83A48D072B6F54CC5C4C622185021EB00010000008B29B50001000000030100000000000068017F81020000002030E459010000001044BE81020000000A000000000000002E58D43F010000008B29B500010000005021EB0001000000B0912E6F01000000E056B20001000000C05AD05901000000E0912E6F0100000010922E6F010000003057B20001000000C05AD05901000000E0912E6F010000002030E45901000000C05AD059010000002030E459010000001044BE81020000000A0000000000000058F9BAFD01000000C05AD059010000001044BE8102000000" + }, + "notable_addresses": { + "x0": { + "address": 4310376784, + "type": "objc_class", + "class": "SentrySDK" + }, + "x1": { + "address": 4306839947, + "type": "string", + "value": "crash" + }, + "x14": { + "address": 6987497472, + "type": "string", + "value": "dyld_v1 arm64e" + }, + "x22": { + "address": 4306840396, + "type": "string", + "value": "crash:" + }, + "x26": { + "address": 4306840396, + "type": "string", + "value": "crash:" + }, + "stack@0x16f2e9140": { + "address": 4310376784, + "type": "objc_class", + "class": "SentrySDK" + }, + "stack@0x16f2e9148": { + "address": 4306839947, + "type": "string", + "value": "crash" + }, + "stack@0x16f2e9180": { + "address": 4306839947, + "type": "string", + "value": "crash" + }, + "stack@0x16f2e9188": { + "address": 4310376784, + "type": "objc_class", + "class": "SentrySDK" + } + } + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_trap", + "symbol_addr": 8145336992, + "instruction_addr": 8145337000 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_internal", + "symbol_addr": 8145411956, + "instruction_addr": 8145412036 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg_overwrite", + "symbol_addr": 8145412224, + "instruction_addr": 8145412612 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg", + "symbol_addr": 8145338324, + "instruction_addr": 8145338348 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103212084, + "instruction_addr": 7103212244 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103215688, + "instruction_addr": 7103216920 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "CFRunLoopRunSpecific", + "symbol_addr": 7103237204, + "instruction_addr": 7103237816 + }, + { + "object_name": "Foundation", + "object_addr": 7005818880, + "symbol_name": "", + "symbol_addr": 7006089216, + "instruction_addr": 7006089428 + }, + { + "object_name": "Foundation", + "object_addr": 7005818880, + "symbol_name": "", + "symbol_addr": 7006089084, + "instruction_addr": 7006089148 + }, + { + "object_name": "UIKitCore", + "object_addr": 7138209792, + "symbol_name": "", + "symbol_addr": 7143283180, + "instruction_addr": 7143283616 + }, + { + "object_name": "Foundation", + "object_addr": 7005818880, + "symbol_name": "", + "symbol_addr": 7006192348, + "instruction_addr": 7006193064 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_start", + "symbol_addr": 8421037624, + "instruction_addr": 8421037772 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 0, + "x1": 21592279046, + "x2": 8589934592, + "x3": 39595303501824, + "x4": 0, + "x5": 39595303501824, + "x6": 2, + "x7": 4294967295, + "x8": 18446744073709550527, + "x9": 0, + "x10": 9219, + "x11": 0, + "x12": 64515, + "x13": 9219, + "x14": 0, + "x15": 0, + "x16": 18446744073709551569, + "x17": 2, + "x18": 0, + "x19": 4294967295, + "x20": 2, + "x21": 39595303501824, + "x22": 0, + "x23": 39595303501824, + "x24": 6162570584, + "x25": 8589934592, + "x26": 21592279046, + "x27": 21592279046, + "x28": 8551669760, + "fp": 6162570432, + "lr": 8145412036, + "sp": 6162570352, + "pc": 8145337000, + "cpsr": 1073741824 + } + }, + "index": 1, + "name": "com.apple.uikit.eventfetch-thread", + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "", + "symbol_addr": 8421034640, + "instruction_addr": 8421034896 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 6163722240, + "x1": 14339, + "x2": 6163185664, + "x3": 6163721088, + "x4": 5128197, + "x5": 1, + "x6": 0, + "x7": 0, + "x8": 0, + "x9": 0, + "x10": 0, + "x11": 0, + "x12": 0, + "x13": 0, + "x14": 0, + "x15": 0, + "x16": 0, + "x17": 0, + "x18": 0, + "x19": 0, + "x20": 0, + "x21": 0, + "x22": 0, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 0, + "lr": 0, + "sp": 6163721072, + "pc": 8421034896, + "cpsr": 0 + } + }, + "index": 2, + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "__semwait_signal", + "symbol_addr": 8145338208, + "instruction_addr": 8145338216 + }, + { + "object_name": "libsystem_c.dylib", + "object_addr": 7226810368, + "symbol_name": "nanosleep", + "symbol_addr": 7226832636, + "instruction_addr": 7226832856 + }, + { + "object_name": "libsystem_c.dylib", + "object_addr": 7226810368, + "symbol_name": "sleep", + "symbol_addr": 7226915492, + "instruction_addr": 7226915544 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309468048, + "instruction_addr": 4309468176 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_start", + "symbol_addr": 8421037624, + "instruction_addr": 8421037772 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 7939, + "x1": 0, + "x2": 1, + "x3": 1, + "x4": 60, + "x5": 0, + "x6": 52, + "x7": 0, + "x8": 8551680796, + "x9": 16387, + "x10": 17, + "x11": 2043, + "x12": 3492106266, + "x13": 2045, + "x14": 3494205461, + "x15": 3492106266, + "x16": 334, + "x17": 1346371584, + "x18": 0, + "x19": 6164868976, + "x20": 6164868992, + "x21": 0, + "x22": 0, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 6164868960, + "lr": 7226832856, + "sp": 6164868912, + "pc": 8145338216, + "cpsr": 1073741824 + } + }, + "index": 3, + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_trap", + "symbol_addr": 8145336992, + "instruction_addr": 8145337000 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_internal", + "symbol_addr": 8145411956, + "instruction_addr": 8145412036 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg_overwrite", + "symbol_addr": 8145412224, + "instruction_addr": 8145412612 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg", + "symbol_addr": 8145338324, + "instruction_addr": 8145338348 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309338964, + "instruction_addr": 4309339160 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_start", + "symbol_addr": 8421037624, + "instruction_addr": 8421037772 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 6165441892, + "x1": 17179869186, + "x2": 0, + "x3": 0, + "x4": 0, + "x5": 95670396518400, + "x6": 580, + "x7": 0, + "x8": 18446744073709550527, + "x9": 22275, + "x10": 0, + "x11": 0, + "x12": 0, + "x13": 22275, + "x14": 0, + "x15": 0, + "x16": 18446744073709551569, + "x17": 6165442560, + "x18": 0, + "x19": 0, + "x20": 580, + "x21": 95670396518400, + "x22": 0, + "x23": 0, + "x24": 6165441892, + "x25": 0, + "x26": 17179869186, + "x27": 17179869186, + "x28": 8551669760, + "fp": 6165441424, + "lr": 8145412036, + "sp": 6165441344, + "pc": 8145337000, + "cpsr": 1073741824 + } + }, + "index": 4, + "name": "SentryCrash Exception Handler (Secondary)", + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [], + "skipped": 0 + }, + "index": 5, + "name": "SentryCrash Exception Handler (Primary)", + "crashed": false, + "current_thread": true + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "__semwait_signal", + "symbol_addr": 8145338208, + "instruction_addr": 8145338216 + }, + { + "object_name": "libsystem_c.dylib", + "object_addr": 7226810368, + "symbol_name": "nanosleep", + "symbol_addr": 7226832636, + "instruction_addr": 7226832856 + }, + { + "object_name": "Foundation", + "object_addr": 7005818880, + "symbol_name": "", + "symbol_addr": 7006550208, + "instruction_addr": 7006550368 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309435272, + "instruction_addr": 4309435316 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309186272, + "instruction_addr": 4309186996 + }, + { + "object_name": "Foundation", + "object_addr": 7005818880, + "symbol_name": "", + "symbol_addr": 7006192348, + "instruction_addr": 7006193064 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_start", + "symbol_addr": 8421037624, + "instruction_addr": 8421037772 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 7939, + "x1": 0, + "x2": 1, + "x3": 1, + "x4": 0, + "x5": 400000000, + "x6": 0, + "x7": 0, + "x8": 8551680796, + "x9": 3, + "x10": 17, + "x11": 1970335589992960, + "x12": 3, + "x13": 10753018400, + "x14": 8551779536, + "x15": 8551779536, + "x16": 334, + "x17": 8572711128, + "x18": 0, + "x19": 0, + "x20": 6166587824, + "x21": 0, + "x22": 0, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 6166587776, + "lr": 7226832856, + "sp": 6166587728, + "pc": 8145338216, + "cpsr": 2147483648 + } + }, + "index": 6, + "name": "io.sentry.app-hang-tracker", + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_trap", + "symbol_addr": 8145336992, + "instruction_addr": 8145337000 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_internal", + "symbol_addr": 8145411956, + "instruction_addr": 8145412036 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg_overwrite", + "symbol_addr": 8145412224, + "instruction_addr": 8145412612 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg", + "symbol_addr": 8145338324, + "instruction_addr": 8145338348 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103212084, + "instruction_addr": 7103212244 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "", + "symbol_addr": 7103215688, + "instruction_addr": 7103216920 + }, + { + "object_name": "CoreFoundation", + "object_addr": 7102709760, + "symbol_name": "CFRunLoopRunSpecific", + "symbol_addr": 7103237204, + "instruction_addr": 7103237816 + }, + { + "object_name": "CFNetwork", + "object_addr": 7121158144, + "symbol_name": "_CFURLStorageSessionDisableCache", + "symbol_addr": 7123554872, + "instruction_addr": 7123615960 + }, + { + "object_name": "Foundation", + "object_addr": 7005818880, + "symbol_name": "", + "symbol_addr": 7006192348, + "instruction_addr": 7006193064 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_start", + "symbol_addr": 8421037624, + "instruction_addr": 8421037772 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 6167731512, + "x1": 21592279046, + "x2": 8589934592, + "x3": 118777320570880, + "x4": 0, + "x5": 118777320570880, + "x6": 2, + "x7": 4294967295, + "x8": 18446744073709550527, + "x9": 0, + "x10": 27655, + "x11": 0, + "x12": 621831, + "x13": 27655, + "x14": 8796093022208, + "x15": 0, + "x16": 18446744073709551569, + "x17": 8796093024258, + "x18": 0, + "x19": 4294967295, + "x20": 2, + "x21": 118777320570880, + "x22": 0, + "x23": 118777320570880, + "x24": 6167731512, + "x25": 8589934592, + "x26": 21592279046, + "x27": 21592279046, + "x28": 8551669760, + "fp": 6167731360, + "lr": 8145412036, + "sp": 6167731280, + "pc": 8145337000, + "cpsr": 1073741824 + } + }, + "index": 7, + "name": "com.apple.NSURLConnectionLoader", + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "__workq_kernreturn", + "symbol_addr": 8145338280, + "instruction_addr": 8145338288 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_wqthread", + "symbol_addr": 8421035224, + "instruction_addr": 8421035588 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 256, + "x1": 6160853888, + "x2": 2, + "x3": 0, + "x4": 0, + "x5": 19804094201856, + "x6": 32, + "x7": 0, + "x8": 10753049473, + "x9": 6160853960, + "x10": 10753049528, + "x11": 1, + "x12": 0, + "x13": 7, + "x14": 1, + "x15": 72, + "x16": 368, + "x17": 8592134544, + "x18": 0, + "x19": 6160855040, + "x20": 1, + "x21": 6160855200, + "x22": 6160855192, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 6160853840, + "lr": 8421035588, + "sp": 6160853808, + "pc": 8145338288, + "cpsr": 1073741824 + } + }, + "index": 8, + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "__workq_kernreturn", + "symbol_addr": 8145338280, + "instruction_addr": 8145338288 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_wqthread", + "symbol_addr": 8421035224, + "instruction_addr": 8421035588 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 256, + "x1": 6161427328, + "x2": 1, + "x3": 0, + "x4": 10753040512, + "x5": 32, + "x6": 0, + "x7": 0, + "x8": 10753085185, + "x9": 6161427328, + "x10": 10753085240, + "x11": 1, + "x12": 0, + "x13": 7, + "x14": 1, + "x15": 72, + "x16": 368, + "x17": 681574400, + "x18": 0, + "x19": 6161428480, + "x20": 1, + "x21": 6161428640, + "x22": 6161428632, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 6161427280, + "lr": 8421035588, + "sp": 6161427248, + "pc": 8145338288, + "cpsr": 1073741824 + } + }, + "index": 9, + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "__workq_kernreturn", + "symbol_addr": 8145338280, + "instruction_addr": 8145338288 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_wqthread", + "symbol_addr": 8421035224, + "instruction_addr": 8421035588 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 64, + "x1": 6162000768, + "x2": 0, + "x3": 0, + "x4": 8551681480, + "x5": 32, + "x6": 0, + "x7": 0, + "x8": 0, + "x9": 18016666252228108, + "x10": 18428727476176814080, + "x11": 68719476736, + "x12": 8551684600, + "x13": 24000000, + "x14": 27021756678018581, + "x15": 27021756678018581, + "x16": 368, + "x17": 27021756678018581, + "x18": 0, + "x19": 6162001920, + "x20": 1, + "x21": 6162002080, + "x22": 6162002072, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 6162000736, + "lr": 8421035588, + "sp": 6162000704, + "pc": 8145338288, + "cpsr": 1073741824 + } + }, + "index": 10, + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 0, + "x1": 0, + "x2": 0, + "x3": 0, + "x4": 0, + "x5": 0, + "x6": 0, + "x7": 0, + "x8": 0, + "x9": 0, + "x10": 0, + "x11": 0, + "x12": 0, + "x13": 0, + "x14": 0, + "x15": 0, + "x16": 0, + "x17": 0, + "x18": 0, + "x19": 0, + "x20": 0, + "x21": 0, + "x22": 0, + "x23": 0, + "x24": 0, + "x25": 0, + "x26": 0, + "x27": 0, + "x28": 0, + "fp": 0, + "lr": 0, + "sp": 0, + "pc": 0, + "cpsr": 0 + } + }, + "index": 11, + "crashed": false, + "current_thread": false + }, + { + "backtrace": { + "contents": [ + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_trap", + "symbol_addr": 8145336992, + "instruction_addr": 8145337000 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg2_internal", + "symbol_addr": 8145411956, + "instruction_addr": 8145412036 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg_overwrite", + "symbol_addr": 8145412224, + "instruction_addr": 8145412612 + }, + { + "object_name": "libsystem_kernel.dylib", + "object_addr": 8145317888, + "symbol_name": "mach_msg", + "symbol_addr": 8145338324, + "instruction_addr": 8145338348 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309094108, + "instruction_addr": 4309094396 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309112564, + "instruction_addr": 4309112772 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309112312, + "instruction_addr": 4309112488 + }, + { + "object_name": "Sentry", + "object_addr": 4308959232, + "symbol_name": "", + "symbol_addr": 4309107428, + "instruction_addr": 4309107512 + }, + { + "object_name": "libsystem_pthread.dylib", + "object_addr": 8421031936, + "symbol_name": "_pthread_start", + "symbol_addr": 8421037624, + "instruction_addr": 8421037772 + } + ], + "skipped": 0 + }, + "registers": { + "basic": { + "x0": 0, + "x1": 17179869186, + "x2": 0, + "x3": 0, + "x4": 0, + "x5": 113314122170368, + "x6": 512, + "x7": 0, + "x8": 18446744073709550527, + "x9": 26383, + "x10": 0, + "x11": 0, + "x12": 0, + "x13": 26383, + "x14": 4294967295, + "x15": 5768233088, + "x16": 18446744073709551569, + "x17": 6164295680, + "x18": 0, + "x19": 0, + "x20": 512, + "x21": 113314122170368, + "x22": 0, + "x23": 0, + "x24": 5768263120, + "x25": 0, + "x26": 17179869186, + "x27": 17179869186, + "x28": 8551669760, + "fp": 6164294656, + "lr": 8145412036, + "sp": 6164294576, + "pc": 8145337000, + "cpsr": 1073741824 + } + }, + "index": 12, + "crashed": false, + "current_thread": false + } + ] + }, + "sentry_sdk_scope": { + "user": { + "email": "tony1@example.com", + "id": "1" + }, + "environment": "debug", + "tags": { + "language": "swift" + }, + "extra": { + "currentViewController": "" + }, + "breadcrumbs": [ + { + "category": "started", + "level": "info", + "message": "Breadcrumb Tracking", + "timestamp": "2023-01-30T09:05:01.740Z", + "type": "debug" + }, + { + "category": "device.orientation", + "data": { + "position": "portrait" + }, + "level": "info", + "timestamp": "2023-01-30T09:05:01.757Z", + "type": "navigation" + }, + { + "category": "ui.lifecycle", + "data": { + "beingPresented": "false", + "is_window_rootViewController": "true", + "screen": "UINavigationController", + "window": "; backgroundColor = ; layer = >", + "window_isKeyWindow": "true", + "window_windowLevel": "0.000000" + }, + "level": "info", + "timestamp": "2023-01-30T09:05:01.819Z", + "type": "navigation" + }, + { + "category": "ui.lifecycle", + "data": { + "beingPresented": "false", + "is_window_rootViewController": "false", + "parentViewController": "UINavigationController", + "screen": "ViewController", + "title": "Sentry Test App (Swift)", + "window": "; backgroundColor = ; layer = >", + "window_isKeyWindow": "true", + "window_windowLevel": "0.000000" + }, + "level": "info", + "timestamp": "2023-01-30T09:05:01.819Z", + "type": "navigation" + }, + { + "category": "app.lifecycle", + "data": { + "state": "foreground" + }, + "level": "info", + "timestamp": "2023-01-30T09:05:01.987Z", + "type": "navigation" + }, + { + "category": "device.event", + "data": { + "action": "BATTERY_STATE_CHANGE", + "level": 4, + "plugged": true + }, + "level": "info", + "timestamp": "2023-01-30T09:05:21.053Z", + "type": "system" + }, + { + "category": "device.event", + "data": { + "action": "BATTERY_STATE_CHANGE", + "level": 3, + "plugged": true + }, + "level": "info", + "timestamp": "2023-01-30T09:05:41.050Z", + "type": "system" + }, + { + "category": "device.event", + "data": { + "action": "BATTERY_STATE_CHANGE", + "level": 4, + "plugged": true + }, + "level": "info", + "timestamp": "2023-01-30T09:06:01.086Z", + "type": "system" + }, + { + "category": "device.event", + "data": { + "action": "BATTERY_STATE_CHANGE", + "level": 3, + "plugged": true + }, + "level": "info", + "timestamp": "2023-01-30T09:06:21.115Z", + "type": "system" + }, + { + "category": "app.lifecycle", + "data": { + "state": "background" + }, + "level": "info", + "timestamp": "2023-01-30T09:07:02.658Z", + "type": "navigation" + }, + { + "category": "device.orientation", + "data": { + "position": "portrait" + }, + "level": "info", + "timestamp": "2023-01-30T09:07:14.286Z", + "type": "navigation" + }, + { + "category": "app.lifecycle", + "data": { + "state": "foreground" + }, + "level": "info", + "timestamp": "2023-01-30T09:07:15.480Z", + "type": "navigation" + }, + { + "category": "touch", + "data": { + "title": "crash", + "view": ">" + }, + "level": "info", + "message": "crash:", + "timestamp": "2023-01-30T09:07:16.198Z", + "type": "user" + } + ] + }, + "user": { + "context": { + "app": { + "app_build": "1", + "app_id": "C488D0BE-E733-3031-AEF3-CC5182AB1E3B", + "app_identifier": "io.sentry.sample.iOS-Swift", + "app_name": "iOS-Swift", + "app_start_time": "2023-01-30T09:05:01Z", + "app_version": "7.31.5", + "build_type": "debug", + "device_app_hash": "9116712086e95f0c91b259ee97270e8f6a8a7768" + }, + "device": { + "arch": "arm64", + "boot_time": "2023-01-30T08:43:25Z", + "family": "iOS", + "free_memory": 38764544, + "free_storage": 26521919488, + "locale": "en_AT", + "memory_size": 2976202752, + "model": "iPhone11,8", + "model_id": "N841AP", + "screen_height_pixels": 896, + "screen_width_pixels": 414, + "simulator": false, + "storage_size": 63933894656, + "usable_memory": 2552430592 + }, + "os": { + "build": "20C5043e", + "kernel_version": "Darwin Kernel Version 22.2.0: Tue Nov 1 21:21:17 PDT 2022; root:xnu-8792.60.51.122.1~1/RELEASE_ARM64_T8020", + "name": "iOS", + "rooted": false, + "version": "16.2" + } + }, + "release": "io.sentry.sample.iOS-Swift@7.31.5+1" + }, + "debug": {} +} diff --git a/Tests/SentryTests/SentryCrash/CrashReportWriter.swift b/Tests/SentryTests/SentryCrash/CrashReport.swift similarity index 59% rename from Tests/SentryTests/SentryCrash/CrashReportWriter.swift rename to Tests/SentryTests/SentryCrash/CrashReport.swift index 1abf941c9a7..36ee8172a84 100644 --- a/Tests/SentryTests/SentryCrash/CrashReportWriter.swift +++ b/Tests/SentryTests/SentryCrash/CrashReport.swift @@ -9,4 +9,10 @@ extension XCTestCase { sentrycrashcrs_addUserReport(pointer.baseAddress, Int32(jsonData.count)) } } + + func getCrashReport(resource: String) throws -> [String: Any] { + let jsonPath = Bundle(for: type(of: self)).path(forResource: resource, ofType: "json") + let jsonData = try Data(contentsOf: URL(fileURLWithPath: jsonPath ?? "")) + return try JSONSerialization.jsonObject(with: jsonData, options: []) as! [String: Any] + } } diff --git a/Tests/SentryTests/SentryCrash/SentryCrashDoctorTests.swift b/Tests/SentryTests/SentryCrash/SentryCrashDoctorTests.swift new file mode 100644 index 00000000000..9e3cdd52054 --- /dev/null +++ b/Tests/SentryTests/SentryCrash/SentryCrashDoctorTests.swift @@ -0,0 +1,20 @@ +import XCTest + +final class SentryCrashDoctorTests: XCTestCase { + + func testBadAccess() throws { + let report = try getCrashReport(resource: "crash-bad-access") + + let diagnose = SentryCrashDoctor().diagnoseCrash(report) + + XCTAssertEqual("EXC_ARM_DA_ALIGN at 0x13fd4582e.", diagnose) + } + + func testBadAccess_NoSubcode() throws { + let report = try getCrashReport(resource: "crash-bad-access-no-subcode") + + let diagnose = SentryCrashDoctor().diagnoseCrash(report) + + XCTAssertEqual("Attempted to dereference garbage pointer at 0x13fd4582e.", diagnose) + } +} diff --git a/Tests/SentryTests/SentryTests-Bridging-Header.h b/Tests/SentryTests/SentryTests-Bridging-Header.h index f68060c2858..70c8026dd73 100644 --- a/Tests/SentryTests/SentryTests-Bridging-Header.h +++ b/Tests/SentryTests/SentryTests-Bridging-Header.h @@ -35,6 +35,7 @@ #import "SentryCrashDebug.h" #import "SentryCrashDefaultBinaryImageProvider.h" #import "SentryCrashDefaultMachineContextWrapper.h" +#import "SentryCrashDoctor.h" #import "SentryCrashInstallationReporter.h" #import "SentryCrashIntegration+TestInit.h" #import "SentryCrashIntegration.h" From a9466766af3f7ef380b9cd3c8f695cf6d8afa756 Mon Sep 17 00:00:00 2001 From: Philipp Hofmann Date: Mon, 30 Jan 2023 12:01:54 +0100 Subject: [PATCH 2/3] Remove dSYMs and threads from JFON --- .../crash-bad-access-no-subcode.json | 6525 +---------------- Tests/Resources/crash-bad-access.json | 6525 +---------------- 2 files changed, 2 insertions(+), 13048 deletions(-) diff --git a/Tests/Resources/crash-bad-access-no-subcode.json b/Tests/Resources/crash-bad-access-no-subcode.json index 83ac4244724..e627a970afd 100644 --- a/Tests/Resources/crash-bad-access-no-subcode.json +++ b/Tests/Resources/crash-bad-access-no-subcode.json @@ -6,5312 +6,6 @@ "timestamp": 1675069636, "type": "standard" }, - "binary_images": [ - { - "image_addr": 4306583552, - "image_vmaddr": 4294967296, - "image_size": 278528, - "name": "/private/var/containers/Bundle/Application/53C684E3-9F0E-4FE3-8291-88677BAB718C/iOS-Swift.app/iOS-Swift", - "uuid": "C488D0BE-E733-3031-AEF3-CC5182AB1E3B", - "cpu_type": 16777228, - "cpu_subtype": 0, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 4308959232, - "image_vmaddr": 0, - "image_size": 1212416, - "name": "/private/var/containers/Bundle/Application/53C684E3-9F0E-4FE3-8291-88677BAB718C/iOS-Swift.app/Frameworks/Sentry.framework/Sentry", - "uuid": "D9FC174C-62AD-3343-825B-DABBC5743CDC", - "cpu_type": 16777228, - "cpu_subtype": 0, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7005818880, - "image_vmaddr": 6460772352, - "image_size": 9740288, - "name": "/System/Library/Frameworks/Foundation.framework/Foundation", - "uuid": "C1224D80-B336-3E92-8CAD-7B6417720DAE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1953, - "minor_version": 255, - "revision_version": 0 - }, - { - "image_addr": 6988251136, - "image_vmaddr": 6443204608, - "image_size": 278048, - "name": "/usr/lib/libobjc.A.dylib", - "uuid": "79BC93BC-DF0F-300A-BD7B-07DCB2E13482", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 228, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7345225728, - "image_vmaddr": 6800179200, - "image_size": 421876, - "name": "/usr/lib/libc++.1.dylib", - "uuid": "3919F6F0-11CC-3281-B454-E308ACA8B8C1", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1300, - "minor_version": 36, - "revision_version": 0 - }, - { - "image_addr": 8421642240, - "image_vmaddr": 7876595712, - "image_size": 8192, - "name": "/usr/lib/libSystem.B.dylib", - "uuid": "C8734DFD-F789-3EF7-884B-AF518D6D009E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1319, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7228645376, - "image_vmaddr": 6683598848, - "image_size": 3534848, - "name": "/System/Library/Frameworks/CoreData.framework/CoreData", - "uuid": "6843123C-6E88-376B-8282-AC09FF51C135", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1244, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 7102709760, - "image_vmaddr": 6557663232, - "image_size": 4087808, - "name": "/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation", - "uuid": "FB98BD04-E2CF-31BF-BA9E-BD12CEAEFE13", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1953, - "minor_version": 255, - "revision_version": 0 - }, - { - "image_addr": 7298760704, - "image_vmaddr": 6753714176, - "image_size": 1019904, - "name": "/System/Library/Frameworks/CoreLocation.framework/CoreLocation", - "uuid": "2A296B42-101B-3BE9-B337-2A725B05DB5F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2780, - "minor_version": 0, - "revision_version": 25 - }, - { - "image_addr": 9027309568, - "image_vmaddr": 8482263040, - "image_size": 94208, - "name": "/System/Library/Frameworks/MetricKit.framework/MetricKit", - "uuid": "8993EC3F-6ACD-3CDA-8DC1-17E9FE694A2D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9057779712, - "image_vmaddr": 8512733184, - "image_size": 4096, - "name": "/System/Library/Frameworks/UIKit.framework/UIKit", - "uuid": "A3576478-3C57-348A-9469-C0C67330562D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6206, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7684452352, - "image_vmaddr": 7139405824, - "image_size": 274432, - "name": "/System/Library/Frameworks/UserNotifications.framework/UserNotifications", - "uuid": "62067F90-0095-3C25-8F7A-E8A42768C343", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8744951808, - "image_vmaddr": 8199905280, - "image_size": 4096, - "name": "/usr/lib/swift/libswiftDataDetection.dylib", - "uuid": "220B64FB-EB0D-370B-BEFF-F8E0C497E0EB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 727, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8744792064, - "image_vmaddr": 8199745536, - "image_size": 4093, - "name": "/usr/lib/swift/libswiftFileProvider.dylib", - "uuid": "F9BB3968-F084-32EE-AA3A-3CCEC5A199D8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 730, - "minor_version": 60, - "revision_version": 38 - }, - { - "image_addr": 9239728128, - "image_vmaddr": 8694681600, - "image_size": 8188, - "name": "/usr/lib/swift/libswiftMetricKit.dylib", - "uuid": "BD4378B8-7F9F-3D8F-BAA9-94A881E42889", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 6999937024, - "image_vmaddr": 6454890496, - "image_size": 5672960, - "name": "/usr/lib/swift/libswiftCore.dylib", - "uuid": "E3D0EECA-73D4-3781-BC4C-FE11385B549C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 5, - "minor_version": 7, - "revision_version": 1 - }, - { - "image_addr": 7890931712, - "image_vmaddr": 7345885184, - "image_size": 32756, - "name": "/usr/lib/swift/libswiftCoreFoundation.dylib", - "uuid": "90281A04-38C2-3F71-A1FB-3E2DDFB78C7D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 120, - "minor_version": 100, - "revision_version": 0 - }, - { - "image_addr": 8744845312, - "image_vmaddr": 8199798784, - "image_size": 4096, - "name": "/usr/lib/swift/libswiftCoreImage.dylib", - "uuid": "92814928-95C7-3E1B-AF6D-040EE873EE6D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8728649728, - "image_vmaddr": 8183603200, - "image_size": 12281, - "name": "/usr/lib/swift/libswiftCoreLocation.dylib", - "uuid": "AAA8C904-7B5B-3774-8749-4D595795D2D5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 9, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8692584448, - "image_vmaddr": 8147537920, - "image_size": 40956, - "name": "/usr/lib/swift/libswiftDarwin.dylib", - "uuid": "5C6DFE34-C9FE-370B-BE32-59D7DCC4FA9B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7245258752, - "image_vmaddr": 6700212224, - "image_size": 98296, - "name": "/usr/lib/swift/libswiftDispatch.dylib", - "uuid": "808E995E-BE7D-3E8D-838A-428C10446E99", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 17, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8728719360, - "image_vmaddr": 8183672832, - "image_size": 24563, - "name": "/usr/lib/swift/libswiftMetal.dylib", - "uuid": "9FE27A5D-C266-3AF7-B5F3-5894F2BD1CD9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 306, - "minor_version": 3, - "revision_version": 3 - }, - { - "image_addr": 7767056384, - "image_vmaddr": 7222009856, - "image_size": 16370, - "name": "/usr/lib/swift/libswiftObjectiveC.dylib", - "uuid": "A39BB68D-EF0F-3B5B-93CB-F30C7F043138", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8728748032, - "image_vmaddr": 8183701504, - "image_size": 8188, - "name": "/usr/lib/swift/libswiftQuartzCore.dylib", - "uuid": "E15B9538-0C07-39E4-9B38-5E54955DF046", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7248850944, - "image_vmaddr": 6703804416, - "image_size": 479232, - "name": "/usr/lib/swift/libswiftUIKit.dylib", - "uuid": "FF9071D9-FE4A-3CB5-8840-5EF960E2B60C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6206, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7343546368, - "image_vmaddr": 6798499840, - "image_size": 110592, - "name": "/usr/lib/swift/libswiftos.dylib", - "uuid": "D73C5E6E-DC16-3116-B93C-13FF0CF53B45", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1034, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7699828736, - "image_vmaddr": 7154782208, - "image_size": 28672, - "name": "/usr/lib/swift/libswiftCoreGraphics.dylib", - "uuid": "79326C40-3A28-3FBD-A265-3AD259F5F494", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 15, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9061621760, - "image_vmaddr": 8516575232, - "image_size": 4094, - "name": "/usr/lib/swift/libswiftFoundation.dylib", - "uuid": "D896344D-3C00-379F-8ECF-FE8CB3ADC7A3", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 120, - "minor_version": 100, - "revision_version": 0 - }, - { - "image_addr": 9072156672, - "image_vmaddr": 8527110144, - "image_size": 4096, - "name": "/usr/lib/swift/libswiftCoreData.dylib", - "uuid": "2406573C-7451-3F2C-BFFB-845870447191", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 25, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9313681408, - "image_vmaddr": 8768634880, - "image_size": 73720, - "name": "/usr/lib/libz.1.dylib", - "uuid": "3C9ACC54-1480-3DA0-B610-A5582B44FACE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 2, - "revision_version": 11 - }, - { - "image_addr": 7126474752, - "image_vmaddr": 6581428224, - "image_size": 3534848, - "name": "/System/Library/Frameworks/QuartzCore.framework/QuartzCore", - "uuid": "8402973D-62D0-3612-94E6-16F326902D2D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 11, - "revision_version": 0 - }, - { - "image_addr": 7272476672, - "image_vmaddr": 6727430144, - "image_size": 520180, - "name": "/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration", - "uuid": "420FA60E-6887-31AD-863F-F3D7DC456BE6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1241, - "minor_version": 60, - "revision_version": 3 - }, - { - "image_addr": 9075372032, - "image_vmaddr": 8530325504, - "image_size": 24572, - "name": "/usr/lib/system/libcache.dylib", - "uuid": "9E4C0BF8-E5FA-323C-AE2B-2AC409BB4169", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 90, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8420151296, - "image_vmaddr": 7875104768, - "image_size": 53244, - "name": "/usr/lib/system/libcommonCrypto.dylib", - "uuid": "4AFEA8A5-3328-3A50-B10E-837BD3C598B4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 60198, - "minor_version": 60, - "revision_version": 2 - }, - { - "image_addr": 8420347904, - "image_vmaddr": 7875301376, - "image_size": 16380, - "name": "/usr/lib/system/libcompiler_rt.dylib", - "uuid": "8F3B18FB-3775-308A-851E-00891292C60E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 103, - "minor_version": 1, - "revision_version": 0 - }, - { - "image_addr": 8420114432, - "image_vmaddr": 7875067904, - "image_size": 36860, - "name": "/usr/lib/system/libcopyfile.dylib", - "uuid": "0BEE745D-03C4-3F36-B3F4-B9C0023E3E1E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8420450304, - "image_vmaddr": 7875403776, - "image_size": 561132, - "name": "/usr/lib/system/libcorecrypto.dylib", - "uuid": "77F3650A-2784-3F51-A92B-00DC780DE460", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1386, - "minor_version": 60, - "revision_version": 5 - }, - { - "image_addr": 7226519552, - "image_vmaddr": 6681473024, - "image_size": 290816, - "name": "/usr/lib/system/libdispatch.dylib", - "uuid": "7F5305B9-A9D6-393E-9D4F-CEFD318D0F85", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1412, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7668965376, - "image_vmaddr": 7123918848, - "image_size": 143352, - "name": "/usr/lib/system/libdyld.dylib", - "uuid": "77BE1613-0536-33B3-9971-003AEBB612BC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9212162048, - "image_vmaddr": 8667115520, - "image_size": 24568, - "name": "/usr/lib/system/libmacho.dylib", - "uuid": "4F23F0E4-AFD6-3CF3-8391-C1F9CC7B4C76", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1001, - "minor_version": 2, - "revision_version": 0 - }, - { - "image_addr": 9075085312, - "image_vmaddr": 8530038784, - "image_size": 12288, - "name": "/usr/lib/system/libremovefile.dylib", - "uuid": "B68584DB-9599-3328-B6BB-0AA443BC4BF1", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 63, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8410468352, - "image_vmaddr": 7865421824, - "image_size": 98296, - "name": "/usr/lib/system/libsystem_asl.dylib", - "uuid": "2EA05356-4A8B-312B-B6BF-70FB5290A4CD", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 395, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8421011456, - "image_vmaddr": 7875964928, - "image_size": 20475, - "name": "/usr/lib/system/libsystem_blocks.dylib", - "uuid": "B079ACC8-133C-3F16-A7F5-9471A0CB115C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 84, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7226810368, - "image_vmaddr": 6681763840, - "image_size": 524280, - "name": "/usr/lib/system/libsystem_c.dylib", - "uuid": "872A3077-A853-3D82-BCF4-D2B35D9C8D93", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1534, - "minor_version": 40, - "revision_version": 2 - }, - { - "image_addr": 9271627776, - "image_vmaddr": 8726581248, - "image_size": 20476, - "name": "/usr/lib/system/libsystem_collections.dylib", - "uuid": "A4787C1A-C552-35BD-8A87-D0A3FD18A139", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1534, - "minor_version": 40, - "revision_version": 2 - }, - { - "image_addr": 8421576704, - "image_vmaddr": 7876530176, - "image_size": 20476, - "name": "/usr/lib/system/libsystem_configuration.dylib", - "uuid": "87AA5A56-632C-3239-8F9A-5AE55087EC1E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1241, - "minor_version": 60, - "revision_version": 3 - }, - { - "image_addr": 8188010496, - "image_vmaddr": 7642963968, - "image_size": 204800, - "name": "/usr/lib/system/libsystem_containermanager.dylib", - "uuid": "53ED7AB0-F804-30AB-9620-6D18576429D8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7227334656, - "image_vmaddr": 6682288128, - "image_size": 12284, - "name": "/usr/lib/system/libsystem_coreservices.dylib", - "uuid": "F648EB18-3B55-3609-A1FD-3A1FA4EB8281", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 129, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8421597184, - "image_vmaddr": 7876550656, - "image_size": 45056, - "name": "/usr/lib/system/libsystem_darwin.dylib", - "uuid": "28513438-1492-35C1-95D8-187DAA4DBC93", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8420384768, - "image_vmaddr": 7875338240, - "image_size": 36864, - "name": "/usr/lib/system/libsystem_dnssd.dylib", - "uuid": "9E07228F-7CA1-3AA8-B01A-ECE803E4B9F3", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1790, - "minor_version": 60, - "revision_version": 24 - }, - { - "image_addr": 8145559552, - "image_vmaddr": 7600513024, - "image_size": 12284, - "name": "/usr/lib/system/libsystem_featureflags.dylib", - "uuid": "82974BFB-73D8-3D35-9C57-7B6972FA67D6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 71, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7345070080, - "image_vmaddr": 6800023552, - "image_size": 155648, - "name": "/usr/lib/system/libsystem_info.dylib", - "uuid": "BAF0A5DB-4A7F-3790-8781-5E2C48194832", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8421081088, - "image_vmaddr": 7876034560, - "image_size": 229352, - "name": "/usr/lib/system/libsystem_m.dylib", - "uuid": "7FAF6F58-517D-34E4-951A-53B96926E519", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3226, - "minor_version": 0, - "revision_version": 1 - }, - { - "image_addr": 7343398912, - "image_vmaddr": 6798352384, - "image_size": 147456, - "name": "/usr/lib/system/libsystem_malloc.dylib", - "uuid": "D583161F-E37C-311E-A3EB-9CA5B4AC578A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 409, - "minor_version": 60, - "revision_version": 4 - }, - { - "image_addr": 7495409664, - "image_vmaddr": 6950363136, - "image_size": 114676, - "name": "/usr/lib/system/libsystem_networkextension.dylib", - "uuid": "63AECBCC-A313-363E-9B7A-1F24AA8BB0B2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7736672256, - "image_vmaddr": 7191625728, - "image_size": 45048, - "name": "/usr/lib/system/libsystem_notify.dylib", - "uuid": "13CD57C8-F279-3CB0-A7E9-0443B3236DBA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 306, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8420364288, - "image_vmaddr": 7875317760, - "image_size": 20468, - "name": "/usr/lib/system/libsystem_sandbox.dylib", - "uuid": "2B6DF560-412B-308C-AF2D-285465222A1A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1845, - "minor_version": 60, - "revision_version": 8 - }, - { - "image_addr": 8145317888, - "image_vmaddr": 7600271360, - "image_size": 241652, - "name": "/usr/lib/system/libsystem_kernel.dylib", - "uuid": "96473C26-5219-3DE9-87C2-02B9C4CBAF39", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 8792, - "minor_version": 60, - "revision_version": 51 - }, - { - "image_addr": 8420421632, - "image_vmaddr": 7875375104, - "image_size": 28660, - "name": "/usr/lib/system/libsystem_platform.dylib", - "uuid": "B94924B8-8290-38C4-8F83-3F0DE8542C14", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 288, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8421031936, - "image_vmaddr": 7875985408, - "image_size": 49152, - "name": "/usr/lib/system/libsystem_pthread.dylib", - "uuid": "7F4C3946-4F85-3BB7-B08D-05F2FA4AE964", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 514, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8096763904, - "image_vmaddr": 7551717376, - "image_size": 36856, - "name": "/usr/lib/system/libsystem_symptoms.dylib", - "uuid": "9A5471D8-7E10-31D5-84FC-A1BC9E0ECC78", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7494369280, - "image_vmaddr": 6949322752, - "image_size": 106496, - "name": "/usr/lib/system/libsystem_trace.dylib", - "uuid": "F7714C31-A962-33CF-A14D-5706B274D00A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1406, - "minor_version": 0, - "revision_version": 15 - }, - { - "image_addr": 8420302848, - "image_vmaddr": 7875256320, - "image_size": 45056, - "name": "/usr/lib/system/libunwind.dylib", - "uuid": "8430DFCC-6C7B-3619-84AE-781DE2FAA58F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 202, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 8421310464, - "image_vmaddr": 7876263936, - "image_size": 266240, - "name": "/usr/lib/system/libxpc.dylib", - "uuid": "6CCE8B9A-1DAA-3E9B-B604-31098593EF33", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2462, - "minor_version": 60, - "revision_version": 14 - }, - { - "image_addr": 8420204544, - "image_vmaddr": 7875158016, - "image_size": 98300, - "name": "/usr/lib/libc++abi.dylib", - "uuid": "94CAB44E-88C8-3105-B294-B4A84CB37CF5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1300, - "minor_version": 36, - "revision_version": 0 - }, - { - "image_addr": 7592939520, - "image_vmaddr": 7047892992, - "image_size": 299008, - "name": "/System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout", - "uuid": "85779EDD-7775-3AD1-9187-859DE7DC32E5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 29, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8691630080, - "image_vmaddr": 8146583552, - "image_size": 839620, - "name": "/usr/lib/libcompression.dylib", - "uuid": "273543EC-7975-3C35-A7D3-8E8F71568815", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7121158144, - "image_vmaddr": 6576111616, - "image_size": 3973120, - "name": "/System/Library/Frameworks/CFNetwork.framework/CFNetwork", - "uuid": "BCB4A944-3FF3-3CC3-B2F9-546B6D632301", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1402, - "minor_version": 0, - "revision_version": 5 - }, - { - "image_addr": 8366325760, - "image_vmaddr": 7821279232, - "image_size": 552948, - "name": "/usr/lib/libarchive.2.dylib", - "uuid": "3536ACEE-F471-37B4-B958-66EC18A0D052", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 9, - "minor_version": 2, - "revision_version": 0 - }, - { - "image_addr": 7249330176, - "image_vmaddr": 6704283648, - "image_size": 2822144, - "name": "/usr/lib/libicucore.A.dylib", - "uuid": "554ABBE3-39F7-3DF2-8B43-E66A8426DDEF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 70, - "minor_version": 1, - "revision_version": 0 - }, - { - "image_addr": 7757815808, - "image_vmaddr": 7212769280, - "image_size": 970740, - "name": "/usr/lib/libxml2.2.dylib", - "uuid": "DD140B09-99ED-3641-898A-7E7876A9779C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 10, - "minor_version": 9, - "revision_version": 0 - }, - { - "image_addr": 8692477952, - "image_vmaddr": 8147431424, - "image_size": 8192, - "name": "/usr/lib/liblangid.dylib", - "uuid": "BE110698-4CDD-33B7-BF1A-F18FA12B317B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7236509696, - "image_vmaddr": 6691463168, - "image_size": 774144, - "name": "/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit", - "uuid": "DE4734D2-FF9C-3181-9F4F-320480E230BA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 275, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7245357056, - "image_vmaddr": 6700310528, - "image_size": 1376248, - "name": "/System/Library/Frameworks/Combine.framework/Combine", - "uuid": "0840D070-2661-3DED-8049-2A079B2C99E1", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 310, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9331449856, - "image_vmaddr": 8786403328, - "image_size": 4092, - "name": "/System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking", - "uuid": "FBC633A1-23D9-3F69-A474-101F4E596C5A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 44, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8691445760, - "image_vmaddr": 8146399232, - "image_size": 49152, - "name": "/usr/lib/swift/libswiftXPC.dylib", - "uuid": "20260FB2-19DA-358F-8026-83A160D70932", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7274577920, - "image_vmaddr": 6729531392, - "image_size": 372728, - "name": "/usr/lib/swift/libswift_Concurrency.dylib", - "uuid": "E8A871CE-C094-3EB6-BFAC-E6D15FFE75E8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 5, - "minor_version": 7, - "revision_version": 1 - }, - { - "image_addr": 8371253248, - "image_vmaddr": 7826206720, - "image_size": 720892, - "name": "/usr/lib/swift/libswift_StringProcessing.dylib", - "uuid": "360EE16F-34A9-3406-AB95-E42464F51A08", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7005609984, - "image_vmaddr": 6460563456, - "image_size": 208896, - "name": "/System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal", - "uuid": "0348F150-4999-3374-9EEB-B67ED82E14FD", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 483, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9246560256, - "image_vmaddr": 8701513728, - "image_size": 102388, - "name": "/usr/lib/liblzma.5.dylib", - "uuid": "F5839732-2747-303B-8E5B-4273F623D697", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 7234883584, - "image_vmaddr": 6689837056, - "image_size": 1626112, - "name": "/System/Library/Frameworks/Security.framework/Security", - "uuid": "1ABFE211-E145-3935-A5F7-4EC64E1AC086", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 60420, - "minor_version": 60, - "revision_version": 18 - }, - { - "image_addr": 8692486144, - "image_vmaddr": 8147439616, - "image_size": 98300, - "name": "/usr/lib/libapple_nghttp2.dylib", - "uuid": "F3647B6A-5C48-3992-84DD-FCFABAD071AA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 47, - "revision_version": 0 - }, - { - "image_addr": 9075425280, - "image_vmaddr": 8530378752, - "image_size": 4096, - "name": "/usr/lib/libnetwork.dylib", - "uuid": "7907E9DD-568B-3B69-BC63-C752F1DFB711", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7716298752, - "image_vmaddr": 7171252224, - "image_size": 1703932, - "name": "/usr/lib/libsqlite3.dylib", - "uuid": "DE69D6CF-65DC-3869-BFD6-019706F139CE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 346, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7106797568, - "image_vmaddr": 6561751040, - "image_size": 14360576, - "name": "/System/Library/Frameworks/Network.framework/Network", - "uuid": "437DA3E4-8B93-3E6C-ABD3-378E9723FA37", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8692469760, - "image_vmaddr": 8147423232, - "image_size": 8192, - "name": "/usr/lib/libenergytrace.dylib", - "uuid": "9762F770-0EFA-36C3-9810-A30679DF2364", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8002478080, - "image_vmaddr": 7457431552, - "image_size": 69632, - "name": "/usr/lib/libbsm.0.dylib", - "uuid": "50BF596F-9107-3E53-BB21-59E2405BD71F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8691593216, - "image_vmaddr": 8146546688, - "image_size": 36864, - "name": "/usr/lib/libCoreEntitlements.dylib", - "uuid": "ABD48A0E-493A-3EF6-BBE4-775D5999D2D0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8421650432, - "image_vmaddr": 7876603904, - "image_size": 167936, - "name": "/System/Library/PrivateFrameworks/MessageSecurity.framework/MessageSecurity", - "uuid": "22DB4DE5-13ED-377F-AEE6-BE4EFFDA9725", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7626768384, - "image_vmaddr": 7081721856, - "image_size": 106496, - "name": "/System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer", - "uuid": "5468EBA0-8987-39D7-A44A-7C4228CD12F4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 294, - "minor_version": 30, - "revision_version": 6 - }, - { - "image_addr": 8691494912, - "image_vmaddr": 8146448384, - "image_size": 98300, - "name": "/usr/lib/libcoretls.dylib", - "uuid": "50373784-1961-37B0-8A8C-EB4C9261FC82", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 183, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9272012800, - "image_vmaddr": 8726966272, - "image_size": 8192, - "name": "/usr/lib/libcoretls_cfhelpers.dylib", - "uuid": "5BD43C59-4DB5-3935-88CF-04CE26CBA80F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 183, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7489687552, - "image_vmaddr": 6944641024, - "image_size": 466944, - "name": "/usr/lib/libMobileGestalt.dylib", - "uuid": "759C8F09-8169-3564-87EA-6DCB1439CCB9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8690675712, - "image_vmaddr": 8145629184, - "image_size": 24572, - "name": "/usr/lib/libheimdal-asn1.dylib", - "uuid": "937674C9-3372-3BE0-B879-0721F4D4F9B6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8421818368, - "image_vmaddr": 7876771840, - "image_size": 217080, - "name": "/usr/lib/libpcap.A.dylib", - "uuid": "9E33D474-69D3-380A-95E4-3081A02B22D4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8422035456, - "image_vmaddr": 7876988928, - "image_size": 40953, - "name": "/usr/lib/libdns_services.dylib", - "uuid": "DEB447D6-3290-3151-8F10-B1EFA01E38AF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7815962624, - "image_vmaddr": 7270916096, - "image_size": 57344, - "name": "/System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer", - "uuid": "6D4CA45B-07F9-363D-B513-AF2B0B74A069", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7613091840, - "image_vmaddr": 7068045312, - "image_size": 90112, - "name": "/System/Library/Frameworks/IOSurface.framework/IOSurface", - "uuid": "F12E1B87-789D-3234-94AF-5B514DBC57A3", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8692625408, - "image_vmaddr": 8147578880, - "image_size": 53248, - "name": "/usr/lib/libbz2.1.0.dylib", - "uuid": "BA29AE7E-FCA7-39FC-A57A-6E7D1461AD3A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 8 - }, - { - "image_addr": 8689680384, - "image_vmaddr": 8144633856, - "image_size": 995316, - "name": "/usr/lib/libiconv.2.dylib", - "uuid": "FFEEAD45-37AF-38FB-A784-1F3E21CCF225", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 7, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8691441664, - "image_vmaddr": 8146395136, - "image_size": 4096, - "name": "/usr/lib/libcharset.1.dylib", - "uuid": "85CB7383-D295-3F26-8E01-6DD28745993E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8690700288, - "image_vmaddr": 8145653760, - "image_size": 741364, - "name": "/usr/lib/swift/libswift_RegexParser.dylib", - "uuid": "E55693C5-22BE-3246-98DC-11CBA4F9A7A6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715046912, - "image_vmaddr": 8170000384, - "image_size": 4096, - "name": "/System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics", - "uuid": "CB090E08-D9F8-37D6-A841-9D7E2C20148C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 91, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715227136, - "image_vmaddr": 8170180608, - "image_size": 12284, - "name": "/usr/lib/libapp_launch_measurement.dylib", - "uuid": "F89A4C07-5FD0-3D2D-8D03-03E605DF8800", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7613181952, - "image_vmaddr": 7068135424, - "image_size": 184320, - "name": "/System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics", - "uuid": "A41B07B2-F23B-3891-B38B-C652F7662934", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713203712, - "image_vmaddr": 8168157184, - "image_size": 57344, - "name": "/usr/lib/libperfcheck.dylib", - "uuid": "2104DCB8-3E28-3CDF-983C-99DDA86A8630", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7883755520, - "image_vmaddr": 7338708992, - "image_size": 53248, - "name": "/System/Library/PrivateFrameworks/perfdata.framework/perfdata", - "uuid": "F54CA785-40C7-31E3-B577-CB2C687ABFA1", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 94, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713261056, - "image_vmaddr": 8168214528, - "image_size": 36860, - "name": "/usr/lib/libIOReport.dylib", - "uuid": "22AE95F3-6118-3EEC-9F80-BC3F8EF3248F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8692678656, - "image_vmaddr": 8147632128, - "image_size": 151552, - "name": "/System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce", - "uuid": "9445CE3A-18F0-3F4D-A08D-C7E9C3E3499D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7743365120, - "image_vmaddr": 7198318592, - "image_size": 81920, - "name": "/System/Library/PrivateFrameworks/HangTracer.framework/HangTracer", - "uuid": "9DCE0CB8-29A5-305C-ABD9-A2F28EBE2903", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 230, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715014144, - "image_vmaddr": 8169967616, - "image_size": 32768, - "name": "/System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing", - "uuid": "BEED7EEA-8A6B-3E1C-A68B-3C00E4D97AA4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8086278144, - "image_vmaddr": 7541231616, - "image_size": 98304, - "name": "/System/Library/PrivateFrameworks/libEDR.framework/libEDR", - "uuid": "A5DB557F-7E28-3CA8-82CC-E15BC45EBA93", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7328456704, - "image_vmaddr": 6783410176, - "image_size": 352256, - "name": "/System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices", - "uuid": "6024BE15-3680-389A-B5CD-8766BC017A8D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 60, - "revision_version": 5 - }, - { - "image_addr": 9049878528, - "image_vmaddr": 8504832000, - "image_size": 4096, - "name": "/System/Library/Frameworks/Accelerate.framework/Accelerate", - "uuid": "8BE2ED06-BFA3-3150-89C1-3B666F6D3FAC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 4, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8245174272, - "image_vmaddr": 7700127744, - "image_size": 86016, - "name": "/System/Library/PrivateFrameworks/DiagnosticRequest.framework/DiagnosticRequest", - "uuid": "CA3ACE34-6670-3F00-B949-16743786DD20", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7131860992, - "image_vmaddr": 6586814464, - "image_size": 6348788, - "name": "/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics", - "uuid": "C0A89DCA-3E30-3A39-95A9-275BA86825A9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1690, - "minor_version": 3, - "revision_version": 1 - }, - { - "image_addr": 7130009600, - "image_vmaddr": 6584963072, - "image_size": 1851392, - "name": "/System/Library/Frameworks/CoreText.framework/CoreText", - "uuid": "9C205476-4E0A-3053-A622-2390EC2D5C6F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7581634560, - "image_vmaddr": 7036588032, - "image_size": 286720, - "name": "/System/Library/Frameworks/CoreVideo.framework/CoreVideo", - "uuid": "E5E2250D-6D75-3149-9564-8EEC4CD0985D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 5, - "revision_version": 0 - }, - { - "image_addr": 7189815296, - "image_vmaddr": 6644768768, - "image_size": 4841472, - "name": "/System/Library/Frameworks/ImageIO.framework/ImageIO", - "uuid": "F7401F36-9070-34D5-8194-54B0C9B4AD59", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8712421376, - "image_vmaddr": 8167374848, - "image_size": 16384, - "name": "/System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator", - "uuid": "94FB62B1-1881-329D-8872-2288FC3496B5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7015821312, - "image_vmaddr": 6470774784, - "image_size": 1867776, - "name": "/System/Library/Frameworks/Metal.framework/Metal", - "uuid": "85AE8FD2-045B-3F83-BD2D-0DFCA189A3E2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 306, - "minor_version": 3, - "revision_version": 3 - }, - { - "image_addr": 8715051008, - "image_vmaddr": 8170004480, - "image_size": 40960, - "name": "/System/Library/Frameworks/OpenGLES.framework/OpenGLES", - "uuid": "A3354BFA-DC36-3438-B1DA-880931C248A5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7527600128, - "image_vmaddr": 6982553600, - "image_size": 159744, - "name": "/System/Library/PrivateFrameworks/PowerLog.framework/PowerLog", - "uuid": "0051D9D5-81FC-3F53-8EC8-00EE74CC3EDB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7227346944, - "image_vmaddr": 6682300416, - "image_size": 8192, - "name": "/System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary", - "uuid": "4922AA4C-AB90-3462-93D1-A41D4A83F23B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7017689088, - "image_vmaddr": 6472642560, - "image_size": 2043904, - "name": "/System/Library/Frameworks/CoreServices.framework/CoreServices", - "uuid": "22956E2A-6884-339E-ABAD-9CEAC84BDED0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1228, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7849701376, - "image_vmaddr": 7304654848, - "image_size": 798720, - "name": "/System/Library/PrivateFrameworks/InstalledContentLibrary.framework/InstalledContentLibrary", - "uuid": "10461BEC-F229-37D5-B910-6360A5C89DDC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7614418944, - "image_vmaddr": 7069372416, - "image_size": 229376, - "name": "/System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore", - "uuid": "A391B517-659B-394E-8D87-187238FD71A4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1141, - "minor_version": 1, - "revision_version": 0 - }, - { - "image_addr": 8693215232, - "image_vmaddr": 8148168704, - "image_size": 24576, - "name": "/System/Library/PrivateFrameworks/AppleMobileFileIntegrity.framework/AppleMobileFileIntegrity", - "uuid": "A7DA00EF-D805-3D66-9072-053D8072B94C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8693239808, - "image_vmaddr": 8148193280, - "image_size": 81920, - "name": "/usr/lib/libmis.dylib", - "uuid": "9695F16F-F088-3265-9498-D7C056FB9F15", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8693321728, - "image_vmaddr": 8148275200, - "image_size": 28672, - "name": "/System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices", - "uuid": "BE8C5DC7-573B-3752-95C6-6683CBC565CE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7813681152, - "image_vmaddr": 7268634624, - "image_size": 1675264, - "name": "/System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness", - "uuid": "1A0C57C6-80BD-3589-AB29-1842344B64EC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7294349312, - "image_vmaddr": 6749302784, - "image_size": 208896, - "name": "/usr/lib/libAccessibility.dylib", - "uuid": "C5CB486B-0323-36D8-BC73-721BA27EDA33", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8237031424, - "image_vmaddr": 7691984896, - "image_size": 32768, - "name": "/System/Library/PrivateFrameworks/AFKUser.framework/AFKUser", - "uuid": "AEDA8846-47C5-3931-8A8C-76B3E9EBBA37", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7743447040, - "image_vmaddr": 7198400512, - "image_size": 245760, - "name": "/System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories", - "uuid": "5BF66130-5996-30CD-84B8-EBB8E8DC1985", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715124736, - "image_vmaddr": 8170078208, - "image_size": 61440, - "name": "/System/Library/PrivateFrameworks/SystemWake.framework/SystemWake", - "uuid": "F67D63A1-0404-3016-9C5C-A5CDA5867429", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8237924352, - "image_vmaddr": 7692877824, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/CPMS.framework/CPMS", - "uuid": "1C65EF79-A0C9-32E9-BD53-C6419C22CC9C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7288549376, - "image_vmaddr": 6743502848, - "image_size": 565248, - "name": "/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices", - "uuid": "BB8B1A9F-2572-3FB2-8498-91357FC09704", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9069514752, - "image_vmaddr": 8524468224, - "image_size": 4096, - "name": "/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices", - "uuid": "609FD7AF-C1B2-3B41-9F35-A24F5927DBDA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1228, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8086032384, - "image_vmaddr": 7540985856, - "image_size": 36864, - "name": "/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices", - "uuid": "EE18D681-97AC-3FE8-BA47-8613EA5C5BD6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 14, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8237064192, - "image_vmaddr": 7692017664, - "image_size": 69632, - "name": "/System/Library/PrivateFrameworks/HID.framework/HID", - "uuid": "D8BCAA49-77D0-3C69-A28E-8AA5EDE0B49A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7227908096, - "image_vmaddr": 6682861568, - "image_size": 737280, - "name": "/System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard", - "uuid": "727D7804-2767-3204-A0C3-3B704B52041E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7758786560, - "image_vmaddr": 7213740032, - "image_size": 1433600, - "name": "/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib", - "uuid": "9EB67833-83E4-3CED-97C8-4D6DC112AD6A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8712437760, - "image_vmaddr": 8167391232, - "image_size": 45052, - "name": "/System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib", - "uuid": "D30D46AE-E2F1-3C1B-A08C-EDF5150994FB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7194656768, - "image_vmaddr": 6649610240, - "image_size": 3420128, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage", - "uuid": "2BAD4817-BD73-3111-9929-562900AFBB9F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 575, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9081102336, - "image_vmaddr": 8536055808, - "image_size": 4096, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib", - "uuid": "0D97514A-7DF0-334A-AE99-BFAD5DA8C6C7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 818, - "minor_version": 60, - "revision_version": 3 - }, - { - "image_addr": 9357586432, - "image_vmaddr": 8812539904, - "image_size": 380908, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib", - "uuid": "9BEC2231-F5AC-38B5-8722-6B2A29EBD9F9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 818, - "minor_version": 60, - "revision_version": 3 - }, - { - "image_addr": 8697090048, - "image_vmaddr": 8152043520, - "image_size": 962556, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib", - "uuid": "C22F7DCA-9ACC-3146-8A62-5513384DE1AA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8694063104, - "image_vmaddr": 8149016576, - "image_size": 2863100, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib", - "uuid": "74C625DC-8346-3EAC-B457-F187A077CB4B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8698052608, - "image_vmaddr": 8153006080, - "image_size": 5062628, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib", - "uuid": "1046764B-7923-398B-8FB1-555D45BC6C1D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8697004032, - "image_vmaddr": 8151957504, - "image_size": 86016, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib", - "uuid": "B8B76189-2F0F-349D-ABD2-9F0909256DD7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8696926208, - "image_vmaddr": 8151879680, - "image_size": 77824, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib", - "uuid": "67F57FFF-BF48-30F5-A822-1DFC00ACF242", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9321758720, - "image_vmaddr": 8776712192, - "image_size": 20476, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib", - "uuid": "86B33826-E9F9-3938-80A9-D544D3DE71CC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8705998848, - "image_vmaddr": 8160952320, - "image_size": 6131688, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib", - "uuid": "89F5C08F-540C-3258-82B6-C72758D6561A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8693641216, - "image_vmaddr": 8148594688, - "image_size": 421880, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib", - "uuid": "E207854C-4D23-32F9-BD78-11609A7744F8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8703115264, - "image_vmaddr": 8158068736, - "image_size": 2883584, - "name": "/System/Library/PrivateFrameworks/MIL.framework/MIL", - "uuid": "E90CD905-B9CE-3F03-814E-C3A24D3308DC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 4, - "minor_version": 28, - "revision_version": 4 - }, - { - "image_addr": 8712130560, - "image_vmaddr": 8167084032, - "image_size": 290808, - "name": "/System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG", - "uuid": "E94733BD-2373-3068-BFBD-D6A63973EECA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9053429760, - "image_vmaddr": 8508383232, - "image_size": 110588, - "name": "/usr/lib/libexpat.1.dylib", - "uuid": "41F83F59-7953-3E91-918C-4A6CEA9AC2E9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 8, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7244423168, - "image_vmaddr": 6699376640, - "image_size": 835580, - "name": "/System/Library/Frameworks/ColorSync.framework/ColorSync", - "uuid": "0060BB8B-4F11-3D45-AC22-F7BE584C3AE9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8712482816, - "image_vmaddr": 8167436288, - "image_size": 598016, - "name": "/usr/lib/libate.dylib", - "uuid": "C951FDAF-0B26-32F2-B8C0-F781A1CFB3DC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3, - "minor_version": 0, - "revision_version": 7 - }, - { - "image_addr": 7883509760, - "image_vmaddr": 7338463232, - "image_size": 28668, - "name": "/System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator", - "uuid": "18C66DE2-AA65-3C0D-9B43-F364048B6B3C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8693350400, - "image_vmaddr": 8148303872, - "image_size": 290816, - "name": "/usr/lib/libllvm-flatbuffers.dylib", - "uuid": "B16F6937-8F87-3BB4-AD62-2CB6DBE659AB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9075396608, - "image_vmaddr": 8530350080, - "image_size": 28664, - "name": "/System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib", - "uuid": "50ADB9C7-D88A-3170-84D3-55C80F8891A9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9261887488, - "image_vmaddr": 8716840960, - "image_size": 20480, - "name": "/System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libGPUCompilerUtils.dylib", - "uuid": "AF0240CF-E4FB-3981-A2FF-5AA8BCC50FB2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 31001, - "minor_version": 255, - "revision_version": 1 - }, - { - "image_addr": 8713793536, - "image_vmaddr": 8168747008, - "image_size": 36864, - "name": "/System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices", - "uuid": "FEB901DF-1094-306A-8DB0-BF6059239796", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7476764672, - "image_vmaddr": 6931718144, - "image_size": 352256, - "name": "/System/Library/PrivateFrameworks/BoardServices.framework/BoardServices", - "uuid": "FB50F165-00A5-38B8-9893-FBAB7B8EB0EB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7476080640, - "image_vmaddr": 6931034112, - "image_size": 684032, - "name": "/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices", - "uuid": "1E697AFA-FDA9-37C1-828A-40A1BCF4D009", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7227355136, - "image_vmaddr": 6682308608, - "image_size": 552960, - "name": "/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices", - "uuid": "540F736D-F791-3E94-873F-BE0FA92E7F13", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7757582336, - "image_vmaddr": 7212535808, - "image_size": 176128, - "name": "/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation", - "uuid": "1132A5E8-C571-3185-A12D-13018F4B3096", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7757758464, - "image_vmaddr": 7212711936, - "image_size": 57344, - "name": "/System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices", - "uuid": "90976B99-A07F-3DC8-8B4D-B5CEC81CE4EA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 60, - "revision_version": 5 - }, - { - "image_addr": 8713392128, - "image_vmaddr": 8168345600, - "image_size": 401404, - "name": "/System/Library/PrivateFrameworks/Bom.framework/Bom", - "uuid": "5CC990E5-4EF1-3363-BF40-02C906267B8B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 195, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713080832, - "image_vmaddr": 8168034304, - "image_size": 65508, - "name": "/System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression", - "uuid": "C2562307-F3F8-3866-9D89-22EB5D92FB3C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 145, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713830400, - "image_vmaddr": 8168783872, - "image_size": 421828, - "name": "/usr/lib/libParallelCompression.dylib", - "uuid": "707119C0-C404-3D85-A66E-E19858BC40C6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7532482560, - "image_vmaddr": 6987436032, - "image_size": 40960, - "name": "/System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib", - "uuid": "1E10E409-4146-3CAC-BC62-1B2E4646CEEB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7756640256, - "image_vmaddr": 7211593728, - "image_size": 65536, - "name": "/System/Library/PrivateFrameworks/FontServices.framework/FontServices", - "uuid": "21E4F94A-5B14-3712-8990-8517ED54A802", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9139404800, - "image_vmaddr": 8594358272, - "image_size": 262144, - "name": "/System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib", - "uuid": "9DE5C629-461D-3958-B72E-68FC3A1FAAD8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7883239424, - "image_vmaddr": 7338192896, - "image_size": 270336, - "name": "/System/Library/PrivateFrameworks/OTSVG.framework/OTSVG", - "uuid": "C5DA3411-428C-3543-89E2-BA53307DFEF2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7457591296, - "image_vmaddr": 6912544768, - "image_size": 81920, - "name": "/System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers", - "uuid": "91538C0A-7D8D-39C5-8466-B86B0F50C6FA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 709, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7289114624, - "image_vmaddr": 6744068096, - "image_size": 143360, - "name": "/System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities", - "uuid": "EFBC8CD3-6C19-36D9-A933-AF2E597D75B0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7816019968, - "image_vmaddr": 7270973440, - "image_size": 65532, - "name": "/System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility", - "uuid": "4E635EE4-C7A0-3697-B45E-2BEEB0494117", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 62, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715186176, - "image_vmaddr": 8170139648, - "image_size": 40956, - "name": "/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib", - "uuid": "16771749-7C04-332F-9224-841BC0C4AF26", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715239424, - "image_vmaddr": 8170192896, - "image_size": 241664, - "name": "/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib", - "uuid": "EC62500B-1B44-31EC-9897-84A81A832DAA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715091968, - "image_vmaddr": 8170045440, - "image_size": 8192, - "name": "/System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib", - "uuid": "422B68F1-F714-3522-8C25-B7994127D55E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715100160, - "image_vmaddr": 8170053632, - "image_size": 24572, - "name": "/System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib", - "uuid": "26B485CF-C280-367A-83CE-8D78A9A83150", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8739618816, - "image_vmaddr": 8194572288, - "image_size": 303104, - "name": "/System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager", - "uuid": "DCE0296C-385B-36D3-8969-6E0F0C73157E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 280, - "minor_version": 3, - "revision_version": 3 - }, - { - "image_addr": 7553384448, - "image_vmaddr": 7008337920, - "image_size": 1515520, - "name": "/System/Library/Frameworks/FileProvider.framework/FileProvider", - "uuid": "A7986DBB-1523-31B9-8CFA-4839DCE86022", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7138209792, - "image_vmaddr": 6593163264, - "image_size": 25067520, - "name": "/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore", - "uuid": "5F83A575-2862-390F-B15F-D06C182C43C2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6206, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7522471936, - "image_vmaddr": 6977425408, - "image_size": 1036288, - "name": "/System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet", - "uuid": "C356A7C1-A7B7-3CCC-97BC-EF5628D35724", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1852, - "minor_version": 1, - "revision_version": 2 - }, - { - "image_addr": 8317976576, - "image_vmaddr": 7772930048, - "image_size": 598016, - "name": "/System/Library/PrivateFrameworks/PrintKitUI.framework/PrintKitUI", - "uuid": "7F533E98-00FE-303C-B215-70AEAB93B3CA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 15, - "minor_version": 1, - "revision_version": 0 - }, - { - "image_addr": 7684726784, - "image_vmaddr": 7139680256, - "image_size": 331776, - "name": "/System/Library/PrivateFrameworks/IconServices.framework/IconServices", - "uuid": "4FE7A7B2-EC3C-3CDC-B4B9-CEF56AF276B0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 552, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8254009344, - "image_vmaddr": 7708962816, - "image_size": 86016, - "name": "/usr/lib/libprequelite.dylib", - "uuid": "B5AED929-E5AE-3FF6-B5A9-4D3FDC3E8F5F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 125, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8739921920, - "image_vmaddr": 8194875392, - "image_size": 192512, - "name": "/System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore", - "uuid": "2624289E-91E3-3A2A-8275-A5DF1C0D4A5E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 280, - "minor_version": 3, - "revision_version": 3 - }, - { - "image_addr": 7579295744, - "image_vmaddr": 7034249216, - "image_size": 1855488, - "name": "/System/Library/PrivateFrameworks/Sharing.framework/Sharing", - "uuid": "29DF7240-1F7B-3389-8F84-0B0BC001BE25", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1852, - "minor_version": 1, - "revision_version": 2 - }, - { - "image_addr": 7288262656, - "image_vmaddr": 6743216128, - "image_size": 286720, - "name": "/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport", - "uuid": "EEEC759B-F8B5-36E9-883E-8EE9901A0DF2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 29, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7347130368, - "image_vmaddr": 6802083840, - "image_size": 3457024, - "name": "/System/Library/Frameworks/CoreImage.framework/CoreImage", - "uuid": "5B07CF09-7944-3F76-BAAD-5EC9FE1B54F2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 5, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7272996864, - "image_vmaddr": 6727950336, - "image_size": 1581056, - "name": "/System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils", - "uuid": "1B3C61D9-EEF1-3BAC-B3D5-13932F64D81B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7274950656, - "image_vmaddr": 6729904128, - "image_size": 1277952, - "name": "/System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation", - "uuid": "DA37928B-441C-3C6E-8F7E-C182C194AA2C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 856, - "minor_version": 2, - "revision_version": 0 - }, - { - "image_addr": 8401219584, - "image_vmaddr": 7856173056, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/CollectionViewCore.framework/CollectionViewCore", - "uuid": "0F3E2B93-B9F6-34BA-8DE9-9CD3A90C19EE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8725716992, - "image_vmaddr": 8180670464, - "image_size": 36864, - "name": "/System/Library/Frameworks/PushKit.framework/PushKit", - "uuid": "D5296D8C-2D0E-380B-9D8E-B1018E4E7A6B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8730492928, - "image_vmaddr": 8185446400, - "image_size": 20480, - "name": "/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap", - "uuid": "6A11919D-9AAD-3EE4-86DF-30F584696097", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 21240, - "minor_version": 2, - "revision_version": 0 - }, - { - "image_addr": 8316239872, - "image_vmaddr": 7771193344, - "image_size": 1736704, - "name": "/System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy", - "uuid": "005188C2-EC3B-33D5-98E9-B397AA717DFB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 614, - "minor_version": 3, - "revision_version": 4 - }, - { - "image_addr": 7529656320, - "image_vmaddr": 6984609792, - "image_size": 1155072, - "name": "/System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration", - "uuid": "490D92EB-5C41-338F-AA0D-1F5E15185CC2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7799951360, - "image_vmaddr": 7254904832, - "image_size": 233472, - "name": "/System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag", - "uuid": "5D190FAC-3337-3518-B8B0-63E798DBF4F3", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7288188928, - "image_vmaddr": 6743142400, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices", - "uuid": "3A1BE799-739B-3833-B074-7917180FDDAF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7761686528, - "image_vmaddr": 7216640000, - "image_size": 217088, - "name": "/System/Library/PrivateFrameworks/BacklightServices.framework/BacklightServices", - "uuid": "AAFEAD3C-9B5A-3D92-9202-3C25612C8ABD", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8086069248, - "image_vmaddr": 7541022720, - "image_size": 40960, - "name": "/System/Library/PrivateFrameworks/StudyLog.framework/StudyLog", - "uuid": "A3F040AF-7398-32F4-B151-130924547EFC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7762497536, - "image_vmaddr": 7217451008, - "image_size": 98304, - "name": "/System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction", - "uuid": "D3B6CC84-A695-366D-BA69-7E750C2E7B8E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7686176768, - "image_vmaddr": 7141130240, - "image_size": 131072, - "name": "/System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial", - "uuid": "AC870211-C5D9-3221-A194-8CDDACC06F78", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7259291648, - "image_vmaddr": 6714245120, - "image_size": 221184, - "name": "/System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard", - "uuid": "68D080D0-D4CB-30AF-A252-5B06FEE79F0D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8730513408, - "image_vmaddr": 8185466880, - "image_size": 12288, - "name": "/System/Library/Frameworks/DataDetection.framework/DataDetection", - "uuid": "E26807DE-C0F7-39AA-89B3-732167373904", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 727, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7457423360, - "image_vmaddr": 6912376832, - "image_size": 167936, - "name": "/System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput", - "uuid": "6F782F25-B897-3D4C-BA61-F679FCBB6DAF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7651753984, - "image_vmaddr": 7106707456, - "image_size": 884736, - "name": "/System/Library/PrivateFrameworks/CMPhoto.framework/CMPhoto", - "uuid": "12252D97-6A73-3905-BE7C-D16BF94F6121", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7355129856, - "image_vmaddr": 6810083328, - "image_size": 14073856, - "name": "/System/Library/Frameworks/MediaToolbox.framework/MediaToolbox", - "uuid": "914C600C-6AC6-3C81-B4E7-ADFED0F9A399", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7494475776, - "image_vmaddr": 6949429248, - "image_size": 241664, - "name": "/System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore", - "uuid": "66B9AF8A-0868-3542-B9F2-22A244C00B32", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 727, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8716963840, - "image_vmaddr": 8171917312, - "image_size": 233472, - "name": "/System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG", - "uuid": "BFD15F77-ADB5-31DC-A9B7-B4FD8BFF9B79", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 232, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7528665088, - "image_vmaddr": 6983618560, - "image_size": 991232, - "name": "/System/Library/PrivateFrameworks/CoreUI.framework/CoreUI", - "uuid": "DBFE3697-76B8-3D1D-969D-6EF507BE24DA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 802, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7735513088, - "image_vmaddr": 7190466560, - "image_size": 458752, - "name": "/System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset", - "uuid": "6F244D09-D9E2-3AD8-A677-E908FD37A05D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8738803712, - "image_vmaddr": 8193757184, - "image_size": 319488, - "name": "/System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit", - "uuid": "CB3E34B8-956A-3565-8D86-22EC50E991FF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 38, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7878725632, - "image_vmaddr": 7333679104, - "image_size": 151552, - "name": "/System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools", - "uuid": "61A16EAA-30B9-3CDD-A3FB-2EBC7E671865", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7259512832, - "image_vmaddr": 6714466304, - "image_size": 716800, - "name": "/System/Library/PrivateFrameworks/TextInput.framework/TextInput", - "uuid": "EBD06EC0-F3DD-3A17-A578-CE2E0C657D36", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7324745728, - "image_vmaddr": 6779699200, - "image_size": 176128, - "name": "/System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices", - "uuid": "0266437D-F2E3-3470-B417-9CCC505AB554", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6206, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8251940864, - "image_vmaddr": 7706894336, - "image_size": 667648, - "name": "/System/Library/PrivateFrameworks/TextureIO.framework/TextureIO", - "uuid": "179C3FD0-3703-3786-82A0-2108814B6D46", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3, - "minor_version": 10, - "revision_version": 10 - }, - { - "image_addr": 8354725888, - "image_vmaddr": 7809679360, - "image_size": 45056, - "name": "/System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport", - "uuid": "B00B8A73-39CD-383E-A234-BE95B0309357", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 74, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7289257984, - "image_vmaddr": 6744211456, - "image_size": 2191360, - "name": "/System/Library/Frameworks/CoreMedia.framework/CoreMedia", - "uuid": "A7B88014-E6C2-3A81-BA3F-51CBC348E480", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7350587392, - "image_vmaddr": 6805540864, - "image_size": 4542464, - "name": "/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox", - "uuid": "2716506C-0561-30F7-B9B7-4F8EB674EC1A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8264261632, - "image_vmaddr": 7719215104, - "image_size": 49152, - "name": "/System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer", - "uuid": "293A73DF-27FC-3912-97A2-DE926F3755B6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8716902400, - "image_vmaddr": 8171855872, - "image_size": 4093, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders", - "uuid": "20E200F3-37E8-38CD-A86A-FE92501F2075", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 8715653120, - "image_vmaddr": 8170606592, - "image_size": 49152, - "name": "/System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore", - "uuid": "C03B0F74-EC0C-3971-A328-95387832EAE1", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714944512, - "image_vmaddr": 8169897984, - "image_size": 8192, - "name": "/System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient", - "uuid": "66C35BA5-73FE-38D5-A4BC-AA49D3BEB67F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 222, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7684407296, - "image_vmaddr": 7139360768, - "image_size": 45056, - "name": "/System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport", - "uuid": "51FE158E-FAF7-3BEE-82ED-770B1DC9B510", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7820066816, - "image_vmaddr": 7275020288, - "image_size": 6201344, - "name": "/System/Library/Frameworks/CoreAudio.framework/CoreAudio", - "uuid": "B7D94782-EE01-3B4B-A278-D613DE296950", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8692830208, - "image_vmaddr": 8147783680, - "image_size": 368628, - "name": "/System/Library/PrivateFrameworks/APFS.framework/APFS", - "uuid": "55BD714E-5E01-389B-9E76-8B71FF370A08", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8008880128, - "image_vmaddr": 7463833600, - "image_size": 163840, - "name": "/usr/lib/libtailspin.dylib", - "uuid": "D7087E45-5A47-3C8B-B0FB-79FE109EC61D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 139, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 7291449344, - "image_vmaddr": 6746402816, - "image_size": 2818048, - "name": "/System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore", - "uuid": "5A3FC30A-6B7C-35E2-A8E8-BCAF9301AD3F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7794028544, - "image_vmaddr": 7248982016, - "image_size": 40960, - "name": "/System/Library/PrivateFrameworks/CoreTime.framework/CoreTime", - "uuid": "3136D29A-B648-3443-A38B-29C63C1496AC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 311, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9213812736, - "image_vmaddr": 8668766208, - "image_size": 122876, - "name": "/System/Library/PrivateFrameworks/CoreUtilsExtras.framework/CoreUtilsExtras", - "uuid": "75D6D2ED-A74B-3778-9184-671EF18FDC06", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714457088, - "image_vmaddr": 8169410560, - "image_size": 335872, - "name": "/System/Library/PrivateFrameworks/IO80211.framework/IO80211", - "uuid": "F9887E72-7FF2-395A-BB52-C6C2787C711C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7883538432, - "image_vmaddr": 7338491904, - "image_size": 217088, - "name": "/System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi", - "uuid": "55AB6DF7-FE4A-3BFA-AB53-C68C2517C12B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8693198848, - "image_vmaddr": 8148152320, - "image_size": 16376, - "name": "/usr/lib/libutil.dylib", - "uuid": "95A43A33-4E2D-3306-B413-46EA4F7F8007", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7756705792, - "image_vmaddr": 7211659264, - "image_size": 827392, - "name": "/System/Library/PrivateFrameworks/CoreWiFi.framework/CoreWiFi", - "uuid": "DD2C8630-6F10-3B82-A8A1-EC9E7454B3BA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714792960, - "image_vmaddr": 8169746432, - "image_size": 49152, - "name": "/System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork", - "uuid": "0679C2F0-5D64-346A-B99A-80FB2C9BA8B3", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714252288, - "image_vmaddr": 8169205760, - "image_size": 204800, - "name": "/System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X", - "uuid": "0A2FC672-A5E4-3CBF-B072-871BE2A09A83", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7861739520, - "image_vmaddr": 7316692992, - "image_size": 159744, - "name": "/System/Library/PrivateFrameworks/WiFiPeerToPeer.framework/WiFiPeerToPeer", - "uuid": "57FC4921-283D-3693-9131-329BB6F637FE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7328047104, - "image_vmaddr": 6783000576, - "image_size": 409600, - "name": "/System/Library/Frameworks/ExtensionFoundation.framework/ExtensionFoundation", - "uuid": "169CB55F-D192-3AEF-90C7-3851ACA5807F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 97, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7302475776, - "image_vmaddr": 6757429248, - "image_size": 212992, - "name": "/System/Library/PrivateFrameworks/UserManagement.framework/UserManagement", - "uuid": "74BFAF12-ECFD-30CE-AE41-7F21C2EA4FB9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7592255488, - "image_vmaddr": 7047208960, - "image_size": 81906, - "name": "/System/Library/PrivateFrameworks/TCC.framework/TCC", - "uuid": "849B1624-A7A9-3842-93F6-151B57D89639", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7740567552, - "image_vmaddr": 7195521024, - "image_size": 225280, - "name": "/System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit", - "uuid": "15A8A40C-170F-31C4-A0A9-93F6691D6A3D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7125131264, - "image_vmaddr": 6580084736, - "image_size": 1343488, - "name": "/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony", - "uuid": "082EC5BD-13F3-31F8-91B1-A8A5C53E5792", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9331122176, - "image_vmaddr": 8786075648, - "image_size": 32764, - "name": "/usr/lib/libcupolicy.dylib", - "uuid": "20984F60-94B2-31A1-AFEA-C8F3E642D8ED", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7328808960, - "image_vmaddr": 6783762432, - "image_size": 565248, - "name": "/usr/lib/libTelephonyUtilDynamic.dylib", - "uuid": "091A434D-0C21-3CEA-A1AA-7AF92804C96B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7554899968, - "image_vmaddr": 7009853440, - "image_size": 122880, - "name": "/System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities", - "uuid": "65FB47DF-069A-3715-A1BD-C8DC69426CC1", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713297920, - "image_vmaddr": 8168251392, - "image_size": 28672, - "name": "/System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor", - "uuid": "8E2415C3-3DDF-3613-8D9E-2B2C8C9B87AE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7613366272, - "image_vmaddr": 7068319744, - "image_size": 299008, - "name": "/System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics", - "uuid": "864E8120-8865-3CD1-B153-27076F98A429", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7613665280, - "image_vmaddr": 7068618752, - "image_size": 753632, - "name": "/System/Library/PrivateFrameworks/Symbolication.framework/Symbolication", - "uuid": "8E31B78C-8DB4-3BB1-B61C-FB873C1F0FAF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 64556, - "minor_version": 3, - "revision_version": 1 - }, - { - "image_addr": 7800778752, - "image_vmaddr": 7255732224, - "image_size": 864244, - "name": "/System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication", - "uuid": "7A0E609B-93F8-35FC-98AB-9DB4EE4C5B3B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 64555, - "minor_version": 104, - "revision_version": 1 - }, - { - "image_addr": 7757533184, - "image_vmaddr": 7212486656, - "image_size": 49152, - "name": "/System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient", - "uuid": "C8CF640A-3519-3C43-80EB-C04ADEC2812D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713146368, - "image_vmaddr": 8168099840, - "image_size": 57344, - "name": "/System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging", - "uuid": "40853194-560C-315B-95E7-2EBB4FE016FB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713326592, - "image_vmaddr": 8168280064, - "image_size": 65536, - "name": "/usr/lib/libpartition2_dynamic.dylib", - "uuid": "F58484FA-880B-3040-B91F-547F4DCAF281", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7294267392, - "image_vmaddr": 6749220864, - "image_size": 81920, - "name": "/usr/lib/libAudioStatistics.dylib", - "uuid": "1DFF034B-BA0A-394D-97B4-F84F64E15FD4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715481088, - "image_vmaddr": 8170434560, - "image_size": 172032, - "name": "/System/Library/PrivateFrameworks/caulk.framework/caulk", - "uuid": "BED6BADD-B7D6-3DF9-8158-298D72A259F9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8263688192, - "image_vmaddr": 7718641664, - "image_size": 462848, - "name": "/System/Library/Frameworks/CoreMIDI.framework/CoreMIDI", - "uuid": "10E41DEF-5231-37C4-B824-863CF18474B9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 69, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7653322752, - "image_vmaddr": 7108276224, - "image_size": 217088, - "name": "/usr/lib/libAudioToolboxUtility.dylib", - "uuid": "3154F0E8-BDE3-3B92-891C-AD1B6A551F29", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7527174144, - "image_vmaddr": 6982127616, - "image_size": 425984, - "name": "/System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport", - "uuid": "0EFF4AD8-7CFB-3337-AF7B-38266B3C9E04", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1406, - "minor_version": 0, - "revision_version": 15 - }, - { - "image_addr": 7566618624, - "image_vmaddr": 7021572096, - "image_size": 311296, - "name": "/System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport", - "uuid": "B46DBAB6-851E-3553-B8D2-8CCAE5687F0F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 91, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8260706304, - "image_vmaddr": 7715659776, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport", - "uuid": "CCBF19C3-1C70-32EF-AC78-BEC7D5A25EA5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 71, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7741394944, - "image_vmaddr": 7196348416, - "image_size": 716800, - "name": "/System/Library/PrivateFrameworks/ktrace.framework/ktrace", - "uuid": "7F6EEE54-EC24-3820-88D7-4600B7650932", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 521, - "minor_version": 40, - "revision_version": 1 - }, - { - "image_addr": 7883808768, - "image_vmaddr": 7338762240, - "image_size": 1036288, - "name": "/System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis", - "uuid": "0FEE8663-AB70-3BCC-BBF6-FD43E9350CB7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 328, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714977280, - "image_vmaddr": 8169930752, - "image_size": 36860, - "name": "/System/Library/PrivateFrameworks/kperfdata.framework/kperfdata", - "uuid": "B03A640D-7959-35F2-9F54-35369BE37148", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8372310016, - "image_vmaddr": 7827263488, - "image_size": 28672, - "name": "/usr/lib/libdscsym.dylib", - "uuid": "BD249D85-7731-3251-9595-2019FADC7E30", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 328, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714952704, - "image_vmaddr": 8169906176, - "image_size": 24564, - "name": "/System/Library/PrivateFrameworks/kperf.framework/kperf", - "uuid": "306D4BCB-CE25-31DE-9047-18DF49C26527", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9053982720, - "image_vmaddr": 8508936192, - "image_size": 36864, - "name": "/usr/lib/libTLE.dylib", - "uuid": "79E08706-D683-3309-8C69-61F0A24A7DCB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9357578240, - "image_vmaddr": 8812531712, - "image_size": 8188, - "name": "/System/Library/PrivateFrameworks/VideoToolboxParavirtualizationSupport.framework/VideoToolboxParavirtualizationSupport", - "uuid": "ADAA5BBC-4197-3D34-BF3A-C5C7A2244A52", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7371853824, - "image_vmaddr": 6826807296, - "image_size": 2379776, - "name": "/System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience", - "uuid": "182F4DE9-D19A-3133-B82C-C0745951BC4D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8716263424, - "image_vmaddr": 8171216896, - "image_size": 475136, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore", - "uuid": "D3BBA812-EAD5-3306-81D3-FCB61199AD1B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 8715702272, - "image_vmaddr": 8170655744, - "image_size": 561152, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage", - "uuid": "7A26082D-5099-33AE-801B-01F67C7D19FD", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 9200898048, - "image_vmaddr": 8655851520, - "image_size": 2002944, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork", - "uuid": "0A19567C-8585-3EA2-B769-B84416EAE122", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 8716738560, - "image_vmaddr": 8171692032, - "image_size": 163840, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix", - "uuid": "EE7DE198-DE7C-329D-9B7C-0E2D640F6231", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 9211486208, - "image_vmaddr": 8666439680, - "image_size": 327680, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector", - "uuid": "8D99C7CD-7E24-3779-B08E-7052A9B4FBB7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 9261912064, - "image_vmaddr": 8716865536, - "image_size": 786432, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray", - "uuid": "AA4F3510-BAB9-39CC-A975-3343E84899D9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 9102376960, - "image_vmaddr": 8557330432, - "image_size": 81920, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSFunctions.framework/MPSFunctions", - "uuid": "344244DF-7EC8-3131-B0DD-9EFC3BCC0A40", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 8714842112, - "image_vmaddr": 8169795584, - "image_size": 8188, - "name": "/usr/lib/libCTGreenTeaLogger.dylib", - "uuid": "1C4316E0-EA8A-318F-BBA7-B53315F73E64", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7435681792, - "image_vmaddr": 6890635264, - "image_size": 21741568, - "name": "/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore", - "uuid": "73AFC744-EA0A-3167-A1B5-4570794F56A7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 614, - "minor_version": 3, - "revision_version": 4 - }, - { - "image_addr": 7381688320, - "image_vmaddr": 6836641792, - "image_size": 40525824, - "name": "/System/Library/PrivateFrameworks/WebCore.framework/WebCore", - "uuid": "B68311D5-CB91-3ADB-B9E6-12EC03803225", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 614, - "minor_version": 3, - "revision_version": 4 - }, - { - "image_addr": 8358768640, - "image_vmaddr": 7813722112, - "image_size": 3706880, - "name": "/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libANGLE-shared.dylib", - "uuid": "CF687636-1707-3161-A54E-64F43AFFE3C6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 614, - "minor_version": 3, - "revision_version": 4 - }, - { - "image_addr": 7015559168, - "image_vmaddr": 6470512640, - "image_size": 262144, - "name": "/System/Library/PrivateFrameworks/WebGPU.framework/WebGPU", - "uuid": "6D6C7B54-24B6-3DBA-A563-40EC5C5B94B2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 614, - "minor_version": 3, - "revision_version": 4 - }, - { - "image_addr": 8730525696, - "image_vmaddr": 8185479168, - "image_size": 8277792, - "name": "/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib", - "uuid": "238DA88E-17FE-346E-88A6-CA0E01F18B91", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 614, - "minor_version": 3, - "revision_version": 4 - }, - { - "image_addr": 7495524352, - "image_vmaddr": 6950477824, - "image_size": 2080768, - "name": "/System/Library/Frameworks/NetworkExtension.framework/NetworkExtension", - "uuid": "0956689C-ED4B-3F60-9A14-8D925EE4E7DF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8730157056, - "image_vmaddr": 8185110528, - "image_size": 36864, - "name": "/System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting", - "uuid": "809D57A4-572C-306D-8909-6BEEB8E9726E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 212, - "minor_version": 10, - "revision_version": 0 - }, - { - "image_addr": 7557668864, - "image_vmaddr": 7012622336, - "image_size": 2748416, - "name": "/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox", - "uuid": "139880A7-7D61-379B-AB9F-A3A353724F68", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1000, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714903552, - "image_vmaddr": 8169857024, - "image_size": 40953, - "name": "/System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers", - "uuid": "9D9F545F-E126-3334-90EF-EE03907A30A0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8716906496, - "image_vmaddr": 8171859968, - "image_size": 49152, - "name": "/System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter", - "uuid": "E3D0EF78-603B-3223-8CBA-F42990250BCF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8730005504, - "image_vmaddr": 8184958976, - "image_size": 151552, - "name": "/usr/lib/libnetworkextension.dylib", - "uuid": "3B08863D-C968-367B-898E-2FA9CDAB9D6C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7532175360, - "image_vmaddr": 6987128832, - "image_size": 307200, - "name": "/System/Library/PrivateFrameworks/AudioSession.framework/AudioSession", - "uuid": "A27C5201-A634-39A0-B6F8-76D02BECD606", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7819571200, - "image_vmaddr": 7274524672, - "image_size": 495616, - "name": "/System/Library/Frameworks/CoreHaptics.framework/CoreHaptics", - "uuid": "D8199E35-A658-3232-8EDD-B4C42DB87ACE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717541376, - "image_vmaddr": 8172494848, - "image_size": 229376, - "name": "/System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib", - "uuid": "D2EF1ACF-D1B4-3750-82A1-2FF13BDDDCDF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7609774080, - "image_vmaddr": 7064727552, - "image_size": 241664, - "name": "/System/Library/PrivateFrameworks/DMCUtilities.framework/DMCUtilities", - "uuid": "E6756816-0DD7-3FB6-ABB4-22AD1E5AEBF9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7581151232, - "image_vmaddr": 7036104704, - "image_size": 483328, - "name": "/System/Library/Frameworks/Accounts.framework/Accounts", - "uuid": "46F9FA7C-6BAC-34FE-A546-3F3058A457E0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8237690880, - "image_vmaddr": 7692644352, - "image_size": 57344, - "name": "/System/Library/PrivateFrameworks/DataMigration.framework/DataMigration", - "uuid": "05114963-9FFF-321E-93FF-93D30D033E73", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8259616768, - "image_vmaddr": 7714570240, - "image_size": 126976, - "name": "/System/Library/PrivateFrameworks/MDMClientLibrary.framework/MDMClientLibrary", - "uuid": "76BECEC0-04C6-3823-9AE9-2BC6FAB9D34F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714850304, - "image_vmaddr": 8169803776, - "image_size": 53248, - "name": "/usr/lib/liblockdown.dylib", - "uuid": "8EE1F04C-19D3-3F46-87F5-B413D52D133B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8264151040, - "image_vmaddr": 7719104512, - "image_size": 36864, - "name": "/System/Library/PrivateFrameworks/DEPClientLibrary.framework/DEPClientLibrary", - "uuid": "52116185-8EEC-3E00-A755-DB18412BBC79", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8730279936, - "image_vmaddr": 8185233408, - "image_size": 20480, - "name": "/System/Library/PrivateFrameworks/ContextKitCore.framework/ContextKitCore", - "uuid": "7DDF0680-E566-370A-8723-1EBD6E4901A0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8251609088, - "image_vmaddr": 7706562560, - "image_size": 131072, - "name": "/System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage", - "uuid": "FB406FB4-F481-3485-B270-18F94F913D23", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 339, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7342415872, - "image_vmaddr": 6797369344, - "image_size": 983040, - "name": "/System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP", - "uuid": "A82F7C4F-7845-3A07-9AF9-81736959D94E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 303, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8729292800, - "image_vmaddr": 8184246272, - "image_size": 376828, - "name": "/usr/lib/libmecab.dylib", - "uuid": "24797CF9-888A-3210-86C5-112585241C7B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1019, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8729669632, - "image_vmaddr": 8184623104, - "image_size": 212992, - "name": "/usr/lib/libCRFSuite.dylib", - "uuid": "34DAD487-D4D8-3363-BA0E-A84E98E3CB0F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8729280512, - "image_vmaddr": 8184233984, - "image_size": 12284, - "name": "/usr/lib/libgermantok.dylib", - "uuid": "8E41E0D4-9385-36DC-9383-A50BAAFA8601", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9366249472, - "image_vmaddr": 8821202944, - "image_size": 8188, - "name": "/usr/lib/libThaiTokenizer.dylib", - "uuid": "3550BA5D-6E1E-3D33-9484-69BD8A723D77", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717824000, - "image_vmaddr": 8172777472, - "image_size": 86013, - "name": "/System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC", - "uuid": "E0FA3BB8-A08F-3506-8705-CA328C2198B7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7756296192, - "image_vmaddr": 7211249664, - "image_size": 344064, - "name": "/System/Library/PrivateFrameworks/SoftwareUpdateCoreSupport.framework/SoftwareUpdateCoreSupport", - "uuid": "92BD3A35-566D-39C9-A5AA-0AC74E7ECBD7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717262848, - "image_vmaddr": 8172216320, - "image_size": 77824, - "name": "/System/Library/PrivateFrameworks/SoftwareUpdateCoreConnect.framework/SoftwareUpdateCoreConnect", - "uuid": "9B2B87BF-FB77-34C9-9285-C51A7536FB69", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8263430144, - "image_vmaddr": 7718383616, - "image_size": 258048, - "name": "/System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip", - "uuid": "1E241DFE-9397-3416-978A-8E1F1D59FEA0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8238440448, - "image_vmaddr": 7693393920, - "image_size": 65536, - "name": "/System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/RemoteServiceDiscovery", - "uuid": "A8195034-3313-325A-A8C5-340AA80DAB7B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 95, - "minor_version": 60, - "revision_version": 3 - }, - { - "image_addr": 8264187904, - "image_vmaddr": 7719141376, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation", - "uuid": "4686CAE8-CD77-306E-B2FC-0F6995DCD6EC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8259743744, - "image_vmaddr": 7714697216, - "image_size": 155648, - "name": "/System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication", - "uuid": "1E95BACD-E922-39F5-9B43-EC15DCB5B473", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7262629888, - "image_vmaddr": 6717583360, - "image_size": 5873664, - "name": "/System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices", - "uuid": "D5A959BC-30FE-34FB-ADC8-E4DADEDD2CA9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7345647616, - "image_vmaddr": 6800601088, - "image_size": 815104, - "name": "/System/Library/PrivateFrameworks/AuthKit.framework/AuthKit", - "uuid": "F21CD4BC-7FFE-33DE-BD35-6D8CBEEA25C2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8730193920, - "image_vmaddr": 8185147392, - "image_size": 86016, - "name": "/System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager", - "uuid": "716E5238-C38A-39B0-9A1B-453F14795201", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7740792832, - "image_vmaddr": 7195746304, - "image_size": 602112, - "name": "/System/Library/PrivateFrameworks/Rapport.framework/Rapport", - "uuid": "E32B1241-B4D8-3EF3-9BEC-CAF04EAB885F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8251502592, - "image_vmaddr": 7706456064, - "image_size": 106496, - "name": "/System/Library/PrivateFrameworks/IconFoundation.framework/IconFoundation", - "uuid": "91D4B638-CA50-3564-ACE0-AB81D98BDA29", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 552, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717197312, - "image_vmaddr": 8172150784, - "image_size": 65536, - "name": "/System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons", - "uuid": "EEB31845-9937-380D-980F-CB37C81752DB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 372, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8264310784, - "image_vmaddr": 7719264256, - "image_size": 94208, - "name": "/System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity", - "uuid": "7A127F17-19F9-3E5F-8F04-1868FACFC19B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7555022848, - "image_vmaddr": 7009976320, - "image_size": 446464, - "name": "/System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry", - "uuid": "CA928FBF-EF85-3BDB-9E1F-DA283FBED70A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7879491584, - "image_vmaddr": 7334445056, - "image_size": 225280, - "name": "/System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication", - "uuid": "5E2E6F88-A077-3387-95A0-87983C6F857A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1131, - "minor_version": 60, - "revision_version": 19 - }, - { - "image_addr": 8717488128, - "image_vmaddr": 8172441600, - "image_size": 53248, - "name": "/System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport", - "uuid": "FE89F8DB-A7D5-393D-853F-5E5F183BF05D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 103, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8716955648, - "image_vmaddr": 8171909120, - "image_size": 8192, - "name": "/System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers", - "uuid": "1951E21D-7E67-3AFD-B098-B3DB29DE25F5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8265900032, - "image_vmaddr": 7720853504, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/AAAFoundation.framework/AAAFoundation", - "uuid": "1C9E0D7D-669E-3221-8085-2A0163ADE7B0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7879716864, - "image_vmaddr": 7334670336, - "image_size": 372736, - "name": "/System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit", - "uuid": "502E1399-8079-3A01-B93C-E34389C62A9C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 602, - "minor_version": 60, - "revision_version": 5 - }, - { - "image_addr": 7878877184, - "image_vmaddr": 7333830656, - "image_size": 159744, - "name": "/System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils", - "uuid": "3754473F-B1A9-35A8-8729-86C3DE52AC71", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1131, - "minor_version": 60, - "revision_version": 19 - }, - { - "image_addr": 7861551104, - "image_vmaddr": 7316504576, - "image_size": 188416, - "name": "/System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed", - "uuid": "8C17CE44-4E25-3D15-84C9-BF9CF7DA03A7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1732, - "minor_version": 60, - "revision_version": 4 - }, - { - "image_addr": 7311499264, - "image_vmaddr": 6766452736, - "image_size": 1531904, - "name": "/System/Library/PrivateFrameworks/IDS.framework/IDS", - "uuid": "2783D622-7588-33C1-BCDE-D3994C810572", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8729894912, - "image_vmaddr": 8184848384, - "image_size": 102388, - "name": "/usr/lib/libresolv.9.dylib", - "uuid": "053715F0-1E1A-3CFA-8988-F6EED02952B0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7624581120, - "image_vmaddr": 7079534592, - "image_size": 380917, - "name": "/System/Library/Frameworks/CryptoKit.framework/CryptoKit", - "uuid": "34AF0F96-5A76-3CA5-BE56-0B3569EF1B7C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9236504576, - "image_vmaddr": 8691458048, - "image_size": 4092, - "name": "/System/Library/PrivateFrameworks/FeatureFlags.framework/FeatureFlags", - "uuid": "6264FF05-F493-3E46-AED7-808836C5AE5F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 71, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8740368384, - "image_vmaddr": 8195321856, - "image_size": 28668, - "name": "/usr/lib/swift/libswiftCompression.dylib", - "uuid": "2720DBF3-D743-313D-90DE-91ED4C84EB71", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8753197056, - "image_vmaddr": 8208150528, - "image_size": 73722, - "name": "/usr/lib/swift/libswiftExtensionFoundation.dylib", - "uuid": "CFAE9A85-7FAC-356A-AD7B-68A8E00FA6E7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 97, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7566929920, - "image_vmaddr": 7021883392, - "image_size": 524279, - "name": "/usr/lib/swift/libswiftNetwork.dylib", - "uuid": "CFC9BDCF-0773-3880-B759-7FB6167E6C40", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3013, - "minor_version": 60, - "revision_version": 39 - }, - { - "image_addr": 8141369344, - "image_vmaddr": 7596322816, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics", - "uuid": "1AE17883-BEBF-3CD1-8C11-97E0FA5D7F73", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1732, - "minor_version": 60, - "revision_version": 4 - }, - { - "image_addr": 7311007744, - "image_vmaddr": 6765961216, - "image_size": 491520, - "name": "/System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation", - "uuid": "B87A152A-5F35-3296-8D1B-EF179BFE3172", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7491973120, - "image_vmaddr": 6946926592, - "image_size": 2215936, - "name": "/System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation", - "uuid": "860DB501-598B-35A4-B701-884CE1F27ED7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7612727296, - "image_vmaddr": 7067680768, - "image_size": 364544, - "name": "/System/Library/PrivateFrameworks/FTServices.framework/FTServices", - "uuid": "4835D360-BD20-3FB1-BB62-6904AAF877DB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8260616192, - "image_vmaddr": 7715569664, - "image_size": 90112, - "name": "/System/Library/PrivateFrameworks/Engram.framework/Engram", - "uuid": "76D730F9-E8D4-3FFB-9361-030FA7BBEFCE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717352960, - "image_vmaddr": 8172306432, - "image_size": 4096, - "name": "/System/Library/PrivateFrameworks/Marco.framework/Marco", - "uuid": "E41D687F-17C0-36D6-885C-8E677B13D777", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717357056, - "image_vmaddr": 8172310528, - "image_size": 131072, - "name": "/System/Library/PrivateFrameworks/FTAWD.framework/FTAWD", - "uuid": "9029ADC4-D2B3-30AF-BC42-3684DB188F2B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8258281472, - "image_vmaddr": 7713234944, - "image_size": 24576, - "name": "/System/Library/PrivateFrameworks/CryptoKitCBridging.framework/CryptoKitCBridging", - "uuid": "4C73ADB0-A4FA-3E4D-839E-B0EE97E0245D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8725753856, - "image_vmaddr": 8180707328, - "image_size": 8187, - "name": "/usr/lib/swift/libswiftCryptoTokenKit.dylib", - "uuid": "08073E87-354D-3168-97F1-CAB6831024EC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 602, - "minor_version": 60, - "revision_version": 5 - }, - { - "image_addr": 7840178176, - "image_vmaddr": 7295131648, - "image_size": 266240, - "name": "/System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth", - "uuid": "2802DD4C-10D2-3FF5-8108-DBFC80E1BBED", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8131735552, - "image_vmaddr": 7586689024, - "image_size": 991232, - "name": "/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/DesktopServicesPriv", - "uuid": "C47ECA2D-ADEF-3D7B-87C4-A5D0E9E84126", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1545, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7198654464, - "image_vmaddr": 6653607936, - "image_size": 27865088, - "name": "/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices", - "uuid": "8C395382-4E54-3791-AD72-713981464084", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1889, - "minor_version": 32, - "revision_version": 9 - }, - { - "image_addr": 7566409728, - "image_vmaddr": 7021363200, - "image_size": 208896, - "name": "/System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport", - "uuid": "72A8A0DE-D3ED-3CF6-A789-7822EB8AF51D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2780, - "minor_version": 0, - "revision_version": 25 - }, - { - "image_addr": 7652638720, - "image_vmaddr": 7107592192, - "image_size": 684032, - "name": "/System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth", - "uuid": "F3F4539B-C4AB-3A3B-B37D-3449A6F92595", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8265973760, - "image_vmaddr": 7720927232, - "image_size": 20480, - "name": "/System/Library/PrivateFrameworks/GeoServicesCore.framework/GeoServicesCore", - "uuid": "C433662C-FCDC-3B37-BE5B-BE736FCFBBBE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1889, - "minor_version": 32, - "revision_version": 9 - }, - { - "image_addr": 8247484416, - "image_vmaddr": 7702437888, - "image_size": 532480, - "name": "/System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf", - "uuid": "E5EDCCBF-28C2-342C-A027-F6F8CF18DA0A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8744849408, - "image_vmaddr": 8199802880, - "image_size": 102400, - "name": "/System/Library/Frameworks/Accessibility.framework/Accessibility", - "uuid": "7D3D5B31-D74E-3FEA-8770-17D28030A299", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8116875264, - "image_vmaddr": 7571828736, - "image_size": 819188, - "name": "/usr/lib/swift/libswiftAccelerate.dylib", - "uuid": "69F41117-2385-3BF6-B934-F88DF897FB96", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 41, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8728756224, - "image_vmaddr": 8183709696, - "image_size": 98292, - "name": "/usr/lib/swift/libswiftsimd.dylib", - "uuid": "77F018CB-750F-313B-8916-4DDF9004F065", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 9, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 4312350720, - "image_vmaddr": 0, - "image_size": 49152, - "name": "/private/preboot/Cryptexes/OS/usr/lib/libobjc-trampolines.dylib", - "uuid": "50228E97-D295-302B-B3DC-24950F436B70", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 228, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8184983552, - "image_vmaddr": 7639937024, - "image_size": 114688, - "name": "/System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore", - "uuid": "6BC8D827-7BFC-3838-AEA3-D0A264A27205", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7811162112, - "image_vmaddr": 7266115584, - "image_size": 794624, - "name": "/usr/lib/libboringssl.dylib", - "uuid": "A25D7665-80A4-3711-9C87-5C7AA7AFA82A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8756428800, - "image_vmaddr": 8211382272, - "image_size": 442367, - "name": "/usr/lib/libusrtcp.dylib", - "uuid": "92E40B24-4B07-35D1-82A8-FCA1B51B2A99", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8757452800, - "image_vmaddr": 8212406272, - "image_size": 851968, - "name": "/usr/lib/libquic.dylib", - "uuid": "56E8A9E2-402E-3F07-81FA-92AE235936BF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9253244928, - "image_vmaddr": 8708198400, - "image_size": 102396, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib", - "uuid": "2ED77B0F-0923-353E-8616-AE840E0CFEC6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 575, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8765104128, - "image_vmaddr": 8220057600, - "image_size": 12288, - "name": "/usr/lib/log/liblog_network.dylib", - "uuid": "A261DC80-290A-301C-A95B-3CE0F3E6D6EA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7762067456, - "image_vmaddr": 7217020928, - "image_size": 430080, - "name": "/System/Library/PrivateFrameworks/Pegasus.framework/Pegasus", - "uuid": "0F637876-8928-3EE8-B84A-AF70FD67B7EA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7482789888, - "image_vmaddr": 6937743360, - "image_size": 2363392, - "name": "/System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices", - "uuid": "199008B8-071F-3B44-9143-3C834012CD4C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7607701504, - "image_vmaddr": 7062654976, - "image_size": 774144, - "name": "/System/Library/PrivateFrameworks/SAObjects.framework/SAObjects", - "uuid": "73E7C68A-1FFF-3F45-A697-1933D4F55F88", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7374233600, - "image_vmaddr": 6829187072, - "image_size": 3260416, - "name": "/System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote", - "uuid": "617EC65E-E175-3DD9-B61E-51A713B81648", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7677378560, - "image_vmaddr": 7132332032, - "image_size": 6209536, - "name": "/System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation", - "uuid": "8BA914EC-6514-3016-A76E-5F0696550069", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7546937344, - "image_vmaddr": 7001890816, - "image_size": 348160, - "name": "/System/Library/PrivateFrameworks/SiriAnalytics.framework/SiriAnalytics", - "uuid": "8EB4A545-854A-326E-93F7-04546D4F7D8B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8407908352, - "image_vmaddr": 7862861824, - "image_size": 413696, - "name": "/System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices", - "uuid": "49A1DA87-7EB3-3E46-B932-D5D7937CCEA5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7551045632, - "image_vmaddr": 7005999104, - "image_size": 372736, - "name": "/System/Library/PrivateFrameworks/MediaServices.framework/MediaServices", - "uuid": "6C14C475-80FD-39A4-9CED-D58CAED7682E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8131538944, - "image_vmaddr": 7586492416, - "image_size": 196608, - "name": "/System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection", - "uuid": "41D40AC7-9C6C-3284-83F4-981DBC4F434E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7812325376, - "image_vmaddr": 7267278848, - "image_size": 81920, - "name": "/System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger", - "uuid": "2A661192-5B90-3FE2-BD7B-FE4983B7AADF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7481356288, - "image_vmaddr": 6936309760, - "image_size": 1433600, - "name": "/System/Library/PrivateFrameworks/SiriTTSService.framework/SiriTTSService", - "uuid": "13831CCB-DA22-3CC2-BFB0-D04C7B3DB717", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7491522560, - "image_vmaddr": 6946476032, - "image_size": 450560, - "name": "/System/Library/PrivateFrameworks/Trial.framework/Trial", - "uuid": "2DB19EDB-6A32-34D7-89C4-B063FE0F3C0C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8410591232, - "image_vmaddr": 7865544704, - "image_size": 9523200, - "name": "/System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS", - "uuid": "C069B1ED-5E7A-3E73-8861-4D33ED4D0EAB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8728743936, - "image_vmaddr": 8183697408, - "image_size": 4096, - "name": "/System/Library/Frameworks/AVFoundation.framework/AVFoundation", - "uuid": "2BAF6DAD-EAC8-31BF-8AE5-D4298E255DFE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7490154496, - "image_vmaddr": 6945107968, - "image_size": 1368064, - "name": "/System/Library/Frameworks/AVFAudio.framework/AVFAudio", - "uuid": "ACAFC4FF-E467-399D-8EEF-543F98B46B1C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7880089600, - "image_vmaddr": 7335043072, - "image_size": 425984, - "name": "/System/Library/PrivateFrameworks/Osprey.framework/Osprey", - "uuid": "0B260874-6EED-3B09-B1BE-8D2EEFF31F32", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7992082432, - "image_vmaddr": 7447035904, - "image_size": 36864, - "name": "/System/Library/PrivateFrameworks/SiriPowerInstrumentation.framework/SiriPowerInstrumentation", - "uuid": "D3B497E5-9B19-3054-A872-DCF7E2BCF25A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7346462720, - "image_vmaddr": 6801416192, - "image_size": 495616, - "name": "/System/Library/PrivateFrameworks/TrialProto.framework/TrialProto", - "uuid": "EC050012-7CD1-3B48-983A-56CE847DD0F8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8729145344, - "image_vmaddr": 8184098816, - "image_size": 135167, - "name": "/usr/lib/swift/libswiftAVFoundation.dylib", - "uuid": "70FCE724-11EE-3F25-8CE0-A63FBBCE9646", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2140, - "minor_version": 3, - "revision_version": 1 - }, - { - "image_addr": 8376168448, - "image_vmaddr": 7831121920, - "image_size": 36860, - "name": "/usr/lib/swift/libswiftCoreAudio.dylib", - "uuid": "3AD460AD-C948-33C2-89C3-B836F8A399A6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 1, - "revision_version": 0 - }, - { - "image_addr": 8728854528, - "image_vmaddr": 8183808000, - "image_size": 40948, - "name": "/usr/lib/swift/libswiftCoreMIDI.dylib", - "uuid": "296C6604-24A0-387C-B1BD-CBFB1BA7A126", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7870898176, - "image_vmaddr": 7325851648, - "image_size": 229371, - "name": "/usr/lib/swift/libswiftCoreMedia.dylib", - "uuid": "088FC0B0-F344-39E0-A236-E32A8ABBC3C0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3005, - "minor_version": 3, - "revision_version": 1 - }, - { - "image_addr": 8728662016, - "image_vmaddr": 8183615488, - "image_size": 57342, - "name": "/usr/lib/swift/libswiftUniformTypeIdentifiers.dylib", - "uuid": "4EC105FD-173B-3EA4-A8E3-66BA8DAC0E02", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 760, - "minor_version": 2, - "revision_version": 2 - }, - { - "image_addr": 7329374208, - "image_vmaddr": 6784327680, - "image_size": 13041664, - "name": "/System/Library/PrivateFrameworks/Espresso.framework/Espresso", - "uuid": "1FD4CB11-AA9B-3D48-A58F-0BC017282E13", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 123, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7502200832, - "image_vmaddr": 6957154304, - "image_size": 6643712, - "name": "/System/Library/Frameworks/CoreML.framework/CoreML", - "uuid": "B66604D8-0C70-3C11-BB2A-F9F9A6BDD70E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8744669184, - "image_vmaddr": 8199622656, - "image_size": 122872, - "name": "/usr/lib/libedit.3.dylib", - "uuid": "0659CF59-7C19-3009-9772-390484E45894", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7369203712, - "image_vmaddr": 6824157184, - "image_size": 2650112, - "name": "/System/Library/PrivateFrameworks/AVFCore.framework/AVFCore", - "uuid": "D126E582-47DA-351E-9671-2D16C9C4A901", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7530811392, - "image_vmaddr": 6985764864, - "image_size": 1363968, - "name": "/System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture", - "uuid": "D99A8925-792D-341A-8EAD-9D2CE44865CC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8259899392, - "image_vmaddr": 7714852864, - "image_size": 20480, - "name": "/System/Library/PrivateFrameworks/Celestial.framework/Celestial", - "uuid": "79308682-343D-39A0-BFFA-05DAA117BA15", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8260780032, - "image_vmaddr": 7715733504, - "image_size": 1503232, - "name": "/System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync", - "uuid": "0C35A7E6-47C4-3B70-AD9D-3DC259101C98", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7581921280, - "image_vmaddr": 7036874752, - "image_size": 8343552, - "name": "/System/Library/PrivateFrameworks/CMCapture.framework/CMCapture", - "uuid": "8FD16574-5136-3453-BEAC-9CB6682CC7DA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8248016896, - "image_vmaddr": 7702970368, - "image_size": 872448, - "name": "/System/Library/PrivateFrameworks/Quagga.framework/Quagga", - "uuid": "60BED9F8-F0E8-388C-9AD1-95053C577BF5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 155, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 8237133824, - "image_vmaddr": 7692087296, - "image_size": 368640, - "name": "/System/Library/PrivateFrameworks/CMImaging.framework/CMImaging", - "uuid": "97F947B3-CE42-345C-92EA-797E38D3E6D0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9365975040, - "image_vmaddr": 8820928512, - "image_size": 274432, - "name": "/System/Library/PrivateFrameworks/CameraColorProcessing.framework/CameraColorProcessing", - "uuid": "AD3376D4-14E9-3CD6-B220-BAEA2A66D1B7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8263266304, - "image_vmaddr": 7718219776, - "image_size": 163840, - "name": "/System/Library/PrivateFrameworks/CinematicFraming.framework/CinematicFraming", - "uuid": "F2C5E9EA-6F7A-3CF5-AF86-BD2D71386F9A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8725762048, - "image_vmaddr": 8180715520, - "image_size": 2887680, - "name": "/System/Library/PrivateFrameworks/AppC3D.framework/AppC3D", - "uuid": "23E27F62-3308-33C5-AF7B-C96B193C1ABE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 10, - "revision_version": 6 - }, - { - "image_addr": 7818653696, - "image_vmaddr": 7273607168, - "image_size": 475136, - "name": "/System/Library/PrivateFrameworks/AppleCVAPhoto.framework/AppleCVAPhoto", - "uuid": "D788E588-ECBE-377D-9FB0-235001E8DAB7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 91, - "revision_version": 0 - }, - { - "image_addr": 7294558208, - "image_vmaddr": 6749511680, - "image_size": 4202496, - "name": "/System/Library/Frameworks/CoreMotion.framework/CoreMotion", - "uuid": "D59CB138-D760-3FA0-BDFF-6E9958AC784C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2780, - "minor_version": 0, - "revision_version": 25 - }, - { - "image_addr": 8251740160, - "image_vmaddr": 7706693632, - "image_size": 57344, - "name": "/System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet", - "uuid": "B0C138D2-54CE-3C46-8243-2140081760ED", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8237502464, - "image_vmaddr": 7692455936, - "image_size": 188416, - "name": "/System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine", - "uuid": "99A1DCC0-0C35-39E5-9B79-08C96B51037C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8719319040, - "image_vmaddr": 8174272512, - "image_size": 6266868, - "name": "/System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler", - "uuid": "90856DF1-FF74-381B-9DF9-761413D88B54", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 6988529664, - "image_vmaddr": 6443483136, - "image_size": 11407360, - "name": "/System/Library/Frameworks/MetalPerformanceShadersGraph.framework/MetalPerformanceShadersGraph", - "uuid": "2CCE2ED3-DCA8-35EE-9966-A7C4B070D113", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717910016, - "image_vmaddr": 8172863488, - "image_size": 1409016, - "name": "/System/Library/PrivateFrameworks/MilAneflow.framework/MilAneflow", - "uuid": "1A4D3553-29D2-3BED-8570-F74C9E53FF02", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8725585920, - "image_vmaddr": 8180539392, - "image_size": 131072, - "name": "/System/Library/PrivateFrameworks/ANEServices.framework/ANEServices", - "uuid": "6E76B8E7-1B36-3682-B745-6743790CB2CA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717340672, - "image_vmaddr": 8172294144, - "image_size": 12288, - "name": "/usr/lib/libsandbox.1.dylib", - "uuid": "65C53941-20F7-3984-80F7-1E2F32F4DD4B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9235009536, - "image_vmaddr": 8689963008, - "image_size": 32764, - "name": "/usr/lib/libMatch.1.dylib", - "uuid": "FE3A9327-B3DD-3F91-9242-799D59188DDC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7992119296, - "image_vmaddr": 7447072768, - "image_size": 200700, - "name": "/usr/lib/libncurses.5.4.dylib", - "uuid": "9EDA16DF-ED0D-32CC-82D7-212A94B10423", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 5, - "minor_version": 4, - "revision_version": 0 - }, - { - "image_addr": 7819128832, - "image_vmaddr": 7274082304, - "image_size": 442368, - "name": "/System/Library/PrivateFrameworks/TimeSync.framework/TimeSync", - "uuid": "4491DFFA-B11A-3365-8C88-09B5D0E6BB70", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8256761856, - "image_vmaddr": 7711715328, - "image_size": 1519616, - "name": "/System/Library/Frameworks/MLCompute.framework/MLCompute", - "uuid": "EACB13F3-333D-391A-9B2C-EDEB2355B636", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7232180224, - "image_vmaddr": 6687133696, - "image_size": 2703360, - "name": "/System/Library/Frameworks/CloudKit.framework/CloudKit", - "uuid": "CA4E690F-6234-391D-9C1F-3B7F19E0AF01", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2030, - "minor_version": 17, - "revision_version": 0 - }, - { - "image_addr": 8245260288, - "image_vmaddr": 7700213760, - "image_size": 1298432, - "name": "/System/Library/PrivateFrameworks/MLAssetIO.framework/MLAssetIO", - "uuid": "6C293F93-2901-3CE4-B810-783E3D9E2EEE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1436, - "minor_version": 60, - "revision_version": 2 - }, - { - "image_addr": 7246733312, - "image_vmaddr": 6701686784, - "image_size": 114688, - "name": "/System/Library/Frameworks/SharedWithYouCore.framework/SharedWithYouCore", - "uuid": "65C3E00A-935D-3F82-88A4-5E7A38140363", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7716290560, - "image_vmaddr": 7171244032, - "image_size": 8192, - "name": "/usr/lib/libBASupport.dylib", - "uuid": "109F1187-06D0-32F7-A695-4E31786F0378", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7527759872, - "image_vmaddr": 6982713344, - "image_size": 905216, - "name": "/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount", - "uuid": "51D6839D-95C7-392A-AAAB-1A6083F87B45", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7494189056, - "image_vmaddr": 6949142528, - "image_size": 180224, - "name": "/System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService", - "uuid": "726106DB-26B2-3470-835B-16FC4F62E2A4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8262926336, - "image_vmaddr": 7717879808, - "image_size": 290816, - "name": "/System/Library/PrivateFrameworks/C2.framework/C2", - "uuid": "D10391A2-BEDB-34AA-B828-19926F1C79ED", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2000, - "minor_version": 129, - "revision_version": 2 - }, - { - "image_addr": 8258306048, - "image_vmaddr": 7713259520, - "image_size": 1310720, - "name": "/System/Library/PrivateFrameworks/CloudKitDistributedSync.framework/CloudKitDistributedSync", - "uuid": "35E0BFF7-A075-3EFE-85B6-22836127A1D0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2030, - "minor_version": 17, - "revision_version": 0 - }, - { - "image_addr": 7669108736, - "image_vmaddr": 7124062208, - "image_size": 368640, - "name": "/System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage", - "uuid": "60EE4A4E-A43F-3FBC-A2DB-A40DBCD6C1A4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8728895488, - "image_vmaddr": 8183848960, - "image_size": 249856, - "name": "/System/Library/Frameworks/CoreTransferable.framework/CoreTransferable", - "uuid": "165D84E1-D794-3AAB-A2E8-D46AD23805B0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7614648320, - "image_vmaddr": 7069601792, - "image_size": 344064, - "name": "/System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant", - "uuid": "A6DF4299-8AB2-38BC-B8E8-A82BA2388DDE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7871262720, - "image_vmaddr": 7326216192, - "image_size": 114688, - "name": "/System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp", - "uuid": "B268A700-8931-3961-B28D-5A1A5961411C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8253755392, - "image_vmaddr": 7708708864, - "image_size": 114688, - "name": "/System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport", - "uuid": "38A4B148-0F24-3F38-8EA9-5438467492ED", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8266350592, - "image_vmaddr": 7721304064, - "image_size": 438272, - "name": "/System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup", - "uuid": "448D1FB3-93D1-3B72-9C1E-548A0AF00CB4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1830, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8264404992, - "image_vmaddr": 7719358464, - "image_size": 90112, - "name": "/System/Library/PrivateFrameworks/Seeding.framework/Seeding", - "uuid": "95DD8517-B451-306A-9CBB-1C19ED6E1DB9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8253992960, - "image_vmaddr": 7708946432, - "image_size": 16384, - "name": "/System/Library/PrivateFrameworks/OSASubmissionClient.framework/OSASubmissionClient", - "uuid": "3F1D171B-3F43-3F7F-8FF3-AB6D2DC83522", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7879036928, - "image_vmaddr": 7333990400, - "image_size": 139264, - "name": "/System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences", - "uuid": "5862C4D3-4F7B-33C6-89CD-090612670AAC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 397, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7813607424, - "image_vmaddr": 7268560896, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync", - "uuid": "A2B80FBA-D5AE-3987-B882-A393321CEE51", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8262295552, - "image_vmaddr": 7717249024, - "image_size": 192512, - "name": "/System/Library/PrivateFrameworks/AppConduit.framework/AppConduit", - "uuid": "C60F397A-E824-316E-A44D-C68A296E50F8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7592337408, - "image_vmaddr": 7047290880, - "image_size": 282624, - "name": "/System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete", - "uuid": "2CCF281A-62A4-37CE-B368-D8C3FBC19218", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717770752, - "image_vmaddr": 8172724224, - "image_size": 53248, - "name": "/System/Library/PrivateFrameworks/FSEvents.framework/FSEvents", - "uuid": "849DF6A1-7CFD-32FB-A64E-E3C8D7D26BEA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1355, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8245043200, - "image_vmaddr": 7699996672, - "image_size": 131072, - "name": "/System/Library/PrivateFrameworks/OSAnalyticsPrivate.framework/OSAnalyticsPrivate", - "uuid": "87F72FF8-4B58-353F-AF8B-1AF5B5C74E33", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8252608512, - "image_vmaddr": 7707561984, - "image_size": 86016, - "name": "/System/Library/PrivateFrameworks/RemoteXPC.framework/RemoteXPC", - "uuid": "353F6574-F0BD-37E5-84A4-93D473CEA352", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2462, - "minor_version": 60, - "revision_version": 14 - }, - { - "image_addr": 7552577536, - "image_vmaddr": 7007531008, - "image_size": 544768, - "name": "/System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport", - "uuid": "256FD9EE-98A2-361F-8A86-762ACC29EDCE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 365, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 7302320128, - "image_vmaddr": 6757273600, - "image_size": 155648, - "name": "/System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker", - "uuid": "D36ACE86-A62F-3F12-945C-C9E96EE645CA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 365, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 8729882624, - "image_vmaddr": 8184836096, - "image_size": 12288, - "name": "/System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch", - "uuid": "67C8548C-5D0E-31FE-9795-EFFF78F65C3A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7346958336, - "image_vmaddr": 6801911808, - "image_size": 172032, - "name": "/System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting", - "uuid": "4D6CD2E3-5C33-3EC8-9A5F-B17749B30127", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7738712064, - "image_vmaddr": 7193665536, - "image_size": 1261561, - "name": "/System/Library/PrivateFrameworks/InternalSwiftProtobuf.framework/InternalSwiftProtobuf", - "uuid": "10C78C3C-CFD6-34ED-988B-14ACC8221D22", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7477116928, - "image_vmaddr": 6932070400, - "image_size": 151552, - "name": "/System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust", - "uuid": "A3D69A72-E5C0-3082-AFAE-B5004F77EB88", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7871127552, - "image_vmaddr": 7326081024, - "image_size": 135168, - "name": "/System/Library/PrivateFrameworks/SecurityFoundation.framework/SecurityFoundation", - "uuid": "A6F6B99E-2E82-3A5C-B497-49D0D3C7586E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7600144384, - "image_vmaddr": 7055097856, - "image_size": 589824, - "name": "/System/Library/Frameworks/CallKit.framework/CallKit", - "uuid": "BA01CF7B-1051-3E67-A5DE-D425B2D513FA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - } - ], "process": {}, "system": { "system_name": "iOS", @@ -5375,1224 +69,7 @@ }, "address": 5365848110, "type": "mach" - }, - "threads": [ - { - "backtrace": { - "contents": [ - { - "instruction_addr": 5365848110 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309617184, - "instruction_addr": 4309617228 - }, - { - "object_name": "iOS-Swift", - "object_addr": 4306583552, - "symbol_name": "$s9iOS_Swift14ViewControllerC5crashyyypF", - "symbol_addr": 4306654892, - "instruction_addr": 4306654944 - }, - { - "object_name": "iOS-Swift", - "object_addr": 4306583552, - "symbol_name": "", - "symbol_addr": 4306654956, - "instruction_addr": 4306655024 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7140628492, - "instruction_addr": 7140628592 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309427996, - "instruction_addr": 4309428196 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7140627712, - "instruction_addr": 7140627824 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7140625856, - "instruction_addr": 7140626180 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7140625708, - "instruction_addr": 7140625832 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7140624364, - "instruction_addr": 7140624764 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7139242572, - "instruction_addr": 7139243348 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7139237020, - "instruction_addr": 7139240304 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7139236240, - "instruction_addr": 7139236912 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7139227456, - "instruction_addr": 7139234540 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7139523072, - "instruction_addr": 7139528704 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7142709604, - "instruction_addr": 7142709828 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103586072, - "instruction_addr": 7103586100 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103636060, - "instruction_addr": 7103636236 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103127772, - "instruction_addr": 7103128016 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103215688, - "instruction_addr": 7103216524 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "CFRunLoopRunSpecific", - "symbol_addr": 7103237204, - "instruction_addr": 7103237816 - }, - { - "object_name": "GraphicsServices", - "object_addr": 8086032384, - "symbol_name": "GSEventRunModal", - "symbol_addr": 8086037188, - "instruction_addr": 8086037352 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7142017500, - "instruction_addr": 7142018388 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "UIApplicationMain", - "symbol_addr": 7142017124, - "instruction_addr": 7142017464 - }, - { - "object_name": "iOS-Swift", - "object_addr": 4306583552, - "symbol_name": "main", - "symbol_addr": 4306715508, - "instruction_addr": 4306715572 - }, - { - "instruction_addr": 7625050464 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 4310376784, - "x1": 4306839947, - "x2": 259, - "x3": 10762518888, - "x4": 5803094048, - "x5": 10766664720, - "x6": 10, - "x7": 1, - "x8": 5365848110, - "x9": 259, - "x10": 10767712640, - "x11": 6162675, - "x12": 8, - "x13": 0, - "x14": 6987497472, - "x15": 9917497344, - "x16": 4310376826, - "x17": 4309617184, - "x18": 0, - "x19": 10766664720, - "x20": 5801794240, - "x21": 5803094048, - "x22": 4306840396, - "x23": 10774023360, - "x24": 8552160384, - "x25": 10786661184, - "x26": 4306840396, - "x27": 5801794240, - "x28": 1, - "fp": 6160290192, - "lr": 4309617228, - "sp": 6160290160, - "pc": 5365848110, - "cpsr": 1073741824 - }, - "exception": { - "exception": 0, - "esr": 2315255808, - "far": 5365848110 - } - }, - "index": 0, - "crashed": true, - "current_thread": false, - "stack": { - "grow_direction": "-", - "dump_start": 6160290080, - "dump_end": 6160290320, - "stack_pointer": 6160290160, - "overflow": false, - "contents": "91E5430FD82FC8465829D484D012904A4591AAE83A48D072B6F54CC5C4C622185021EB00010000008B29B50001000000030100000000000068017F81020000002030E459010000001044BE81020000000A000000000000002E58D43F010000008B29B500010000005021EB0001000000B0912E6F01000000E056B20001000000C05AD05901000000E0912E6F0100000010922E6F010000003057B20001000000C05AD05901000000E0912E6F010000002030E45901000000C05AD059010000002030E459010000001044BE81020000000A0000000000000058F9BAFD01000000C05AD059010000001044BE8102000000" - }, - "notable_addresses": { - "x0": { - "address": 4310376784, - "type": "objc_class", - "class": "SentrySDK" - }, - "x1": { - "address": 4306839947, - "type": "string", - "value": "crash" - }, - "x14": { - "address": 6987497472, - "type": "string", - "value": "dyld_v1 arm64e" - }, - "x22": { - "address": 4306840396, - "type": "string", - "value": "crash:" - }, - "x26": { - "address": 4306840396, - "type": "string", - "value": "crash:" - }, - "stack@0x16f2e9140": { - "address": 4310376784, - "type": "objc_class", - "class": "SentrySDK" - }, - "stack@0x16f2e9148": { - "address": 4306839947, - "type": "string", - "value": "crash" - }, - "stack@0x16f2e9180": { - "address": 4306839947, - "type": "string", - "value": "crash" - }, - "stack@0x16f2e9188": { - "address": 4310376784, - "type": "objc_class", - "class": "SentrySDK" - } - } - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_trap", - "symbol_addr": 8145336992, - "instruction_addr": 8145337000 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_internal", - "symbol_addr": 8145411956, - "instruction_addr": 8145412036 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg_overwrite", - "symbol_addr": 8145412224, - "instruction_addr": 8145412612 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg", - "symbol_addr": 8145338324, - "instruction_addr": 8145338348 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103212084, - "instruction_addr": 7103212244 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103215688, - "instruction_addr": 7103216920 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "CFRunLoopRunSpecific", - "symbol_addr": 7103237204, - "instruction_addr": 7103237816 - }, - { - "object_name": "Foundation", - "object_addr": 7005818880, - "symbol_name": "", - "symbol_addr": 7006089216, - "instruction_addr": 7006089428 - }, - { - "object_name": "Foundation", - "object_addr": 7005818880, - "symbol_name": "", - "symbol_addr": 7006089084, - "instruction_addr": 7006089148 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7143283180, - "instruction_addr": 7143283616 - }, - { - "object_name": "Foundation", - "object_addr": 7005818880, - "symbol_name": "", - "symbol_addr": 7006192348, - "instruction_addr": 7006193064 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_start", - "symbol_addr": 8421037624, - "instruction_addr": 8421037772 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 0, - "x1": 21592279046, - "x2": 8589934592, - "x3": 39595303501824, - "x4": 0, - "x5": 39595303501824, - "x6": 2, - "x7": 4294967295, - "x8": 18446744073709550527, - "x9": 0, - "x10": 9219, - "x11": 0, - "x12": 64515, - "x13": 9219, - "x14": 0, - "x15": 0, - "x16": 18446744073709551569, - "x17": 2, - "x18": 0, - "x19": 4294967295, - "x20": 2, - "x21": 39595303501824, - "x22": 0, - "x23": 39595303501824, - "x24": 6162570584, - "x25": 8589934592, - "x26": 21592279046, - "x27": 21592279046, - "x28": 8551669760, - "fp": 6162570432, - "lr": 8145412036, - "sp": 6162570352, - "pc": 8145337000, - "cpsr": 1073741824 - } - }, - "index": 1, - "name": "com.apple.uikit.eventfetch-thread", - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "", - "symbol_addr": 8421034640, - "instruction_addr": 8421034896 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 6163722240, - "x1": 14339, - "x2": 6163185664, - "x3": 6163721088, - "x4": 5128197, - "x5": 1, - "x6": 0, - "x7": 0, - "x8": 0, - "x9": 0, - "x10": 0, - "x11": 0, - "x12": 0, - "x13": 0, - "x14": 0, - "x15": 0, - "x16": 0, - "x17": 0, - "x18": 0, - "x19": 0, - "x20": 0, - "x21": 0, - "x22": 0, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 0, - "lr": 0, - "sp": 6163721072, - "pc": 8421034896, - "cpsr": 0 - } - }, - "index": 2, - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "__semwait_signal", - "symbol_addr": 8145338208, - "instruction_addr": 8145338216 - }, - { - "object_name": "libsystem_c.dylib", - "object_addr": 7226810368, - "symbol_name": "nanosleep", - "symbol_addr": 7226832636, - "instruction_addr": 7226832856 - }, - { - "object_name": "libsystem_c.dylib", - "object_addr": 7226810368, - "symbol_name": "sleep", - "symbol_addr": 7226915492, - "instruction_addr": 7226915544 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309468048, - "instruction_addr": 4309468176 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_start", - "symbol_addr": 8421037624, - "instruction_addr": 8421037772 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 7939, - "x1": 0, - "x2": 1, - "x3": 1, - "x4": 60, - "x5": 0, - "x6": 52, - "x7": 0, - "x8": 8551680796, - "x9": 16387, - "x10": 17, - "x11": 2043, - "x12": 3492106266, - "x13": 2045, - "x14": 3494205461, - "x15": 3492106266, - "x16": 334, - "x17": 1346371584, - "x18": 0, - "x19": 6164868976, - "x20": 6164868992, - "x21": 0, - "x22": 0, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 6164868960, - "lr": 7226832856, - "sp": 6164868912, - "pc": 8145338216, - "cpsr": 1073741824 - } - }, - "index": 3, - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_trap", - "symbol_addr": 8145336992, - "instruction_addr": 8145337000 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_internal", - "symbol_addr": 8145411956, - "instruction_addr": 8145412036 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg_overwrite", - "symbol_addr": 8145412224, - "instruction_addr": 8145412612 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg", - "symbol_addr": 8145338324, - "instruction_addr": 8145338348 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309338964, - "instruction_addr": 4309339160 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_start", - "symbol_addr": 8421037624, - "instruction_addr": 8421037772 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 6165441892, - "x1": 17179869186, - "x2": 0, - "x3": 0, - "x4": 0, - "x5": 95670396518400, - "x6": 580, - "x7": 0, - "x8": 18446744073709550527, - "x9": 22275, - "x10": 0, - "x11": 0, - "x12": 0, - "x13": 22275, - "x14": 0, - "x15": 0, - "x16": 18446744073709551569, - "x17": 6165442560, - "x18": 0, - "x19": 0, - "x20": 580, - "x21": 95670396518400, - "x22": 0, - "x23": 0, - "x24": 6165441892, - "x25": 0, - "x26": 17179869186, - "x27": 17179869186, - "x28": 8551669760, - "fp": 6165441424, - "lr": 8145412036, - "sp": 6165441344, - "pc": 8145337000, - "cpsr": 1073741824 - } - }, - "index": 4, - "name": "SentryCrash Exception Handler (Secondary)", - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [], - "skipped": 0 - }, - "index": 5, - "name": "SentryCrash Exception Handler (Primary)", - "crashed": false, - "current_thread": true - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "__semwait_signal", - "symbol_addr": 8145338208, - "instruction_addr": 8145338216 - }, - { - "object_name": "libsystem_c.dylib", - "object_addr": 7226810368, - "symbol_name": "nanosleep", - "symbol_addr": 7226832636, - "instruction_addr": 7226832856 - }, - { - "object_name": "Foundation", - "object_addr": 7005818880, - "symbol_name": "", - "symbol_addr": 7006550208, - "instruction_addr": 7006550368 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309435272, - "instruction_addr": 4309435316 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309186272, - "instruction_addr": 4309186996 - }, - { - "object_name": "Foundation", - "object_addr": 7005818880, - "symbol_name": "", - "symbol_addr": 7006192348, - "instruction_addr": 7006193064 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_start", - "symbol_addr": 8421037624, - "instruction_addr": 8421037772 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 7939, - "x1": 0, - "x2": 1, - "x3": 1, - "x4": 0, - "x5": 400000000, - "x6": 0, - "x7": 0, - "x8": 8551680796, - "x9": 3, - "x10": 17, - "x11": 1970335589992960, - "x12": 3, - "x13": 10753018400, - "x14": 8551779536, - "x15": 8551779536, - "x16": 334, - "x17": 8572711128, - "x18": 0, - "x19": 0, - "x20": 6166587824, - "x21": 0, - "x22": 0, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 6166587776, - "lr": 7226832856, - "sp": 6166587728, - "pc": 8145338216, - "cpsr": 2147483648 - } - }, - "index": 6, - "name": "io.sentry.app-hang-tracker", - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_trap", - "symbol_addr": 8145336992, - "instruction_addr": 8145337000 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_internal", - "symbol_addr": 8145411956, - "instruction_addr": 8145412036 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg_overwrite", - "symbol_addr": 8145412224, - "instruction_addr": 8145412612 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg", - "symbol_addr": 8145338324, - "instruction_addr": 8145338348 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103212084, - "instruction_addr": 7103212244 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103215688, - "instruction_addr": 7103216920 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "CFRunLoopRunSpecific", - "symbol_addr": 7103237204, - "instruction_addr": 7103237816 - }, - { - "object_name": "CFNetwork", - "object_addr": 7121158144, - "symbol_name": "_CFURLStorageSessionDisableCache", - "symbol_addr": 7123554872, - "instruction_addr": 7123615960 - }, - { - "object_name": "Foundation", - "object_addr": 7005818880, - "symbol_name": "", - "symbol_addr": 7006192348, - "instruction_addr": 7006193064 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_start", - "symbol_addr": 8421037624, - "instruction_addr": 8421037772 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 6167731512, - "x1": 21592279046, - "x2": 8589934592, - "x3": 118777320570880, - "x4": 0, - "x5": 118777320570880, - "x6": 2, - "x7": 4294967295, - "x8": 18446744073709550527, - "x9": 0, - "x10": 27655, - "x11": 0, - "x12": 621831, - "x13": 27655, - "x14": 8796093022208, - "x15": 0, - "x16": 18446744073709551569, - "x17": 8796093024258, - "x18": 0, - "x19": 4294967295, - "x20": 2, - "x21": 118777320570880, - "x22": 0, - "x23": 118777320570880, - "x24": 6167731512, - "x25": 8589934592, - "x26": 21592279046, - "x27": 21592279046, - "x28": 8551669760, - "fp": 6167731360, - "lr": 8145412036, - "sp": 6167731280, - "pc": 8145337000, - "cpsr": 1073741824 - } - }, - "index": 7, - "name": "com.apple.NSURLConnectionLoader", - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "__workq_kernreturn", - "symbol_addr": 8145338280, - "instruction_addr": 8145338288 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_wqthread", - "symbol_addr": 8421035224, - "instruction_addr": 8421035588 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 256, - "x1": 6160853888, - "x2": 2, - "x3": 0, - "x4": 0, - "x5": 19804094201856, - "x6": 32, - "x7": 0, - "x8": 10753049473, - "x9": 6160853960, - "x10": 10753049528, - "x11": 1, - "x12": 0, - "x13": 7, - "x14": 1, - "x15": 72, - "x16": 368, - "x17": 8592134544, - "x18": 0, - "x19": 6160855040, - "x20": 1, - "x21": 6160855200, - "x22": 6160855192, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 6160853840, - "lr": 8421035588, - "sp": 6160853808, - "pc": 8145338288, - "cpsr": 1073741824 - } - }, - "index": 8, - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "__workq_kernreturn", - "symbol_addr": 8145338280, - "instruction_addr": 8145338288 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_wqthread", - "symbol_addr": 8421035224, - "instruction_addr": 8421035588 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 256, - "x1": 6161427328, - "x2": 1, - "x3": 0, - "x4": 10753040512, - "x5": 32, - "x6": 0, - "x7": 0, - "x8": 10753085185, - "x9": 6161427328, - "x10": 10753085240, - "x11": 1, - "x12": 0, - "x13": 7, - "x14": 1, - "x15": 72, - "x16": 368, - "x17": 681574400, - "x18": 0, - "x19": 6161428480, - "x20": 1, - "x21": 6161428640, - "x22": 6161428632, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 6161427280, - "lr": 8421035588, - "sp": 6161427248, - "pc": 8145338288, - "cpsr": 1073741824 - } - }, - "index": 9, - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "__workq_kernreturn", - "symbol_addr": 8145338280, - "instruction_addr": 8145338288 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_wqthread", - "symbol_addr": 8421035224, - "instruction_addr": 8421035588 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 64, - "x1": 6162000768, - "x2": 0, - "x3": 0, - "x4": 8551681480, - "x5": 32, - "x6": 0, - "x7": 0, - "x8": 0, - "x9": 18016666252228108, - "x10": 18428727476176814080, - "x11": 68719476736, - "x12": 8551684600, - "x13": 24000000, - "x14": 27021756678018581, - "x15": 27021756678018581, - "x16": 368, - "x17": 27021756678018581, - "x18": 0, - "x19": 6162001920, - "x20": 1, - "x21": 6162002080, - "x22": 6162002072, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 6162000736, - "lr": 8421035588, - "sp": 6162000704, - "pc": 8145338288, - "cpsr": 1073741824 - } - }, - "index": 10, - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 0, - "x1": 0, - "x2": 0, - "x3": 0, - "x4": 0, - "x5": 0, - "x6": 0, - "x7": 0, - "x8": 0, - "x9": 0, - "x10": 0, - "x11": 0, - "x12": 0, - "x13": 0, - "x14": 0, - "x15": 0, - "x16": 0, - "x17": 0, - "x18": 0, - "x19": 0, - "x20": 0, - "x21": 0, - "x22": 0, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 0, - "lr": 0, - "sp": 0, - "pc": 0, - "cpsr": 0 - } - }, - "index": 11, - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_trap", - "symbol_addr": 8145336992, - "instruction_addr": 8145337000 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_internal", - "symbol_addr": 8145411956, - "instruction_addr": 8145412036 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg_overwrite", - "symbol_addr": 8145412224, - "instruction_addr": 8145412612 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg", - "symbol_addr": 8145338324, - "instruction_addr": 8145338348 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309094108, - "instruction_addr": 4309094396 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309112564, - "instruction_addr": 4309112772 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309112312, - "instruction_addr": 4309112488 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309107428, - "instruction_addr": 4309107512 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_start", - "symbol_addr": 8421037624, - "instruction_addr": 8421037772 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 0, - "x1": 17179869186, - "x2": 0, - "x3": 0, - "x4": 0, - "x5": 113314122170368, - "x6": 512, - "x7": 0, - "x8": 18446744073709550527, - "x9": 26383, - "x10": 0, - "x11": 0, - "x12": 0, - "x13": 26383, - "x14": 4294967295, - "x15": 5768233088, - "x16": 18446744073709551569, - "x17": 6164295680, - "x18": 0, - "x19": 0, - "x20": 512, - "x21": 113314122170368, - "x22": 0, - "x23": 0, - "x24": 5768263120, - "x25": 0, - "x26": 17179869186, - "x27": 17179869186, - "x28": 8551669760, - "fp": 6164294656, - "lr": 8145412036, - "sp": 6164294576, - "pc": 8145337000, - "cpsr": 1073741824 - } - }, - "index": 12, - "crashed": false, - "current_thread": false - } - ] + } }, "sentry_sdk_scope": { "user": { diff --git a/Tests/Resources/crash-bad-access.json b/Tests/Resources/crash-bad-access.json index a33616eeb8e..eaae7b4cd81 100644 --- a/Tests/Resources/crash-bad-access.json +++ b/Tests/Resources/crash-bad-access.json @@ -6,5312 +6,6 @@ "timestamp": 1675069636, "type": "standard" }, - "binary_images": [ - { - "image_addr": 4306583552, - "image_vmaddr": 4294967296, - "image_size": 278528, - "name": "/private/var/containers/Bundle/Application/53C684E3-9F0E-4FE3-8291-88677BAB718C/iOS-Swift.app/iOS-Swift", - "uuid": "C488D0BE-E733-3031-AEF3-CC5182AB1E3B", - "cpu_type": 16777228, - "cpu_subtype": 0, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 4308959232, - "image_vmaddr": 0, - "image_size": 1212416, - "name": "/private/var/containers/Bundle/Application/53C684E3-9F0E-4FE3-8291-88677BAB718C/iOS-Swift.app/Frameworks/Sentry.framework/Sentry", - "uuid": "D9FC174C-62AD-3343-825B-DABBC5743CDC", - "cpu_type": 16777228, - "cpu_subtype": 0, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7005818880, - "image_vmaddr": 6460772352, - "image_size": 9740288, - "name": "/System/Library/Frameworks/Foundation.framework/Foundation", - "uuid": "C1224D80-B336-3E92-8CAD-7B6417720DAE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1953, - "minor_version": 255, - "revision_version": 0 - }, - { - "image_addr": 6988251136, - "image_vmaddr": 6443204608, - "image_size": 278048, - "name": "/usr/lib/libobjc.A.dylib", - "uuid": "79BC93BC-DF0F-300A-BD7B-07DCB2E13482", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 228, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7345225728, - "image_vmaddr": 6800179200, - "image_size": 421876, - "name": "/usr/lib/libc++.1.dylib", - "uuid": "3919F6F0-11CC-3281-B454-E308ACA8B8C1", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1300, - "minor_version": 36, - "revision_version": 0 - }, - { - "image_addr": 8421642240, - "image_vmaddr": 7876595712, - "image_size": 8192, - "name": "/usr/lib/libSystem.B.dylib", - "uuid": "C8734DFD-F789-3EF7-884B-AF518D6D009E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1319, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7228645376, - "image_vmaddr": 6683598848, - "image_size": 3534848, - "name": "/System/Library/Frameworks/CoreData.framework/CoreData", - "uuid": "6843123C-6E88-376B-8282-AC09FF51C135", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1244, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 7102709760, - "image_vmaddr": 6557663232, - "image_size": 4087808, - "name": "/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation", - "uuid": "FB98BD04-E2CF-31BF-BA9E-BD12CEAEFE13", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1953, - "minor_version": 255, - "revision_version": 0 - }, - { - "image_addr": 7298760704, - "image_vmaddr": 6753714176, - "image_size": 1019904, - "name": "/System/Library/Frameworks/CoreLocation.framework/CoreLocation", - "uuid": "2A296B42-101B-3BE9-B337-2A725B05DB5F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2780, - "minor_version": 0, - "revision_version": 25 - }, - { - "image_addr": 9027309568, - "image_vmaddr": 8482263040, - "image_size": 94208, - "name": "/System/Library/Frameworks/MetricKit.framework/MetricKit", - "uuid": "8993EC3F-6ACD-3CDA-8DC1-17E9FE694A2D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9057779712, - "image_vmaddr": 8512733184, - "image_size": 4096, - "name": "/System/Library/Frameworks/UIKit.framework/UIKit", - "uuid": "A3576478-3C57-348A-9469-C0C67330562D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6206, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7684452352, - "image_vmaddr": 7139405824, - "image_size": 274432, - "name": "/System/Library/Frameworks/UserNotifications.framework/UserNotifications", - "uuid": "62067F90-0095-3C25-8F7A-E8A42768C343", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8744951808, - "image_vmaddr": 8199905280, - "image_size": 4096, - "name": "/usr/lib/swift/libswiftDataDetection.dylib", - "uuid": "220B64FB-EB0D-370B-BEFF-F8E0C497E0EB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 727, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8744792064, - "image_vmaddr": 8199745536, - "image_size": 4093, - "name": "/usr/lib/swift/libswiftFileProvider.dylib", - "uuid": "F9BB3968-F084-32EE-AA3A-3CCEC5A199D8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 730, - "minor_version": 60, - "revision_version": 38 - }, - { - "image_addr": 9239728128, - "image_vmaddr": 8694681600, - "image_size": 8188, - "name": "/usr/lib/swift/libswiftMetricKit.dylib", - "uuid": "BD4378B8-7F9F-3D8F-BAA9-94A881E42889", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 6999937024, - "image_vmaddr": 6454890496, - "image_size": 5672960, - "name": "/usr/lib/swift/libswiftCore.dylib", - "uuid": "E3D0EECA-73D4-3781-BC4C-FE11385B549C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 5, - "minor_version": 7, - "revision_version": 1 - }, - { - "image_addr": 7890931712, - "image_vmaddr": 7345885184, - "image_size": 32756, - "name": "/usr/lib/swift/libswiftCoreFoundation.dylib", - "uuid": "90281A04-38C2-3F71-A1FB-3E2DDFB78C7D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 120, - "minor_version": 100, - "revision_version": 0 - }, - { - "image_addr": 8744845312, - "image_vmaddr": 8199798784, - "image_size": 4096, - "name": "/usr/lib/swift/libswiftCoreImage.dylib", - "uuid": "92814928-95C7-3E1B-AF6D-040EE873EE6D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8728649728, - "image_vmaddr": 8183603200, - "image_size": 12281, - "name": "/usr/lib/swift/libswiftCoreLocation.dylib", - "uuid": "AAA8C904-7B5B-3774-8749-4D595795D2D5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 9, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8692584448, - "image_vmaddr": 8147537920, - "image_size": 40956, - "name": "/usr/lib/swift/libswiftDarwin.dylib", - "uuid": "5C6DFE34-C9FE-370B-BE32-59D7DCC4FA9B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7245258752, - "image_vmaddr": 6700212224, - "image_size": 98296, - "name": "/usr/lib/swift/libswiftDispatch.dylib", - "uuid": "808E995E-BE7D-3E8D-838A-428C10446E99", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 17, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8728719360, - "image_vmaddr": 8183672832, - "image_size": 24563, - "name": "/usr/lib/swift/libswiftMetal.dylib", - "uuid": "9FE27A5D-C266-3AF7-B5F3-5894F2BD1CD9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 306, - "minor_version": 3, - "revision_version": 3 - }, - { - "image_addr": 7767056384, - "image_vmaddr": 7222009856, - "image_size": 16370, - "name": "/usr/lib/swift/libswiftObjectiveC.dylib", - "uuid": "A39BB68D-EF0F-3B5B-93CB-F30C7F043138", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8728748032, - "image_vmaddr": 8183701504, - "image_size": 8188, - "name": "/usr/lib/swift/libswiftQuartzCore.dylib", - "uuid": "E15B9538-0C07-39E4-9B38-5E54955DF046", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7248850944, - "image_vmaddr": 6703804416, - "image_size": 479232, - "name": "/usr/lib/swift/libswiftUIKit.dylib", - "uuid": "FF9071D9-FE4A-3CB5-8840-5EF960E2B60C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6206, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7343546368, - "image_vmaddr": 6798499840, - "image_size": 110592, - "name": "/usr/lib/swift/libswiftos.dylib", - "uuid": "D73C5E6E-DC16-3116-B93C-13FF0CF53B45", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1034, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7699828736, - "image_vmaddr": 7154782208, - "image_size": 28672, - "name": "/usr/lib/swift/libswiftCoreGraphics.dylib", - "uuid": "79326C40-3A28-3FBD-A265-3AD259F5F494", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 15, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9061621760, - "image_vmaddr": 8516575232, - "image_size": 4094, - "name": "/usr/lib/swift/libswiftFoundation.dylib", - "uuid": "D896344D-3C00-379F-8ECF-FE8CB3ADC7A3", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 120, - "minor_version": 100, - "revision_version": 0 - }, - { - "image_addr": 9072156672, - "image_vmaddr": 8527110144, - "image_size": 4096, - "name": "/usr/lib/swift/libswiftCoreData.dylib", - "uuid": "2406573C-7451-3F2C-BFFB-845870447191", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 25, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9313681408, - "image_vmaddr": 8768634880, - "image_size": 73720, - "name": "/usr/lib/libz.1.dylib", - "uuid": "3C9ACC54-1480-3DA0-B610-A5582B44FACE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 2, - "revision_version": 11 - }, - { - "image_addr": 7126474752, - "image_vmaddr": 6581428224, - "image_size": 3534848, - "name": "/System/Library/Frameworks/QuartzCore.framework/QuartzCore", - "uuid": "8402973D-62D0-3612-94E6-16F326902D2D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 11, - "revision_version": 0 - }, - { - "image_addr": 7272476672, - "image_vmaddr": 6727430144, - "image_size": 520180, - "name": "/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration", - "uuid": "420FA60E-6887-31AD-863F-F3D7DC456BE6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1241, - "minor_version": 60, - "revision_version": 3 - }, - { - "image_addr": 9075372032, - "image_vmaddr": 8530325504, - "image_size": 24572, - "name": "/usr/lib/system/libcache.dylib", - "uuid": "9E4C0BF8-E5FA-323C-AE2B-2AC409BB4169", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 90, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8420151296, - "image_vmaddr": 7875104768, - "image_size": 53244, - "name": "/usr/lib/system/libcommonCrypto.dylib", - "uuid": "4AFEA8A5-3328-3A50-B10E-837BD3C598B4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 60198, - "minor_version": 60, - "revision_version": 2 - }, - { - "image_addr": 8420347904, - "image_vmaddr": 7875301376, - "image_size": 16380, - "name": "/usr/lib/system/libcompiler_rt.dylib", - "uuid": "8F3B18FB-3775-308A-851E-00891292C60E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 103, - "minor_version": 1, - "revision_version": 0 - }, - { - "image_addr": 8420114432, - "image_vmaddr": 7875067904, - "image_size": 36860, - "name": "/usr/lib/system/libcopyfile.dylib", - "uuid": "0BEE745D-03C4-3F36-B3F4-B9C0023E3E1E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8420450304, - "image_vmaddr": 7875403776, - "image_size": 561132, - "name": "/usr/lib/system/libcorecrypto.dylib", - "uuid": "77F3650A-2784-3F51-A92B-00DC780DE460", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1386, - "minor_version": 60, - "revision_version": 5 - }, - { - "image_addr": 7226519552, - "image_vmaddr": 6681473024, - "image_size": 290816, - "name": "/usr/lib/system/libdispatch.dylib", - "uuid": "7F5305B9-A9D6-393E-9D4F-CEFD318D0F85", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1412, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7668965376, - "image_vmaddr": 7123918848, - "image_size": 143352, - "name": "/usr/lib/system/libdyld.dylib", - "uuid": "77BE1613-0536-33B3-9971-003AEBB612BC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9212162048, - "image_vmaddr": 8667115520, - "image_size": 24568, - "name": "/usr/lib/system/libmacho.dylib", - "uuid": "4F23F0E4-AFD6-3CF3-8391-C1F9CC7B4C76", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1001, - "minor_version": 2, - "revision_version": 0 - }, - { - "image_addr": 9075085312, - "image_vmaddr": 8530038784, - "image_size": 12288, - "name": "/usr/lib/system/libremovefile.dylib", - "uuid": "B68584DB-9599-3328-B6BB-0AA443BC4BF1", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 63, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8410468352, - "image_vmaddr": 7865421824, - "image_size": 98296, - "name": "/usr/lib/system/libsystem_asl.dylib", - "uuid": "2EA05356-4A8B-312B-B6BF-70FB5290A4CD", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 395, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8421011456, - "image_vmaddr": 7875964928, - "image_size": 20475, - "name": "/usr/lib/system/libsystem_blocks.dylib", - "uuid": "B079ACC8-133C-3F16-A7F5-9471A0CB115C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 84, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7226810368, - "image_vmaddr": 6681763840, - "image_size": 524280, - "name": "/usr/lib/system/libsystem_c.dylib", - "uuid": "872A3077-A853-3D82-BCF4-D2B35D9C8D93", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1534, - "minor_version": 40, - "revision_version": 2 - }, - { - "image_addr": 9271627776, - "image_vmaddr": 8726581248, - "image_size": 20476, - "name": "/usr/lib/system/libsystem_collections.dylib", - "uuid": "A4787C1A-C552-35BD-8A87-D0A3FD18A139", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1534, - "minor_version": 40, - "revision_version": 2 - }, - { - "image_addr": 8421576704, - "image_vmaddr": 7876530176, - "image_size": 20476, - "name": "/usr/lib/system/libsystem_configuration.dylib", - "uuid": "87AA5A56-632C-3239-8F9A-5AE55087EC1E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1241, - "minor_version": 60, - "revision_version": 3 - }, - { - "image_addr": 8188010496, - "image_vmaddr": 7642963968, - "image_size": 204800, - "name": "/usr/lib/system/libsystem_containermanager.dylib", - "uuid": "53ED7AB0-F804-30AB-9620-6D18576429D8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7227334656, - "image_vmaddr": 6682288128, - "image_size": 12284, - "name": "/usr/lib/system/libsystem_coreservices.dylib", - "uuid": "F648EB18-3B55-3609-A1FD-3A1FA4EB8281", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 129, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8421597184, - "image_vmaddr": 7876550656, - "image_size": 45056, - "name": "/usr/lib/system/libsystem_darwin.dylib", - "uuid": "28513438-1492-35C1-95D8-187DAA4DBC93", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8420384768, - "image_vmaddr": 7875338240, - "image_size": 36864, - "name": "/usr/lib/system/libsystem_dnssd.dylib", - "uuid": "9E07228F-7CA1-3AA8-B01A-ECE803E4B9F3", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1790, - "minor_version": 60, - "revision_version": 24 - }, - { - "image_addr": 8145559552, - "image_vmaddr": 7600513024, - "image_size": 12284, - "name": "/usr/lib/system/libsystem_featureflags.dylib", - "uuid": "82974BFB-73D8-3D35-9C57-7B6972FA67D6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 71, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7345070080, - "image_vmaddr": 6800023552, - "image_size": 155648, - "name": "/usr/lib/system/libsystem_info.dylib", - "uuid": "BAF0A5DB-4A7F-3790-8781-5E2C48194832", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8421081088, - "image_vmaddr": 7876034560, - "image_size": 229352, - "name": "/usr/lib/system/libsystem_m.dylib", - "uuid": "7FAF6F58-517D-34E4-951A-53B96926E519", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3226, - "minor_version": 0, - "revision_version": 1 - }, - { - "image_addr": 7343398912, - "image_vmaddr": 6798352384, - "image_size": 147456, - "name": "/usr/lib/system/libsystem_malloc.dylib", - "uuid": "D583161F-E37C-311E-A3EB-9CA5B4AC578A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 409, - "minor_version": 60, - "revision_version": 4 - }, - { - "image_addr": 7495409664, - "image_vmaddr": 6950363136, - "image_size": 114676, - "name": "/usr/lib/system/libsystem_networkextension.dylib", - "uuid": "63AECBCC-A313-363E-9B7A-1F24AA8BB0B2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7736672256, - "image_vmaddr": 7191625728, - "image_size": 45048, - "name": "/usr/lib/system/libsystem_notify.dylib", - "uuid": "13CD57C8-F279-3CB0-A7E9-0443B3236DBA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 306, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8420364288, - "image_vmaddr": 7875317760, - "image_size": 20468, - "name": "/usr/lib/system/libsystem_sandbox.dylib", - "uuid": "2B6DF560-412B-308C-AF2D-285465222A1A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1845, - "minor_version": 60, - "revision_version": 8 - }, - { - "image_addr": 8145317888, - "image_vmaddr": 7600271360, - "image_size": 241652, - "name": "/usr/lib/system/libsystem_kernel.dylib", - "uuid": "96473C26-5219-3DE9-87C2-02B9C4CBAF39", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 8792, - "minor_version": 60, - "revision_version": 51 - }, - { - "image_addr": 8420421632, - "image_vmaddr": 7875375104, - "image_size": 28660, - "name": "/usr/lib/system/libsystem_platform.dylib", - "uuid": "B94924B8-8290-38C4-8F83-3F0DE8542C14", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 288, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8421031936, - "image_vmaddr": 7875985408, - "image_size": 49152, - "name": "/usr/lib/system/libsystem_pthread.dylib", - "uuid": "7F4C3946-4F85-3BB7-B08D-05F2FA4AE964", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 514, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8096763904, - "image_vmaddr": 7551717376, - "image_size": 36856, - "name": "/usr/lib/system/libsystem_symptoms.dylib", - "uuid": "9A5471D8-7E10-31D5-84FC-A1BC9E0ECC78", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7494369280, - "image_vmaddr": 6949322752, - "image_size": 106496, - "name": "/usr/lib/system/libsystem_trace.dylib", - "uuid": "F7714C31-A962-33CF-A14D-5706B274D00A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1406, - "minor_version": 0, - "revision_version": 15 - }, - { - "image_addr": 8420302848, - "image_vmaddr": 7875256320, - "image_size": 45056, - "name": "/usr/lib/system/libunwind.dylib", - "uuid": "8430DFCC-6C7B-3619-84AE-781DE2FAA58F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 202, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 8421310464, - "image_vmaddr": 7876263936, - "image_size": 266240, - "name": "/usr/lib/system/libxpc.dylib", - "uuid": "6CCE8B9A-1DAA-3E9B-B604-31098593EF33", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2462, - "minor_version": 60, - "revision_version": 14 - }, - { - "image_addr": 8420204544, - "image_vmaddr": 7875158016, - "image_size": 98300, - "name": "/usr/lib/libc++abi.dylib", - "uuid": "94CAB44E-88C8-3105-B294-B4A84CB37CF5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1300, - "minor_version": 36, - "revision_version": 0 - }, - { - "image_addr": 7592939520, - "image_vmaddr": 7047892992, - "image_size": 299008, - "name": "/System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout", - "uuid": "85779EDD-7775-3AD1-9187-859DE7DC32E5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 29, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8691630080, - "image_vmaddr": 8146583552, - "image_size": 839620, - "name": "/usr/lib/libcompression.dylib", - "uuid": "273543EC-7975-3C35-A7D3-8E8F71568815", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7121158144, - "image_vmaddr": 6576111616, - "image_size": 3973120, - "name": "/System/Library/Frameworks/CFNetwork.framework/CFNetwork", - "uuid": "BCB4A944-3FF3-3CC3-B2F9-546B6D632301", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1402, - "minor_version": 0, - "revision_version": 5 - }, - { - "image_addr": 8366325760, - "image_vmaddr": 7821279232, - "image_size": 552948, - "name": "/usr/lib/libarchive.2.dylib", - "uuid": "3536ACEE-F471-37B4-B958-66EC18A0D052", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 9, - "minor_version": 2, - "revision_version": 0 - }, - { - "image_addr": 7249330176, - "image_vmaddr": 6704283648, - "image_size": 2822144, - "name": "/usr/lib/libicucore.A.dylib", - "uuid": "554ABBE3-39F7-3DF2-8B43-E66A8426DDEF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 70, - "minor_version": 1, - "revision_version": 0 - }, - { - "image_addr": 7757815808, - "image_vmaddr": 7212769280, - "image_size": 970740, - "name": "/usr/lib/libxml2.2.dylib", - "uuid": "DD140B09-99ED-3641-898A-7E7876A9779C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 10, - "minor_version": 9, - "revision_version": 0 - }, - { - "image_addr": 8692477952, - "image_vmaddr": 8147431424, - "image_size": 8192, - "name": "/usr/lib/liblangid.dylib", - "uuid": "BE110698-4CDD-33B7-BF1A-F18FA12B317B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7236509696, - "image_vmaddr": 6691463168, - "image_size": 774144, - "name": "/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit", - "uuid": "DE4734D2-FF9C-3181-9F4F-320480E230BA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 275, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7245357056, - "image_vmaddr": 6700310528, - "image_size": 1376248, - "name": "/System/Library/Frameworks/Combine.framework/Combine", - "uuid": "0840D070-2661-3DED-8049-2A079B2C99E1", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 310, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9331449856, - "image_vmaddr": 8786403328, - "image_size": 4092, - "name": "/System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking", - "uuid": "FBC633A1-23D9-3F69-A474-101F4E596C5A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 44, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8691445760, - "image_vmaddr": 8146399232, - "image_size": 49152, - "name": "/usr/lib/swift/libswiftXPC.dylib", - "uuid": "20260FB2-19DA-358F-8026-83A160D70932", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7274577920, - "image_vmaddr": 6729531392, - "image_size": 372728, - "name": "/usr/lib/swift/libswift_Concurrency.dylib", - "uuid": "E8A871CE-C094-3EB6-BFAC-E6D15FFE75E8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 5, - "minor_version": 7, - "revision_version": 1 - }, - { - "image_addr": 8371253248, - "image_vmaddr": 7826206720, - "image_size": 720892, - "name": "/usr/lib/swift/libswift_StringProcessing.dylib", - "uuid": "360EE16F-34A9-3406-AB95-E42464F51A08", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7005609984, - "image_vmaddr": 6460563456, - "image_size": 208896, - "name": "/System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal", - "uuid": "0348F150-4999-3374-9EEB-B67ED82E14FD", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 483, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9246560256, - "image_vmaddr": 8701513728, - "image_size": 102388, - "name": "/usr/lib/liblzma.5.dylib", - "uuid": "F5839732-2747-303B-8E5B-4273F623D697", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 7234883584, - "image_vmaddr": 6689837056, - "image_size": 1626112, - "name": "/System/Library/Frameworks/Security.framework/Security", - "uuid": "1ABFE211-E145-3935-A5F7-4EC64E1AC086", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 60420, - "minor_version": 60, - "revision_version": 18 - }, - { - "image_addr": 8692486144, - "image_vmaddr": 8147439616, - "image_size": 98300, - "name": "/usr/lib/libapple_nghttp2.dylib", - "uuid": "F3647B6A-5C48-3992-84DD-FCFABAD071AA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 47, - "revision_version": 0 - }, - { - "image_addr": 9075425280, - "image_vmaddr": 8530378752, - "image_size": 4096, - "name": "/usr/lib/libnetwork.dylib", - "uuid": "7907E9DD-568B-3B69-BC63-C752F1DFB711", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7716298752, - "image_vmaddr": 7171252224, - "image_size": 1703932, - "name": "/usr/lib/libsqlite3.dylib", - "uuid": "DE69D6CF-65DC-3869-BFD6-019706F139CE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 346, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7106797568, - "image_vmaddr": 6561751040, - "image_size": 14360576, - "name": "/System/Library/Frameworks/Network.framework/Network", - "uuid": "437DA3E4-8B93-3E6C-ABD3-378E9723FA37", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8692469760, - "image_vmaddr": 8147423232, - "image_size": 8192, - "name": "/usr/lib/libenergytrace.dylib", - "uuid": "9762F770-0EFA-36C3-9810-A30679DF2364", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8002478080, - "image_vmaddr": 7457431552, - "image_size": 69632, - "name": "/usr/lib/libbsm.0.dylib", - "uuid": "50BF596F-9107-3E53-BB21-59E2405BD71F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8691593216, - "image_vmaddr": 8146546688, - "image_size": 36864, - "name": "/usr/lib/libCoreEntitlements.dylib", - "uuid": "ABD48A0E-493A-3EF6-BBE4-775D5999D2D0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8421650432, - "image_vmaddr": 7876603904, - "image_size": 167936, - "name": "/System/Library/PrivateFrameworks/MessageSecurity.framework/MessageSecurity", - "uuid": "22DB4DE5-13ED-377F-AEE6-BE4EFFDA9725", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7626768384, - "image_vmaddr": 7081721856, - "image_size": 106496, - "name": "/System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer", - "uuid": "5468EBA0-8987-39D7-A44A-7C4228CD12F4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 294, - "minor_version": 30, - "revision_version": 6 - }, - { - "image_addr": 8691494912, - "image_vmaddr": 8146448384, - "image_size": 98300, - "name": "/usr/lib/libcoretls.dylib", - "uuid": "50373784-1961-37B0-8A8C-EB4C9261FC82", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 183, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9272012800, - "image_vmaddr": 8726966272, - "image_size": 8192, - "name": "/usr/lib/libcoretls_cfhelpers.dylib", - "uuid": "5BD43C59-4DB5-3935-88CF-04CE26CBA80F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 183, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7489687552, - "image_vmaddr": 6944641024, - "image_size": 466944, - "name": "/usr/lib/libMobileGestalt.dylib", - "uuid": "759C8F09-8169-3564-87EA-6DCB1439CCB9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8690675712, - "image_vmaddr": 8145629184, - "image_size": 24572, - "name": "/usr/lib/libheimdal-asn1.dylib", - "uuid": "937674C9-3372-3BE0-B879-0721F4D4F9B6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8421818368, - "image_vmaddr": 7876771840, - "image_size": 217080, - "name": "/usr/lib/libpcap.A.dylib", - "uuid": "9E33D474-69D3-380A-95E4-3081A02B22D4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8422035456, - "image_vmaddr": 7876988928, - "image_size": 40953, - "name": "/usr/lib/libdns_services.dylib", - "uuid": "DEB447D6-3290-3151-8F10-B1EFA01E38AF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7815962624, - "image_vmaddr": 7270916096, - "image_size": 57344, - "name": "/System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer", - "uuid": "6D4CA45B-07F9-363D-B513-AF2B0B74A069", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7613091840, - "image_vmaddr": 7068045312, - "image_size": 90112, - "name": "/System/Library/Frameworks/IOSurface.framework/IOSurface", - "uuid": "F12E1B87-789D-3234-94AF-5B514DBC57A3", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8692625408, - "image_vmaddr": 8147578880, - "image_size": 53248, - "name": "/usr/lib/libbz2.1.0.dylib", - "uuid": "BA29AE7E-FCA7-39FC-A57A-6E7D1461AD3A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 8 - }, - { - "image_addr": 8689680384, - "image_vmaddr": 8144633856, - "image_size": 995316, - "name": "/usr/lib/libiconv.2.dylib", - "uuid": "FFEEAD45-37AF-38FB-A784-1F3E21CCF225", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 7, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8691441664, - "image_vmaddr": 8146395136, - "image_size": 4096, - "name": "/usr/lib/libcharset.1.dylib", - "uuid": "85CB7383-D295-3F26-8E01-6DD28745993E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8690700288, - "image_vmaddr": 8145653760, - "image_size": 741364, - "name": "/usr/lib/swift/libswift_RegexParser.dylib", - "uuid": "E55693C5-22BE-3246-98DC-11CBA4F9A7A6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715046912, - "image_vmaddr": 8170000384, - "image_size": 4096, - "name": "/System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics", - "uuid": "CB090E08-D9F8-37D6-A841-9D7E2C20148C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 91, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715227136, - "image_vmaddr": 8170180608, - "image_size": 12284, - "name": "/usr/lib/libapp_launch_measurement.dylib", - "uuid": "F89A4C07-5FD0-3D2D-8D03-03E605DF8800", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7613181952, - "image_vmaddr": 7068135424, - "image_size": 184320, - "name": "/System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics", - "uuid": "A41B07B2-F23B-3891-B38B-C652F7662934", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713203712, - "image_vmaddr": 8168157184, - "image_size": 57344, - "name": "/usr/lib/libperfcheck.dylib", - "uuid": "2104DCB8-3E28-3CDF-983C-99DDA86A8630", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7883755520, - "image_vmaddr": 7338708992, - "image_size": 53248, - "name": "/System/Library/PrivateFrameworks/perfdata.framework/perfdata", - "uuid": "F54CA785-40C7-31E3-B577-CB2C687ABFA1", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 94, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713261056, - "image_vmaddr": 8168214528, - "image_size": 36860, - "name": "/usr/lib/libIOReport.dylib", - "uuid": "22AE95F3-6118-3EEC-9F80-BC3F8EF3248F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8692678656, - "image_vmaddr": 8147632128, - "image_size": 151552, - "name": "/System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce", - "uuid": "9445CE3A-18F0-3F4D-A08D-C7E9C3E3499D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7743365120, - "image_vmaddr": 7198318592, - "image_size": 81920, - "name": "/System/Library/PrivateFrameworks/HangTracer.framework/HangTracer", - "uuid": "9DCE0CB8-29A5-305C-ABD9-A2F28EBE2903", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 230, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715014144, - "image_vmaddr": 8169967616, - "image_size": 32768, - "name": "/System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing", - "uuid": "BEED7EEA-8A6B-3E1C-A68B-3C00E4D97AA4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8086278144, - "image_vmaddr": 7541231616, - "image_size": 98304, - "name": "/System/Library/PrivateFrameworks/libEDR.framework/libEDR", - "uuid": "A5DB557F-7E28-3CA8-82CC-E15BC45EBA93", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7328456704, - "image_vmaddr": 6783410176, - "image_size": 352256, - "name": "/System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices", - "uuid": "6024BE15-3680-389A-B5CD-8766BC017A8D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 60, - "revision_version": 5 - }, - { - "image_addr": 9049878528, - "image_vmaddr": 8504832000, - "image_size": 4096, - "name": "/System/Library/Frameworks/Accelerate.framework/Accelerate", - "uuid": "8BE2ED06-BFA3-3150-89C1-3B666F6D3FAC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 4, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8245174272, - "image_vmaddr": 7700127744, - "image_size": 86016, - "name": "/System/Library/PrivateFrameworks/DiagnosticRequest.framework/DiagnosticRequest", - "uuid": "CA3ACE34-6670-3F00-B949-16743786DD20", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7131860992, - "image_vmaddr": 6586814464, - "image_size": 6348788, - "name": "/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics", - "uuid": "C0A89DCA-3E30-3A39-95A9-275BA86825A9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1690, - "minor_version": 3, - "revision_version": 1 - }, - { - "image_addr": 7130009600, - "image_vmaddr": 6584963072, - "image_size": 1851392, - "name": "/System/Library/Frameworks/CoreText.framework/CoreText", - "uuid": "9C205476-4E0A-3053-A622-2390EC2D5C6F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7581634560, - "image_vmaddr": 7036588032, - "image_size": 286720, - "name": "/System/Library/Frameworks/CoreVideo.framework/CoreVideo", - "uuid": "E5E2250D-6D75-3149-9564-8EEC4CD0985D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 5, - "revision_version": 0 - }, - { - "image_addr": 7189815296, - "image_vmaddr": 6644768768, - "image_size": 4841472, - "name": "/System/Library/Frameworks/ImageIO.framework/ImageIO", - "uuid": "F7401F36-9070-34D5-8194-54B0C9B4AD59", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8712421376, - "image_vmaddr": 8167374848, - "image_size": 16384, - "name": "/System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator", - "uuid": "94FB62B1-1881-329D-8872-2288FC3496B5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7015821312, - "image_vmaddr": 6470774784, - "image_size": 1867776, - "name": "/System/Library/Frameworks/Metal.framework/Metal", - "uuid": "85AE8FD2-045B-3F83-BD2D-0DFCA189A3E2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 306, - "minor_version": 3, - "revision_version": 3 - }, - { - "image_addr": 8715051008, - "image_vmaddr": 8170004480, - "image_size": 40960, - "name": "/System/Library/Frameworks/OpenGLES.framework/OpenGLES", - "uuid": "A3354BFA-DC36-3438-B1DA-880931C248A5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7527600128, - "image_vmaddr": 6982553600, - "image_size": 159744, - "name": "/System/Library/PrivateFrameworks/PowerLog.framework/PowerLog", - "uuid": "0051D9D5-81FC-3F53-8EC8-00EE74CC3EDB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7227346944, - "image_vmaddr": 6682300416, - "image_size": 8192, - "name": "/System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary", - "uuid": "4922AA4C-AB90-3462-93D1-A41D4A83F23B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7017689088, - "image_vmaddr": 6472642560, - "image_size": 2043904, - "name": "/System/Library/Frameworks/CoreServices.framework/CoreServices", - "uuid": "22956E2A-6884-339E-ABAD-9CEAC84BDED0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1228, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7849701376, - "image_vmaddr": 7304654848, - "image_size": 798720, - "name": "/System/Library/PrivateFrameworks/InstalledContentLibrary.framework/InstalledContentLibrary", - "uuid": "10461BEC-F229-37D5-B910-6360A5C89DDC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7614418944, - "image_vmaddr": 7069372416, - "image_size": 229376, - "name": "/System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore", - "uuid": "A391B517-659B-394E-8D87-187238FD71A4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1141, - "minor_version": 1, - "revision_version": 0 - }, - { - "image_addr": 8693215232, - "image_vmaddr": 8148168704, - "image_size": 24576, - "name": "/System/Library/PrivateFrameworks/AppleMobileFileIntegrity.framework/AppleMobileFileIntegrity", - "uuid": "A7DA00EF-D805-3D66-9072-053D8072B94C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8693239808, - "image_vmaddr": 8148193280, - "image_size": 81920, - "name": "/usr/lib/libmis.dylib", - "uuid": "9695F16F-F088-3265-9498-D7C056FB9F15", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8693321728, - "image_vmaddr": 8148275200, - "image_size": 28672, - "name": "/System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices", - "uuid": "BE8C5DC7-573B-3752-95C6-6683CBC565CE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7813681152, - "image_vmaddr": 7268634624, - "image_size": 1675264, - "name": "/System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness", - "uuid": "1A0C57C6-80BD-3589-AB29-1842344B64EC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7294349312, - "image_vmaddr": 6749302784, - "image_size": 208896, - "name": "/usr/lib/libAccessibility.dylib", - "uuid": "C5CB486B-0323-36D8-BC73-721BA27EDA33", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8237031424, - "image_vmaddr": 7691984896, - "image_size": 32768, - "name": "/System/Library/PrivateFrameworks/AFKUser.framework/AFKUser", - "uuid": "AEDA8846-47C5-3931-8A8C-76B3E9EBBA37", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7743447040, - "image_vmaddr": 7198400512, - "image_size": 245760, - "name": "/System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories", - "uuid": "5BF66130-5996-30CD-84B8-EBB8E8DC1985", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715124736, - "image_vmaddr": 8170078208, - "image_size": 61440, - "name": "/System/Library/PrivateFrameworks/SystemWake.framework/SystemWake", - "uuid": "F67D63A1-0404-3016-9C5C-A5CDA5867429", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8237924352, - "image_vmaddr": 7692877824, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/CPMS.framework/CPMS", - "uuid": "1C65EF79-A0C9-32E9-BD53-C6419C22CC9C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7288549376, - "image_vmaddr": 6743502848, - "image_size": 565248, - "name": "/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices", - "uuid": "BB8B1A9F-2572-3FB2-8498-91357FC09704", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9069514752, - "image_vmaddr": 8524468224, - "image_size": 4096, - "name": "/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices", - "uuid": "609FD7AF-C1B2-3B41-9F35-A24F5927DBDA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1228, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8086032384, - "image_vmaddr": 7540985856, - "image_size": 36864, - "name": "/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices", - "uuid": "EE18D681-97AC-3FE8-BA47-8613EA5C5BD6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 14, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8237064192, - "image_vmaddr": 7692017664, - "image_size": 69632, - "name": "/System/Library/PrivateFrameworks/HID.framework/HID", - "uuid": "D8BCAA49-77D0-3C69-A28E-8AA5EDE0B49A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7227908096, - "image_vmaddr": 6682861568, - "image_size": 737280, - "name": "/System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard", - "uuid": "727D7804-2767-3204-A0C3-3B704B52041E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7758786560, - "image_vmaddr": 7213740032, - "image_size": 1433600, - "name": "/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib", - "uuid": "9EB67833-83E4-3CED-97C8-4D6DC112AD6A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8712437760, - "image_vmaddr": 8167391232, - "image_size": 45052, - "name": "/System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib", - "uuid": "D30D46AE-E2F1-3C1B-A08C-EDF5150994FB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7194656768, - "image_vmaddr": 6649610240, - "image_size": 3420128, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage", - "uuid": "2BAD4817-BD73-3111-9929-562900AFBB9F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 575, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9081102336, - "image_vmaddr": 8536055808, - "image_size": 4096, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib", - "uuid": "0D97514A-7DF0-334A-AE99-BFAD5DA8C6C7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 818, - "minor_version": 60, - "revision_version": 3 - }, - { - "image_addr": 9357586432, - "image_vmaddr": 8812539904, - "image_size": 380908, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib", - "uuid": "9BEC2231-F5AC-38B5-8722-6B2A29EBD9F9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 818, - "minor_version": 60, - "revision_version": 3 - }, - { - "image_addr": 8697090048, - "image_vmaddr": 8152043520, - "image_size": 962556, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib", - "uuid": "C22F7DCA-9ACC-3146-8A62-5513384DE1AA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8694063104, - "image_vmaddr": 8149016576, - "image_size": 2863100, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib", - "uuid": "74C625DC-8346-3EAC-B457-F187A077CB4B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8698052608, - "image_vmaddr": 8153006080, - "image_size": 5062628, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib", - "uuid": "1046764B-7923-398B-8FB1-555D45BC6C1D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8697004032, - "image_vmaddr": 8151957504, - "image_size": 86016, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib", - "uuid": "B8B76189-2F0F-349D-ABD2-9F0909256DD7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8696926208, - "image_vmaddr": 8151879680, - "image_size": 77824, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib", - "uuid": "67F57FFF-BF48-30F5-A822-1DFC00ACF242", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9321758720, - "image_vmaddr": 8776712192, - "image_size": 20476, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib", - "uuid": "86B33826-E9F9-3938-80A9-D544D3DE71CC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8705998848, - "image_vmaddr": 8160952320, - "image_size": 6131688, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib", - "uuid": "89F5C08F-540C-3258-82B6-C72758D6561A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8693641216, - "image_vmaddr": 8148594688, - "image_size": 421880, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib", - "uuid": "E207854C-4D23-32F9-BD78-11609A7744F8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8703115264, - "image_vmaddr": 8158068736, - "image_size": 2883584, - "name": "/System/Library/PrivateFrameworks/MIL.framework/MIL", - "uuid": "E90CD905-B9CE-3F03-814E-C3A24D3308DC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 4, - "minor_version": 28, - "revision_version": 4 - }, - { - "image_addr": 8712130560, - "image_vmaddr": 8167084032, - "image_size": 290808, - "name": "/System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG", - "uuid": "E94733BD-2373-3068-BFBD-D6A63973EECA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9053429760, - "image_vmaddr": 8508383232, - "image_size": 110588, - "name": "/usr/lib/libexpat.1.dylib", - "uuid": "41F83F59-7953-3E91-918C-4A6CEA9AC2E9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 8, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7244423168, - "image_vmaddr": 6699376640, - "image_size": 835580, - "name": "/System/Library/Frameworks/ColorSync.framework/ColorSync", - "uuid": "0060BB8B-4F11-3D45-AC22-F7BE584C3AE9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8712482816, - "image_vmaddr": 8167436288, - "image_size": 598016, - "name": "/usr/lib/libate.dylib", - "uuid": "C951FDAF-0B26-32F2-B8C0-F781A1CFB3DC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3, - "minor_version": 0, - "revision_version": 7 - }, - { - "image_addr": 7883509760, - "image_vmaddr": 7338463232, - "image_size": 28668, - "name": "/System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator", - "uuid": "18C66DE2-AA65-3C0D-9B43-F364048B6B3C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8693350400, - "image_vmaddr": 8148303872, - "image_size": 290816, - "name": "/usr/lib/libllvm-flatbuffers.dylib", - "uuid": "B16F6937-8F87-3BB4-AD62-2CB6DBE659AB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9075396608, - "image_vmaddr": 8530350080, - "image_size": 28664, - "name": "/System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib", - "uuid": "50ADB9C7-D88A-3170-84D3-55C80F8891A9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9261887488, - "image_vmaddr": 8716840960, - "image_size": 20480, - "name": "/System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libGPUCompilerUtils.dylib", - "uuid": "AF0240CF-E4FB-3981-A2FF-5AA8BCC50FB2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 31001, - "minor_version": 255, - "revision_version": 1 - }, - { - "image_addr": 8713793536, - "image_vmaddr": 8168747008, - "image_size": 36864, - "name": "/System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices", - "uuid": "FEB901DF-1094-306A-8DB0-BF6059239796", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7476764672, - "image_vmaddr": 6931718144, - "image_size": 352256, - "name": "/System/Library/PrivateFrameworks/BoardServices.framework/BoardServices", - "uuid": "FB50F165-00A5-38B8-9893-FBAB7B8EB0EB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7476080640, - "image_vmaddr": 6931034112, - "image_size": 684032, - "name": "/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices", - "uuid": "1E697AFA-FDA9-37C1-828A-40A1BCF4D009", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7227355136, - "image_vmaddr": 6682308608, - "image_size": 552960, - "name": "/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices", - "uuid": "540F736D-F791-3E94-873F-BE0FA92E7F13", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7757582336, - "image_vmaddr": 7212535808, - "image_size": 176128, - "name": "/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation", - "uuid": "1132A5E8-C571-3185-A12D-13018F4B3096", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7757758464, - "image_vmaddr": 7212711936, - "image_size": 57344, - "name": "/System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices", - "uuid": "90976B99-A07F-3DC8-8B4D-B5CEC81CE4EA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 60, - "revision_version": 5 - }, - { - "image_addr": 8713392128, - "image_vmaddr": 8168345600, - "image_size": 401404, - "name": "/System/Library/PrivateFrameworks/Bom.framework/Bom", - "uuid": "5CC990E5-4EF1-3363-BF40-02C906267B8B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 195, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713080832, - "image_vmaddr": 8168034304, - "image_size": 65508, - "name": "/System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression", - "uuid": "C2562307-F3F8-3866-9D89-22EB5D92FB3C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 145, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713830400, - "image_vmaddr": 8168783872, - "image_size": 421828, - "name": "/usr/lib/libParallelCompression.dylib", - "uuid": "707119C0-C404-3D85-A66E-E19858BC40C6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7532482560, - "image_vmaddr": 6987436032, - "image_size": 40960, - "name": "/System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib", - "uuid": "1E10E409-4146-3CAC-BC62-1B2E4646CEEB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7756640256, - "image_vmaddr": 7211593728, - "image_size": 65536, - "name": "/System/Library/PrivateFrameworks/FontServices.framework/FontServices", - "uuid": "21E4F94A-5B14-3712-8990-8517ED54A802", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9139404800, - "image_vmaddr": 8594358272, - "image_size": 262144, - "name": "/System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib", - "uuid": "9DE5C629-461D-3958-B72E-68FC3A1FAAD8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7883239424, - "image_vmaddr": 7338192896, - "image_size": 270336, - "name": "/System/Library/PrivateFrameworks/OTSVG.framework/OTSVG", - "uuid": "C5DA3411-428C-3543-89E2-BA53307DFEF2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7457591296, - "image_vmaddr": 6912544768, - "image_size": 81920, - "name": "/System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers", - "uuid": "91538C0A-7D8D-39C5-8466-B86B0F50C6FA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 709, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7289114624, - "image_vmaddr": 6744068096, - "image_size": 143360, - "name": "/System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities", - "uuid": "EFBC8CD3-6C19-36D9-A933-AF2E597D75B0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7816019968, - "image_vmaddr": 7270973440, - "image_size": 65532, - "name": "/System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility", - "uuid": "4E635EE4-C7A0-3697-B45E-2BEEB0494117", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 62, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715186176, - "image_vmaddr": 8170139648, - "image_size": 40956, - "name": "/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib", - "uuid": "16771749-7C04-332F-9224-841BC0C4AF26", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715239424, - "image_vmaddr": 8170192896, - "image_size": 241664, - "name": "/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib", - "uuid": "EC62500B-1B44-31EC-9897-84A81A832DAA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715091968, - "image_vmaddr": 8170045440, - "image_size": 8192, - "name": "/System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib", - "uuid": "422B68F1-F714-3522-8C25-B7994127D55E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715100160, - "image_vmaddr": 8170053632, - "image_size": 24572, - "name": "/System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib", - "uuid": "26B485CF-C280-367A-83CE-8D78A9A83150", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8739618816, - "image_vmaddr": 8194572288, - "image_size": 303104, - "name": "/System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager", - "uuid": "DCE0296C-385B-36D3-8969-6E0F0C73157E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 280, - "minor_version": 3, - "revision_version": 3 - }, - { - "image_addr": 7553384448, - "image_vmaddr": 7008337920, - "image_size": 1515520, - "name": "/System/Library/Frameworks/FileProvider.framework/FileProvider", - "uuid": "A7986DBB-1523-31B9-8CFA-4839DCE86022", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7138209792, - "image_vmaddr": 6593163264, - "image_size": 25067520, - "name": "/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore", - "uuid": "5F83A575-2862-390F-B15F-D06C182C43C2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6206, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7522471936, - "image_vmaddr": 6977425408, - "image_size": 1036288, - "name": "/System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet", - "uuid": "C356A7C1-A7B7-3CCC-97BC-EF5628D35724", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1852, - "minor_version": 1, - "revision_version": 2 - }, - { - "image_addr": 8317976576, - "image_vmaddr": 7772930048, - "image_size": 598016, - "name": "/System/Library/PrivateFrameworks/PrintKitUI.framework/PrintKitUI", - "uuid": "7F533E98-00FE-303C-B215-70AEAB93B3CA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 15, - "minor_version": 1, - "revision_version": 0 - }, - { - "image_addr": 7684726784, - "image_vmaddr": 7139680256, - "image_size": 331776, - "name": "/System/Library/PrivateFrameworks/IconServices.framework/IconServices", - "uuid": "4FE7A7B2-EC3C-3CDC-B4B9-CEF56AF276B0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 552, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8254009344, - "image_vmaddr": 7708962816, - "image_size": 86016, - "name": "/usr/lib/libprequelite.dylib", - "uuid": "B5AED929-E5AE-3FF6-B5A9-4D3FDC3E8F5F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 125, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8739921920, - "image_vmaddr": 8194875392, - "image_size": 192512, - "name": "/System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore", - "uuid": "2624289E-91E3-3A2A-8275-A5DF1C0D4A5E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 280, - "minor_version": 3, - "revision_version": 3 - }, - { - "image_addr": 7579295744, - "image_vmaddr": 7034249216, - "image_size": 1855488, - "name": "/System/Library/PrivateFrameworks/Sharing.framework/Sharing", - "uuid": "29DF7240-1F7B-3389-8F84-0B0BC001BE25", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1852, - "minor_version": 1, - "revision_version": 2 - }, - { - "image_addr": 7288262656, - "image_vmaddr": 6743216128, - "image_size": 286720, - "name": "/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport", - "uuid": "EEEC759B-F8B5-36E9-883E-8EE9901A0DF2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 29, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7347130368, - "image_vmaddr": 6802083840, - "image_size": 3457024, - "name": "/System/Library/Frameworks/CoreImage.framework/CoreImage", - "uuid": "5B07CF09-7944-3F76-BAAD-5EC9FE1B54F2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 5, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7272996864, - "image_vmaddr": 6727950336, - "image_size": 1581056, - "name": "/System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils", - "uuid": "1B3C61D9-EEF1-3BAC-B3D5-13932F64D81B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7274950656, - "image_vmaddr": 6729904128, - "image_size": 1277952, - "name": "/System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation", - "uuid": "DA37928B-441C-3C6E-8F7E-C182C194AA2C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 856, - "minor_version": 2, - "revision_version": 0 - }, - { - "image_addr": 8401219584, - "image_vmaddr": 7856173056, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/CollectionViewCore.framework/CollectionViewCore", - "uuid": "0F3E2B93-B9F6-34BA-8DE9-9CD3A90C19EE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8725716992, - "image_vmaddr": 8180670464, - "image_size": 36864, - "name": "/System/Library/Frameworks/PushKit.framework/PushKit", - "uuid": "D5296D8C-2D0E-380B-9D8E-B1018E4E7A6B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8730492928, - "image_vmaddr": 8185446400, - "image_size": 20480, - "name": "/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap", - "uuid": "6A11919D-9AAD-3EE4-86DF-30F584696097", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 21240, - "minor_version": 2, - "revision_version": 0 - }, - { - "image_addr": 8316239872, - "image_vmaddr": 7771193344, - "image_size": 1736704, - "name": "/System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy", - "uuid": "005188C2-EC3B-33D5-98E9-B397AA717DFB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 614, - "minor_version": 3, - "revision_version": 4 - }, - { - "image_addr": 7529656320, - "image_vmaddr": 6984609792, - "image_size": 1155072, - "name": "/System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration", - "uuid": "490D92EB-5C41-338F-AA0D-1F5E15185CC2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7799951360, - "image_vmaddr": 7254904832, - "image_size": 233472, - "name": "/System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag", - "uuid": "5D190FAC-3337-3518-B8B0-63E798DBF4F3", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7288188928, - "image_vmaddr": 6743142400, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices", - "uuid": "3A1BE799-739B-3833-B074-7917180FDDAF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7761686528, - "image_vmaddr": 7216640000, - "image_size": 217088, - "name": "/System/Library/PrivateFrameworks/BacklightServices.framework/BacklightServices", - "uuid": "AAFEAD3C-9B5A-3D92-9202-3C25612C8ABD", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8086069248, - "image_vmaddr": 7541022720, - "image_size": 40960, - "name": "/System/Library/PrivateFrameworks/StudyLog.framework/StudyLog", - "uuid": "A3F040AF-7398-32F4-B151-130924547EFC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7762497536, - "image_vmaddr": 7217451008, - "image_size": 98304, - "name": "/System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction", - "uuid": "D3B6CC84-A695-366D-BA69-7E750C2E7B8E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7686176768, - "image_vmaddr": 7141130240, - "image_size": 131072, - "name": "/System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial", - "uuid": "AC870211-C5D9-3221-A194-8CDDACC06F78", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7259291648, - "image_vmaddr": 6714245120, - "image_size": 221184, - "name": "/System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard", - "uuid": "68D080D0-D4CB-30AF-A252-5B06FEE79F0D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8730513408, - "image_vmaddr": 8185466880, - "image_size": 12288, - "name": "/System/Library/Frameworks/DataDetection.framework/DataDetection", - "uuid": "E26807DE-C0F7-39AA-89B3-732167373904", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 727, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7457423360, - "image_vmaddr": 6912376832, - "image_size": 167936, - "name": "/System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput", - "uuid": "6F782F25-B897-3D4C-BA61-F679FCBB6DAF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7651753984, - "image_vmaddr": 7106707456, - "image_size": 884736, - "name": "/System/Library/PrivateFrameworks/CMPhoto.framework/CMPhoto", - "uuid": "12252D97-6A73-3905-BE7C-D16BF94F6121", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7355129856, - "image_vmaddr": 6810083328, - "image_size": 14073856, - "name": "/System/Library/Frameworks/MediaToolbox.framework/MediaToolbox", - "uuid": "914C600C-6AC6-3C81-B4E7-ADFED0F9A399", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7494475776, - "image_vmaddr": 6949429248, - "image_size": 241664, - "name": "/System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore", - "uuid": "66B9AF8A-0868-3542-B9F2-22A244C00B32", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 727, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8716963840, - "image_vmaddr": 8171917312, - "image_size": 233472, - "name": "/System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG", - "uuid": "BFD15F77-ADB5-31DC-A9B7-B4FD8BFF9B79", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 232, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7528665088, - "image_vmaddr": 6983618560, - "image_size": 991232, - "name": "/System/Library/PrivateFrameworks/CoreUI.framework/CoreUI", - "uuid": "DBFE3697-76B8-3D1D-969D-6EF507BE24DA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 802, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7735513088, - "image_vmaddr": 7190466560, - "image_size": 458752, - "name": "/System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset", - "uuid": "6F244D09-D9E2-3AD8-A677-E908FD37A05D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8738803712, - "image_vmaddr": 8193757184, - "image_size": 319488, - "name": "/System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit", - "uuid": "CB3E34B8-956A-3565-8D86-22EC50E991FF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 38, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7878725632, - "image_vmaddr": 7333679104, - "image_size": 151552, - "name": "/System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools", - "uuid": "61A16EAA-30B9-3CDD-A3FB-2EBC7E671865", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7259512832, - "image_vmaddr": 6714466304, - "image_size": 716800, - "name": "/System/Library/PrivateFrameworks/TextInput.framework/TextInput", - "uuid": "EBD06EC0-F3DD-3A17-A578-CE2E0C657D36", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7324745728, - "image_vmaddr": 6779699200, - "image_size": 176128, - "name": "/System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices", - "uuid": "0266437D-F2E3-3470-B417-9CCC505AB554", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6206, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8251940864, - "image_vmaddr": 7706894336, - "image_size": 667648, - "name": "/System/Library/PrivateFrameworks/TextureIO.framework/TextureIO", - "uuid": "179C3FD0-3703-3786-82A0-2108814B6D46", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3, - "minor_version": 10, - "revision_version": 10 - }, - { - "image_addr": 8354725888, - "image_vmaddr": 7809679360, - "image_size": 45056, - "name": "/System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport", - "uuid": "B00B8A73-39CD-383E-A234-BE95B0309357", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 74, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7289257984, - "image_vmaddr": 6744211456, - "image_size": 2191360, - "name": "/System/Library/Frameworks/CoreMedia.framework/CoreMedia", - "uuid": "A7B88014-E6C2-3A81-BA3F-51CBC348E480", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7350587392, - "image_vmaddr": 6805540864, - "image_size": 4542464, - "name": "/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox", - "uuid": "2716506C-0561-30F7-B9B7-4F8EB674EC1A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8264261632, - "image_vmaddr": 7719215104, - "image_size": 49152, - "name": "/System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer", - "uuid": "293A73DF-27FC-3912-97A2-DE926F3755B6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8716902400, - "image_vmaddr": 8171855872, - "image_size": 4093, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders", - "uuid": "20E200F3-37E8-38CD-A86A-FE92501F2075", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 8715653120, - "image_vmaddr": 8170606592, - "image_size": 49152, - "name": "/System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore", - "uuid": "C03B0F74-EC0C-3971-A328-95387832EAE1", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714944512, - "image_vmaddr": 8169897984, - "image_size": 8192, - "name": "/System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient", - "uuid": "66C35BA5-73FE-38D5-A4BC-AA49D3BEB67F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 222, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7684407296, - "image_vmaddr": 7139360768, - "image_size": 45056, - "name": "/System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport", - "uuid": "51FE158E-FAF7-3BEE-82ED-770B1DC9B510", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7820066816, - "image_vmaddr": 7275020288, - "image_size": 6201344, - "name": "/System/Library/Frameworks/CoreAudio.framework/CoreAudio", - "uuid": "B7D94782-EE01-3B4B-A278-D613DE296950", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8692830208, - "image_vmaddr": 8147783680, - "image_size": 368628, - "name": "/System/Library/PrivateFrameworks/APFS.framework/APFS", - "uuid": "55BD714E-5E01-389B-9E76-8B71FF370A08", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8008880128, - "image_vmaddr": 7463833600, - "image_size": 163840, - "name": "/usr/lib/libtailspin.dylib", - "uuid": "D7087E45-5A47-3C8B-B0FB-79FE109EC61D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 139, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 7291449344, - "image_vmaddr": 6746402816, - "image_size": 2818048, - "name": "/System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore", - "uuid": "5A3FC30A-6B7C-35E2-A8E8-BCAF9301AD3F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7794028544, - "image_vmaddr": 7248982016, - "image_size": 40960, - "name": "/System/Library/PrivateFrameworks/CoreTime.framework/CoreTime", - "uuid": "3136D29A-B648-3443-A38B-29C63C1496AC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 311, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9213812736, - "image_vmaddr": 8668766208, - "image_size": 122876, - "name": "/System/Library/PrivateFrameworks/CoreUtilsExtras.framework/CoreUtilsExtras", - "uuid": "75D6D2ED-A74B-3778-9184-671EF18FDC06", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714457088, - "image_vmaddr": 8169410560, - "image_size": 335872, - "name": "/System/Library/PrivateFrameworks/IO80211.framework/IO80211", - "uuid": "F9887E72-7FF2-395A-BB52-C6C2787C711C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7883538432, - "image_vmaddr": 7338491904, - "image_size": 217088, - "name": "/System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi", - "uuid": "55AB6DF7-FE4A-3BFA-AB53-C68C2517C12B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8693198848, - "image_vmaddr": 8148152320, - "image_size": 16376, - "name": "/usr/lib/libutil.dylib", - "uuid": "95A43A33-4E2D-3306-B413-46EA4F7F8007", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7756705792, - "image_vmaddr": 7211659264, - "image_size": 827392, - "name": "/System/Library/PrivateFrameworks/CoreWiFi.framework/CoreWiFi", - "uuid": "DD2C8630-6F10-3B82-A8A1-EC9E7454B3BA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714792960, - "image_vmaddr": 8169746432, - "image_size": 49152, - "name": "/System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork", - "uuid": "0679C2F0-5D64-346A-B99A-80FB2C9BA8B3", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714252288, - "image_vmaddr": 8169205760, - "image_size": 204800, - "name": "/System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X", - "uuid": "0A2FC672-A5E4-3CBF-B072-871BE2A09A83", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7861739520, - "image_vmaddr": 7316692992, - "image_size": 159744, - "name": "/System/Library/PrivateFrameworks/WiFiPeerToPeer.framework/WiFiPeerToPeer", - "uuid": "57FC4921-283D-3693-9131-329BB6F637FE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7328047104, - "image_vmaddr": 6783000576, - "image_size": 409600, - "name": "/System/Library/Frameworks/ExtensionFoundation.framework/ExtensionFoundation", - "uuid": "169CB55F-D192-3AEF-90C7-3851ACA5807F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 97, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7302475776, - "image_vmaddr": 6757429248, - "image_size": 212992, - "name": "/System/Library/PrivateFrameworks/UserManagement.framework/UserManagement", - "uuid": "74BFAF12-ECFD-30CE-AE41-7F21C2EA4FB9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7592255488, - "image_vmaddr": 7047208960, - "image_size": 81906, - "name": "/System/Library/PrivateFrameworks/TCC.framework/TCC", - "uuid": "849B1624-A7A9-3842-93F6-151B57D89639", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7740567552, - "image_vmaddr": 7195521024, - "image_size": 225280, - "name": "/System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit", - "uuid": "15A8A40C-170F-31C4-A0A9-93F6691D6A3D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7125131264, - "image_vmaddr": 6580084736, - "image_size": 1343488, - "name": "/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony", - "uuid": "082EC5BD-13F3-31F8-91B1-A8A5C53E5792", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9331122176, - "image_vmaddr": 8786075648, - "image_size": 32764, - "name": "/usr/lib/libcupolicy.dylib", - "uuid": "20984F60-94B2-31A1-AFEA-C8F3E642D8ED", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7328808960, - "image_vmaddr": 6783762432, - "image_size": 565248, - "name": "/usr/lib/libTelephonyUtilDynamic.dylib", - "uuid": "091A434D-0C21-3CEA-A1AA-7AF92804C96B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7554899968, - "image_vmaddr": 7009853440, - "image_size": 122880, - "name": "/System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities", - "uuid": "65FB47DF-069A-3715-A1BD-C8DC69426CC1", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713297920, - "image_vmaddr": 8168251392, - "image_size": 28672, - "name": "/System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor", - "uuid": "8E2415C3-3DDF-3613-8D9E-2B2C8C9B87AE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7613366272, - "image_vmaddr": 7068319744, - "image_size": 299008, - "name": "/System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics", - "uuid": "864E8120-8865-3CD1-B153-27076F98A429", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7613665280, - "image_vmaddr": 7068618752, - "image_size": 753632, - "name": "/System/Library/PrivateFrameworks/Symbolication.framework/Symbolication", - "uuid": "8E31B78C-8DB4-3BB1-B61C-FB873C1F0FAF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 64556, - "minor_version": 3, - "revision_version": 1 - }, - { - "image_addr": 7800778752, - "image_vmaddr": 7255732224, - "image_size": 864244, - "name": "/System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication", - "uuid": "7A0E609B-93F8-35FC-98AB-9DB4EE4C5B3B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 64555, - "minor_version": 104, - "revision_version": 1 - }, - { - "image_addr": 7757533184, - "image_vmaddr": 7212486656, - "image_size": 49152, - "name": "/System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient", - "uuid": "C8CF640A-3519-3C43-80EB-C04ADEC2812D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713146368, - "image_vmaddr": 8168099840, - "image_size": 57344, - "name": "/System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging", - "uuid": "40853194-560C-315B-95E7-2EBB4FE016FB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8713326592, - "image_vmaddr": 8168280064, - "image_size": 65536, - "name": "/usr/lib/libpartition2_dynamic.dylib", - "uuid": "F58484FA-880B-3040-B91F-547F4DCAF281", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7294267392, - "image_vmaddr": 6749220864, - "image_size": 81920, - "name": "/usr/lib/libAudioStatistics.dylib", - "uuid": "1DFF034B-BA0A-394D-97B4-F84F64E15FD4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8715481088, - "image_vmaddr": 8170434560, - "image_size": 172032, - "name": "/System/Library/PrivateFrameworks/caulk.framework/caulk", - "uuid": "BED6BADD-B7D6-3DF9-8158-298D72A259F9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8263688192, - "image_vmaddr": 7718641664, - "image_size": 462848, - "name": "/System/Library/Frameworks/CoreMIDI.framework/CoreMIDI", - "uuid": "10E41DEF-5231-37C4-B824-863CF18474B9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 69, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7653322752, - "image_vmaddr": 7108276224, - "image_size": 217088, - "name": "/usr/lib/libAudioToolboxUtility.dylib", - "uuid": "3154F0E8-BDE3-3B92-891C-AD1B6A551F29", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7527174144, - "image_vmaddr": 6982127616, - "image_size": 425984, - "name": "/System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport", - "uuid": "0EFF4AD8-7CFB-3337-AF7B-38266B3C9E04", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1406, - "minor_version": 0, - "revision_version": 15 - }, - { - "image_addr": 7566618624, - "image_vmaddr": 7021572096, - "image_size": 311296, - "name": "/System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport", - "uuid": "B46DBAB6-851E-3553-B8D2-8CCAE5687F0F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 91, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8260706304, - "image_vmaddr": 7715659776, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport", - "uuid": "CCBF19C3-1C70-32EF-AC78-BEC7D5A25EA5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 71, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7741394944, - "image_vmaddr": 7196348416, - "image_size": 716800, - "name": "/System/Library/PrivateFrameworks/ktrace.framework/ktrace", - "uuid": "7F6EEE54-EC24-3820-88D7-4600B7650932", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 521, - "minor_version": 40, - "revision_version": 1 - }, - { - "image_addr": 7883808768, - "image_vmaddr": 7338762240, - "image_size": 1036288, - "name": "/System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis", - "uuid": "0FEE8663-AB70-3BCC-BBF6-FD43E9350CB7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 328, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714977280, - "image_vmaddr": 8169930752, - "image_size": 36860, - "name": "/System/Library/PrivateFrameworks/kperfdata.framework/kperfdata", - "uuid": "B03A640D-7959-35F2-9F54-35369BE37148", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8372310016, - "image_vmaddr": 7827263488, - "image_size": 28672, - "name": "/usr/lib/libdscsym.dylib", - "uuid": "BD249D85-7731-3251-9595-2019FADC7E30", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 328, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714952704, - "image_vmaddr": 8169906176, - "image_size": 24564, - "name": "/System/Library/PrivateFrameworks/kperf.framework/kperf", - "uuid": "306D4BCB-CE25-31DE-9047-18DF49C26527", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9053982720, - "image_vmaddr": 8508936192, - "image_size": 36864, - "name": "/usr/lib/libTLE.dylib", - "uuid": "79E08706-D683-3309-8C69-61F0A24A7DCB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9357578240, - "image_vmaddr": 8812531712, - "image_size": 8188, - "name": "/System/Library/PrivateFrameworks/VideoToolboxParavirtualizationSupport.framework/VideoToolboxParavirtualizationSupport", - "uuid": "ADAA5BBC-4197-3D34-BF3A-C5C7A2244A52", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7371853824, - "image_vmaddr": 6826807296, - "image_size": 2379776, - "name": "/System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience", - "uuid": "182F4DE9-D19A-3133-B82C-C0745951BC4D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8716263424, - "image_vmaddr": 8171216896, - "image_size": 475136, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore", - "uuid": "D3BBA812-EAD5-3306-81D3-FCB61199AD1B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 8715702272, - "image_vmaddr": 8170655744, - "image_size": 561152, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage", - "uuid": "7A26082D-5099-33AE-801B-01F67C7D19FD", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 9200898048, - "image_vmaddr": 8655851520, - "image_size": 2002944, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork", - "uuid": "0A19567C-8585-3EA2-B769-B84416EAE122", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 8716738560, - "image_vmaddr": 8171692032, - "image_size": 163840, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix", - "uuid": "EE7DE198-DE7C-329D-9B7C-0E2D640F6231", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 9211486208, - "image_vmaddr": 8666439680, - "image_size": 327680, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector", - "uuid": "8D99C7CD-7E24-3779-B08E-7052A9B4FBB7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 9261912064, - "image_vmaddr": 8716865536, - "image_size": 786432, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray", - "uuid": "AA4F3510-BAB9-39CC-A975-3343E84899D9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 9102376960, - "image_vmaddr": 8557330432, - "image_size": 81920, - "name": "/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSFunctions.framework/MPSFunctions", - "uuid": "344244DF-7EC8-3131-B0DD-9EFC3BCC0A40", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 126, - "minor_version": 0, - "revision_version": 21 - }, - { - "image_addr": 8714842112, - "image_vmaddr": 8169795584, - "image_size": 8188, - "name": "/usr/lib/libCTGreenTeaLogger.dylib", - "uuid": "1C4316E0-EA8A-318F-BBA7-B53315F73E64", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7435681792, - "image_vmaddr": 6890635264, - "image_size": 21741568, - "name": "/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore", - "uuid": "73AFC744-EA0A-3167-A1B5-4570794F56A7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 614, - "minor_version": 3, - "revision_version": 4 - }, - { - "image_addr": 7381688320, - "image_vmaddr": 6836641792, - "image_size": 40525824, - "name": "/System/Library/PrivateFrameworks/WebCore.framework/WebCore", - "uuid": "B68311D5-CB91-3ADB-B9E6-12EC03803225", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 614, - "minor_version": 3, - "revision_version": 4 - }, - { - "image_addr": 8358768640, - "image_vmaddr": 7813722112, - "image_size": 3706880, - "name": "/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libANGLE-shared.dylib", - "uuid": "CF687636-1707-3161-A54E-64F43AFFE3C6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 614, - "minor_version": 3, - "revision_version": 4 - }, - { - "image_addr": 7015559168, - "image_vmaddr": 6470512640, - "image_size": 262144, - "name": "/System/Library/PrivateFrameworks/WebGPU.framework/WebGPU", - "uuid": "6D6C7B54-24B6-3DBA-A563-40EC5C5B94B2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 614, - "minor_version": 3, - "revision_version": 4 - }, - { - "image_addr": 8730525696, - "image_vmaddr": 8185479168, - "image_size": 8277792, - "name": "/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib", - "uuid": "238DA88E-17FE-346E-88A6-CA0E01F18B91", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 614, - "minor_version": 3, - "revision_version": 4 - }, - { - "image_addr": 7495524352, - "image_vmaddr": 6950477824, - "image_size": 2080768, - "name": "/System/Library/Frameworks/NetworkExtension.framework/NetworkExtension", - "uuid": "0956689C-ED4B-3F60-9A14-8D925EE4E7DF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8730157056, - "image_vmaddr": 8185110528, - "image_size": 36864, - "name": "/System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting", - "uuid": "809D57A4-572C-306D-8909-6BEEB8E9726E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 212, - "minor_version": 10, - "revision_version": 0 - }, - { - "image_addr": 7557668864, - "image_vmaddr": 7012622336, - "image_size": 2748416, - "name": "/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox", - "uuid": "139880A7-7D61-379B-AB9F-A3A353724F68", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1000, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714903552, - "image_vmaddr": 8169857024, - "image_size": 40953, - "name": "/System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers", - "uuid": "9D9F545F-E126-3334-90EF-EE03907A30A0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8716906496, - "image_vmaddr": 8171859968, - "image_size": 49152, - "name": "/System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter", - "uuid": "E3D0EF78-603B-3223-8CBA-F42990250BCF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8730005504, - "image_vmaddr": 8184958976, - "image_size": 151552, - "name": "/usr/lib/libnetworkextension.dylib", - "uuid": "3B08863D-C968-367B-898E-2FA9CDAB9D6C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7532175360, - "image_vmaddr": 6987128832, - "image_size": 307200, - "name": "/System/Library/PrivateFrameworks/AudioSession.framework/AudioSession", - "uuid": "A27C5201-A634-39A0-B6F8-76D02BECD606", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7819571200, - "image_vmaddr": 7274524672, - "image_size": 495616, - "name": "/System/Library/Frameworks/CoreHaptics.framework/CoreHaptics", - "uuid": "D8199E35-A658-3232-8EDD-B4C42DB87ACE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717541376, - "image_vmaddr": 8172494848, - "image_size": 229376, - "name": "/System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib", - "uuid": "D2EF1ACF-D1B4-3750-82A1-2FF13BDDDCDF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7609774080, - "image_vmaddr": 7064727552, - "image_size": 241664, - "name": "/System/Library/PrivateFrameworks/DMCUtilities.framework/DMCUtilities", - "uuid": "E6756816-0DD7-3FB6-ABB4-22AD1E5AEBF9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7581151232, - "image_vmaddr": 7036104704, - "image_size": 483328, - "name": "/System/Library/Frameworks/Accounts.framework/Accounts", - "uuid": "46F9FA7C-6BAC-34FE-A546-3F3058A457E0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8237690880, - "image_vmaddr": 7692644352, - "image_size": 57344, - "name": "/System/Library/PrivateFrameworks/DataMigration.framework/DataMigration", - "uuid": "05114963-9FFF-321E-93FF-93D30D033E73", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8259616768, - "image_vmaddr": 7714570240, - "image_size": 126976, - "name": "/System/Library/PrivateFrameworks/MDMClientLibrary.framework/MDMClientLibrary", - "uuid": "76BECEC0-04C6-3823-9AE9-2BC6FAB9D34F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8714850304, - "image_vmaddr": 8169803776, - "image_size": 53248, - "name": "/usr/lib/liblockdown.dylib", - "uuid": "8EE1F04C-19D3-3F46-87F5-B413D52D133B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8264151040, - "image_vmaddr": 7719104512, - "image_size": 36864, - "name": "/System/Library/PrivateFrameworks/DEPClientLibrary.framework/DEPClientLibrary", - "uuid": "52116185-8EEC-3E00-A755-DB18412BBC79", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8730279936, - "image_vmaddr": 8185233408, - "image_size": 20480, - "name": "/System/Library/PrivateFrameworks/ContextKitCore.framework/ContextKitCore", - "uuid": "7DDF0680-E566-370A-8723-1EBD6E4901A0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8251609088, - "image_vmaddr": 7706562560, - "image_size": 131072, - "name": "/System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage", - "uuid": "FB406FB4-F481-3485-B270-18F94F913D23", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 339, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7342415872, - "image_vmaddr": 6797369344, - "image_size": 983040, - "name": "/System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP", - "uuid": "A82F7C4F-7845-3A07-9AF9-81736959D94E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 303, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8729292800, - "image_vmaddr": 8184246272, - "image_size": 376828, - "name": "/usr/lib/libmecab.dylib", - "uuid": "24797CF9-888A-3210-86C5-112585241C7B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1019, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8729669632, - "image_vmaddr": 8184623104, - "image_size": 212992, - "name": "/usr/lib/libCRFSuite.dylib", - "uuid": "34DAD487-D4D8-3363-BA0E-A84E98E3CB0F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8729280512, - "image_vmaddr": 8184233984, - "image_size": 12284, - "name": "/usr/lib/libgermantok.dylib", - "uuid": "8E41E0D4-9385-36DC-9383-A50BAAFA8601", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9366249472, - "image_vmaddr": 8821202944, - "image_size": 8188, - "name": "/usr/lib/libThaiTokenizer.dylib", - "uuid": "3550BA5D-6E1E-3D33-9484-69BD8A723D77", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717824000, - "image_vmaddr": 8172777472, - "image_size": 86013, - "name": "/System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC", - "uuid": "E0FA3BB8-A08F-3506-8705-CA328C2198B7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7756296192, - "image_vmaddr": 7211249664, - "image_size": 344064, - "name": "/System/Library/PrivateFrameworks/SoftwareUpdateCoreSupport.framework/SoftwareUpdateCoreSupport", - "uuid": "92BD3A35-566D-39C9-A5AA-0AC74E7ECBD7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717262848, - "image_vmaddr": 8172216320, - "image_size": 77824, - "name": "/System/Library/PrivateFrameworks/SoftwareUpdateCoreConnect.framework/SoftwareUpdateCoreConnect", - "uuid": "9B2B87BF-FB77-34C9-9285-C51A7536FB69", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8263430144, - "image_vmaddr": 7718383616, - "image_size": 258048, - "name": "/System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip", - "uuid": "1E241DFE-9397-3416-978A-8E1F1D59FEA0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8238440448, - "image_vmaddr": 7693393920, - "image_size": 65536, - "name": "/System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/RemoteServiceDiscovery", - "uuid": "A8195034-3313-325A-A8C5-340AA80DAB7B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 95, - "minor_version": 60, - "revision_version": 3 - }, - { - "image_addr": 8264187904, - "image_vmaddr": 7719141376, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation", - "uuid": "4686CAE8-CD77-306E-B2FC-0F6995DCD6EC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8259743744, - "image_vmaddr": 7714697216, - "image_size": 155648, - "name": "/System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication", - "uuid": "1E95BACD-E922-39F5-9B43-EC15DCB5B473", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7262629888, - "image_vmaddr": 6717583360, - "image_size": 5873664, - "name": "/System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices", - "uuid": "D5A959BC-30FE-34FB-ADC8-E4DADEDD2CA9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7345647616, - "image_vmaddr": 6800601088, - "image_size": 815104, - "name": "/System/Library/PrivateFrameworks/AuthKit.framework/AuthKit", - "uuid": "F21CD4BC-7FFE-33DE-BD35-6D8CBEEA25C2", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8730193920, - "image_vmaddr": 8185147392, - "image_size": 86016, - "name": "/System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager", - "uuid": "716E5238-C38A-39B0-9A1B-453F14795201", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7740792832, - "image_vmaddr": 7195746304, - "image_size": 602112, - "name": "/System/Library/PrivateFrameworks/Rapport.framework/Rapport", - "uuid": "E32B1241-B4D8-3EF3-9BEC-CAF04EAB885F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8251502592, - "image_vmaddr": 7706456064, - "image_size": 106496, - "name": "/System/Library/PrivateFrameworks/IconFoundation.framework/IconFoundation", - "uuid": "91D4B638-CA50-3564-ACE0-AB81D98BDA29", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 552, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717197312, - "image_vmaddr": 8172150784, - "image_size": 65536, - "name": "/System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons", - "uuid": "EEB31845-9937-380D-980F-CB37C81752DB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 372, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8264310784, - "image_vmaddr": 7719264256, - "image_size": 94208, - "name": "/System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity", - "uuid": "7A127F17-19F9-3E5F-8F04-1868FACFC19B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 0, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7555022848, - "image_vmaddr": 7009976320, - "image_size": 446464, - "name": "/System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry", - "uuid": "CA928FBF-EF85-3BDB-9E1F-DA283FBED70A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7879491584, - "image_vmaddr": 7334445056, - "image_size": 225280, - "name": "/System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication", - "uuid": "5E2E6F88-A077-3387-95A0-87983C6F857A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1131, - "minor_version": 60, - "revision_version": 19 - }, - { - "image_addr": 8717488128, - "image_vmaddr": 8172441600, - "image_size": 53248, - "name": "/System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport", - "uuid": "FE89F8DB-A7D5-393D-853F-5E5F183BF05D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 103, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8716955648, - "image_vmaddr": 8171909120, - "image_size": 8192, - "name": "/System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers", - "uuid": "1951E21D-7E67-3AFD-B098-B3DB29DE25F5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8265900032, - "image_vmaddr": 7720853504, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/AAAFoundation.framework/AAAFoundation", - "uuid": "1C9E0D7D-669E-3221-8085-2A0163ADE7B0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7879716864, - "image_vmaddr": 7334670336, - "image_size": 372736, - "name": "/System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit", - "uuid": "502E1399-8079-3A01-B93C-E34389C62A9C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 602, - "minor_version": 60, - "revision_version": 5 - }, - { - "image_addr": 7878877184, - "image_vmaddr": 7333830656, - "image_size": 159744, - "name": "/System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils", - "uuid": "3754473F-B1A9-35A8-8729-86C3DE52AC71", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1131, - "minor_version": 60, - "revision_version": 19 - }, - { - "image_addr": 7861551104, - "image_vmaddr": 7316504576, - "image_size": 188416, - "name": "/System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed", - "uuid": "8C17CE44-4E25-3D15-84C9-BF9CF7DA03A7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1732, - "minor_version": 60, - "revision_version": 4 - }, - { - "image_addr": 7311499264, - "image_vmaddr": 6766452736, - "image_size": 1531904, - "name": "/System/Library/PrivateFrameworks/IDS.framework/IDS", - "uuid": "2783D622-7588-33C1-BCDE-D3994C810572", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8729894912, - "image_vmaddr": 8184848384, - "image_size": 102388, - "name": "/usr/lib/libresolv.9.dylib", - "uuid": "053715F0-1E1A-3CFA-8988-F6EED02952B0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7624581120, - "image_vmaddr": 7079534592, - "image_size": 380917, - "name": "/System/Library/Frameworks/CryptoKit.framework/CryptoKit", - "uuid": "34AF0F96-5A76-3CA5-BE56-0B3569EF1B7C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9236504576, - "image_vmaddr": 8691458048, - "image_size": 4092, - "name": "/System/Library/PrivateFrameworks/FeatureFlags.framework/FeatureFlags", - "uuid": "6264FF05-F493-3E46-AED7-808836C5AE5F", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 71, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8740368384, - "image_vmaddr": 8195321856, - "image_size": 28668, - "name": "/usr/lib/swift/libswiftCompression.dylib", - "uuid": "2720DBF3-D743-313D-90DE-91ED4C84EB71", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8753197056, - "image_vmaddr": 8208150528, - "image_size": 73722, - "name": "/usr/lib/swift/libswiftExtensionFoundation.dylib", - "uuid": "CFAE9A85-7FAC-356A-AD7B-68A8E00FA6E7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 97, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7566929920, - "image_vmaddr": 7021883392, - "image_size": 524279, - "name": "/usr/lib/swift/libswiftNetwork.dylib", - "uuid": "CFC9BDCF-0773-3880-B759-7FB6167E6C40", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3013, - "minor_version": 60, - "revision_version": 39 - }, - { - "image_addr": 8141369344, - "image_vmaddr": 7596322816, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics", - "uuid": "1AE17883-BEBF-3CD1-8C11-97E0FA5D7F73", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1732, - "minor_version": 60, - "revision_version": 4 - }, - { - "image_addr": 7311007744, - "image_vmaddr": 6765961216, - "image_size": 491520, - "name": "/System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation", - "uuid": "B87A152A-5F35-3296-8D1B-EF179BFE3172", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7491973120, - "image_vmaddr": 6946926592, - "image_size": 2215936, - "name": "/System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation", - "uuid": "860DB501-598B-35A4-B701-884CE1F27ED7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7612727296, - "image_vmaddr": 7067680768, - "image_size": 364544, - "name": "/System/Library/PrivateFrameworks/FTServices.framework/FTServices", - "uuid": "4835D360-BD20-3FB1-BB62-6904AAF877DB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8260616192, - "image_vmaddr": 7715569664, - "image_size": 90112, - "name": "/System/Library/PrivateFrameworks/Engram.framework/Engram", - "uuid": "76D730F9-E8D4-3FFB-9361-030FA7BBEFCE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717352960, - "image_vmaddr": 8172306432, - "image_size": 4096, - "name": "/System/Library/PrivateFrameworks/Marco.framework/Marco", - "uuid": "E41D687F-17C0-36D6-885C-8E677B13D777", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717357056, - "image_vmaddr": 8172310528, - "image_size": 131072, - "name": "/System/Library/PrivateFrameworks/FTAWD.framework/FTAWD", - "uuid": "9029ADC4-D2B3-30AF-BC42-3684DB188F2B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 800, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8258281472, - "image_vmaddr": 7713234944, - "image_size": 24576, - "name": "/System/Library/PrivateFrameworks/CryptoKitCBridging.framework/CryptoKitCBridging", - "uuid": "4C73ADB0-A4FA-3E4D-839E-B0EE97E0245D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8725753856, - "image_vmaddr": 8180707328, - "image_size": 8187, - "name": "/usr/lib/swift/libswiftCryptoTokenKit.dylib", - "uuid": "08073E87-354D-3168-97F1-CAB6831024EC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 602, - "minor_version": 60, - "revision_version": 5 - }, - { - "image_addr": 7840178176, - "image_vmaddr": 7295131648, - "image_size": 266240, - "name": "/System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth", - "uuid": "2802DD4C-10D2-3FF5-8108-DBFC80E1BBED", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8131735552, - "image_vmaddr": 7586689024, - "image_size": 991232, - "name": "/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/DesktopServicesPriv", - "uuid": "C47ECA2D-ADEF-3D7B-87C4-A5D0E9E84126", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1545, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7198654464, - "image_vmaddr": 6653607936, - "image_size": 27865088, - "name": "/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices", - "uuid": "8C395382-4E54-3791-AD72-713981464084", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1889, - "minor_version": 32, - "revision_version": 9 - }, - { - "image_addr": 7566409728, - "image_vmaddr": 7021363200, - "image_size": 208896, - "name": "/System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport", - "uuid": "72A8A0DE-D3ED-3CF6-A789-7822EB8AF51D", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2780, - "minor_version": 0, - "revision_version": 25 - }, - { - "image_addr": 7652638720, - "image_vmaddr": 7107592192, - "image_size": 684032, - "name": "/System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth", - "uuid": "F3F4539B-C4AB-3A3B-B37D-3449A6F92595", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8265973760, - "image_vmaddr": 7720927232, - "image_size": 20480, - "name": "/System/Library/PrivateFrameworks/GeoServicesCore.framework/GeoServicesCore", - "uuid": "C433662C-FCDC-3B37-BE5B-BE736FCFBBBE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1889, - "minor_version": 32, - "revision_version": 9 - }, - { - "image_addr": 8247484416, - "image_vmaddr": 7702437888, - "image_size": 532480, - "name": "/System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf", - "uuid": "E5EDCCBF-28C2-342C-A027-F6F8CF18DA0A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8744849408, - "image_vmaddr": 8199802880, - "image_size": 102400, - "name": "/System/Library/Frameworks/Accessibility.framework/Accessibility", - "uuid": "7D3D5B31-D74E-3FEA-8770-17D28030A299", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8116875264, - "image_vmaddr": 7571828736, - "image_size": 819188, - "name": "/usr/lib/swift/libswiftAccelerate.dylib", - "uuid": "69F41117-2385-3BF6-B934-F88DF897FB96", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 41, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8728756224, - "image_vmaddr": 8183709696, - "image_size": 98292, - "name": "/usr/lib/swift/libswiftsimd.dylib", - "uuid": "77F018CB-750F-313B-8916-4DDF9004F065", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 9, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 4312350720, - "image_vmaddr": 0, - "image_size": 49152, - "name": "/private/preboot/Cryptexes/OS/usr/lib/libobjc-trampolines.dylib", - "uuid": "50228E97-D295-302B-B3DC-24950F436B70", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 228, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8184983552, - "image_vmaddr": 7639937024, - "image_size": 114688, - "name": "/System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore", - "uuid": "6BC8D827-7BFC-3838-AEA3-D0A264A27205", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7811162112, - "image_vmaddr": 7266115584, - "image_size": 794624, - "name": "/usr/lib/libboringssl.dylib", - "uuid": "A25D7665-80A4-3711-9C87-5C7AA7AFA82A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8756428800, - "image_vmaddr": 8211382272, - "image_size": 442367, - "name": "/usr/lib/libusrtcp.dylib", - "uuid": "92E40B24-4B07-35D1-82A8-FCA1B51B2A99", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8757452800, - "image_vmaddr": 8212406272, - "image_size": 851968, - "name": "/usr/lib/libquic.dylib", - "uuid": "56E8A9E2-402E-3F07-81FA-92AE235936BF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9253244928, - "image_vmaddr": 8708198400, - "image_size": 102396, - "name": "/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib", - "uuid": "2ED77B0F-0923-353E-8616-AE840E0CFEC6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 575, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8765104128, - "image_vmaddr": 8220057600, - "image_size": 12288, - "name": "/usr/lib/log/liblog_network.dylib", - "uuid": "A261DC80-290A-301C-A95B-3CE0F3E6D6EA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7762067456, - "image_vmaddr": 7217020928, - "image_size": 430080, - "name": "/System/Library/PrivateFrameworks/Pegasus.framework/Pegasus", - "uuid": "0F637876-8928-3EE8-B84A-AF70FD67B7EA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7482789888, - "image_vmaddr": 6937743360, - "image_size": 2363392, - "name": "/System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices", - "uuid": "199008B8-071F-3B44-9143-3C834012CD4C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7607701504, - "image_vmaddr": 7062654976, - "image_size": 774144, - "name": "/System/Library/PrivateFrameworks/SAObjects.framework/SAObjects", - "uuid": "73E7C68A-1FFF-3F45-A697-1933D4F55F88", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7374233600, - "image_vmaddr": 6829187072, - "image_size": 3260416, - "name": "/System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote", - "uuid": "617EC65E-E175-3DD9-B61E-51A713B81648", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7677378560, - "image_vmaddr": 7132332032, - "image_size": 6209536, - "name": "/System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation", - "uuid": "8BA914EC-6514-3016-A76E-5F0696550069", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7546937344, - "image_vmaddr": 7001890816, - "image_size": 348160, - "name": "/System/Library/PrivateFrameworks/SiriAnalytics.framework/SiriAnalytics", - "uuid": "8EB4A545-854A-326E-93F7-04546D4F7D8B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8407908352, - "image_vmaddr": 7862861824, - "image_size": 413696, - "name": "/System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices", - "uuid": "49A1DA87-7EB3-3E46-B932-D5D7937CCEA5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7551045632, - "image_vmaddr": 7005999104, - "image_size": 372736, - "name": "/System/Library/PrivateFrameworks/MediaServices.framework/MediaServices", - "uuid": "6C14C475-80FD-39A4-9CED-D58CAED7682E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8131538944, - "image_vmaddr": 7586492416, - "image_size": 196608, - "name": "/System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection", - "uuid": "41D40AC7-9C6C-3284-83F4-981DBC4F434E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7812325376, - "image_vmaddr": 7267278848, - "image_size": 81920, - "name": "/System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger", - "uuid": "2A661192-5B90-3FE2-BD7B-FE4983B7AADF", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7481356288, - "image_vmaddr": 6936309760, - "image_size": 1433600, - "name": "/System/Library/PrivateFrameworks/SiriTTSService.framework/SiriTTSService", - "uuid": "13831CCB-DA22-3CC2-BFB0-D04C7B3DB717", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7491522560, - "image_vmaddr": 6946476032, - "image_size": 450560, - "name": "/System/Library/PrivateFrameworks/Trial.framework/Trial", - "uuid": "2DB19EDB-6A32-34D7-89C4-B063FE0F3C0C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8410591232, - "image_vmaddr": 7865544704, - "image_size": 9523200, - "name": "/System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS", - "uuid": "C069B1ED-5E7A-3E73-8861-4D33ED4D0EAB", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8728743936, - "image_vmaddr": 8183697408, - "image_size": 4096, - "name": "/System/Library/Frameworks/AVFoundation.framework/AVFoundation", - "uuid": "2BAF6DAD-EAC8-31BF-8AE5-D4298E255DFE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7490154496, - "image_vmaddr": 6945107968, - "image_size": 1368064, - "name": "/System/Library/Frameworks/AVFAudio.framework/AVFAudio", - "uuid": "ACAFC4FF-E467-399D-8EEF-543F98B46B1C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7880089600, - "image_vmaddr": 7335043072, - "image_size": 425984, - "name": "/System/Library/PrivateFrameworks/Osprey.framework/Osprey", - "uuid": "0B260874-6EED-3B09-B1BE-8D2EEFF31F32", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7992082432, - "image_vmaddr": 7447035904, - "image_size": 36864, - "name": "/System/Library/PrivateFrameworks/SiriPowerInstrumentation.framework/SiriPowerInstrumentation", - "uuid": "D3B497E5-9B19-3054-A872-DCF7E2BCF25A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7346462720, - "image_vmaddr": 6801416192, - "image_size": 495616, - "name": "/System/Library/PrivateFrameworks/TrialProto.framework/TrialProto", - "uuid": "EC050012-7CD1-3B48-983A-56CE847DD0F8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8729145344, - "image_vmaddr": 8184098816, - "image_size": 135167, - "name": "/usr/lib/swift/libswiftAVFoundation.dylib", - "uuid": "70FCE724-11EE-3F25-8CE0-A63FBBCE9646", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2140, - "minor_version": 3, - "revision_version": 1 - }, - { - "image_addr": 8376168448, - "image_vmaddr": 7831121920, - "image_size": 36860, - "name": "/usr/lib/swift/libswiftCoreAudio.dylib", - "uuid": "3AD460AD-C948-33C2-89C3-B836F8A399A6", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 1, - "revision_version": 0 - }, - { - "image_addr": 8728854528, - "image_vmaddr": 8183808000, - "image_size": 40948, - "name": "/usr/lib/swift/libswiftCoreMIDI.dylib", - "uuid": "296C6604-24A0-387C-B1BD-CBFB1BA7A126", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 6, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7870898176, - "image_vmaddr": 7325851648, - "image_size": 229371, - "name": "/usr/lib/swift/libswiftCoreMedia.dylib", - "uuid": "088FC0B0-F344-39E0-A236-E32A8ABBC3C0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3005, - "minor_version": 3, - "revision_version": 1 - }, - { - "image_addr": 8728662016, - "image_vmaddr": 8183615488, - "image_size": 57342, - "name": "/usr/lib/swift/libswiftUniformTypeIdentifiers.dylib", - "uuid": "4EC105FD-173B-3EA4-A8E3-66BA8DAC0E02", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 760, - "minor_version": 2, - "revision_version": 2 - }, - { - "image_addr": 7329374208, - "image_vmaddr": 6784327680, - "image_size": 13041664, - "name": "/System/Library/PrivateFrameworks/Espresso.framework/Espresso", - "uuid": "1FD4CB11-AA9B-3D48-A58F-0BC017282E13", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 123, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7502200832, - "image_vmaddr": 6957154304, - "image_size": 6643712, - "name": "/System/Library/Frameworks/CoreML.framework/CoreML", - "uuid": "B66604D8-0C70-3C11-BB2A-F9F9A6BDD70E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8744669184, - "image_vmaddr": 8199622656, - "image_size": 122872, - "name": "/usr/lib/libedit.3.dylib", - "uuid": "0659CF59-7C19-3009-9772-390484E45894", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 3, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7369203712, - "image_vmaddr": 6824157184, - "image_size": 2650112, - "name": "/System/Library/PrivateFrameworks/AVFCore.framework/AVFCore", - "uuid": "D126E582-47DA-351E-9671-2D16C9C4A901", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7530811392, - "image_vmaddr": 6985764864, - "image_size": 1363968, - "name": "/System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture", - "uuid": "D99A8925-792D-341A-8EAD-9D2CE44865CC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8259899392, - "image_vmaddr": 7714852864, - "image_size": 20480, - "name": "/System/Library/PrivateFrameworks/Celestial.framework/Celestial", - "uuid": "79308682-343D-39A0-BFFA-05DAA117BA15", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8260780032, - "image_vmaddr": 7715733504, - "image_size": 1503232, - "name": "/System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync", - "uuid": "0C35A7E6-47C4-3B70-AD9D-3DC259101C98", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7581921280, - "image_vmaddr": 7036874752, - "image_size": 8343552, - "name": "/System/Library/PrivateFrameworks/CMCapture.framework/CMCapture", - "uuid": "8FD16574-5136-3453-BEAC-9CB6682CC7DA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8248016896, - "image_vmaddr": 7702970368, - "image_size": 872448, - "name": "/System/Library/PrivateFrameworks/Quagga.framework/Quagga", - "uuid": "60BED9F8-F0E8-388C-9AD1-95053C577BF5", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 155, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 8237133824, - "image_vmaddr": 7692087296, - "image_size": 368640, - "name": "/System/Library/PrivateFrameworks/CMImaging.framework/CMImaging", - "uuid": "97F947B3-CE42-345C-92EA-797E38D3E6D0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9365975040, - "image_vmaddr": 8820928512, - "image_size": 274432, - "name": "/System/Library/PrivateFrameworks/CameraColorProcessing.framework/CameraColorProcessing", - "uuid": "AD3376D4-14E9-3CD6-B220-BAEA2A66D1B7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8263266304, - "image_vmaddr": 7718219776, - "image_size": 163840, - "name": "/System/Library/PrivateFrameworks/CinematicFraming.framework/CinematicFraming", - "uuid": "F2C5E9EA-6F7A-3CF5-AF86-BD2D71386F9A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8725762048, - "image_vmaddr": 8180715520, - "image_size": 2887680, - "name": "/System/Library/PrivateFrameworks/AppC3D.framework/AppC3D", - "uuid": "23E27F62-3308-33C5-AF7B-C96B193C1ABE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 10, - "revision_version": 6 - }, - { - "image_addr": 7818653696, - "image_vmaddr": 7273607168, - "image_size": 475136, - "name": "/System/Library/PrivateFrameworks/AppleCVAPhoto.framework/AppleCVAPhoto", - "uuid": "D788E588-ECBE-377D-9FB0-235001E8DAB7", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 91, - "revision_version": 0 - }, - { - "image_addr": 7294558208, - "image_vmaddr": 6749511680, - "image_size": 4202496, - "name": "/System/Library/Frameworks/CoreMotion.framework/CoreMotion", - "uuid": "D59CB138-D760-3FA0-BDFF-6E9958AC784C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2780, - "minor_version": 0, - "revision_version": 25 - }, - { - "image_addr": 8251740160, - "image_vmaddr": 7706693632, - "image_size": 57344, - "name": "/System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet", - "uuid": "B0C138D2-54CE-3C46-8243-2140081760ED", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8237502464, - "image_vmaddr": 7692455936, - "image_size": 188416, - "name": "/System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine", - "uuid": "99A1DCC0-0C35-39E5-9B79-08C96B51037C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8719319040, - "image_vmaddr": 8174272512, - "image_size": 6266868, - "name": "/System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler", - "uuid": "90856DF1-FF74-381B-9DF9-761413D88B54", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 6988529664, - "image_vmaddr": 6443483136, - "image_size": 11407360, - "name": "/System/Library/Frameworks/MetalPerformanceShadersGraph.framework/MetalPerformanceShadersGraph", - "uuid": "2CCE2ED3-DCA8-35EE-9966-A7C4B070D113", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717910016, - "image_vmaddr": 8172863488, - "image_size": 1409016, - "name": "/System/Library/PrivateFrameworks/MilAneflow.framework/MilAneflow", - "uuid": "1A4D3553-29D2-3BED-8570-F74C9E53FF02", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8725585920, - "image_vmaddr": 8180539392, - "image_size": 131072, - "name": "/System/Library/PrivateFrameworks/ANEServices.framework/ANEServices", - "uuid": "6E76B8E7-1B36-3682-B745-6743790CB2CA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717340672, - "image_vmaddr": 8172294144, - "image_size": 12288, - "name": "/usr/lib/libsandbox.1.dylib", - "uuid": "65C53941-20F7-3984-80F7-1E2F32F4DD4B", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 9235009536, - "image_vmaddr": 8689963008, - "image_size": 32764, - "name": "/usr/lib/libMatch.1.dylib", - "uuid": "FE3A9327-B3DD-3F91-9242-799D59188DDC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7992119296, - "image_vmaddr": 7447072768, - "image_size": 200700, - "name": "/usr/lib/libncurses.5.4.dylib", - "uuid": "9EDA16DF-ED0D-32CC-82D7-212A94B10423", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 5, - "minor_version": 4, - "revision_version": 0 - }, - { - "image_addr": 7819128832, - "image_vmaddr": 7274082304, - "image_size": 442368, - "name": "/System/Library/PrivateFrameworks/TimeSync.framework/TimeSync", - "uuid": "4491DFFA-B11A-3365-8C88-09B5D0E6BB70", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8256761856, - "image_vmaddr": 7711715328, - "image_size": 1519616, - "name": "/System/Library/Frameworks/MLCompute.framework/MLCompute", - "uuid": "EACB13F3-333D-391A-9B2C-EDEB2355B636", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7232180224, - "image_vmaddr": 6687133696, - "image_size": 2703360, - "name": "/System/Library/Frameworks/CloudKit.framework/CloudKit", - "uuid": "CA4E690F-6234-391D-9C1F-3B7F19E0AF01", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2030, - "minor_version": 17, - "revision_version": 0 - }, - { - "image_addr": 8245260288, - "image_vmaddr": 7700213760, - "image_size": 1298432, - "name": "/System/Library/PrivateFrameworks/MLAssetIO.framework/MLAssetIO", - "uuid": "6C293F93-2901-3CE4-B810-783E3D9E2EEE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1436, - "minor_version": 60, - "revision_version": 2 - }, - { - "image_addr": 7246733312, - "image_vmaddr": 6701686784, - "image_size": 114688, - "name": "/System/Library/Frameworks/SharedWithYouCore.framework/SharedWithYouCore", - "uuid": "65C3E00A-935D-3F82-88A4-5E7A38140363", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7716290560, - "image_vmaddr": 7171244032, - "image_size": 8192, - "name": "/usr/lib/libBASupport.dylib", - "uuid": "109F1187-06D0-32F7-A695-4E31786F0378", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7527759872, - "image_vmaddr": 6982713344, - "image_size": 905216, - "name": "/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount", - "uuid": "51D6839D-95C7-392A-AAAB-1A6083F87B45", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7494189056, - "image_vmaddr": 6949142528, - "image_size": 180224, - "name": "/System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService", - "uuid": "726106DB-26B2-3470-835B-16FC4F62E2A4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8262926336, - "image_vmaddr": 7717879808, - "image_size": 290816, - "name": "/System/Library/PrivateFrameworks/C2.framework/C2", - "uuid": "D10391A2-BEDB-34AA-B828-19926F1C79ED", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2000, - "minor_version": 129, - "revision_version": 2 - }, - { - "image_addr": 8258306048, - "image_vmaddr": 7713259520, - "image_size": 1310720, - "name": "/System/Library/PrivateFrameworks/CloudKitDistributedSync.framework/CloudKitDistributedSync", - "uuid": "35E0BFF7-A075-3EFE-85B6-22836127A1D0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2030, - "minor_version": 17, - "revision_version": 0 - }, - { - "image_addr": 7669108736, - "image_vmaddr": 7124062208, - "image_size": 368640, - "name": "/System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage", - "uuid": "60EE4A4E-A43F-3FBC-A2DB-A40DBCD6C1A4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8728895488, - "image_vmaddr": 8183848960, - "image_size": 249856, - "name": "/System/Library/Frameworks/CoreTransferable.framework/CoreTransferable", - "uuid": "165D84E1-D794-3AAB-A2E8-D46AD23805B0", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7614648320, - "image_vmaddr": 7069601792, - "image_size": 344064, - "name": "/System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant", - "uuid": "A6DF4299-8AB2-38BC-B8E8-A82BA2388DDE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7871262720, - "image_vmaddr": 7326216192, - "image_size": 114688, - "name": "/System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp", - "uuid": "B268A700-8931-3961-B28D-5A1A5961411C", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8253755392, - "image_vmaddr": 7708708864, - "image_size": 114688, - "name": "/System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport", - "uuid": "38A4B148-0F24-3F38-8EA9-5438467492ED", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8266350592, - "image_vmaddr": 7721304064, - "image_size": 438272, - "name": "/System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup", - "uuid": "448D1FB3-93D1-3B72-9C1E-548A0AF00CB4", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1830, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8264404992, - "image_vmaddr": 7719358464, - "image_size": 90112, - "name": "/System/Library/PrivateFrameworks/Seeding.framework/Seeding", - "uuid": "95DD8517-B451-306A-9CBB-1C19ED6E1DB9", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8253992960, - "image_vmaddr": 7708946432, - "image_size": 16384, - "name": "/System/Library/PrivateFrameworks/OSASubmissionClient.framework/OSASubmissionClient", - "uuid": "3F1D171B-3F43-3F7F-8FF3-AB6D2DC83522", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7879036928, - "image_vmaddr": 7333990400, - "image_size": 139264, - "name": "/System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences", - "uuid": "5862C4D3-4F7B-33C6-89CD-090612670AAC", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 397, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7813607424, - "image_vmaddr": 7268560896, - "image_size": 73728, - "name": "/System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync", - "uuid": "A2B80FBA-D5AE-3987-B882-A393321CEE51", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8262295552, - "image_vmaddr": 7717249024, - "image_size": 192512, - "name": "/System/Library/PrivateFrameworks/AppConduit.framework/AppConduit", - "uuid": "C60F397A-E824-316E-A44D-C68A296E50F8", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7592337408, - "image_vmaddr": 7047290880, - "image_size": 282624, - "name": "/System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete", - "uuid": "2CCF281A-62A4-37CE-B368-D8C3FBC19218", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8717770752, - "image_vmaddr": 8172724224, - "image_size": 53248, - "name": "/System/Library/PrivateFrameworks/FSEvents.framework/FSEvents", - "uuid": "849DF6A1-7CFD-32FB-A64E-E3C8D7D26BEA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1355, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8245043200, - "image_vmaddr": 7699996672, - "image_size": 131072, - "name": "/System/Library/PrivateFrameworks/OSAnalyticsPrivate.framework/OSAnalyticsPrivate", - "uuid": "87F72FF8-4B58-353F-AF8B-1AF5B5C74E33", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 8252608512, - "image_vmaddr": 7707561984, - "image_size": 86016, - "name": "/System/Library/PrivateFrameworks/RemoteXPC.framework/RemoteXPC", - "uuid": "353F6574-F0BD-37E5-84A4-93D473CEA352", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 2462, - "minor_version": 60, - "revision_version": 14 - }, - { - "image_addr": 7552577536, - "image_vmaddr": 7007531008, - "image_size": 544768, - "name": "/System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport", - "uuid": "256FD9EE-98A2-361F-8A86-762ACC29EDCE", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 365, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 7302320128, - "image_vmaddr": 6757273600, - "image_size": 155648, - "name": "/System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker", - "uuid": "D36ACE86-A62F-3F12-945C-C9E96EE645CA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 365, - "minor_version": 3, - "revision_version": 0 - }, - { - "image_addr": 8729882624, - "image_vmaddr": 8184836096, - "image_size": 12288, - "name": "/System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch", - "uuid": "67C8548C-5D0E-31FE-9795-EFFF78F65C3A", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7346958336, - "image_vmaddr": 6801911808, - "image_size": 172032, - "name": "/System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting", - "uuid": "4D6CD2E3-5C33-3EC8-9A5F-B17749B30127", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7738712064, - "image_vmaddr": 7193665536, - "image_size": 1261561, - "name": "/System/Library/PrivateFrameworks/InternalSwiftProtobuf.framework/InternalSwiftProtobuf", - "uuid": "10C78C3C-CFD6-34ED-988B-14ACC8221D22", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7477116928, - "image_vmaddr": 6932070400, - "image_size": 151552, - "name": "/System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust", - "uuid": "A3D69A72-E5C0-3082-AFAE-B5004F77EB88", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7871127552, - "image_vmaddr": 7326081024, - "image_size": 135168, - "name": "/System/Library/PrivateFrameworks/SecurityFoundation.framework/SecurityFoundation", - "uuid": "A6F6B99E-2E82-3A5C-B497-49D0D3C7586E", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - }, - { - "image_addr": 7600144384, - "image_vmaddr": 7055097856, - "image_size": 589824, - "name": "/System/Library/Frameworks/CallKit.framework/CallKit", - "uuid": "BA01CF7B-1051-3E67-A5DE-D425B2D513FA", - "cpu_type": 16777228, - "cpu_subtype": -2147483646, - "major_version": 1, - "minor_version": 0, - "revision_version": 0 - } - ], "process": {}, "system": { "system_name": "iOS", @@ -5376,1224 +70,7 @@ }, "address": 5365848110, "type": "mach" - }, - "threads": [ - { - "backtrace": { - "contents": [ - { - "instruction_addr": 5365848110 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309617184, - "instruction_addr": 4309617228 - }, - { - "object_name": "iOS-Swift", - "object_addr": 4306583552, - "symbol_name": "$s9iOS_Swift14ViewControllerC5crashyyypF", - "symbol_addr": 4306654892, - "instruction_addr": 4306654944 - }, - { - "object_name": "iOS-Swift", - "object_addr": 4306583552, - "symbol_name": "", - "symbol_addr": 4306654956, - "instruction_addr": 4306655024 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7140628492, - "instruction_addr": 7140628592 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309427996, - "instruction_addr": 4309428196 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7140627712, - "instruction_addr": 7140627824 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7140625856, - "instruction_addr": 7140626180 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7140625708, - "instruction_addr": 7140625832 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7140624364, - "instruction_addr": 7140624764 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7139242572, - "instruction_addr": 7139243348 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7139237020, - "instruction_addr": 7139240304 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7139236240, - "instruction_addr": 7139236912 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7139227456, - "instruction_addr": 7139234540 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7139523072, - "instruction_addr": 7139528704 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7142709604, - "instruction_addr": 7142709828 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103586072, - "instruction_addr": 7103586100 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103636060, - "instruction_addr": 7103636236 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103127772, - "instruction_addr": 7103128016 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103215688, - "instruction_addr": 7103216524 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "CFRunLoopRunSpecific", - "symbol_addr": 7103237204, - "instruction_addr": 7103237816 - }, - { - "object_name": "GraphicsServices", - "object_addr": 8086032384, - "symbol_name": "GSEventRunModal", - "symbol_addr": 8086037188, - "instruction_addr": 8086037352 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7142017500, - "instruction_addr": 7142018388 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "UIApplicationMain", - "symbol_addr": 7142017124, - "instruction_addr": 7142017464 - }, - { - "object_name": "iOS-Swift", - "object_addr": 4306583552, - "symbol_name": "main", - "symbol_addr": 4306715508, - "instruction_addr": 4306715572 - }, - { - "instruction_addr": 7625050464 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 4310376784, - "x1": 4306839947, - "x2": 259, - "x3": 10762518888, - "x4": 5803094048, - "x5": 10766664720, - "x6": 10, - "x7": 1, - "x8": 5365848110, - "x9": 259, - "x10": 10767712640, - "x11": 6162675, - "x12": 8, - "x13": 0, - "x14": 6987497472, - "x15": 9917497344, - "x16": 4310376826, - "x17": 4309617184, - "x18": 0, - "x19": 10766664720, - "x20": 5801794240, - "x21": 5803094048, - "x22": 4306840396, - "x23": 10774023360, - "x24": 8552160384, - "x25": 10786661184, - "x26": 4306840396, - "x27": 5801794240, - "x28": 1, - "fp": 6160290192, - "lr": 4309617228, - "sp": 6160290160, - "pc": 5365848110, - "cpsr": 1073741824 - }, - "exception": { - "exception": 0, - "esr": 2315255808, - "far": 5365848110 - } - }, - "index": 0, - "crashed": true, - "current_thread": false, - "stack": { - "grow_direction": "-", - "dump_start": 6160290080, - "dump_end": 6160290320, - "stack_pointer": 6160290160, - "overflow": false, - "contents": "91E5430FD82FC8465829D484D012904A4591AAE83A48D072B6F54CC5C4C622185021EB00010000008B29B50001000000030100000000000068017F81020000002030E459010000001044BE81020000000A000000000000002E58D43F010000008B29B500010000005021EB0001000000B0912E6F01000000E056B20001000000C05AD05901000000E0912E6F0100000010922E6F010000003057B20001000000C05AD05901000000E0912E6F010000002030E45901000000C05AD059010000002030E459010000001044BE81020000000A0000000000000058F9BAFD01000000C05AD059010000001044BE8102000000" - }, - "notable_addresses": { - "x0": { - "address": 4310376784, - "type": "objc_class", - "class": "SentrySDK" - }, - "x1": { - "address": 4306839947, - "type": "string", - "value": "crash" - }, - "x14": { - "address": 6987497472, - "type": "string", - "value": "dyld_v1 arm64e" - }, - "x22": { - "address": 4306840396, - "type": "string", - "value": "crash:" - }, - "x26": { - "address": 4306840396, - "type": "string", - "value": "crash:" - }, - "stack@0x16f2e9140": { - "address": 4310376784, - "type": "objc_class", - "class": "SentrySDK" - }, - "stack@0x16f2e9148": { - "address": 4306839947, - "type": "string", - "value": "crash" - }, - "stack@0x16f2e9180": { - "address": 4306839947, - "type": "string", - "value": "crash" - }, - "stack@0x16f2e9188": { - "address": 4310376784, - "type": "objc_class", - "class": "SentrySDK" - } - } - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_trap", - "symbol_addr": 8145336992, - "instruction_addr": 8145337000 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_internal", - "symbol_addr": 8145411956, - "instruction_addr": 8145412036 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg_overwrite", - "symbol_addr": 8145412224, - "instruction_addr": 8145412612 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg", - "symbol_addr": 8145338324, - "instruction_addr": 8145338348 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103212084, - "instruction_addr": 7103212244 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103215688, - "instruction_addr": 7103216920 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "CFRunLoopRunSpecific", - "symbol_addr": 7103237204, - "instruction_addr": 7103237816 - }, - { - "object_name": "Foundation", - "object_addr": 7005818880, - "symbol_name": "", - "symbol_addr": 7006089216, - "instruction_addr": 7006089428 - }, - { - "object_name": "Foundation", - "object_addr": 7005818880, - "symbol_name": "", - "symbol_addr": 7006089084, - "instruction_addr": 7006089148 - }, - { - "object_name": "UIKitCore", - "object_addr": 7138209792, - "symbol_name": "", - "symbol_addr": 7143283180, - "instruction_addr": 7143283616 - }, - { - "object_name": "Foundation", - "object_addr": 7005818880, - "symbol_name": "", - "symbol_addr": 7006192348, - "instruction_addr": 7006193064 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_start", - "symbol_addr": 8421037624, - "instruction_addr": 8421037772 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 0, - "x1": 21592279046, - "x2": 8589934592, - "x3": 39595303501824, - "x4": 0, - "x5": 39595303501824, - "x6": 2, - "x7": 4294967295, - "x8": 18446744073709550527, - "x9": 0, - "x10": 9219, - "x11": 0, - "x12": 64515, - "x13": 9219, - "x14": 0, - "x15": 0, - "x16": 18446744073709551569, - "x17": 2, - "x18": 0, - "x19": 4294967295, - "x20": 2, - "x21": 39595303501824, - "x22": 0, - "x23": 39595303501824, - "x24": 6162570584, - "x25": 8589934592, - "x26": 21592279046, - "x27": 21592279046, - "x28": 8551669760, - "fp": 6162570432, - "lr": 8145412036, - "sp": 6162570352, - "pc": 8145337000, - "cpsr": 1073741824 - } - }, - "index": 1, - "name": "com.apple.uikit.eventfetch-thread", - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "", - "symbol_addr": 8421034640, - "instruction_addr": 8421034896 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 6163722240, - "x1": 14339, - "x2": 6163185664, - "x3": 6163721088, - "x4": 5128197, - "x5": 1, - "x6": 0, - "x7": 0, - "x8": 0, - "x9": 0, - "x10": 0, - "x11": 0, - "x12": 0, - "x13": 0, - "x14": 0, - "x15": 0, - "x16": 0, - "x17": 0, - "x18": 0, - "x19": 0, - "x20": 0, - "x21": 0, - "x22": 0, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 0, - "lr": 0, - "sp": 6163721072, - "pc": 8421034896, - "cpsr": 0 - } - }, - "index": 2, - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "__semwait_signal", - "symbol_addr": 8145338208, - "instruction_addr": 8145338216 - }, - { - "object_name": "libsystem_c.dylib", - "object_addr": 7226810368, - "symbol_name": "nanosleep", - "symbol_addr": 7226832636, - "instruction_addr": 7226832856 - }, - { - "object_name": "libsystem_c.dylib", - "object_addr": 7226810368, - "symbol_name": "sleep", - "symbol_addr": 7226915492, - "instruction_addr": 7226915544 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309468048, - "instruction_addr": 4309468176 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_start", - "symbol_addr": 8421037624, - "instruction_addr": 8421037772 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 7939, - "x1": 0, - "x2": 1, - "x3": 1, - "x4": 60, - "x5": 0, - "x6": 52, - "x7": 0, - "x8": 8551680796, - "x9": 16387, - "x10": 17, - "x11": 2043, - "x12": 3492106266, - "x13": 2045, - "x14": 3494205461, - "x15": 3492106266, - "x16": 334, - "x17": 1346371584, - "x18": 0, - "x19": 6164868976, - "x20": 6164868992, - "x21": 0, - "x22": 0, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 6164868960, - "lr": 7226832856, - "sp": 6164868912, - "pc": 8145338216, - "cpsr": 1073741824 - } - }, - "index": 3, - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_trap", - "symbol_addr": 8145336992, - "instruction_addr": 8145337000 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_internal", - "symbol_addr": 8145411956, - "instruction_addr": 8145412036 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg_overwrite", - "symbol_addr": 8145412224, - "instruction_addr": 8145412612 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg", - "symbol_addr": 8145338324, - "instruction_addr": 8145338348 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309338964, - "instruction_addr": 4309339160 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_start", - "symbol_addr": 8421037624, - "instruction_addr": 8421037772 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 6165441892, - "x1": 17179869186, - "x2": 0, - "x3": 0, - "x4": 0, - "x5": 95670396518400, - "x6": 580, - "x7": 0, - "x8": 18446744073709550527, - "x9": 22275, - "x10": 0, - "x11": 0, - "x12": 0, - "x13": 22275, - "x14": 0, - "x15": 0, - "x16": 18446744073709551569, - "x17": 6165442560, - "x18": 0, - "x19": 0, - "x20": 580, - "x21": 95670396518400, - "x22": 0, - "x23": 0, - "x24": 6165441892, - "x25": 0, - "x26": 17179869186, - "x27": 17179869186, - "x28": 8551669760, - "fp": 6165441424, - "lr": 8145412036, - "sp": 6165441344, - "pc": 8145337000, - "cpsr": 1073741824 - } - }, - "index": 4, - "name": "SentryCrash Exception Handler (Secondary)", - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [], - "skipped": 0 - }, - "index": 5, - "name": "SentryCrash Exception Handler (Primary)", - "crashed": false, - "current_thread": true - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "__semwait_signal", - "symbol_addr": 8145338208, - "instruction_addr": 8145338216 - }, - { - "object_name": "libsystem_c.dylib", - "object_addr": 7226810368, - "symbol_name": "nanosleep", - "symbol_addr": 7226832636, - "instruction_addr": 7226832856 - }, - { - "object_name": "Foundation", - "object_addr": 7005818880, - "symbol_name": "", - "symbol_addr": 7006550208, - "instruction_addr": 7006550368 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309435272, - "instruction_addr": 4309435316 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309186272, - "instruction_addr": 4309186996 - }, - { - "object_name": "Foundation", - "object_addr": 7005818880, - "symbol_name": "", - "symbol_addr": 7006192348, - "instruction_addr": 7006193064 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_start", - "symbol_addr": 8421037624, - "instruction_addr": 8421037772 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 7939, - "x1": 0, - "x2": 1, - "x3": 1, - "x4": 0, - "x5": 400000000, - "x6": 0, - "x7": 0, - "x8": 8551680796, - "x9": 3, - "x10": 17, - "x11": 1970335589992960, - "x12": 3, - "x13": 10753018400, - "x14": 8551779536, - "x15": 8551779536, - "x16": 334, - "x17": 8572711128, - "x18": 0, - "x19": 0, - "x20": 6166587824, - "x21": 0, - "x22": 0, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 6166587776, - "lr": 7226832856, - "sp": 6166587728, - "pc": 8145338216, - "cpsr": 2147483648 - } - }, - "index": 6, - "name": "io.sentry.app-hang-tracker", - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_trap", - "symbol_addr": 8145336992, - "instruction_addr": 8145337000 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_internal", - "symbol_addr": 8145411956, - "instruction_addr": 8145412036 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg_overwrite", - "symbol_addr": 8145412224, - "instruction_addr": 8145412612 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg", - "symbol_addr": 8145338324, - "instruction_addr": 8145338348 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103212084, - "instruction_addr": 7103212244 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "", - "symbol_addr": 7103215688, - "instruction_addr": 7103216920 - }, - { - "object_name": "CoreFoundation", - "object_addr": 7102709760, - "symbol_name": "CFRunLoopRunSpecific", - "symbol_addr": 7103237204, - "instruction_addr": 7103237816 - }, - { - "object_name": "CFNetwork", - "object_addr": 7121158144, - "symbol_name": "_CFURLStorageSessionDisableCache", - "symbol_addr": 7123554872, - "instruction_addr": 7123615960 - }, - { - "object_name": "Foundation", - "object_addr": 7005818880, - "symbol_name": "", - "symbol_addr": 7006192348, - "instruction_addr": 7006193064 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_start", - "symbol_addr": 8421037624, - "instruction_addr": 8421037772 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 6167731512, - "x1": 21592279046, - "x2": 8589934592, - "x3": 118777320570880, - "x4": 0, - "x5": 118777320570880, - "x6": 2, - "x7": 4294967295, - "x8": 18446744073709550527, - "x9": 0, - "x10": 27655, - "x11": 0, - "x12": 621831, - "x13": 27655, - "x14": 8796093022208, - "x15": 0, - "x16": 18446744073709551569, - "x17": 8796093024258, - "x18": 0, - "x19": 4294967295, - "x20": 2, - "x21": 118777320570880, - "x22": 0, - "x23": 118777320570880, - "x24": 6167731512, - "x25": 8589934592, - "x26": 21592279046, - "x27": 21592279046, - "x28": 8551669760, - "fp": 6167731360, - "lr": 8145412036, - "sp": 6167731280, - "pc": 8145337000, - "cpsr": 1073741824 - } - }, - "index": 7, - "name": "com.apple.NSURLConnectionLoader", - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "__workq_kernreturn", - "symbol_addr": 8145338280, - "instruction_addr": 8145338288 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_wqthread", - "symbol_addr": 8421035224, - "instruction_addr": 8421035588 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 256, - "x1": 6160853888, - "x2": 2, - "x3": 0, - "x4": 0, - "x5": 19804094201856, - "x6": 32, - "x7": 0, - "x8": 10753049473, - "x9": 6160853960, - "x10": 10753049528, - "x11": 1, - "x12": 0, - "x13": 7, - "x14": 1, - "x15": 72, - "x16": 368, - "x17": 8592134544, - "x18": 0, - "x19": 6160855040, - "x20": 1, - "x21": 6160855200, - "x22": 6160855192, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 6160853840, - "lr": 8421035588, - "sp": 6160853808, - "pc": 8145338288, - "cpsr": 1073741824 - } - }, - "index": 8, - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "__workq_kernreturn", - "symbol_addr": 8145338280, - "instruction_addr": 8145338288 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_wqthread", - "symbol_addr": 8421035224, - "instruction_addr": 8421035588 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 256, - "x1": 6161427328, - "x2": 1, - "x3": 0, - "x4": 10753040512, - "x5": 32, - "x6": 0, - "x7": 0, - "x8": 10753085185, - "x9": 6161427328, - "x10": 10753085240, - "x11": 1, - "x12": 0, - "x13": 7, - "x14": 1, - "x15": 72, - "x16": 368, - "x17": 681574400, - "x18": 0, - "x19": 6161428480, - "x20": 1, - "x21": 6161428640, - "x22": 6161428632, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 6161427280, - "lr": 8421035588, - "sp": 6161427248, - "pc": 8145338288, - "cpsr": 1073741824 - } - }, - "index": 9, - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "__workq_kernreturn", - "symbol_addr": 8145338280, - "instruction_addr": 8145338288 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_wqthread", - "symbol_addr": 8421035224, - "instruction_addr": 8421035588 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 64, - "x1": 6162000768, - "x2": 0, - "x3": 0, - "x4": 8551681480, - "x5": 32, - "x6": 0, - "x7": 0, - "x8": 0, - "x9": 18016666252228108, - "x10": 18428727476176814080, - "x11": 68719476736, - "x12": 8551684600, - "x13": 24000000, - "x14": 27021756678018581, - "x15": 27021756678018581, - "x16": 368, - "x17": 27021756678018581, - "x18": 0, - "x19": 6162001920, - "x20": 1, - "x21": 6162002080, - "x22": 6162002072, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 6162000736, - "lr": 8421035588, - "sp": 6162000704, - "pc": 8145338288, - "cpsr": 1073741824 - } - }, - "index": 10, - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 0, - "x1": 0, - "x2": 0, - "x3": 0, - "x4": 0, - "x5": 0, - "x6": 0, - "x7": 0, - "x8": 0, - "x9": 0, - "x10": 0, - "x11": 0, - "x12": 0, - "x13": 0, - "x14": 0, - "x15": 0, - "x16": 0, - "x17": 0, - "x18": 0, - "x19": 0, - "x20": 0, - "x21": 0, - "x22": 0, - "x23": 0, - "x24": 0, - "x25": 0, - "x26": 0, - "x27": 0, - "x28": 0, - "fp": 0, - "lr": 0, - "sp": 0, - "pc": 0, - "cpsr": 0 - } - }, - "index": 11, - "crashed": false, - "current_thread": false - }, - { - "backtrace": { - "contents": [ - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_trap", - "symbol_addr": 8145336992, - "instruction_addr": 8145337000 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg2_internal", - "symbol_addr": 8145411956, - "instruction_addr": 8145412036 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg_overwrite", - "symbol_addr": 8145412224, - "instruction_addr": 8145412612 - }, - { - "object_name": "libsystem_kernel.dylib", - "object_addr": 8145317888, - "symbol_name": "mach_msg", - "symbol_addr": 8145338324, - "instruction_addr": 8145338348 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309094108, - "instruction_addr": 4309094396 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309112564, - "instruction_addr": 4309112772 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309112312, - "instruction_addr": 4309112488 - }, - { - "object_name": "Sentry", - "object_addr": 4308959232, - "symbol_name": "", - "symbol_addr": 4309107428, - "instruction_addr": 4309107512 - }, - { - "object_name": "libsystem_pthread.dylib", - "object_addr": 8421031936, - "symbol_name": "_pthread_start", - "symbol_addr": 8421037624, - "instruction_addr": 8421037772 - } - ], - "skipped": 0 - }, - "registers": { - "basic": { - "x0": 0, - "x1": 17179869186, - "x2": 0, - "x3": 0, - "x4": 0, - "x5": 113314122170368, - "x6": 512, - "x7": 0, - "x8": 18446744073709550527, - "x9": 26383, - "x10": 0, - "x11": 0, - "x12": 0, - "x13": 26383, - "x14": 4294967295, - "x15": 5768233088, - "x16": 18446744073709551569, - "x17": 6164295680, - "x18": 0, - "x19": 0, - "x20": 512, - "x21": 113314122170368, - "x22": 0, - "x23": 0, - "x24": 5768263120, - "x25": 0, - "x26": 17179869186, - "x27": 17179869186, - "x28": 8551669760, - "fp": 6164294656, - "lr": 8145412036, - "sp": 6164294576, - "pc": 8145337000, - "cpsr": 1073741824 - } - }, - "index": 12, - "crashed": false, - "current_thread": false - } - ] + } }, "sentry_sdk_scope": { "user": { From eb0833ece85e7a2df75219fa7cbb19e0296abee7 Mon Sep 17 00:00:00 2001 From: Philipp Hofmann Date: Mon, 6 Feb 2023 09:09:27 +0100 Subject: [PATCH 3/3] fix tests --- Tests/SentryTests/SentryCrash/CrashReport.swift | 12 ++++++++---- .../SentryCrash/SentryCrashDoctorTests.swift | 4 ++-- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Tests/SentryTests/SentryCrash/CrashReport.swift b/Tests/SentryTests/SentryCrash/CrashReport.swift index 36ee8172a84..6c99c34eef7 100644 --- a/Tests/SentryTests/SentryCrash/CrashReport.swift +++ b/Tests/SentryTests/SentryCrash/CrashReport.swift @@ -1,9 +1,14 @@ import XCTest extension XCTestCase { - func givenStoredSentryCrashReport(resource: String) throws { + + private func jsonDataOfResource(resource: String) throws -> Data { let jsonPath = Bundle(for: type(of: self)).path(forResource: resource, ofType: "json") - let jsonData = try Data(contentsOf: URL(fileURLWithPath: jsonPath ?? "")) + return try Data(contentsOf: URL(fileURLWithPath: jsonPath ?? "")) + } + + func givenStoredSentryCrashReport(resource: String) throws { + let jsonData = try jsonDataOfResource(resource: resource) jsonData.withUnsafeBytes { ( bytes: UnsafeRawBufferPointer) -> Void in let pointer = bytes.bindMemory(to: Int8.self) sentrycrashcrs_addUserReport(pointer.baseAddress, Int32(jsonData.count)) @@ -11,8 +16,7 @@ extension XCTestCase { } func getCrashReport(resource: String) throws -> [String: Any] { - let jsonPath = Bundle(for: type(of: self)).path(forResource: resource, ofType: "json") - let jsonData = try Data(contentsOf: URL(fileURLWithPath: jsonPath ?? "")) + let jsonData = try jsonDataOfResource(resource: resource) return try JSONSerialization.jsonObject(with: jsonData, options: []) as! [String: Any] } } diff --git a/Tests/SentryTests/SentryCrash/SentryCrashDoctorTests.swift b/Tests/SentryTests/SentryCrash/SentryCrashDoctorTests.swift index 9e3cdd52054..97740ff230e 100644 --- a/Tests/SentryTests/SentryCrash/SentryCrashDoctorTests.swift +++ b/Tests/SentryTests/SentryCrash/SentryCrashDoctorTests.swift @@ -3,7 +3,7 @@ import XCTest final class SentryCrashDoctorTests: XCTestCase { func testBadAccess() throws { - let report = try getCrashReport(resource: "crash-bad-access") + let report = try getCrashReport(resource: "Resources/crash-bad-access") let diagnose = SentryCrashDoctor().diagnoseCrash(report) @@ -11,7 +11,7 @@ final class SentryCrashDoctorTests: XCTestCase { } func testBadAccess_NoSubcode() throws { - let report = try getCrashReport(resource: "crash-bad-access-no-subcode") + let report = try getCrashReport(resource: "Resources/crash-bad-access-no-subcode") let diagnose = SentryCrashDoctor().diagnoseCrash(report)