realm / realm-swift

Realm is a mobile database: a replacement for Core Data & SQLite
https://realm.io
Apache License 2.0
16.34k stars 2.15k forks source link

RLMRealmTranslateException on realmWithConfiguration: #5941

Closed wstyres closed 6 years ago

wstyres commented 6 years ago

Goals

Create realm database with different filename without crash.

Expected Results

Create different realm database with name other than default.realm due to possible conflicts. The naming conflict problem results from this being a jailbreak app and the application's document directory is sometimes set to /var/mobile/Documents on some devices instead of the proper containerized format. The default.realm gets messy and I'd like to have a different name for it

Actual Results

Application crashes on launch, stack trace below

Last Exception Backtrace:
0       CoreFoundation                  0x18321ad8c 0x1830d5000 + 0x145d8c  // __exceptionPreprocess + 0xe4
1       libobjc.A.dylib                 0x1823d45ec 0x1823cc000 + 0x85ec    // objc_exception_throw + 0x38
2     + AUPM (*)                        0x100b899e0 0x100aac000 + 0xdd9e0   // RLMSetErrorOrThrow(NSError*, NSError* __autoreleasing*) + 0x200
3     + AUPM (*)                        0x100b75578 0x100aac000 + 0xc9578   // RLMRealmTranslateException(NSError* __autoreleasing*) + 0x78
4     + AUPM (*)                        0x100b76900 0x100aac000 + 0xca900   // 0x000ca700 + 0x200
5     + AUPM (*)                        0x100b76688 0x100aac000 + 0xca688   // +[RLMRealm realmWithConfiguration:error:] + 0xad8
6     + AUPM (*)                        0x100b74a8c 0x100aac000 + 0xc8a8c   // +[RLMRealm defaultRealm] + 0x4c
7     + AUPM (*)                        0x100dcb08c 0x100aac000 + 0x31f08c  // -[AUPMDatabaseManager updatePopulation:] + 0x358
8     + AUPM (*)                        0x100dcdf88 0x100aac000 + 0x321f88  // 0x00321e38 + 0x150
9       libdispatch.dylib               0x182b0cb24 0x182b0b000 + 0x1b24    // _dispatch_call_block_and_release + 0x18
10      libdispatch.dylib               0x182b0cae4 0x182b0b000 + 0x1ae4    // _dispatch_client_callout + 0x10
11      libdispatch.dylib               0x182b13c08 0x182b0b000 + 0x8c08    // _dispatch_queue_override_invoke$VARIANT$mp + 0x2cc
12      libdispatch.dylib               0x182b19d30 0x182b0b000 + 0xed30    // _dispatch_root_queue_drain + 0x24c
13      libdispatch.dylib               0x182b19a80 0x182b0b000 + 0xea80    // _dispatch_worker_thread3 + 0x78
14      libsystem_pthread.dylib         0x182e3ffac 0x182e3f000 + 0xfac     // _pthread_wqthread + 0x498
15      libsystem_pthread.dylib         0x182e3fb08 0x182e3f000 + 0xb08     // start_wqthread + 0x4

Steps to Reproduce

I cannot reproduce this crash myself but I'm getting reports of users that it is happening on devices <= iOS 11.3

Code Sample

This is where I believe it to be crashing, in the app delegate when I try to create a realm with a modified default configuration.

    RLMRealmConfiguration *config = [RLMRealmConfiguration defaultConfiguration];
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = paths[0];

    config.fileURL = [NSURL URLWithString:[documentsDirectory stringByAppendingPathComponent:@"/aupm.realm"]];
    config.deleteRealmIfMigrationNeeded = YES;
    [RLMRealmConfiguration setDefaultConfiguration:config];

    self.databaseManager = [[AUPMDatabaseManager alloc] init];

    NSError *configError;
    RLMRealm *realm = [RLMRealm realmWithConfiguration:config error:&configError];

    if (configError != nil) {
        NSLog(@"[AUPM] Error when opening database: %@", configError.localizedDescription);
    }

    if ([realm isEmpty]) {
        AUPMRefreshViewController *refreshViewController = [[AUPMRefreshViewController alloc] init];

        self.window.rootViewController = refreshViewController;
    }
    else {
        AUPMTabBarController *tabBarController = [[AUPMTabBarController alloc] init];

        self.window.rootViewController = tabBarController;
    }

Version of Realm and Tooling

Realm framework version: Latest

Xcode version: 10.0, However this is a jailbreak app and is not using Xcode to build

iOS/OSX version: Reports on iOS 11.3 and 11.4 but unclear if it is applicable on every device on these OS versions

Dependency manager + version: Statically linked

Haven't seen this exception (RLMRealmTranslateException) anywhere online and I'm unable to get a system log from users who are experiencing crashing so I can know what NSError is being thrown.

tgoyne commented 6 years ago

RLMRealmTranslateException() is just the function which wraps all of the various errors that can occur while opening a Realm into an NSException, hitting it doesn't really say anything about what went wrong. There isn't really a lot that can go wrong when opening a Realm that's already been opened previously with the same configuration, though.

The error stack trace shows that the failing bit is happening on a background thread. Is it possible that the thing which triggers that runs before the bit in the app delegate that sets up the default realm configuration? Alternatively, is it possible that the Realm file has been deleted between the setup and the crashing code?

wstyres commented 6 years ago

The only thing this realm instance is used for in the delegate is testing to see whether or not it is empty. If it is empty, then it opens a view controller to populate it and if it isn't it opens a different one.

Once the controller that opens it "RefreshViewController" is loaded, it starts accessing the realm in my DatabaseManager class which is opened by [RLMRealm defaultRealm] instead of realmWithConfiguration: that is where it is crashing, I don't believe it is crashing in the delegate. It is likely crashing here

RLMRealm *realm = [RLMRealm defaultRealm];

  AUPMRepoManager *repoManager = [[AUPMRepoManager alloc] init];
  NSArray *bill = [self billOfReposToUpdate];
  for (AUPMRepo *repo in bill) {
    NSDate *methodStart = [NSDate date];
    NSArray<AUPMPackage *> *packagesArray = [repoManager packageListForRepo:repo];
    [realm transactionWithBlock:^{
      [realm addOrUpdateObject:repo];
    }];

    [realm beginWriteTransaction];
    @try {
      [realm addOrUpdateObjects:packagesArray];
    }
    @catch (NSException *e) {
      NSLog(@"[AUPM] Could not add object to realm: %@", e);
    }

    [realm commitWriteTransaction];

    NSDate *methodFinish = [NSDate date];
    NSTimeInterval executionTime = [methodFinish timeIntervalSinceDate:methodStart];
    NSLog(@"[AUPM] Time to add %@ to database: %f seconds", [repo repoName], executionTime);
  }

Unless the user is deleting the database or iOS is for some reason then I don't believe it would be possible to delete the database between the setup.

wstyres commented 6 years ago

It appears this might be an issue with migration. I was creating a configuration and applying it to the Realm in my AppDelegate which checked if the realm was empty. But I was not applying this configuration to other realms in my app. I thought that setDefaultConfiguration: would set the configuration of defaultRealm: once I added the configuration to other realms in my app it appears that the crashing has stopped on some devices. I'll do some more testing and report back.

wstyres commented 6 years ago

Gotten a little farther and gotten a new crash when using objectsWhere: to search for an entry...

{"blame":[],"app_name":"AUPM","timestamp":"2018-10-04 17:53:28.00 -0400","app_version":"","slice_uuid":"b3506c09-b96a-353b-944f-dd9d45b508e6","adam_id":0,"build_version":"1.0","bundleID":"xyz.willy.aupm","share_with_app_devs":false,"is_first_party":true,"bug_type":"109","os_version":"iPhone OS 11.3.1 (15E302)","incident_id":"F02530C1-83A4-4044-ADE8-E8F38FFD3735","name":"AUPM","symbolicated":true}
Incident Identifier: F02530C1-83A4-4044-ADE8-E8F38FFD3735
CrashReporter Key:   61c7e4129cdf7f5a8159862b4f18424a66480a00
Hardware Model:      iPhone8,1
Process:             AUPM [3858]
Path:                /Applications/AUPM.app/AUPM
Identifier:          xyz.willy.aupm
Version:             1.0
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd [1]
Coalition:           xyz.willy.aupm [609]

Date/Time:           2018-10-04 17:53:26.2849 -0400
Launch Time:         2018-10-04 17:53:24.4237 -0400
OS Version:          iPhone OS 11.3.1 (15E302)
Baseband Version:    4.60.00
Report Version:      104

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

Application Specific Information:
abort() called

Filtered syslog:
None found

Last Exception Backtrace:
0       CoreFoundation                  0x1813b2d8c 0x18126d000 + 0x145d8c  // __exceptionPreprocess + 0xe4
1       libobjc.A.dylib                 0x18056c5ec 0x180564000 + 0x85ec    // objc_exception_throw + 0x38
2     + AUPM (*)                        0x1021e79fc 0x102108000 + 0xdf9fc   // RLMSetErrorOrThrow(NSError*, NSError* __autoreleasing*) + 0x200
3     + AUPM (*)                        0x1021d3198 0x102108000 + 0xcb198   // RLMRealmTranslateException(NSError* __autoreleasing*) + 0x154
4     + AUPM (*)                        0x1021d4444 0x102108000 + 0xcc444   // translateSharedGroupOpenException(RLMRealmConfiguration*, NSError* __autoreleasing*) + 0x200
5     + AUPM (*)                        0x1021d41cc 0x102108000 + 0xcc1cc   // +[RLMRealm realmWithConfiguration:error:] + 0xad8
6     + AUPM (*)                        0x1021d25d0 0x102108000 + 0xca5d0   // +[RLMRealm defaultRealm] + 0x4c
7     + AUPM (*)                        0x10216d248 0x102108000 + 0x65248   // +[RLMObject objectsWithPredicate:] + 0x34
8     + AUPM (*)                        0x10216d08c 0x102108000 + 0x6508c   // +[RLMObject objectsWhere:args:] + 0x44
9     + AUPM (*)                        0x10216d030 0x102108000 + 0x65030   // +[RLMObject objectsWhere:] + 0x24
10    + AUPM (*)                        0x1024366e0 0x102108000 + 0x32e6e0  // __50-[AUPMDatabaseManager getPackagesThatNeedUpdates:]_block_invoke + 0x88
11      libdispatch.dylib               0x180ca4b24 0x180ca3000 + 0x1b24    // _dispatch_call_block_and_release + 0x18
12      libdispatch.dylib               0x180ca4ae4 0x180ca3000 + 0x1ae4    // _dispatch_client_callout + 0x10
13      libdispatch.dylib               0x180cb16e0 0x180ca3000 + 0xe6e0    // _dispatch_main_queue_callback_4CF$VARIANT$mp + 0x3f4
14      CoreFoundation                  0x18135b070 0x18126d000 + 0xee070   // __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 0xc
15      CoreFoundation                  0x181358bc8 0x18126d000 + 0xebbc8   // __CFRunLoopRun + 0x8e0
16      CoreFoundation                  0x181278da8 0x18126d000 + 0xbda8    // CFRunLoopRunSpecific + 0x228
17      GraphicsServices                0x18325b020 0x183250000 + 0xb020    // GSEventRunModal + 0x64
18      UIKit                           0x18b25978c 0x18af3c000 + 0x31d78c  // UIApplicationMain + 0xec
19    + AUPM (*)                        0x10243b9bc 0x102108000 + 0x3339bc  // main + 0x7c
20      libdyld.dylib                   0x180d09fc0 0x180d09000 + 0xfc0     // start + 0x4

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0       libsystem_kernel.dylib          0x180e392ec 0x180e17000 + 0x222ec   // __pthread_kill + 0x8
1       libsystem_pthread.dylib         0x180fda288 0x180fd7000 + 0x3288    // pthread_kill$VARIANT$mp + 0x178
2       libsystem_c.dylib               0x180da7d0c 0x180d45000 + 0x62d0c   // abort + 0x8c
3       libc++abi.dylib                 0x1805432c8 0x180542000 + 0x12c8    // __cxa_bad_cast + 0x0
4       libc++abi.dylib                 0x180543470 0x180542000 + 0x1470    // default_unexpected_handler() + 0x0
5       libobjc.A.dylib                 0x18056c8d4 0x180564000 + 0x88d4    // _objc_terminate() + 0x7c
6       libc++abi.dylib                 0x18055d37c 0x180542000 + 0x1b37c   // std::__terminate(void (*)()) + 0x10
7       libc++abi.dylib                 0x18055cccc 0x180542000 + 0x1accc   // __cxxabiv1::exception_cleanup_func(_Unwind_Reason_Code, _Unwind_Exception*) + 0x0
8       libobjc.A.dylib                 0x18056c720 0x180564000 + 0x8720    // _objc_exception_destructor(void*) + 0x0
9     + AUPM (*)                        0x1021e79fc 0x102108000 + 0xdf9fc   // RLMSetErrorOrThrow(NSError*, NSError* __autoreleasing*) + 0x200
10    + AUPM (*)                        0x1021d3198 0x102108000 + 0xcb198   // RLMRealmTranslateException(NSError* __autoreleasing*) + 0x154
11    + AUPM (*)                        0x1021d4444 0x102108000 + 0xcc444   // translateSharedGroupOpenException(RLMRealmConfiguration*, NSError* __autoreleasing*) + 0x200
12    + AUPM (*)                        0x1021d41cc 0x102108000 + 0xcc1cc   // +[RLMRealm realmWithConfiguration:error:] + 0xad8
13    + AUPM (*)                        0x1021d25d0 0x102108000 + 0xca5d0   // +[RLMRealm defaultRealm] + 0x4c
14    + AUPM (*)                        0x10216d248 0x102108000 + 0x65248   // +[RLMObject objectsWithPredicate:] + 0x34
15    + AUPM (*)                        0x10216d08c 0x102108000 + 0x6508c   // +[RLMObject objectsWhere:args:] + 0x44
16    + AUPM (*)                        0x10216d030 0x102108000 + 0x65030   // +[RLMObject objectsWhere:] + 0x24
17    + AUPM (*)                        0x1024366e0 0x102108000 + 0x32e6e0  // __50-[AUPMDatabaseManager getPackagesThatNeedUpdates:]_block_invoke + 0x88
18      libdispatch.dylib               0x180ca4b24 0x180ca3000 + 0x1b24    // _dispatch_call_block_and_release + 0x18
19      libdispatch.dylib               0x180ca4ae4 0x180ca3000 + 0x1ae4    // _dispatch_client_callout + 0x10
20      libdispatch.dylib               0x180cb16e0 0x180ca3000 + 0xe6e0    // _dispatch_main_queue_callback_4CF$VARIANT$mp + 0x3f4
21      CoreFoundation                  0x18135b070 0x18126d000 + 0xee070   // __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 0xc
22      CoreFoundation                  0x181358bc8 0x18126d000 + 0xebbc8   // __CFRunLoopRun + 0x8e0
23      CoreFoundation                  0x181278da8 0x18126d000 + 0xbda8    // CFRunLoopRunSpecific + 0x228
24      GraphicsServices                0x18325b020 0x183250000 + 0xb020    // GSEventRunModal + 0x64
25      UIKit                           0x18b25978c 0x18af3c000 + 0x31d78c  // UIApplicationMain + 0xec
26    + AUPM (*)                        0x10243b9bc 0x102108000 + 0x3339bc  // main + 0x7c
27      libdyld.dylib                   0x180d09fc0 0x180d09000 + 0xfc0     // start + 0x4

Thread 1:
0       libsystem_pthread.dylib         0x180fd7b04 0x180fd7000 + 0xb04     // start_wqthread + 0x0

Thread 2:
0       libsystem_pthread.dylib         0x180fd7b04 0x180fd7000 + 0xb04     // start_wqthread + 0x0

Thread 3:
0       libsystem_pthread.dylib         0x180fd7b04 0x180fd7000 + 0xb04     // start_wqthread + 0x0

Thread 4:
0       libsystem_pthread.dylib         0x180fd7b04 0x180fd7000 + 0xb04     // start_wqthread + 0x0

Thread 5:
0       libsystem_pthread.dylib         0x180fd7b04 0x180fd7000 + 0xb04     // start_wqthread + 0x0

Thread 6 name:  com.apple.uikit.eventfetch-thread
Thread 6:
0       libsystem_kernel.dylib          0x180e17e08 0x180e17000 + 0xe08     // mach_msg_trap + 0x8
1       libsystem_kernel.dylib          0x180e17c80 0x180e17000 + 0xc80     // mach_msg + 0x48
2       CoreFoundation                  0x18135ae40 0x18126d000 + 0xede40   // __CFRunLoopServiceMachPort + 0xc4
3       CoreFoundation                  0x181358908 0x18126d000 + 0xeb908   // __CFRunLoopRun + 0x620
4       CoreFoundation                  0x181278da8 0x18126d000 + 0xbda8    // CFRunLoopRunSpecific + 0x228
5       Foundation                      0x181ced674 0x181ce5000 + 0x8674    // -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 0x130
6       Foundation                      0x181ced4dc 0x181ce5000 + 0x84dc    // -[NSRunLoop(NSRunLoop) runUntilDate:] + 0x54
7       UIKit                           0x18af3e7e4 0x18af3c000 + 0x27e4    // -[UIEventFetcher threadMain] + 0x88
8       Foundation                      0x181dfdefc 0x181ce5000 + 0x118efc  // __NSThread__start__ + 0x410
9       libsystem_pthread.dylib         0x180fd9220 0x180fd7000 + 0x2220    // _pthread_body + 0x110
10      libsystem_pthread.dylib         0x180fd9110 0x180fd7000 + 0x2110    // _pthread_body + 0x0
11      libsystem_pthread.dylib         0x180fd7b10 0x180fd7000 + 0xb10     // thread_start + 0x4

Thread 7:
0       libsystem_kernel.dylib          0x180e390f4 0x180e17000 + 0x220f4   // __psynch_cvwait + 0x8
1       libsystem_pthread.dylib         0x180fdbc90 0x180fd7000 + 0x4c90    // _pthread_cond_wait$VARIANT$mp + 0x284
2       libc++.1.dylib                  0x1804f02ec 0x1804e9000 + 0x72ec    // std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 0x60
3       JavaScriptCore                  0x1889cf430 0x187f14000 + 0xabb430  // std::__1::cv_status std::__1::condition_variable::wait_until<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 0x7c
4       JavaScriptCore                  0x1889cf2e0 0x187f14000 + 0xabb2e0  // std::__1::cv_status std::__1::condition_variable_any::wait_until<std::__1::unique_lock<bmalloc::Mutex>, std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >(std::__1::unique_lock<bmalloc::Mutex>&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 0x70
5       JavaScriptCore                  0x1889cee24 0x187f14000 + 0xabae24  // bmalloc::Scavenger::threadRunLoop() + 0x110
6       JavaScriptCore                  0x1889ceb60 0x187f14000 + 0xabab60  // bmalloc::Scavenger::Scavenger(std::__1::lock_guard<bmalloc::StaticMutex>&) + 0x0
7       JavaScriptCore                  0x1889cef7c 0x187f14000 + 0xabaf7c  // void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (*)(bmalloc::Scavenger*), bmalloc::Scavenger*> >(void*) + 0x2c
8       libsystem_pthread.dylib         0x180fd9220 0x180fd7000 + 0x2220    // _pthread_body + 0x110
9       libsystem_pthread.dylib         0x180fd9110 0x180fd7000 + 0x2110    // _pthread_body + 0x0
10      libsystem_pthread.dylib         0x180fd7b10 0x180fd7000 + 0xb10     // thread_start + 0x4

Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x0000000000000000   x2: 0x0000000000000000   x3: 0x00000001c40edd37
    x4: 0x0000000180562abd   x5: 0x000000016dcf5050   x6: 0x000000000000006e   x7: 0xffffffffffffffec
    x8: 0x0000000008000000   x9: 0x0000000004000000  x10: 0x0000000180fda110  x11: 0x0000000000000003
   x12: 0xffffffffffffffff  x13: 0x0000000000000001  x14: 0x0000000000000000  x15: 0x0000000000000010
   x16: 0x0000000000000148  x17: 0x0000000000000300  x18: 0x0000000000000000  x19: 0x0000000000000006
   x20: 0x00000001b35b6b40  x21: 0x000000016dcf5050  x22: 0x0000000000000303  x23: 0x00000001b35b6c20
   x24: 0x00000001c4137200  x25: 0x00000001c446aac0  x26: 0x0000000000000000  x27: 0x0000000000000000
   x28: 0x0000000002ffffff   fp: 0x000000016dcf4fb0   lr: 0x0000000180fda288
    sp: 0x000000016dcf4f80   pc: 0x0000000180e392ec cpsr: 0x00000000

Binary Images (dpkg):
0x102108000 - 0x1024effff + AUPM arm64  <b3506c09b96a353b944fdd9d45b508e6> /Applications/AUPM.app/AUPM {"install_date":"2018-10-04 15:26:01 -0400","name":"AUPM (BETA)","identifier":"xyz.willy.aupm","version":"1.0~beta7-9+debug"}
0x102864000 - 0x10286bfff + TweakInject.dylib arm64  <5e43b90a0c4336c38fe56ac76a7ec1d9> /usr/lib/TweakInject.dylib {"install_date":"2018-09-29 20:56:41 -0400","name":"Tweak Injector","identifier":"org.coolstar.tweakinject","version":"1.0.7-2"}

Binary Images (App Store):

Binary Images (Other):
0x1027d0000 - 0x10280bfff   dyld arm64  <06dc98224ae03573bf72c78810c81a78> /usr/lib/dyld
0x1804e7000 - 0x1804e8fff   libSystem.B.dylib arm64  <1cbfa6a1a0fb3fc99264d3d30ca0e543> /usr/lib/libSystem.B.dylib
0x1804e9000 - 0x180541fff   libc++.1.dylib arm64  <c7c7e60bd59e3193a63b35cc54e32e79> /usr/lib/libc++.1.dylib
0x180542000 - 0x180563fff   libc++abi.dylib arm64  <086faefd537e3954b23565f56653a2cb> /usr/lib/libc++abi.dylib
0x180564000 - 0x180c1ffff   libobjc.A.dylib arm64  <bedd6199d0d33b52a5387380f9350b30> /usr/lib/libobjc.A.dylib
0x180c20000 - 0x180c25fff   libcache.dylib arm64  <9234c7627b253d1ba2b18cd9aaadbe2e> /usr/lib/system/libcache.dylib
0x180c26000 - 0x180c31fff   libcommonCrypto.dylib arm64  <50eeb933dceb3aa28a43dd3a791139ce> /usr/lib/system/libcommonCrypto.dylib
0x180c32000 - 0x180c35fff   libcompiler_rt.dylib arm64  <d2ba481dad4f3cb0b5a2ba5abc20196f> /usr/lib/system/libcompiler_rt.dylib
0x180c36000 - 0x180c3efff   libcopyfile.dylib arm64  <d97ef07e910c32c385b8d1ee23759cf0> /usr/lib/system/libcopyfile.dylib
0x180c3f000 - 0x180ca2fff   libcorecrypto.dylib arm64  <e9cc7328986b3319a9475935e62e29cb> /usr/lib/system/libcorecrypto.dylib
0x180ca3000 - 0x180d08fff   libdispatch.dylib arm64  <42fe29ae709d39d9bc00f31af92baaf1> /usr/lib/system/libdispatch.dylib
0x180d09000 - 0x180d23fff   libdyld.dylib arm64  <b0123d033ab93dc7a5e2c35556740a26> /usr/lib/system/libdyld.dylib
0x180d24000 - 0x180d24fff   liblaunch.dylib arm64  <5d50c01da0fb3538bce8415db84cf1eb> /usr/lib/system/liblaunch.dylib
0x180d25000 - 0x180d2afff   libmacho.dylib arm64  <c39a1c9473413310a32c271a3f49fd58> /usr/lib/system/libmacho.dylib
0x180d2b000 - 0x180d2cfff   libremovefile.dylib arm64  <b2d52ec838503fc190db54488d05afd3> /usr/lib/system/libremovefile.dylib
0x180d2d000 - 0x180d43fff   libsystem_asl.dylib arm64  <5d19da723b2d3036b96bbe9569d99d5b> /usr/lib/system/libsystem_asl.dylib
0x180d44000 - 0x180d44fff   libsystem_blocks.dylib arm64  <9a69557f7f5d35e6b2bb4c8cb55b43b6> /usr/lib/system/libsystem_blocks.dylib
0x180d45000 - 0x180dc2fff   libsystem_c.dylib arm64  <253425c2089e3d4d99cc1d073d72efe5> /usr/lib/system/libsystem_c.dylib
0x180dc3000 - 0x180dc7fff   libsystem_configuration.dylib arm64  <1f70ae27eb2d31ecb98b4b45f5b82ad9> /usr/lib/system/libsystem_configuration.dylib
0x180dc8000 - 0x180dcdfff   libsystem_containermanager.dylib arm64  <3a312c5c347d3fcab6227fb824849657> /usr/lib/system/libsystem_containermanager.dylib
0x180dce000 - 0x180dcffff   libsystem_coreservices.dylib arm64  <70bb743b7bf53de1afdf6f7afcce1379> /usr/lib/system/libsystem_coreservices.dylib
0x180dd0000 - 0x180dd1fff   libsystem_darwin.dylib arm64  <90fe2ed455e4396aa662e5e32fd80b84> /usr/lib/system/libsystem_darwin.dylib
0x180dd2000 - 0x180dd8fff   libsystem_dnssd.dylib arm64  <45af7516ceab3b94905cd74b35f4eab6> /usr/lib/system/libsystem_dnssd.dylib
0x180dd9000 - 0x180e16fff   libsystem_info.dylib arm64  <515624006f30300186f77a218ef98326> /usr/lib/system/libsystem_info.dylib
0x180e17000 - 0x180e3ffff   libsystem_kernel.dylib arm64  <ab53a0ff551a3b63855eb75271fc5909> /usr/lib/system/libsystem_kernel.dylib
0x180e40000 - 0x180e6dfff   libsystem_m.dylib arm64  <cba9a1ee1d553c189dbaca4f6e13ca5e> /usr/lib/system/libsystem_m.dylib
0x180e6e000 - 0x180e89fff   libsystem_malloc.dylib arm64  <ad49e1b2657639f3a9beea6edc18675c> /usr/lib/system/libsystem_malloc.dylib
0x180e8a000 - 0x180fb5fff   libsystem_network.dylib arm64  <6762e60b7af83d2e86468be0ac6b4fa0> /usr/lib/system/libsystem_network.dylib
0x180fb6000 - 0x180fc1fff   libsystem_networkextension.dylib arm64  <d86851bd3b4d344588462ae9a88344f9> /usr/lib/system/libsystem_networkextension.dylib
0x180fc2000 - 0x180fccfff   libsystem_notify.dylib arm64  <5bd9385d98c83d0ba9d157e69c429638> /usr/lib/system/libsystem_notify.dylib
0x180fcd000 - 0x180fd6fff   libsystem_platform.dylib arm64  <038fc12926e83453a11b59ef3b1096c9> /usr/lib/system/libsystem_platform.dylib
0x180fd7000 - 0x180fe6fff   libsystem_pthread.dylib arm64  <01327cdfaac23c388fadf36cf440f0e2> /usr/lib/system/libsystem_pthread.dylib
0x180fe7000 - 0x180feafff   libsystem_sandbox.dylib arm64  <abbe277dbe993c47b59a813ca4797651> /usr/lib/system/libsystem_sandbox.dylib
0x180feb000 - 0x180ff2fff   libsystem_symptoms.dylib arm64  <7fc5e7245e09393aa5d003dceeffa74b> /usr/lib/system/libsystem_symptoms.dylib
0x180ff3000 - 0x181006fff   libsystem_trace.dylib arm64  <9bfe9e9e10b9385787a827c768ba54bf> /usr/lib/system/libsystem_trace.dylib
0x181007000 - 0x18100cfff   libunwind.dylib arm64  <7e526b97e5b039e6a1c78107321592aa> /usr/lib/system/libunwind.dylib
0x18100d000 - 0x18100dfff   libvminterpose.dylib arm64  <39d037ec6db036179470ab258fc96c13> /usr/lib/system/libvminterpose.dylib
0x18100e000 - 0x181038fff   libxpc.dylib arm64  <9bc6486ebaa83cc580e90415889c978d> /usr/lib/system/libxpc.dylib
0x181039000 - 0x18125afff   libicucore.A.dylib arm64  <afad4c33ff30367286e9c60b75a95a5a> /usr/lib/libicucore.A.dylib
0x18125b000 - 0x18126cfff   libz.1.dylib arm64  <39dcd0297ee130c891937f50ce23c2df> /usr/lib/libz.1.dylib
0x18126d000 - 0x181603fff   CoreFoundation arm64  <cf162b3ca2883453b2914300d4f19612> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x181604000 - 0x181614fff   libbsm.0.dylib arm64  <3f8b35c8ab283b78a319327ea597212e> /usr/lib/libbsm.0.dylib
0x181615000 - 0x181615fff   libenergytrace.dylib arm64  <cfbe9a511fd73ee2ba237aa7400137c6> /usr/lib/libenergytrace.dylib
0x181616000 - 0x18169afff   IOKit arm64  <56754e706db43267b2e2bc4387e34f2b> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x18169b000 - 0x181782fff   libxml2.2.dylib arm64  <21cc9796ecb933e8b3e12f53e04148f7> /usr/lib/libxml2.2.dylib
0x181783000 - 0x181790fff   libbz2.1.0.dylib arm64  <63ddef9a83dc335a9df0bef913f437a7> /usr/lib/libbz2.1.0.dylib
0x181791000 - 0x1817a9fff   liblzma.5.dylib arm64  <252187562a8c3e07b7f01473a16c00d7> /usr/lib/liblzma.5.dylib
0x1817aa000 - 0x18190efff   libsqlite3.dylib arm64  <caacdb193a86339db7943325571a25af> /usr/lib/libsqlite3.dylib
0x18190f000 - 0x181935fff   libMobileGestalt.dylib arm64  <816e5c2426243ca5a8e6b3b2b9521776> /usr/lib/libMobileGestalt.dylib
0x181936000 - 0x181ce4fff   CFNetwork arm64  <4f38683f50453eaa9a09eb6222eae139> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x181ce5000 - 0x181fddfff   Foundation arm64  <18908b96750c38988eb0d7028c656a6d> /System/Library/Frameworks/Foundation.framework/Foundation
0x181fde000 - 0x1820defff   Security arm64  <fccc95fb50db3b55ae66518f7f789f70> /System/Library/Frameworks/Security.framework/Security
0x1820df000 - 0x18214afff   SystemConfiguration arm64  <0caa3f1372c637f791d1aae47629aed1> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x18214b000 - 0x182180fff   libCRFSuite.dylib arm64  <7d19be0f618136a1a3bc7e81caba4b6d> /usr/lib/libCRFSuite.dylib
0x182181000 - 0x182181fff   libapple_crypto.dylib arm64  <fcf4f720aac03727b5842dd31fd3ef7e> /usr/lib/libapple_crypto.dylib
0x182182000 - 0x182198fff   libapple_nghttp2.dylib arm64  <8d5134e490ad3c298330609806547a9e> /usr/lib/libapple_nghttp2.dylib
0x182199000 - 0x1821c2fff   libarchive.2.dylib arm64  <93fac4c1f6b73383a9082c6a963da406> /usr/lib/libarchive.2.dylib
0x1821c3000 - 0x182271fff   libboringssl.dylib arm64  <8b812051a23e35b8a22e4c272887ecf7> /usr/lib/libboringssl.dylib
0x182272000 - 0x182288fff   libcoretls.dylib arm64  <a016bdc075493ee7a0dd4f4c0daa7f32> /usr/lib/libcoretls.dylib
0x182289000 - 0x18228afff   libcoretls_cfhelpers.dylib arm64  <f3b0bd7eedbe3df8a5944d8a737536f0> /usr/lib/libcoretls_cfhelpers.dylib
0x18228b000 - 0x18228cfff   liblangid.dylib arm64  <d66b69c96718352ba9c4092aa6416627> /usr/lib/liblangid.dylib
0x18228d000 - 0x182402fff   libnetwork.dylib arm64  <f087d7ee39b53e7c83a4c1ecb36a3477> /usr/lib/libnetwork.dylib
0x182403000 - 0x182435fff   libpcap.A.dylib arm64  <36ff48f819553b0c9e92c9fb2aa1a4a2> /usr/lib/libpcap.A.dylib
0x182436000 - 0x182492fff   libusrtcp.dylib arm64  <b8b2aa241bcd3d1ca213587a9959920d> /usr/lib/libusrtcp.dylib
0x182493000 - 0x18249dfff   IOSurface arm64  <a87bce11aabd303c9d9a6cc0009e9f57> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x18249e000 - 0x182543fff   libBLAS.dylib arm64  <50b5f5beeab037ffa5810a67e580bdbf> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x182544000 - 0x182864fff   libLAPACK.dylib arm64  <c8440bf2dc0b39c79ada236a548df940> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x182865000 - 0x182ad4fff   vImage arm64  <8f3ffa6be7e43dfdaf027891d655a60e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x182ad5000 - 0x182ae6fff   libSparseBLAS.dylib arm64  <d216b492dfb0311a8ccd19e4a930dd04> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x182ae7000 - 0x182b0bfff   libvMisc.dylib arm64  <483df9b3d90331888b43bb65d802485f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x182b0c000 - 0x182b33fff   libBNNS.dylib arm64  <982f32f4102133d2802ea5f81cdc13a8> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x182b34000 - 0x182b48fff   libLinearAlgebra.dylib arm64  <a3ec23fe236e303384df33cf2fb24d96> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x182b49000 - 0x182b4dfff   libQuadrature.dylib arm64  <5a98c0d39e0d38f89ce20797be797ac8> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x182b4e000 - 0x182bbdfff   libSparse.dylib arm64  <6556be33563434b78e2ef1c80da99eb7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x182bbe000 - 0x182c49fff   libvDSP.dylib arm64  <4de8af8c7371382b9183e4dc14245445> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x182c4a000 - 0x182c4afff   vecLib arm64  <2d93d3f4573b313d81fc9104810f0f61> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x182c4b000 - 0x182c4bfff   Accelerate arm64  <850c55e76100327ea543af936487944c> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x182c4c000 - 0x182c62fff   libcompression.dylib arm64  <9a090a94c6463eefa5413f012a34d3a4> /usr/lib/libcompression.dylib
0x182c63000 - 0x1831aafff   CoreGraphics arm64  <ac1e1c54697f3378ac6168a46dcccfe7> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1831ab000 - 0x1831b0fff   IOAccelerator arm64  <83c3c1fcfd963ec4b3c15ca18ea71efe> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1831b1000 - 0x1831b6fff   libCoreFSCache.dylib arm64  <e49f9dc0e85f3df0b0cd284c2477b315> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1831b7000 - 0x18324ffff   Metal arm64  <46fc1e5f11c5316991cb5d7a0aa46523> /System/Library/Frameworks/Metal.framework/Metal
0x183250000 - 0x183263fff   GraphicsServices arm64  <85072ece665a3a86807f153e85476fed> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x183264000 - 0x1833bdfff   MobileCoreServices arm64  <cc1d833f73a73822a52d8a9fe16a8dc3> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1833be000 - 0x1833c0fff   IOSurfaceAccelerator arm64  <7b5129072b7f3d128f701b1b950bcdf3> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1833c1000 - 0x183402fff   AppleJPEG arm64  <c82f8d506055358d9f786fa34f589827> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x183403000 - 0x1839b3fff   ImageIO arm64  <df52144b9f6f3491a1aaca4affcd69cf> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1839b4000 - 0x183a17fff   BaseBoard arm64  <4a9ddf31f3443b6e9a17e272aebe2b8d> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x183a18000 - 0x183a2ffff   AssertionServices arm64  <d4bbd03e4bef3c6d83871dfe9360d2ca> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x183a30000 - 0x183a38fff   CorePhoneNumbers arm64  <2cacbb2a053f314d9c6b6df55b4cea0c> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x183a39000 - 0x183a7dfff   AppSupport arm64  <f518c3a1857533658da18b3c9649da9c> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x183a7e000 - 0x183a96fff   CrashReporterSupport arm64  <5599d0094f603297a23dfaf2643c0214> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x183a97000 - 0x183a9cfff   AggregateDictionary arm64  <3e27a71f9459361193f3e182dc87d3b0> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x183a9d000 - 0x183b21fff   libTelephonyUtilDynamic.dylib arm64  <f78c5716e31c3ce7a566a179b347a55a> /usr/lib/libTelephonyUtilDynamic.dylib
0x183b22000 - 0x183b41fff   ProtocolBuffer arm64  <ec0dcc2ab28c36c59afaf485b79ebeae> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x183b42000 - 0x183b6efff   MobileKeyBag arm64  <19ed6cab7991380796131d9815a7e3df> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x183b6f000 - 0x183ba3fff   BackBoardServices arm64  <e4567934c6fc3c029a385d0141469c88> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x183ba4000 - 0x183bfffff   FrontBoardServices arm64  <1f63db3e11403909903a700f99bbafe5> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x183c00000 - 0x183c3cfff   SpringBoardServices arm64  <618c22ec2c98329f8bb23caa50a4f53c> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x183c3d000 - 0x183c4bfff   PowerLog arm64  <85efbdc068743b57a7dc8cf1115869ae> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x183c4c000 - 0x183c68fff   CommonUtilities arm64  <a4dce370f84f3b2c932007b704a3e959> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x183c69000 - 0x183c74fff   liblockdown.dylib arm64  <6ca17ea36c9b3d8a80b1b4d147ba35f9> /usr/lib/liblockdown.dylib
0x183c75000 - 0x183f79fff   CoreData arm64  <c76c9faa57d032dca0adc9c7b82d2791> /System/Library/Frameworks/CoreData.framework/CoreData
0x183f7a000 - 0x183f80fff   TCC arm64  <5b6e4c731ff931a499b5c45cfd742c6c> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x183f81000 - 0x183f88fff   libcupolicy.dylib arm64  <e91ba833cf5634f1ac5c077f821df376> /usr/lib/libcupolicy.dylib
0x183f89000 - 0x18401afff   CoreTelephony arm64  <8eae2d2fbbc83aa88fc94e48a88443d1> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x18401b000 - 0x184072fff   Accounts arm64  <a66a44902f0d333e8334b8561b40e90a> /System/Library/Frameworks/Accounts.framework/Accounts
0x184073000 - 0x18409cfff   AppleSauce arm64  <708bf2e767363eaaae3d41e17e0a0e86> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x18409d000 - 0x1840a5fff   DataMigration arm64  <3db16bbf04603c5da1bd70c06c7cb464> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1840a6000 - 0x1840acfff   Netrb arm64  <bf6409fc10343ba89e6c06a15df7a915> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1840ad000 - 0x1840dffff   PersistentConnection arm64  <644d574b0cb33cf0bcaa55f353b636d1> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1840e0000 - 0x1840f1fff   libmis.dylib arm64  <750810cf779d3946964aa5ee4a44f063> /usr/lib/libmis.dylib
0x1840f2000 - 0x1841f8fff   ManagedConfiguration arm64  <ddb1689e2c493216aa42aefb91f60588> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1841f9000 - 0x1841fefff   libReverseProxyDevice.dylib arm64  <7c2f9a593dd03a90855450c4b3b2208e> /usr/lib/libReverseProxyDevice.dylib
0x1841ff000 - 0x184211fff   libamsupport.dylib arm64  <6c1d65704dfc3b9b87980cd65560188e> /usr/lib/libamsupport.dylib
0x184212000 - 0x184217fff   libCoreVMClient.dylib arm64  <8cfed6ca663f30748dd58b598a23169d> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x184218000 - 0x184219fff   libCVMSPluginSupport.dylib arm64  <4bf21a6ca33d3222bd1442c13450464d> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x18421a000 - 0x18421dfff   libutil.dylib arm64  <2f7e5961d4b734b496f3d85eae03acd1> /usr/lib/libutil.dylib
0x18421e000 - 0x18425efff   libGLImage.dylib arm64  <9c2f70ff46913e4f9dc66605475914f9> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x18425f000 - 0x1842d5fff   APFS arm64  <075ddba3fa093db78988256945f50ff9> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1842d6000 - 0x184307fff   MediaKit arm64  <82856e94773c33f5a67a8eb4c1c6148e> /System/Library/PrivateFrameworks/MediaKit.framework/MediaKit
0x184308000 - 0x184320fff   libSERestoreInfo.dylib arm64  <3cb3e784ed3e389894f58e4b9fc7bb4e> /usr/lib/updaters/libSERestoreInfo.dylib
0x184325000 - 0x184361fff   DiskImages arm64  <198c6094f9c237698130c80de266469b> /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
0x184362000 - 0x18436bfff   libGFXShared.dylib arm64  <ed4ebad5d4c33bc28402efe87dbe49a3> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x18436c000 - 0x1843b3fff   libauthinstall.dylib arm64  <dd4427dc0adb323fa26a58d1781bf907> /usr/lib/libauthinstall.dylib
0x1843b4000 - 0x1843bcfff   IOMobileFramebuffer arm64  <f7a97755a31e39119cc617a8d67ca244> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1843bd000 - 0x1843c8fff   OpenGLES arm64  <fcb36165f660338c97d330e51329838f> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1843c9000 - 0x184450fff   ColorSync arm64  <5959a19f99dc3ed1b0553dc055c18347> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x184451000 - 0x18447afff   CoreVideo arm64  <740eb305ad133ba9ad42b2334b4c4ef5> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x18447b000 - 0x18447cfff   libCTGreenTeaLogger.dylib arm64  <f5dde928f8d1342894184117065f2584> /usr/lib/libCTGreenTeaLogger.dylib
0x18447d000 - 0x1845e9fff   CoreAudio arm64  <8c29fcd6f30b3943bf20b01aeb0e04f6> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1845ea000 - 0x184618fff   CoreAnalytics arm64  <97087dc402a73b5d9d71d9e6e230991c> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x184619000 - 0x18461cfff   UserFS arm64  <26dc70e76d613a75aecc6a3fb815199c> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x18461d000 - 0x184799fff   CoreMedia arm64  <5b1204613571323abde92fc7e94d5995> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x18479a000 - 0x1847acfff   libprotobuf-lite.dylib arm64  <1a1686915f8b343ba80bea61f7bfb250> /usr/lib/libprotobuf-lite.dylib
0x1847ad000 - 0x184811fff   libprotobuf.dylib arm64  <0f2b421fec773e7a8c4dc240454fd2bd> /usr/lib/libprotobuf.dylib
0x184812000 - 0x184ad5fff   libAWDSupportFramework.dylib arm64  <1293c8fa59113426a524963ad2960534> /usr/lib/libAWDSupportFramework.dylib
0x184ad6000 - 0x184b1ffff   WirelessDiagnostics arm64  <e29e7932ab30323a8123b52cd1220792> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x184b20000 - 0x184bd7fff   VideoToolbox arm64  <ead73849a5c6389a83f345517cd5ea04> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x184bd8000 - 0x184ce1fff   libFontParser.dylib arm64  <4f1c4137cd9a327f9cfe6befb8772ecc> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x184ce2000 - 0x184ce3fff   FontServices arm64  <f219f06c5d55331980dc38b5b3007a38> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x184ce4000 - 0x184e37fff   CoreText arm64  <77db300ece0c3f60880c9c37d0328f09> /System/Library/Frameworks/CoreText.framework/CoreText
0x184e38000 - 0x184e47fff   IntlPreferences arm64  <d8d17e8a2b9237598b5b9b2d9bf25ee3> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x184e48000 - 0x184e50fff   RTCReporting arm64  <4a3fab43886f3e6a80eff6d701c81c42> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x184e51000 - 0x184ec1fff   CoreBrightness arm64  <09c973cf66153394aafc1d30404b2124> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x184ec2000 - 0x184eccfff   libAudioStatistics.dylib arm64  <c94b3206337b37e3a14f244078b7ebe5> /usr/lib/libAudioStatistics.dylib
0x184ecd000 - 0x185405fff   AudioToolbox arm64  <b16fa0c577e33089afcc27ec669f486f> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x185406000 - 0x185639fff   QuartzCore arm64  <3b0f2dc265b03c6badac432a3bd1a26f> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x18563a000 - 0x185645fff   MediaAccessibility arm64  <3bbdb8fbf36c387fb7ac14d5a0becfd4> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x185646000 - 0x185738fff   libiconv.2.dylib arm64  <a7f0f50a7a933ec18bd126fa5938b4a3> /usr/lib/libiconv.2.dylib
0x185739000 - 0x185754fff   NetworkStatistics arm64  <4bc8202c17113cbbbedec9d698607ad8> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x185755000 - 0x185770fff   MPSCore arm64  <fdf474d325fb35dbb581c292a55c2a69> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x185771000 - 0x1857d9fff   MPSImage arm64  <bb4eeae3c182348eac0c7afc6cb28ebf> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1857da000 - 0x1857fcfff   MPSMatrix arm64  <51eed27dc958331185498c57d285488c> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1857fd000 - 0x18580bfff   CoreAUC arm64  <2224d1a7332a3d3086784b512a37864c> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x18580c000 - 0x185e61fff   MediaToolbox arm64  <ef6c533781be355ca062624cd8d74d07> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x185e62000 - 0x185f91fff   MPSNeuralNetwork arm64  <88bcea2c366b31a68c58df71a7f334ef> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x185f92000 - 0x185f92fff   MetalPerformanceShaders arm64  <19616d7864ed39bd92fa2f834bea5e92> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x185f93000 - 0x1863bdfff   FaceCore arm64  <5e413f9639833bd582d1626f1324d0bf> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1863be000 - 0x1863cbfff   GraphVisualizer arm64  <8717060f6a11307eb90d4c68ab8026ba> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1863cc000 - 0x186573fff   libFosl_dynamic.dylib arm64  <bb0a03649109390ba3128fc8f005a891> /usr/lib/libFosl_dynamic.dylib
0x186574000 - 0x1867d7fff   CoreImage arm64  <f57ebcfb222c3ac29a30aff8f0a9eb68> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1867d8000 - 0x1869d6fff   CoreMotion arm64  <47fb319b10c53669bcef50c4ee34d0c1> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1869d7000 - 0x186a05fff   CoreBluetooth arm64  <c1761f13e5ed392f96f649c2fa103c36> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x186a06000 - 0x186a28fff   PlugInKit arm64  <650de2e4f728381d9c6bae39eb3e2768> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x186a29000 - 0x186c54fff   Celestial arm64  <0db0bceb08073225810e08ca28af72ab> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x186c55000 - 0x186cd7fff   Quagga arm64  <95fb120567723673a0c85b1b91f1a67a> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x186cd8000 - 0x186dcefff   AVFAudio arm64  <ea5c1b49ecc73321b8c704da493a4150> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x186dcf000 - 0x186fc0fff   AVFoundation arm64  <6fa521ecbea43fb6888cdbf49ed19506> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x186fc1000 - 0x186fe3fff   CacheDelete arm64  <10926c0dd8be35e08090aeae4b6aaabc> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x186fe4000 - 0x187009fff   StreamingZip arm64  <a8037e11b0fb362caec892930fda6bfa> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x18700a000 - 0x18701bfff   CoreEmoji arm64  <6d18237f09d23ce6aa6abb287d7aa515> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x18701c000 - 0x187069fff   CoreLocationProtobuf arm64  <aa410fa0891437519a2a7fec4e6c9649> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x18706a000 - 0x187072fff   SymptomDiagnosticReporter arm64  <32a292fd7bac35528f161a9c3d8e24e6> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x187073000 - 0x18797cfff   GeoServices arm64  <49ecb05055933ff287615105a26c9497> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x18797d000 - 0x187994fff   MobileAsset arm64  <744020a967d23c8682d6e472ad53481f> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x187995000 - 0x1879d5fff   Lexicon arm64  <b510b95a2db637a28d561679f72ca592> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1879d6000 - 0x1879e6fff   libcmph.dylib arm64  <be5f1569ab5a3b86b461e82105c560aa> /usr/lib/libcmph.dylib
0x1879e7000 - 0x187b08fff   LanguageModeling arm64  <b3d9ec93728b3e6a94dd30097702ccde> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x187b09000 - 0x187b20fff   libmarisa.dylib arm64  <2e2b0fba5ce534ddbc4ad00b4b1f528b> /usr/lib/libmarisa.dylib
0x187b21000 - 0x187bbafff   CoreLocation arm64  <4864efb67a7438ff83857835185cd8c6> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x187bbb000 - 0x187bbbfff   PhoneNumbers arm64  <aee5ccde97963ce9adfda907463da0df> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x187bbc000 - 0x187bc7fff   libChineseTokenizer.dylib arm64  <8fc360e06ecf39eebfe18fee3d065548> /usr/lib/libChineseTokenizer.dylib
0x187bc8000 - 0x187c74fff   libmecab_em.dylib arm64  <32ab30df1b96345aadc220d9f48bdda8> /usr/lib/libmecab_em.dylib
0x187c75000 - 0x187c76fff   libThaiTokenizer.dylib arm64  <b6df9e5a19923bc386db3594db983449> /usr/lib/libThaiTokenizer.dylib
0x187c77000 - 0x187c7bfff   libgermantok.dylib arm64  <2fd41d3c09223f1ebb2bab588c94081c> /usr/lib/libgermantok.dylib
0x187c7c000 - 0x187cd3fff   CoreNLP arm64  <6ee51de94ef53e0581d2e02a00bdaa96> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x187cd4000 - 0x187ea5fff   MobileSpotlightIndex arm64  <0dbda49f46fa35a5afff44b2514db83c> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x187ea6000 - 0x187f07fff   CoreSpotlight arm64  <b20d897415db34b3a5020f3ed90de711> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x187f14000 - 0x188a75fff   JavaScriptCore arm64  <5037fc680dcb3b3d9819a375cf798f4f> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x188a76000 - 0x188a7bfff   libheimdal-asn1.dylib arm64  <e05c6a5c6e9c31b7b77de93bffa04ec6> /usr/lib/libheimdal-asn1.dylib
0x188a7c000 - 0x188af7fff   libate.dylib arm64  <9b79be10c08736b397ef06920b5d9a22> /usr/lib/libate.dylib
0x188af8000 - 0x188bacfff   TextureIO arm64  <b5852ba51db534d893d1f8b6bf5af3c5> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x188bad000 - 0x188c77fff   CoreUI arm64  <5b1aadadc936328db96ad35b5b301850> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x188c78000 - 0x188c81fff   MobileIcons arm64  <1f2e75af8930391396411577077f1680> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x188c82000 - 0x188c90fff   AppleFSCompression arm64  <0faf45b120053801bbaf97954d6e3dd4> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x188c91000 - 0x188ce9fff   TextInput arm64  <3c0b74e0fbe43fe9abbeb20cd9336f2a> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x188cea000 - 0x188d12fff   libxslt.1.dylib arm64  <afd62d51467a31f086fd50ba6d522fa0> /usr/lib/libxslt.1.dylib
0x188d13000 - 0x188d47fff   DataDetectorsCore arm64  <0a5df1c450143c448bca483b0442deaf> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x188d48000 - 0x188ddbfff   FileProvider arm64  <23494a23c54d3372b651e89a5eab8c49> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x188fa6000 - 0x188fbafff   libAccessibility.dylib arm64  <c2ae8d98d410345a97add95c19a1d6d7> /usr/lib/libAccessibility.dylib
0x188fbb000 - 0x189461fff   libwebrtc.dylib arm64  <fc518ee99a7a36b1beba891836b24115> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x189462000 - 0x1894c4fff   ContactsFoundation arm64  <957d69d66b6e317d90ce669eda861706> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1894c5000 - 0x18ab8efff   WebCore arm64  <c3f1cacffa143b47bdc452cde9213eda> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x18ab8f000 - 0x18ad12fff   WebKitLegacy arm64  <3a71810a4d5e363892f8ac31952fe314> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x18ad13000 - 0x18ad3bfff   DataAccessExpress arm64  <8e3311f934e53459b1a50a56a8f072e1> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x18ad3c000 - 0x18add6fff   AddressBookLegacy arm64  <9f96f3b0e89b37b38c4a0ac13b9fed3d> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x18add7000 - 0x18ae32fff   ProtectedCloudStorage arm64  <97c44905d98f3aeda54d5e18852fdb1c> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x18ae33000 - 0x18ae5ffff   UserNotifications arm64  <af5da8910e8133b7af31685569872ba5> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x18ae60000 - 0x18ae6bfff   AppleIDAuthSupport arm64  <9a58a7b3913a36e7b80931230c9adac1> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x18ae6c000 - 0x18aebcfff   AuthKit arm64  <7b2eebc84315383e94b83f787ed9a111> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x18aee7000 - 0x18af3bfff   DocumentManager arm64  <8263ec0a6c883222a26bc072300c77db> /System/Library/Frameworks/UIKit.framework/Frameworks/DocumentManager.framework/DocumentManager
0x18af3c000 - 0x18bfbafff   UIKit arm64  <f8ce0f3965e430a483eb07f32b5ea991> /System/Library/Frameworks/UIKit.framework/UIKit
0x18bfbb000 - 0x18bfcdfff   DocumentManagerCore arm64  <1b0d69ce2d613b8a867a77e9f1b33989> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x18bfce000 - 0x18bfd2fff   HangTracer arm64  <03caf892e5c637ae91f8f122ccafcfe3> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x18bfd3000 - 0x18c024fff   PhysicsKit arm64  <1cb1907390353c898fffd99cd5610e81> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x18c025000 - 0x18c027fff   StudyLog arm64  <9b96f921e00c3c28923639f879fbea28> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x18c028000 - 0x18c107fff   UIFoundation arm64  <2431175d036e3f2d8cb0e7a6b0d1466f> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x18c108000 - 0x18c226fff   CloudKit arm64  <e857b65d67d33f92a409ba1f743a399e> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x18c227000 - 0x18c227fff   IntentsFoundation arm64  <a2fbab6d9cef39b4801fc0b07b0ee342> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x18c228000 - 0x18c344fff   Network arm64  <ad0700a8317d378c92c0b3d6b8bd3bd4> /System/Library/PrivateFrameworks/Network.framework/Network
0x18c345000 - 0x18c54cfff   Intents arm64  <10d12a311d1932ee8aca5151e1b51d88> /System/Library/Frameworks/Intents.framework/Intents
0x18c54d000 - 0x18c567fff   libresolv.9.dylib arm64  <7c4f57d578193d9fa2b41e55d2df2db2> /usr/lib/libresolv.9.dylib
0x18c568000 - 0x18c56afff   CoreDuetDebugLogging arm64  <54c6a0c800a536efb318b67f910d62a1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x18c56b000 - 0x18c5a0fff   libtidy.A.dylib arm64  <cb3e6b9eb9e132d68a4ff455ab5eb4f7> /usr/lib/libtidy.A.dylib
0x18c5a1000 - 0x18c6d0fff   CoreDuet arm64  <9b8c0d8a045c39808e729680f7a02acf> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x18c6d1000 - 0x18c6f0fff   CoreDuetContext arm64  <c702b6b7aba33523bda6faad8361f38c> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x18c6f1000 - 0x18c705fff   CoreDuetDaemonProtocol arm64  <40eb67e397ef314886482b11e8022677> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x18c706000 - 0x18c771fff   IMFoundation arm64  <6b4b6b92108e33baa7f8381d42cccfec> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x18c772000 - 0x18c7a0fff   vCard arm64  <3752e374279634088834401ad0220ce8> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x18c7a1000 - 0x18c8aefff   Contacts arm64  <1591a177f0c33f73ad8cc2de14c743ff> /System/Library/Frameworks/Contacts.framework/Contacts
0x18c8af000 - 0x18c8b0fff   DiagnosticLogCollection arm64  <cc7806b2a4ad32bfaab285d7323ba272> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x18c8b1000 - 0x18c8b2fff   Marco arm64  <865c2a3744c13039941e7f92aaf9bcaf> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x18c8b3000 - 0x18c8bdfff   MessageProtection arm64  <6dd7d2b068083337830d3fac1c9cef2b> /System/Library/PrivateFrameworks/MessageProtection.framework/MessageProtection
0x18c8be000 - 0x18cbccfff   StoreServices arm64  <fb60d94f6f79343ea2931e936b6de0bc> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x18cbcd000 - 0x18cbe4fff   Engram arm64  <fceb747ff3b531f7b4027a12656fdcca> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x18cbe5000 - 0x18ccd5fff   IDSFoundation arm64  <08d21d4abe023b57bc062df7b9f71f1b> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x18ccd6000 - 0x18cce1fff   CaptiveNetwork arm64  <b7526b28ec6b3a089803ed3aee798ca2> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x18cce2000 - 0x18cd10fff   EAP8021X arm64  <ee33103cb73d375fac78cab0e9a64be2> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x18cd11000 - 0x18cd4bfff   MobileWiFi arm64  <82fb4980e6053e0badca33aa5dde8957> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x18cd4c000 - 0x18cd4efff   OAuth arm64  <5625c4fc795136469ed6983973f33dd5> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x18cd4f000 - 0x18cd51fff   CommonAuth arm64  <8455c7ba72b938899f6f32067e1de0d9> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x18cd52000 - 0x18cdc0fff   Heimdal arm64  <d1aba4a16eee3cee9133bae84f8f3159> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x18cdc1000 - 0x18cdeafff   GSS arm64  <3595359311433789b5dd92832540f3aa> /System/Library/Frameworks/GSS.framework/GSS
0x18cdeb000 - 0x18ce02fff   ApplePushService arm64  <613a5a854a4c3c87bb81f3177f4b0865> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x18ce03000 - 0x18ce9afff   AccountsDaemon arm64  <1d435ebf3288320b865f40b605b5408f> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x18ce9b000 - 0x18cebffff   AppleIDSSOAuthentication arm64  <816bd8130fca33b7a218820dd1d2679b> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x18cec0000 - 0x18cf38fff   AppleAccount arm64  <7eec817466d93d07bfac97e7cedb4d60> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x18cf39000 - 0x18d06ffff   CoreUtils arm64  <6170a002e2203fc8a39b6607d40ede58> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x18d070000 - 0x18d186fff   IDS arm64  <16a330e0018b33738d123c494e800dbc> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x18d187000 - 0x18d1aafff   MediaServices arm64  <8b5314e242a83855b004ab611ea54e3c> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x18d1ab000 - 0x18d362fff   MediaRemote arm64  <217cb8eb6a7d33b5a9e1032e5488ffd3> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x18d363000 - 0x18d37bfff   UserManagement arm64  <64bd9de97b9f359594a20aabe0068e3e> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x18d38c000 - 0x18d3bcfff   Bom arm64  <5ae2739d04103a60860a53eb4f696782> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x18d3bd000 - 0x18d3c1fff   CommunicationsFilter arm64  <a31562e7c15830f3a058cac38e6e1181> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x18d3c2000 - 0x18d3e7fff   FTAWD arm64  <4eb35e0a28ae30c5bdffec2ff4b899ab> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x18d3e8000 - 0x18d43bfff   FTServices arm64  <ee7a0745bd6f3afebb004f6e31abf084> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x18d43c000 - 0x18d48dfff   WirelessProximity arm64  <7799210b944235189b44234a063a8be8> /System/Library/PrivateFrameworks/WirelessProximity.framework/WirelessProximity
0x18d48e000 - 0x18d498fff   ProactiveEventTracker arm64  <2e40ee934a5e3022a56ff8f8c4228860> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x18d499000 - 0x18d4e7fff   ChunkingLibrary arm64  <7672d15e44c93f5f8a3d56488773d22a> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x18d4e8000 - 0x18d4f4fff   libnetworkextension.dylib arm64  <272813d05f9430979f4ee0ee6384bf61> /usr/lib/libnetworkextension.dylib
0x18d4f5000 - 0x18d519fff   AddressBook arm64  <60347d6b0b96393796c3cea7c779a4b2> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x18e31c000 - 0x18e4b0fff   NetworkExtension arm64  <e84f039200df36debb7cb251f82a69b9> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x18e4b1000 - 0x18e8fdfff   SiriTTS arm64  <ca5f1c3d0d893c05bc0790509b89a26d> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x18e8fe000 - 0x18e958fff   SAObjects arm64  <23ce3832c03f34f19accad50e0a0fb7e> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x18e959000 - 0x18e997fff   VoiceServices arm64  <a17ca03e5e39393aaec10950b9ad8e55> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x18e998000 - 0x18e9c8fff   GLKit arm64  <c38901bef3573ed896eb6c7dd3ac6364> /System/Library/Frameworks/GLKit.framework/GLKit
0x18e9c9000 - 0x18eaaefff   AssistantServices arm64  <056177456cc934dd9c4024dfaab0f6bf> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x18eaaf000 - 0x18eacdfff   AssetCacheServices arm64  <14148e4386e73186a62a37a4c1436605> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x18eace000 - 0x18eb88fff   NetworkServiceProxy arm64  <3542ac752ae93bdf8b052b1c864c42a6> /System/Library/PrivateFrameworks/NetworkServiceProxy.framework/NetworkServiceProxy
0x18eb89000 - 0x18ec7afff   MMCS arm64  <8e94bb24e1ad37b39c3895c32813348b> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x18ec88000 - 0x18ecf8fff   CoreDAV arm64  <378358a925753c8ca1d28ab5335c7849> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x18ecf9000 - 0x18ed2efff   iCalendar arm64  <6cd4994cd6ac31dc81707f4cbba4dae3> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x18ed2f000 - 0x18ed3cfff   PersonaKit arm64  <dadf0bdaa9bf303baa9e1046da37fd9f> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x18ed3d000 - 0x18ed97fff   CalendarFoundation arm64  <84c86b1af6263b6a82c1fa6c5c94e590> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x18ed98000 - 0x18edc5fff   PhotosFormats arm64  <60c666c2594931379d5aebc0b847bfb7> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x18edc6000 - 0x18ee63fff   CalendarDatabase arm64  <230ebaa77aa93deeba0d588b35259b10> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x18ee64000 - 0x18eeb4fff   CalendarDaemon arm64  <ee7218ed873c3c2588e1c51768855adb> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x18eeb5000 - 0x18efcefff   CloudPhotoLibrary arm64  <b1025b86e3d831c6836c5cb3698ca289> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x18efcf000 - 0x18f0b1fff   EventKit arm64  <6ea4d3e7617b392fbf16b4a4ba99ac72> /System/Library/Frameworks/EventKit.framework/EventKit
0x18f0b2000 - 0x18f0dcfff   AssetsLibraryServices arm64  <af4dd8bf359a3ab8b02ebe8c418947c9> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x18f0dd000 - 0x18f111fff   ACTFramework arm64  <977f6698f49038b79fff67c783477b8e> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework
0x18f112000 - 0x18f132fff   DCIMServices arm64  <1b541e7837803064af0e9f011991282f> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x18f133000 - 0x18f26efff   CoreMediaStream arm64  <193d543866c536cda65047f741c3ed74> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x18f26f000 - 0x18f276fff   XPCKit arm64  <f4572f263382392fa9cc008fb5c0302e> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
0x18f277000 - 0x18f35bfff   CameraKit arm64  <bed0c4f7ae1c3fe2a3d2868721ae9f8c> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit
0x18f35c000 - 0x18f374fff   CloudPhotoServices arm64  <0d5f9ccc560d3d7481ba785f975989c1> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x18f375000 - 0x18f380fff   CoreRecents arm64  <e53eb9b80a313789a220f1ae5183f9b8> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x18f381000 - 0x18f39ffff   MediaStream arm64  <b7408d4da0f838d98408a752c56eeeeb> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x18f3a0000 - 0x18f7c5fff   PhotoLibraryServices arm64  <4143d281e62431ee9dfa0c7652ccb0ab> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x18f7c6000 - 0x18f7fbfff   PrototypeTools arm64  <3e6cb4b7b5963c55ac06b1ab7317c69c> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x18f7fc000 - 0x18f885fff   CoreSymbolication arm64  <bec7481bde963b16bcab4fc8d2bffbc4> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x18f886000 - 0x18f9b2fff   SearchFoundation arm64  <541bd939dc853e898a9c279dc9991c87> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x18f9ba000 - 0x18fa6dfff   iTunesStore arm64  <b0a79cc44fb637528b9abc03a6f4db92> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x18fbe4000 - 0x18fbebfff   CoreTime arm64  <a968eb348dc33f83acef60fd12446ceb> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x18fbec000 - 0x18fd57fff   CVML arm64  <3789e7e736b83ea7ac7195c1a042cf6a> /System/Library/PrivateFrameworks/CVML.framework/CVML
0x18fd58000 - 0x18fda5fff   CoreAppleCVA arm64  <305df7eb28b5308bac9815923f4985b1> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA
0x18fda6000 - 0x18fde0fff   DifferentialPrivacy arm64  <e36140a770b836e2b3ec41dfab5dc183> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x18fded000 - 0x18ff67fff   AppleCVA arm64  <41ef9c9831013bcf86df23db6d3039b0> /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA
0x18ff68000 - 0x18fff8fff   Montreal arm64  <c9bf79cd70d33c8fabdeb8dd6d62bf70> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x18fff9000 - 0x19021bfff   Espresso arm64  <f0628fb67a37313ea51f514fd3230d76> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x19021c000 - 0x19021ffff   MobileSystemServices arm64  <e4fd6cedc6103da6b2d05b04e45a5f3d> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x190220000 - 0x190371fff   Photos arm64  <35be6d570edd3d5e8ac8a6b145236685> /System/Library/Frameworks/Photos.framework/Photos
0x190372000 - 0x19053dfff   CoreML arm64  <80ba174d6a153c34a556a7b287344232> /System/Library/Frameworks/CoreML.framework/CoreML
0x19053e000 - 0x190542fff   CoreOptimization arm64  <80f64c09a26b325a9a0a981a23671f2d> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x190543000 - 0x19058efff   SafariCore arm64  <fb3739944b943536bf02a3c57bcdfca7> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x19058f000 - 0x1905ecfff   CorePrediction arm64  <0f9dabcb82053af697ab69533e838fa2> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1905ed000 - 0x1906e9fff   Navigation arm64  <7a9cb461bf02381fa026d736145412c7> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1906ea000 - 0x190701fff   ContactsDonation arm64  <f48974fa738c32a492a5d587d4714378> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x190702000 - 0x19072efff   Futhark arm64  <bf235b86b8b73d409cc7fd74592117d8> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1907c6000 - 0x1907d7fff   BaseBoardUI arm64  <270d2f006ee23ab581f0b552d45a75a0> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x1907d8000 - 0x19082ffff   ContactsUICore arm64  <76397a63e83735faadde51b9e0a5910e> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x190830000 - 0x190993fff   ContactsUI arm64  <6dc7d0bd0ca53addb3b9752eb80f8fe7> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x190994000 - 0x190a6ffff   CorePDF arm64  <094152970a1d3795bea2193509c9aa7c> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x190a70000 - 0x190cd1fff   Vision arm64  <7858f139035533e88f8ece2df4e9779b> /System/Library/Frameworks/Vision.framework/Vision
0x190cd2000 - 0x19112ffff   WebKit arm64  <92a4fca930c23600a76d9bc9dcf79789> /System/Library/Frameworks/WebKit.framework/WebKit
0x1911e7000 - 0x1911ecfff   ConstantClasses arm64  <73d3d9dc12313ec89aa75cc4636d65a5> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1911ed000 - 0x1911f5fff   CertUI arm64  <ebd5a002bf403d0da06a06a3d00237d6> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1912dc000 - 0x191379fff   MediaPlatform arm64  <00f9533651b934eb911938d4d5d9a6ae> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x19137a000 - 0x1913e3fff   WebBookmarks arm64  <c2dcdb1e4ad836fe9dbc881e111c9041> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1913e4000 - 0x1913ebfff   DAAPKit arm64  <f32c6621821a318fa0749e99a652abca> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1914de000 - 0x191800fff   MediaLibraryCore arm64  <0c1da3ba61bf3cee99da5119a81a833d> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x191801000 - 0x191801fff   AdSupport arm64  <1075f932c9433a9b9611b7e9683220e4> /System/Library/Frameworks/AdSupport.framework/AdSupport
0x191802000 - 0x191a8bfff   MusicLibrary arm64  <3c170b8195fd31b89fd14328e3641f08> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x191a8c000 - 0x19215ffff   VectorKit arm64  <1985393e1fcb318e88282ecd3161d221> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x192160000 - 0x19239cfff   MapKit arm64  <acd4316f75613a13ba1c63b7d5725316> /System/Library/Frameworks/MapKit.framework/MapKit
0x19239d000 - 0x19252dfff   iTunesCloud arm64  <34be1b618d0930ba8be2d70e6682af27> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x19252e000 - 0x1925d3fff   HomeSharing arm64  <c8dae9643d403eac91d3f4a0217cfde7> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1925d4000 - 0x192647fff   WebInspector arm64  <3a221525a3ff3e31869c8c235168805c> /System/Library/PrivateFrameworks/WebInspector.framework/WebInspector
0x192648000 - 0x19273ffff   ITMLKit arm64  <53d9390f0f0439998075a7dd215a45df> /System/Library/PrivateFrameworks/ITMLKit.framework/ITMLKit
0x192750000 - 0x192bb0fff   MediaPlayer arm64  <531f64e936f53790b1a69ad2c5804e89> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x192bb1000 - 0x192bd5fff   MobileInstallation arm64  <b4bbd3b88c6135e08bd37be4f3d3a627> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x192bd6000 - 0x192bddfff   EmailAddressing arm64  <21b9533aaad03cb692c2f6057ef2d0df> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
0x192bde000 - 0x192bdffff   MessageSupport arm64  <1d70381bc2ec3fa89552a521bf5d6005> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x192be3000 - 0x192c3dfff   MIME arm64  <3097f98ea1243d969095a9d3fa48a78f> /System/Library/PrivateFrameworks/MIME.framework/MIME
0x192c70000 - 0x192ca7fff   Notes arm64  <c676912c88093465b5c29c752335d8b8> /System/Library/PrivateFrameworks/Notes.framework/Notes
0x192d5a000 - 0x192d94fff   CalendarUIKit arm64  <6e6df41823013cf2a4bc8c7fb78bcb1e> /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit
0x192dad000 - 0x192e08fff   DataAccess arm64  <bdcc0c5677e3325197678bf4e0fff407> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x192e09000 - 0x192e1cfff   AssetsLibrary arm64  <e200a54807d132cb928829063baebe19> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x192e1d000 - 0x192ff9fff   EventKitUI arm64  <13b4e76e2f4431beaeebb08751688ad1> /System/Library/Frameworks/EventKitUI.framework/EventKitUI
0x1930eb000 - 0x19318bfff   Social arm64  <7f23e436784433e89e2eeeb3e9f77bba> /System/Library/Frameworks/Social.framework/Social
0x1931a0000 - 0x193205fff   RemoteUI arm64  <8a58c4ff4cdf3e55becd531636c82a52> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
0x19321d000 - 0x193233fff   CoreFollowUp arm64  <b52808572bf03ac4a1cd47161bf131cb> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1932a4000 - 0x1932b4fff   MailServices arm64  <514704b94a2a38c0a6f06e6cf8ab8cdb> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x1932b5000 - 0x193347fff   CoreRecognition arm64  <8e71ab6e2dbf3debbb0a68d66c3c4c4e> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x193348000 - 0x193368fff   MailSupport arm64  <e6f35403fb2a35afbb7e2fb1f7311fef> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
0x193369000 - 0x1934b8fff   Message arm64  <2e3abb3301863a819f15ddc98de74833> /System/Library/PrivateFrameworks/Message.framework/Message
0x19377a000 - 0x1937a9fff   AirTraffic arm64  <0af9202734ee3368aed0bd01338c729b> /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic
0x1937dc000 - 0x193816fff   ContactsAutocomplete arm64  <add0707df68830ca84b4b0c48e9404d4> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
0x1938e1000 - 0x193911fff   Pegasus arm64  <75f25085f15b30739b75679e741b1bd8> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x193912000 - 0x19399efff   AVKit arm64  <cdf40b3645dc34ff8cf779571cdf411f> /System/Library/Frameworks/AVKit.framework/AVKit
0x19399f000 - 0x1939c8fff   AuthKitUI arm64  <285adaeb4db83fe9a7e4c0df2ee463d0> /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
0x1939c9000 - 0x1939ccfff   FTClientServices arm64  <ca8837cec1ae32368074a4f49e2521b8> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x1939d1000 - 0x1939d1fff   MobileObliteration arm64  <a06b58dfe47e35ecb60f7f828a2f310c> /System/Library/PrivateFrameworks/MobileObliteration.framework/MobileObliteration
0x193bc8000 - 0x193c6efff   SpringBoardFoundation arm64  <eb7be49ada6a3a939201d41774753c38> /System/Library/PrivateFrameworks/SpringBoardFoundation.framework/SpringBoardFoundation
0x193f47000 - 0x193f54fff   SetupAssistantSupport arm64  <e064b303a79336968e6d35634a102dc5> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x193f55000 - 0x193f7dfff   SetupAssistant arm64  <334293120d713f3b8c6ce065e63864e0> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x193fc4000 - 0x193fc7fff   HSAAuthentication arm64  <d241287073193410ac6dcce54295b23b> /System/Library/PrivateFrameworks/HSAAuthentication.framework/HSAAuthentication
0x193fc8000 - 0x193fd1fff   MobileStorage arm64  <785f1ca8a50235daa245ad83d62033a1> /System/Library/PrivateFrameworks/MobileStorage.framework/MobileStorage
0x193fd2000 - 0x194014fff   ContentIndex arm64  <f9bbc0e903603352b5ce41d8ad7e9803> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
0x194015000 - 0x194313fff   ImageCapture arm64  <b4261a9fc7e9362b986e7d3a981f4b0a> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture
0x1944e5000 - 0x1944fbfff   iPhotoMigrationSupport arm64  <c8fcd42decb9324db4d19d8ec606f8c3> /System/Library/PrivateFrameworks/iPhotoMigrationSupport.framework/iPhotoMigrationSupport
0x1944fc000 - 0x19450dfff   DiagnosticExtensions arm64  <3ed45ebdf0183644ae641c2b23b56ade> /System/Library/PrivateFrameworks/DiagnosticExtensions.framework/DiagnosticExtensions
0x194824000 - 0x1948bafff   PhotoLibrary arm64  <586bbea8b5ed3d1985c209191fc6f3ac> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary
0x1948bb000 - 0x194c07fff   PhotosUICore arm64  <73ee98a4a8f83e69a91a8d64b3205dc2> /System/Library/PrivateFrameworks/PhotosUICore.framework/PhotosUICore
0x194c58000 - 0x194cc1fff   IMSharedUtilities arm64  <b93c81133d9a32c692a929a544e010fc> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
0x194ce2000 - 0x194d6cfff   PhotoEditSupport arm64  <c1bf5560388d3c499a410c44099d8993> /System/Library/PrivateFrameworks/PhotoEditSupport.framework/PhotoEditSupport
0x194d6d000 - 0x194d80fff   SiriTasks arm64  <fe2dab8a3c633400825b9e1cfd1c1e0e> /System/Library/PrivateFrameworks/SiriTasks.framework/SiriTasks
0x194d81000 - 0x19519afff   PhotosUI arm64  <9c917527f9b33e9f8bef4e85111e706e> /System/Library/Frameworks/PhotosUI.framework/PhotosUI
0x1952a4000 - 0x1952d1fff   StoreKit arm64  <b598ba07b95d3376bc3485cf69864eb4> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x195b0e000 - 0x195b16fff   AddressBookUI arm64  <44ad3bf7d19e33cd92bcf78edcb12026> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
0x1964cd000 - 0x1964dffff   MobileDeviceLink arm64  <9ffcaac5cb483f4fbf48e5184b54b200> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
0x196647000 - 0x19668efff   MobileBackup arm64  <7b50b622105e3ba89d186a99c83104ee> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x196807000 - 0x196846fff   AppStoreDaemon arm64  <39b136b7ecef3246bcb337b86dac86fc> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
0x1969b8000 - 0x196b8dfff   iTunesStoreUI arm64  <3e072bac11af3f459e7b0d0d1a705695> /System/Library/PrivateFrameworks/iTunesStoreUI.framework/iTunesStoreUI
0x196b8e000 - 0x196c88fff   MessageUI arm64  <e1158464edef334faa01c49a777ff494> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x196ca6000 - 0x196d65fff   Radio arm64  <2f8f966c88e434e7a505e9b60d871202> /System/Library/PrivateFrameworks/Radio.framework/Radio
0x196e9a000 - 0x196ec8fff   BookLibrary arm64  <a443d6cedeef361791ba808fa7871896> /System/Library/PrivateFrameworks/BookLibrary.framework/BookLibrary
0x196ec9000 - 0x196fbdfff   MediaPlaybackCore arm64  <fffafdb6ca823c93a44a5d2848321f76> /System/Library/PrivateFrameworks/MediaPlaybackCore.framework/MediaPlaybackCore
0x19717a000 - 0x1971c0fff   MPUFoundation arm64  <8ab2f93015193bfc9a9b003971c9f936> /System/Library/PrivateFrameworks/MPUFoundation.framework/MPUFoundation
0x1971c1000 - 0x197612fff   StoreKitUI arm64  <7efbe539a56037578ab7070b37511470> /System/Library/PrivateFrameworks/StoreKitUI.framework/StoreKitUI
0x19784c000 - 0x197868fff   MediaPlayerUI arm64  <19a9769cf21b3f7394e9f3f704f976ee> /System/Library/PrivateFrameworks/MediaPlayerUI.framework/MediaPlayerUI
0x19ab78000 - 0x19ab9dfff   AppSupportUI arm64  <5dc7a114b30c3678add34775f0680c84> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x19b346000 - 0x19b3d5fff   LinkPresentation arm64  <23d34a99106b39dda6df53eba649c7a0> /System/Library/PrivateFrameworks/LinkPresentation.framework/LinkPresentation
0x19bcf4000 - 0x19bcf8fff   libsysdiagnose.dylib arm64  <0956540a4aef38ef83b49cd0445debce> /usr/lib/libsysdiagnose.dylib
0x19e4bc000 - 0x19e4cdfff   DeviceIdentity arm64  <4f5d7a89c9a339b4b4fbc101fe35f4e5> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1a150a000 - 0x1a17cefff   RawCamera arm64  <8814153852d83e3986be71abbf2181f0> /System/Library/CoreServices/RawCamera.bundle/RawCamera
0x1a1a73000 - 0x1a1a87fff   libCGInterfaces.dylib arm64  <a35cdaae6a3f3d0d9d0b776f0d2ccb89> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x1a3f6b000 - 0x1a3f92fff   CoreServicesInternal arm64  <3e28627e61483e088b028a121a66cbeb> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1a4566000 - 0x1a4577fff   libGSFontCache.dylib arm64  <9e56e388c1903b99bcd16d21cc3d1ea3> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1a4578000 - 0x1a45aafff   libTrueTypeScaler.dylib arm64  <e584c6d569da381dbda666f0d9ea177b> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
0x1a5dad000 - 0x1a5db0fff   InternationalSupport arm64  <d2f1f0eee8093ae68cdf504f23f305d8> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1a995f000 - 0x1a997afff   OnBoardingKit arm64  <4f3a60fa92ad30e8b9c1619ba523ed3f> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
0x1a9a64000 - 0x1a9a94fff   libclosured.dylib arm64  <23ea8cc8f66931e4a59c47fb92b8baaa> /usr/lib/closure/libclosured.dylib
0x1a9ac2000 - 0x1a9b15fff   libstdc++.6.0.9.dylib arm64  <0e2ec81f77663fcc9fdf2d49442869d6> /usr/lib/libstdc++.6.0.9.dylib
wstyres commented 6 years ago

Issue had to do with the database being placed at /var/mobile/Documents on jailbroken devices and sometimes not having access to write in /var/mobile/Documents. Changing the database location to a writeable location on every device fixed the issue.

realm-probot[bot] commented 6 years ago

Hey - looks like you forgot to add a T:* label - could you please add one?

realm-probot[bot] commented 6 years ago

Hey - looks like you forgot to add a T:* label - could you please add one?