XCode Debugger Help With Thread 0 Compiler Generated Error

I am not sure where to go from here, I have tried everything from even digging into the compiler to try and figure out this bug. I can't replicate the problem, it works fine on my device and many other users, this seems to only be happening to some users, some have even reported it doesn't happen all of the time. However, when the app loads it lets them log in just fine but then doesn't load the collection view at all but it loads all of the other views on the screen.


Any direction or guidance would be greatly appreciated.


I posted the code I THINK is causing the issue

    func getRecipes(premium: Bool, offset: Int, handler: @escaping (_ recipesArray: [RecipeModel]) -> ()) {
        var recipes = [RecipeModel]()
        if premium == true {
            AF.request("\(RECIPES_URL)\(OFFSET_PARAM)\(offset)", method: .get, parameters: nil, encoding: JSONEncoding.default, headers: BEARER_HEADER).responseDecodable { (response: DataResponse<[RecipeModel]>) in
                recipes = self.decodeData(response: response)
                handler(recipes)
            }
        } else {
            AF.request("\(RECIPES_URL)\(FREE_RECIPES_URL)\(OFFSET_PARAM)\(offset)", method: .get, parameters: nil, encoding: JSONEncoding.default, headers: BOOK_BEARER_HEADER).responseDecodable { (response: DataResponse<[RecipeModel]>) in
                recipes = self.decodeData(response: response)
                handler(recipes)
            }
        }
    }


Here is the crash report:


Incident Identifier: 0495BF12-462F-4C58-8927-202ED401BBD8
CrashReporter Key:   72fe5e1147250137322dbbb61306edd7b91c5a58
Hardware Model:      iPhone10,2
Process:             fdlV3 [22837]
Path:                /private/var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/fdlV3
Identifier:          com.benpatterson.FDL1
Version:             28 (3.0.4)
AppStoreTools:       10B63
AppVariant:          1:iPhone10,2:12
Code Type:           ARM-64 (Native)
Role:                Non UI
Parent Process:      launchd [1]
Coalition:           com.benpatterson.FDL1 [1941]




Date/Time:           2019-03-09 18:43:06.9012 -0600
Launch Time:         2019-03-09 18:42:41.8696 -0600
OS Version:          iPhone OS 12.1.4 (16D57)
Baseband Version:    3.31.00
Report Version:      104


Exception Type:  EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000001, 0x00000001009d0f14
Termination Signal: Trace/BPT trap: 5
Termination Reason: Namespace SIGNAL, Code 0x5
Terminating Process: exc handler [22837]
Triggered by Thread:  0


Thread 0 name:
Thread 0 Crashed:
0   fdlV3                          0x00000001009d0f14 ViewRecipesVC.collectionView(_:cellForItemAt:) + 1768 (<compiler-generated>:0)
1   fdlV3                          0x00000001009d0f7c @objc ViewRecipesVC.collectionView(_:cellForItemAt:) + 96 (<compiler-generated>:0)
2   UIKitCore                      0x00000001e20dc39c -[UICollectionView _createPreparedCellForItemAtIndexPath:withLayoutAttributes:applyAttributes:isF... + 356 (UICollectionView.m:1992)
3   UIKitCore                      0x00000001e20ddfec -[UICollectionView _prefetchItemsForVelocity:maxItemsToPrefetch:invalidateCandidatesOnDirectionCh... + 484 (UICollectionView.m:2250)
4   UIKitCore                      0x00000001e20e5918 -[UICollectionView layoutSubviews] + 736 (UICollectionView.m:3599)
5   UIKitCore                      0x00000001e2cb977c -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 1380 (UIView.m:15703)
6   QuartzCore                    0x00000001b9aedb7c -[CALayer layoutSublayers] + 184 (CALayer.mm:9445)
7   QuartzCore                    0x00000001b9af2b34 CA::Layer::layout_if_needed(CA::Transaction*) + 324 (CALayer.mm:9325)
8   QuartzCore                    0x00000001b9a51598 CA::Context::commit_transaction(CA::Transaction*) + 340 (CALayer.mm:2463)
9   QuartzCore                    0x00000001b9a7fec8 CA::Transaction::commit() + 608 (CATransactionInternal.mm:425)
10  QuartzCore                    0x00000001b9a80d30 CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) + 92 (CATransactionInternal.mm:795)
11  CoreFoundation                0x00000001b54816bc __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 32 (CFRunLoop.c:1822)
12  CoreFoundation                0x00000001b547c350 __CFRunLoopDoObservers + 412 (CFRunLoop.c:1932)
13  CoreFoundation                0x00000001b547c8f0 __CFRunLoopRun + 1264 (CFRunLoop.c:2950)
14  CoreFoundation                0x00000001b547c0e0 CFRunLoopRunSpecific + 436 (CFRunLoop.c:3247)
15  GraphicsServices              0x00000001b76f5584 GSEventRunModal + 100 (GSEvent.c:2245)
16  UIKitCore                      0x00000001e2810c00 UIApplicationMain + 212 (UIApplication.m:4347)
17  fdlV3                          0x0000000100987f30 main + 60 (FavoritesVC.swift:15)
18  libdyld.dylib                  0x00000001b4f3abb4 start + 4


Thread 1:
0   libsystem_pthread.dylib        0x00000001b510fce8 start_wqthread + 0


Thread 2:
0   libsystem_pthread.dylib        0x00000001b510fce8 start_wqthread + 0


Thread 3 name:
Thread 3:
0   libsystem_kernel.dylib        0x00000001b507bea4 mach_msg_trap + 8
1   libsystem_kernel.dylib        0x00000001b507b37c mach_msg + 72 (mach_msg.c:103)
2   CoreFoundation                0x00000001b5481ad8 __CFRunLoopServiceMachPort + 236 (CFRunLoop.c:2615)
3   CoreFoundation                0x00000001b547c974 __CFRunLoopRun + 1396 (CFRunLoop.c:2971)
4   CoreFoundation                0x00000001b547c0e0 CFRunLoopRunSpecific + 436 (CFRunLoop.c:3247)
5   Foundation                    0x00000001b5e72494 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 300 (NSRunLoop.m:367)
6   Foundation                    0x00000001b5e72340 -[NSRunLoop(NSRunLoop) runUntilDate:] + 148 (NSRunLoop.m:411)
7   UIKitCore                      0x00000001e29010c4 -[UIEventFetcher threadMain] + 136 (UIEventFetcher.m:603)
8   Foundation                    0x00000001b5fa523c __NSThread__start__ + 1040 (NSThread.m:1175)
9   libsystem_pthread.dylib        0x00000001b510c25c _pthread_body + 128 (pthread.c:857)
10  libsystem_pthread.dylib        0x00000001b510c1bc _pthread_start + 48 (pthread.c:884)
11  libsystem_pthread.dylib        0x00000001b510fcf4 thread_start + 4


Thread 4 name:
Thread 4:
0   libsystem_kernel.dylib        0x00000001b507bea4 mach_msg_trap + 8
1   libsystem_kernel.dylib        0x00000001b507b37c mach_msg + 72 (mach_msg.c:103)
2   CoreFoundation                0x00000001b5481ad8 __CFRunLoopServiceMachPort + 236 (CFRunLoop.c:2615)
3   CoreFoundation                0x00000001b547c974 __CFRunLoopRun + 1396 (CFRunLoop.c:2971)
4   CoreFoundation                0x00000001b547c0e0 CFRunLoopRunSpecific + 436 (CFRunLoop.c:3247)
5   CoreFoundation                0x00000001b547ce7c CFRunLoopRun + 80 (CFRunLoop.c:3271)
6   CoreMotion                    0x00000001baed1c58 CLMotionCore::runMotionThread(void*) + 1152 (CLMotionCore.mm:330)
7   libsystem_pthread.dylib        0x00000001b510c25c _pthread_body + 128 (pthread.c:857)
8   libsystem_pthread.dylib        0x00000001b510c1bc _pthread_start + 48 (pthread.c:884)
9   libsystem_pthread.dylib        0x00000001b510fcf4 thread_start + 4


Thread 5 name:
Thread 5:
0   libsystem_kernel.dylib        0x00000001b507bea4 mach_msg_trap + 8
1   libsystem_kernel.dylib        0x00000001b507b37c mach_msg + 72 (mach_msg.c:103)
2   CoreFoundation                0x00000001b5481ad8 __CFRunLoopServiceMachPort + 236 (CFRunLoop.c:2615)
3   CoreFoundation                0x00000001b547c974 __CFRunLoopRun + 1396 (CFRunLoop.c:2971)
4   CoreFoundation                0x00000001b547c0e0 CFRunLoopRunSpecific + 436 (CFRunLoop.c:3247)
5   CFNetwork                      0x00000001b5a9f00c -[__CoreSchedulingSetRunnable runForever] + 212 (CoreSchedulingSet.mm:1365)
6   Foundation                    0x00000001b5fa523c __NSThread__start__ + 1040 (NSThread.m:1175)
7   libsystem_pthread.dylib        0x00000001b510c25c _pthread_body + 128 (pthread.c:857)
8   libsystem_pthread.dylib        0x00000001b510c1bc _pthread_start + 48 (pthread.c:884)
9   libsystem_pthread.dylib        0x00000001b510fcf4 thread_start + 4


Thread 6:
0   libsystem_pthread.dylib        0x00000001b510fce8 start_wqthread + 0


Thread 7 name:
Thread 7:
0   libsystem_kernel.dylib        0x00000001b507bea4 mach_msg_trap + 8
1   libsystem_kernel.dylib        0x00000001b507b37c mach_msg + 72 (mach_msg.c:103)
2   CoreFoundation                0x00000001b5481ad8 __CFRunLoopServiceMachPort + 236 (CFRunLoop.c:2615)
3   CoreFoundation                0x00000001b547c974 __CFRunLoopRun + 1396 (CFRunLoop.c:2971)
4   CoreFoundation                0x00000001b547c0e0 CFRunLoopRunSpecific + 436 (CFRunLoop.c:3247)
5   AVFAudio                      0x00000001bb49060c GenericRunLoopThread::Entry(void*) + 164 (GenericRunLoopThread.h:92)
6   AVFAudio                      0x00000001bb4bc768 CAPThread::Entry(CAPThread*) + 88
7   libsystem_pthread.dylib        0x00000001b510c25c _pthread_body + 128 (pthread.c:857)
8   libsystem_pthread.dylib        0x00000001b510c1bc _pthread_start + 48 (pthread.c:884)
9   libsystem_pthread.dylib        0x00000001b510fcf4 thread_start + 4


Thread 8 name:
Thread 8:
0   libsystem_kernel.dylib        0x00000001b5086f0c __psynch_cvwait + 8
1   libsystem_pthread.dylib        0x00000001b5109410 _pthread_cond_wait$VARIANT$armv81 + 620 (pthread_cond.c:578)
2   libc++.1.dylib                0x00000001b46544d0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24 (__threading_support:278)
3   JavaScriptCore                0x00000001bc835648 void std::__1::condition_variable_any::wait<std::__1::unique_lock<bmalloc::Mutex> >(std::__1::uni... + 104 (condition_variable:204)
4   JavaScriptCore                0x00000001bc83973c bmalloc::Scavenger::threadRunLoop() + 176 (condition_variable:213)
5   JavaScriptCore                0x00000001bc838e70 bmalloc::Scavenger::threadEntryPoint(bmalloc::Scavenger*) + 12 (Scavenger.cpp:359)
6   JavaScriptCore                0x00000001bc83a91c void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, st... + 40 (type_traits:4428)
7   libsystem_pthread.dylib        0x00000001b510c25c _pthread_body + 128 (pthread.c:857)
8   libsystem_pthread.dylib        0x00000001b510c1bc _pthread_start + 48 (pthread.c:884)
9   libsystem_pthread.dylib        0x00000001b510fcf4 thread_start + 4


Thread 9 name:
Thread 9:
0   libsystem_kernel.dylib        0x00000001b507bea4 mach_msg_trap + 8
1   libsystem_kernel.dylib        0x00000001b507b37c mach_msg + 72 (mach_msg.c:103)
2   CoreFoundation                0x00000001b5481ad8 __CFRunLoopServiceMachPort + 236 (CFRunLoop.c:2615)
3   CoreFoundation                0x00000001b547c974 __CFRunLoopRun + 1396 (CFRunLoop.c:2971)
4   CoreFoundation                0x00000001b547c0e0 CFRunLoopRunSpecific + 436 (CFRunLoop.c:3247)
5   WebCore                        0x00000001be2ed3e8 RunWebThread(void*) + 592 (WebCoreThread.mm:612)
6   libsystem_pthread.dylib        0x00000001b510c25c _pthread_body + 128 (pthread.c:857)
7   libsystem_pthread.dylib        0x00000001b510c1bc _pthread_start + 48 (pthread.c:884)
8   libsystem_pthread.dylib        0x00000001b510fcf4 thread_start + 4


Thread 10:
0   libsystem_pthread.dylib        0x00000001b510fce8 start_wqthread + 0


Thread 11:
0   libsystem_pthread.dylib        0x00000001b510fce8 start_wqthread + 0


Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000006   x1: 0x0000000000000006   x2: 0x0000000000000006   x3: 0x0000000000000001
    x4: 0x0000000000000010   x5: 0x0000000000000020   x6: 0x00000002834972c0   x7: 0x0000000000000000
    x8: 0x00000001013042c0   x9: 0x0000000000000000  x10: 0x0000000000000000  x11: 0x000000ef000001ff
   x12: 0x000000010803be40  x13: 0x000005a100b4f4a7  x14: 0x000000000000002a  x15: 0x00000001e2d9a06a
   x16: 0x00000001013dc694  x17: 0x00000001e2cc28c4  x18: 0x0000000000000000  x19: 0x000000010250f280
   x20: 0x0000000102878000  x21: 0x0000000000000006  x22: 0x0000000000000001  x23: 0x0000000000000000
   x24: 0x0000000000000001  x25: 0x8166b10373e8bfef  x26: 0x00000002834972c0  x27: 0xe100000000000000
   x28: 0x000000010129d520   fp: 0x000000016f47c2e0   lr: 0x00000001009d09d0
    sp: 0x000000016f47c130   pc: 0x00000001009d0f14 cpsr: 0x20000000


Binary Images:
0x100980000 - 0x100afbfff fdlV3 arm64  <0a81ec7205d03729a48a2275efaa0606> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/fdlV3
0x100b94000 - 0x100c23fff Alamofire arm64  <3f22a3e33ee336cb86ea75cefa19408c> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/Alamofire.framework/Alamofire
0x100c70000 - 0x100c77fff DAKeychain arm64  <a239edb6622639a391a8d35daf0527ae> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/DAKeychain.framework/DAKeychain
0x100c84000 - 0x100c8bfff libswiftCoreFoundation.dylib arm64  <0d5a8c9525893e5db73f73ebf1b50067> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftCoreFoundation.dylib
0x100c98000 - 0x100caffff GoogleUtilities arm64  <8d35595c68293eef9fa9f50f5f096c6e> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/GoogleUtilities.framework/GoogleUtilities
0x100cd0000 - 0x100cf7fff SDWebImage arm64  <e9f77752ca8b37db8adf6601f321aaa1> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/SDWebImage.framework/SDWebImage
0x100d10000 - 0x100d17fff libswiftCoreData.dylib arm64  <bbf630a8df013d609331f71550b554a4> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftCoreData.dylib
0x100d28000 - 0x100d3bfff SVProgressHUD arm64  <af31ce1b65ce34dba400d89906015c5c> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/SVProgressHUD.framework/SVProgressHUD
0x100d4c000 - 0x100d57fff nanopb arm64  <54facff9e783394b883990372cc4ef14> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/nanopb.framework/nanopb
0x100d64000 - 0x100d73fff libswiftCoreGraphics.dylib arm64  <69c706e3608b3391a42d889ee09de22a> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftCoreGraphics.dylib
0x100d88000 - 0x100d8ffff libswiftCoreImage.dylib arm64  <8a374c0773d23e06b0ff1a0cb4c9dba5> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftCoreImage.dylib
0x100d9c000 - 0x100da7fff libswiftDarwin.dylib arm64  <e9b084ec443833e5ae8ca26fc1203e06> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftDarwin.dylib
0x100db8000 - 0x100dd3fff libswiftDispatch.dylib arm64  <7c6b399e97f33ceda72e2cec7ba3d0f8> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftDispatch.dylib
0x100dec000 - 0x100df3fff libswiftMetal.dylib arm64  <5f0460734d523594bce5f9d7187af7fc> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftMetal.dylib
0x100e00000 - 0x100e07fff libswiftObjectiveC.dylib arm64  <a202c6e271f733f7b99e3c2173872f6c> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftObjectiveC.dylib
0x100e14000 - 0x100e1bfff libswiftQuartzCore.dylib arm64  <82e181ad5e8e3715b842cfa9e306ce4d> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftQuartzCore.dylib
0x100e28000 - 0x100e37fff libswiftUIKit.dylib arm64  <c018f2df17ef3dc8ac7982ded0dd6536> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftUIKit.dylib
0x100e4c000 - 0x100e53fff libswiftos.dylib arm64  <c296b9cb49673e85b2804a22984103d1> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftos.dylib
0x100ea4000 - 0x100eaffff libobjc-trampolines.dylib arm64  <0d67ef7e3ec8370aa106a59717eb17fa> /usr/lib/libobjc-trampolines.dylib
0x100ecc000 - 0x100f2ffff dyld arm64  <67179aea6d8038a58f729b468f24ca69> /usr/lib/dyld
0x100f9c000 - 0x1012d3fff libswiftCore.dylib arm64  <00bfeb2c7dd23aaaad8dc220d05db60d> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftCore.dylib
0x1013ac000 - 0x1014fbfff libswiftFoundation.dylib arm64  <1113630949893294b25b5f33ff0e9f6d> /var/containers/Bundle/Application/A01340C8-6FF2-4C3B-91D0-2419E0D541D9/fdlV3.app/Frameworks/libswiftFoundation.dylib
0x1b464a000 - 0x1b464bfff libSystem.B.dylib arm64  <f184b070047e3f1da44a6289a862092a> /usr/lib/libSystem.B.dylib
0x1b464c000 - 0x1b46a6fff libc++.1.dylib arm64  <cdd2c63379d93baeb7024329c50774e3> /usr/lib/libc++.1.dylib
0x1b46a7000 - 0x1b46bafff libc++abi.dylib arm64  <f32b6f6556af381b8cb76b9473735afa> /usr/lib/libc++abi.dylib
0x1b46bb000 - 0x1b4e43fff libobjc.A.dylib arm64  <3c1dc6c93e273dd3938e146c18cc5188> /usr/lib/libobjc.A.dylib
0x1b4e44000 - 0x1b4e49fff libcache.dylib arm64  <c0ee5e0a95e23cec977e61cd95359dfb> /usr/lib/system/libcache.dylib
0x1b4e4a000 - 0x1b4e56fff libcommonCrypto.dylib arm64  <b100441a47493972aec6fb7e83eec080> /usr/lib/system/libcommonCrypto.dylib
0x1b4e57000 - 0x1b4e5bfff libcompiler_rt.dylib arm64  <ec81dc727fec340d8de4a67e02d1dcef> /usr/lib/system/libcompiler_rt.dylib
0x1b4e5c000 - 0x1b4e64fff libcopyfile.dylib arm64  <bade780ff8a93a1088570b49283ab010> /usr/lib/system/libcopyfile.dylib
0x1b4e65000 - 0x1b4ec8fff libcorecrypto.dylib arm64  <fe89118529c8302285d1800d50f206f8> /usr/lib/system/libcorecrypto.dylib
0x1b4ec9000 - 0x1b4f39fff libdispatch.dylib arm64  <025080cbcf933d2f81c1b2e0b82a362d> /usr/lib/system/libdispatch.dylib
0x1b4f3a000 - 0x1b4f64fff libdyld.dylib arm64  <c6bb1027199d3836888abc946a5055f5> /usr/lib/system/libdyld.dylib
0x1b4f65000 - 0x1b4f65fff liblaunch.dylib arm64  <5fb8b0437013319887b994a645c87bee> /usr/lib/system/liblaunch.dylib
0x1b4f66000 - 0x1b4f6bfff libmacho.dylib arm64  <16c0dcb8fe293859b948a16894dc8161> /usr/lib/system/libmacho.dylib
0x1b4f6c000 - 0x1b4f6dfff libremovefile.dylib arm64  <e12d6928a7ee33e68c4e6b161aee9c80> /usr/lib/system/libremovefile.dylib
0x1b4f6e000 - 0x1b4f85fff libsystem_asl.dylib arm64  <a1d45272ed82384991b8be21ba89faef> /usr/lib/system/libsystem_asl.dylib
0x1b4f86000 - 0x1b4f86fff libsystem_blocks.dylib arm64  <068a78ad98aa353e956eeaf058fd9637> /usr/lib/system/libsystem_blocks.dylib
0x1b4f87000 - 0x1b5005fff libsystem_c.dylib arm64  <7da5f27d7b4830dda0a4dd26c109e448> /usr/lib/system/libsystem_c.dylib
0x1b5006000 - 0x1b500afff libsystem_configuration.dylib arm64  <25383d775a2136589984adc6c9b35309> /usr/lib/system/libsystem_configuration.dylib
0x1b500b000 - 0x1b5012fff libsystem_containermanager.dylib arm64  <3dcd9a50bfdf3c1191f4e90691f4d5e8> /usr/lib/system/libsystem_containermanager.dylib
0x1b5013000 - 0x1b5014fff libsystem_coreservices.dylib arm64  <a7755c027acb30aebe221b38fdc164fd> /usr/lib/system/libsystem_coreservices.dylib
0x1b5015000 - 0x1b501bfff libsystem_darwin.dylib arm64  <1b7bfac5248e36ef923f46597ca358d1> /usr/lib/system/libsystem_darwin.dylib
0x1b501c000 - 0x1b5022fff libsystem_dnssd.dylib arm64  <0fb34f5c3eb93adb83a4b74f452dafb2> /usr/lib/system/libsystem_dnssd.dylib
0x1b5023000 - 0x1b5063fff libsystem_info.dylib arm64  <de1cc432e779341c8cacf5b9412b4b04> /usr/lib/system/libsystem_info.dylib
0x1b5064000 - 0x1b508efff libsystem_kernel.dylib arm64  <3ab723d26da43120b5fc292ff2dc4c84> /usr/lib/system/libsystem_kernel.dylib
0x1b508f000 - 0x1b50bcfff libsystem_m.dylib arm64  <12380e91ac4437a69be12482c0a6e10a> /usr/lib/system/libsystem_m.dylib
0x1b50bd000 - 0x1b50e0fff libsystem_malloc.dylib arm64  <de4bb5fa4f023f6b86a3314ec2405d3c> /usr/lib/system/libsystem_malloc.dylib
0x1b50e1000 - 0x1b50edfff libsystem_networkextension.dylib arm64  <472dd253009d3bb4b597d51e461a34db> /usr/lib/system/libsystem_networkextension.dylib
0x1b50ee000 - 0x1b50f5fff libsystem_notify.dylib arm64  <e343402b92ee34f59530bfef6723353a> /usr/lib/system/libsystem_notify.dylib
0x1b50f6000 - 0x1b5100fff libsystem_platform.dylib arm64  <368fd1a9ce9937a4bde2354a5c5d4804> /usr/lib/system/libsystem_platform.dylib
0x1b5101000 - 0x1b5111fff libsystem_pthread.dylib arm64  <ebea1e1479613e62be7aa879ca5328bb> /usr/lib/system/libsystem_pthread.dylib
0x1b5112000 - 0x1b5114fff libsystem_sandbox.dylib arm64  <f558336363ce3d60a018168b9dc7a480> /usr/lib/system/libsystem_sandbox.dylib
0x1b5115000 - 0x1b511cfff libsystem_symptoms.dylib arm64  <c39cc7084a223d85ab6fa2195f11440a> /usr/lib/system/libsystem_symptoms.dylib
0x1b511d000 - 0x1b5132fff libsystem_trace.dylib arm64  <6c1526cb161d302e887f8dc30ce3b5f9> /usr/lib/system/libsystem_trace.dylib
0x1b5133000 - 0x1b5138fff libunwind.dylib arm64  <ac393540d41439ea9386117ffd63378f> /usr/lib/system/libunwind.dylib
0x1b5139000 - 0x1b5167fff libxpc.dylib arm64  <8c926c76a52a323ab048ab447b34a334> /usr/lib/system/libxpc.dylib
0x1b5168000 - 0x1b53c2fff libicucore.A.dylib arm64  <4bc5287e088f30f882bc6999a90feacc> /usr/lib/libicucore.A.dylib
0x1b53c3000 - 0x1b53d4fff libz.1.dylib arm64  <788ab2a7d56e3b528034d5a9b9f9d3f6> /usr/lib/libz.1.dylib
0x1b53d5000 - 0x1b5739fff CoreFoundation arm64  <65db57e47b15316d8e61c7e9b36d6ef5> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1b573a000 - 0x1b574afff libbsm.0.dylib arm64  <d7f9427a81903f4e9345af0220fc99bb> /usr/lib/libbsm.0.dylib
0x1b574b000 - 0x1b574bfff libenergytrace.dylib arm64  <9c3edae00ffc357dbba7b7f6a4820fcc> /usr/lib/libenergytrace.dylib
0x1b574c000 - 0x1b57dcfff IOKit arm64  <bf64577f504734169c46f7cdf0d69d48> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1b57dd000 - 0x1b58c5fff libxml2.2.dylib arm64  <4c3f394b5a9334589d60dbff79c6a0f7> /usr/lib/libxml2.2.dylib
0x1b58c6000 - 0x1b58d3fff libbz2.1.0.dylib arm64  <273cbb660f5f397eab26a425e8a657b7> /usr/lib/libbz2.1.0.dylib
0x1b58d4000 - 0x1b58ecfff liblzma.5.dylib arm64  <75e94b185f193af9a2c87ec2f7e0ac46> /usr/lib/liblzma.5.dylib
0x1b58ed000 - 0x1b5a66fff libsqlite3.dylib arm64  <fef279c850b63c35a64a2429ec337184> /usr/lib/libsqlite3.dylib
0x1b5a67000 - 0x1b5a9cfff libMobileGestalt.dylib arm64  <b9e606585a643bb69add407d52372c38> /usr/lib/libMobileGestalt.dylib
0x1b5a9d000 - 0x1b5e69fff CFNetwork arm64  <b9e0c35d724d3fd6b28195957509e2fc> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x1b5e6a000 - 0x1b6176fff Foundation arm64  <5a26e86f7c633191a59874134a7876e4> /System/Library/Frameworks/Foundation.framework/Foundation
0x1b6177000 - 0x1b6283fff Security arm64  <aa5440d14d253dc5949eca58ef26507d> /System/Library/Frameworks/Security.framework/Security
0x1b6284000 - 0x1b62f2fff SystemConfiguration arm64  <85514a7674383f6485ac7750a41894bd> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x1b62f3000 - 0x1b6328fff libCRFSuite.dylib arm64  <3160a917a42d35a3a30e8c6d922070c6> /usr/lib/libCRFSuite.dylib
0x1b6329000 - 0x1b633ffff libapple_nghttp2.dylib arm64  <bbc32948e1573b2e9f7b8a58dfbf2aae> /usr/lib/libapple_nghttp2.dylib
0x1b6340000 - 0x1b6369fff libarchive.2.dylib arm64  <53722536e2ab33e992347c4afb90ef97> /usr/lib/libarchive.2.dylib
0x1b636a000 - 0x1b6438fff libboringssl.dylib arm64  <68f7323d11ff3c80a1de2e5dc6518771> /usr/lib/libboringssl.dylib
0x1b6439000 - 0x1b644ffff libcoretls.dylib arm64  <97b6385a40853340b39fca181b1a24d1> /usr/lib/libcoretls.dylib
0x1b6450000 - 0x1b6451fff libcoretls_cfhelpers.dylib arm64  <d7455d9a4a083eae8ca5bd31ade2f121> /usr/lib/libcoretls_cfhelpers.dylib
0x1b6452000 - 0x1b6453fff liblangid.dylib arm64  <984ab4017cce3def839d7da2555c98f4> /usr/lib/liblangid.dylib
0x1b6454000 - 0x1b67c9fff libnetwork.dylib arm64  <e49bba44423d32289682b014a0978325> /usr/lib/libnetwork.dylib
0x1b67ca000 - 0x1b67fffff libpcap.A.dylib arm64  <1e723fd7ee7133259e72aa46992693ab> /usr/lib/libpcap.A.dylib
0x1b6800000 - 0x1b685dfff libusrtcp.dylib arm64  <7f312ea426753ff0943fac305311baf0> /usr/lib/libusrtcp.dylib
0x1b685e000 - 0x1b686afff IOSurface arm64  <a6f85388a9d833d6a0a450f88defb912> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1b686b000 - 0x1b691efff libBLAS.dylib arm64  <422303ea936b30c4a3a204c5042a4019> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1b691f000 - 0x1b6c3efff libLAPACK.dylib arm64  <81d6d8a0ea4933488a6706fda9653f13> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1b6c3f000 - 0x1b6eb1fff vImage arm64  <c21d287e328d30368f32e4bf01b054a2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1b6eb2000 - 0x1b6ec3fff libSparseBLAS.dylib arm64  <c3599b0dae6e3b508ef90097c833cbb6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1b6ec4000 - 0x1b6f20fff libvMisc.dylib arm64  <64fed501f334318cae6d4e4387a47be3> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1b6f21000 - 0x1b6f50fff libBNNS.dylib arm64  <bfe25313908e34d5a2cbcd15fd705e6f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1b6f51000 - 0x1b6f65fff libLinearAlgebra.dylib arm64  <9febf91b130b37d9afc9a8d7be78f271> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1b6f66000 - 0x1b6f6afff libQuadrature.dylib arm64  <5e86d436c08e391e84b3ba27ebb0fb79> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1b6f6b000 - 0x1b6fdbfff libSparse.dylib arm64  <f1b52cc3e8e83d4a835f6b6f8917ff44> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1b6fdc000 - 0x1b706afff libvDSP.dylib arm64  <707871f1ca7a343b9937a3f8ccb79592> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1b706b000 - 0x1b706bfff vecLib arm64  <0041874ce19f3d47906b23024b685abf> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1b706c000 - 0x1b706cfff Accelerate arm64  <94e84f08c2af3ed2994bca4a3f71bd47> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1b706d000 - 0x1b7085fff libcompression.dylib arm64  <52cfe534518a3352a563755c00536d36> /usr/lib/libcompression.dylib
0x1b7086000 - 0x1b7634fff CoreGraphics arm64  <71f35861779e33dc85becdcb3c50e7ad> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1b7635000 - 0x1b763afff IOAccelerator arm64  <8b179d4801dc3c358ca2f080a9dd12f9> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1b763b000 - 0x1b7640fff libCoreFSCache.dylib arm64  <86bf2e4231f7365e919e32aeee0ca186> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1b7641000 - 0x1b76e9fff Metal arm64  <ff797d1edadd37e7935ca5cde553e0eb> /System/Library/Frameworks/Metal.framework/Metal
0x1b76ea000 - 0x1b76fdfff GraphicsServices arm64  <0d63a05d8c803e93b5fe8a52208271b4> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1b76fe000 - 0x1b76fefff MobileCoreServices arm64  <e8a82569adaa30a39c2f11f4d3e5af8c> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1b76ff000 - 0x1b7701fff IOSurfaceAccelerator arm64  <b9dd653b47d03231ad936f1256524d0c> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1b7702000 - 0x1b7744fff AppleJPEG arm64  <18955d5987183a68adff153ecba46736> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1b7745000 - 0x1b7d0afff ImageIO arm64  <994242d700dc3f7db5ca48a485a01020> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1b7d0b000 - 0x1b7d7dfff BaseBoard arm64  <c6a0a086b2ee35b49ecdf6259dcfb931> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1b7d7e000 - 0x1b7d95fff AssertionServices arm64  <6a23fd7c0b2e323187a027271ab430e4> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1b7d96000 - 0x1b7d9efff CorePhoneNumbers arm64  <8b18291423fb32d0b30bb7a9f2aa5655> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1b7d9f000 - 0x1b7de4fff AppSupport arm64  <18872c192de23d29a024492143e090f5> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1b7de5000 - 0x1b7dfefff CrashReporterSupport arm64  <ea595ab5b99539eca6dc781459ffe38c> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1b7dff000 - 0x1b7e04fff AggregateDictionary arm64  <399b625c2ed6303fbd987f78ffd56539> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1b7e05000 - 0x1b7e8dfff libTelephonyUtilDynamic.dylib arm64  <95c20504af503f21a28ad6ccb84a4d19> /usr/lib/libTelephonyUtilDynamic.dylib
0x1b7e8e000 - 0x1b7eadfff ProtocolBuffer arm64  <eacb4e14d1fe3e5285647722f8d95b34> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1b7eae000 - 0x1b7edefff MobileKeyBag arm64  <68a9efcb67223020a5d2b87b326b565c> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1b7edf000 - 0x1b7f1bfff BackBoardServices arm64  <05ba119e36e33e678acba4bd7f27de47> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1b7f1c000 - 0x1b7f85fff FrontBoardServices arm64  <f05d613f1d0438d5ba9f935067c1e338> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1b7f86000 - 0x1b7fcdfff SpringBoardServices arm64  <39ff285a5a08300581df78d39839e43f> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x1b7fce000 - 0x1b7fe1fff PowerLog arm64  <f082650792553f12bda77cea82bfc823> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1b7fe2000 - 0x1b7ffdfff CommonUtilities arm64  <1f7eb175f249371692b1d1d229873ae1> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1b7ffe000 - 0x1b8009fff liblockdown.dylib arm64  <d468f21a72e73ea78fc09de46060073b> /usr/lib/liblockdown.dylib
0x1b800a000 - 0x1b8348fff CoreData arm64  <2332c30861283595ad5394a1f08be532> /System/Library/Frameworks/CoreData.framework/CoreData
0x1b8349000 - 0x1b8350fff TCC arm64  <dac7f8d64011371597724b5d0ea85d2c> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1b8351000 - 0x1b8359fff libcupolicy.dylib arm64  <130f161faa6b3ec0a7c4dcf1eed866f9> /usr/lib/libcupolicy.dylib
0x1b835a000 - 0x1b843ffff CoreTelephony arm64  <93355f632f593f5281865c969aac485d> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1b8440000 - 0x1b84a1fff Accounts arm64  <968701d6f1a53f1cbb1c943c7989bb04> /System/Library/Frameworks/Accounts.framework/Accounts
0x1b84a2000 - 0x1b84cbfff AppleSauce arm64  <db471ffad1c138189ff523aac415352f> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1b84cc000 - 0x1b84d5fff DataMigration arm64  <f710c0f3da8335af816e047d661dce4e> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1b84d6000 - 0x1b84ddfff Netrb arm64  <c773c617508c32b58101cbbcd0e60fdf> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1b84de000 - 0x1b8512fff PersistentConnection arm64  <c6e88ecd1a7e36d49902c79525549947> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1b8513000 - 0x1b8524fff libmis.dylib arm64  <8bd05aae163c357493b14fa4bce90aa7> /usr/lib/libmis.dylib
0x1b8525000 - 0x1b862efff ManagedConfiguration arm64  <30a80be382bb31e7af162c281e48c400> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1b862f000 - 0x1b8634fff libReverseProxyDevice.dylib arm64  <9f47b0cedcfd3f75b4ee0e545ddee3f3> /usr/lib/libReverseProxyDevice.dylib
0x1b8635000 - 0x1b8647fff libamsupport.dylib arm64  <4d654aed059e377bbf718221cfbc1c28> /usr/lib/libamsupport.dylib
0x1b8648000 - 0x1b864dfff libCoreVMClient.dylib arm64  <44e914213c323fbba6145cda4fd10a6e> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1b864e000 - 0x1b864ffff libCVMSPluginSupport.dylib arm64  <be351b584919399abef69c6e461eaa50> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1b8650000 - 0x1b8653fff libutil.dylib arm64  <4eaf33b8988039f795ae66f03a01e3ac> /usr/lib/libutil.dylib
0x1b8654000 - 0x1b8693fff libGLImage.dylib arm64  <9d403b15ee8c3339ae472ceb4f3609f2> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1b8694000 - 0x1b870bfff APFS arm64  <c2147b1e452e338ea85dfdb026d8a86e> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1b870c000 - 0x1b873dfff MediaKit arm64  <384d64739049326784c770ffb215e963> /System/Library/PrivateFrameworks/MediaKit.framework/MediaKit
0x1b873e000 - 0x1b875afff libSERestoreInfo.dylib arm64  <4c21f0cba4df3176b36dae70f2298ca2> /usr/lib/updaters/libSERestoreInfo.dylib
0x1b8761000 - 0x1b879dfff DiskImages arm64  <ddc2df7e0e4b346e96415364c8258926> /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
0x1b879e000 - 0x1b87a7fff libGFXShared.dylib arm64  <50fe12ebf4ff3e4fa81337c2f86c4830> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1b87a8000 - 0x1b87f6fff libauthinstall.dylib arm64  <2214c7596ded3935bd19f281af2afb77> /usr/lib/libauthinstall.dylib
0x1b87f7000 - 0x1b87fffff IOMobileFramebuffer arm64  <7e0cb324f630364abf441ba9dc82297a> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1b8800000 - 0x1b880bfff OpenGLES arm64  <15496bbdb29e3e0c8c4fc1dd1f98fa08> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1b880c000 - 0x1b88a9fff ColorSync arm64  <52c4256ba91d3636aded4b2254e82903> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x1b88aa000 - 0x1b88d9fff CoreVideo arm64  <317da5b683d13593be36750e39a8d53d> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x1b88da000 - 0x1b88dbfff libCTGreenTeaLogger.dylib arm64  <76e8b109bac13330820949a528965882> /usr/lib/libCTGreenTeaLogger.dylib
0x1b88dc000 - 0x1b8a4bfff CoreAudio arm64  <2844977772f930058ef9314a9b400ee7> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1b8a4c000 - 0x1b8a6efff CoreAnalytics arm64  <359d4a89acb83886bfe06910dbc63885> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1b8a6f000 - 0x1b8a72fff UserFS arm64  <380267d724e7332a8e3a07c2fe1a552e> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x1b8a73000 - 0x1b8c10fff CoreMedia arm64  <276c2955623f3dd69526fa59cdb2c16c> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1b8c11000 - 0x1b8c23fff libprotobuf-lite.dylib arm64  <a50a12601dab3a37bfe1a6c9e8b7a3fe> /usr/lib/libprotobuf-lite.dylib
0x1b8c24000 - 0x1b8c89fff libprotobuf.dylib arm64  <29eb153d4e49305da00845942dc1ce90> /usr/lib/libprotobuf.dylib
0x1b8c8a000 - 0x1b8fa0fff libAWDSupportFramework.dylib arm64  <4f99fd19a6a439f399a8888629347c9f> /usr/lib/libAWDSupportFramework.dylib
0x1b8fa1000 - 0x1b8febfff WirelessDiagnostics arm64  <316e8098fc0030b3b87909e3b55ebd90> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x1b8fec000 - 0x1b90acfff ************ arm64  <0a749e2a0e28386e9ffbfb727915ab16> /System/Library/Frameworks/************.framework/************
0x1b90ad000 - 0x1b91b8fff libFontParser.dylib arm64  <7dd118d3800c31f5a3f01b8c93318685> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1b91b9000 - 0x1b91b9fff FontServices arm64  <6b7868d8151131459597cf1d80c044c9> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1b91ba000 - 0x1b931bfff CoreText arm64  <bbb7f3cfa5303b4ca2d30f9d0fd5a5dc> /System/Library/Frameworks/CoreText.framework/CoreText
0x1b931c000 - 0x1b932bfff IntlPreferences arm64  <8d608ca85cd23d1b8f6055ffec3d6be9> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1b932c000 - 0x1b9336fff RTCReporting arm64  <7377e0cceeec35a99d5f419abb175808> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1b9337000 - 0x1b93affff CoreBrightness arm64  <574ba7a774fa304787ecbab2d5cfc563> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1b93b0000 - 0x1b93bafff libAudioStatistics.dylib arm64  <611ea247048d3d789a99cbaf8dcd1c26> /usr/lib/libAudioStatistics.dylib
0x1b93bb000 - 0x1b99adfff AudioToolbox arm64  <b1e2063a280b359f95b222a4147483c2> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x1b99ae000 - 0x1b9bebfff QuartzCore arm64  <bf61c944f8bb3339a7973a0f3007a0a2> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x1b9bec000 - 0x1b9bf7fff MediaAccessibility arm64  <40e2b21f769735d9a80564244056008d> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1b9bf8000 - 0x1b9ceafff libiconv.2.dylib arm64  <506e2bfca9c334d0a02a0bb44e669025> /usr/lib/libiconv.2.dylib
0x1b9ceb000 - 0x1b9d06fff NetworkStatistics arm64  <7fb3bc1fa5713d2eb99dad2ca782067c> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1b9d07000 - 0x1b9d25fff MPSCore arm64  <6436293106bb381184af63f069f2fb16> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1b9d26000 - 0x1b9d9afff MPSImage arm64  <deb259d780da3d02bd49a331d574a26c> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1b9d9b000 - 0x1b9dbffff MPSMatrix arm64  <c1eb938f21973400b1c0c73fcc480b94> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1b9dc0000 - 0x1b9dcefff CoreAUC arm64  <dc703e46a7a333d3a91ce70369948155> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1b9dcf000 - 0x1ba46cfff MediaToolbox arm64  <8e776fd1ab06334a9d66fb55037997a4> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x1ba46d000 - 0x1ba5dffff MPSNeuralNetwork arm64  <ad9998a050763a569a68c927a237da7b> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1ba5e0000 - 0x1ba5e0fff MetalPerformanceShaders arm64  <64e2ac7df1b039b48eda0ed63fa73aeb> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1ba5e1000 - 0x1ba9fefff FaceCore arm64  <9a7b26e3fa6d3b0d8be59b0a0e3c246e> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1ba9ff000 - 0x1baa0cfff GraphVisualizer arm64  <f4bd216d99153f9483dcb2e7dfceb847> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1baa0d000 - 0x1babb4fff libFosl_dynamic.dylib arm64  <db8fb065709539d7a416365a19978a87> /usr/lib/libFosl_dynamic.dylib
0x1babb5000 - 0x1bae55fff CoreImage arm64  <65d53fa038213884a6a4582fb4d77e58> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1bae56000 - 0x1bb092fff CoreMotion arm64  <5a0557290b5b39fe89e3b88c33f131c3> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1bb093000 - 0x1bb0c3fff CoreBluetooth arm64  <437704fa00283c8884f0b8bae30fd287> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1bb0c4000 - 0x1bb0e7fff PlugInKit arm64  <180d62e5afbc3e2383eda14aa96129a7> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1bb0e8000 - 0x1bb375fff ********* arm64  <a9372e140c833c9d9fda45a65a08f824> /System/Library/PrivateFrameworks/*********.framework/*********
0x1bb376000 - 0x1bb400fff Quagga arm64  <f21b3141de3233fda360bd692f85a348> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1bb401000 - 0x1bb505fff AVFAudio arm64  <37dabcd7ff7e3b72bf0baed07751bbc5> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1bb506000 - 0x1bb718fff AVFoundation arm64  <e57921a85334398683e9267788bb1b2b> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1bb719000 - 0x1bb739fff CacheDelete arm64  <e9f466dc3cc536e79074a10ea665faaf> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1bb73a000 - 0x1bb776fff StreamingZip arm64  <d4089d46ebe43ba7a57050856a15b8f6> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1bb777000 - 0x1bb78bfff CoreEmoji arm64  <1aa1d71a2a0d3369b9b893e9f07bc319> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1bb78c000 - 0x1bb7dbfff CoreLocationProtobuf arm64  <ebc2bcf684c83005b499d58960ccf07a> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1bb7dc000 - 0x1bb7e4fff SymptomDiagnosticReporter arm64  <2d5007879a3d36499a06706913efb88e> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1bb7e5000 - 0x1bc201fff GeoServices arm64  <7ca293994de43129b1dc2fe302a6f70c> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1bc202000 - 0x1bc21cfff MobileAsset arm64  <5f5a593a0d7633ff95e85ab77885b485> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x1bc21d000 - 0x1bc25dfff Lexicon arm64  <07230f4f74ae38ad9f795eb0ea837228> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1bc25e000 - 0x1bc26ffff libcmph.dylib arm64  <4e381f1b9feb336baf98e9c4421949b5> /usr/lib/libcmph.dylib
0x1bc270000 - 0x1bc396fff LanguageModeling arm64  <f970f0a6643630bb81621ecdaa6e1781> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1bc3af000 - 0x1bc453fff CoreLocation arm64  <de910e323e2239bba60dde5d2031f039> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1bc454000 - 0x1bc454fff PhoneNumbers arm64  <1e61802a950d335b80adf66cd9b68727> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1bc455000 - 0x1bc460fff libChineseTokenizer.dylib arm64  <49ae296e32b83e4296caf5874e7f40eb> /usr/lib/libChineseTokenizer.dylib
0x1bc461000 - 0x1bc51dfff libmecab_em.dylib arm64  <cfb489b2a8a43a14b739f886929a7890> /usr/lib/libmecab_em.dylib
0x1bc51e000 - 0x1bc51ffff libThaiTokenizer.dylib arm64  <007bbafe33f836369f656ba07ae69892> /usr/lib/libThaiTokenizer.dylib
0x1bc520000 - 0x1bc524fff libgermantok.dylib arm64  <0b300a5faf0b346393b16f95b4db96db> /usr/lib/libgermantok.dylib
0x1bc531000 - 0x1bc59efff CoreNLP arm64  <1442cb6146ae3065b32677fcd8f1459c> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1bc772000 - 0x1bc7d8fff CoreSpotlight arm64  <b6126b1c20ff3e74820a066e6fe1faaf> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x1bc7d9000 - 0x1bd3aefff JavaScriptCore arm64  <b5e922c95f2439af8a506ab370a5195f> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1bd3af000 - 0x1bd3b4fff libheimdal-asn1.dylib arm64  <e1fdd1d2d09a32ab9e01dbe77df509d6> /usr/lib/libheimdal-asn1.dylib
0x1bd3b5000 - 0x1bd42ffff libate.dylib arm64  <616bc97e229e3819bdc06670f01a3eb7> /usr/lib/libate.dylib
0x1bd430000 - 0x1bd4d9fff TextureIO arm64  <cbf2ba302eeb38c7b632cb43dda0ed9a> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1bd4da000 - 0x1bd59efff CoreUI arm64  <8cdda2b50f27368e87bcc448107e99b5> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x1bd59f000 - 0x1bd5acfff MobileIcons arm64  <ca85512dac323bac944c0504d50b0ee9> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1bd5ad000 - 0x1bd5bcfff AppleFSCompression arm64  <e421718702fd364eb3c9cbcb999d2a75> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1bd5bd000 - 0x1bd625fff TextInput arm64  <b373f8eb5230307585aec5ccaddfbede> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1bd650000 - 0x1bd685fff DataDetectorsCore arm64  <b5233abd4bf03337819e04480734cb72> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1bd686000 - 0x1bd721fff FileProvider arm64  <2db6a075d5e8386d9cbbd06286aa4000> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1bd83a000 - 0x1bd911fff ProofReader arm64  <4bd9e2c2ef4135e5a95712d0d0cffaa8> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x1bd912000 - 0x1bd928fff libAccessibility.dylib arm64  <4183b22ccfe73252b79801a32fd5338d> /usr/lib/libAccessibility.dylib
0x1bd929000 - 0x1bddcffff libwebrtc.dylib arm64  <b95b4899d4c8322ab95209be1cfa5b4d> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1bddd0000 - 0x1bde3cfff ContactsFoundation arm64  <b84c01c3e221342091d5a6e9a591c56b> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1bde3d000 - 0x1bf6defff WebCore arm64  <bc468784f1b93705a6981b0270adb90a> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1bf6df000 - 0x1bf86afff WebKitLegacy arm64  <72b67a3b987030d3b41c6b75ba35f598> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1bf86b000 - 0x1bf89cfff DataAccessExpress arm64  <30def6ba724d3bf0b15aed82d418a882> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1bf89d000 - 0x1bf937fff AddressBookLegacy arm64  <e4959c5fc78a3cde9de5e99f5b1acdb0> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1bf938000 - 0x1bf993fff ProtectedCloudStorage arm64  <ed8484c421103376bda0ff3a4e73c66c> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1bf994000 - 0x1bf9c8fff UserNotifications arm64  <0d08d97997d0386598f0f385e47dbcd4> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1bf9c9000 - 0x1bf9d4fff AppleIDAuthSupport arm64  <468eeabf20be394bb7c1a9cd55c7080a> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1bf9d5000 - 0x1bfa31fff AuthKit arm64  <7c16afd7e4e13f0392bb89699c2c0f19> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x1bfa72000 - 0x1bfa72fff UIKit arm64  <a24022e6a01038989f91d75d16fde7c2> /System/Library/Frameworks/UIKit.framework/UIKit
0x1bfa73000 - 0x1bfa86fff DocumentManagerCore arm64  <ff2d82ef305e381dbc0546c9734e0bad> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1bfa87000 - 0x1bfa95fff HangTracer arm64  <5a15b87816da321d87f6e0e635409ee3> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1bfa96000 - 0x1bfaeafff PhysicsKit arm64  <2cb849e753bb39598a9b61a570558967> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1bfaeb000 - 0x1bfaeffff StudyLog arm64  <c67513530d5d3c13a767016bbafa5ee9> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1bfaf0000 - 0x1bfbddfff UIFoundation arm64  <1b931c8912e33338a4a399bc548046ba> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1bfbde000 - 0x1bfd06fff CloudKit arm64  <fb93f1336c8d3f11b0c3c796be4ae6b7> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1bfd07000 - 0x1bfd0efff IntentsFoundation arm64  <94122606323d3019aac32cac43852226> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1bfd0f000 - 0x1bfffcfff Intents arm64  <8878c1da4cf73c64a4e782a62036c960> /System/Library/Frameworks/Intents.framework/Intents
0x1bfffd000 - 0x1c0015fff libresolv.9.dylib arm64  <c0152002f4f23d8d9d4aa9d5ef8c3c15> /usr/lib/libresolv.9.dylib
0x1c0016000 - 0x1c0018fff CoreDuetDebugLogging arm64  <989f2bc326f8390d8a00aa997a7491f2> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1c0019000 - 0x1c004afff libtidy.A.dylib arm64  <bf2ea89a22c53df9ac83cf0afc50dcb1> /usr/lib/libtidy.A.dylib
0x1c004b000 - 0x1c0223fff CoreDuet arm64  <2ee4005851b631dea800034204fabd64> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x1c0224000 - 0x1c0246fff CoreDuetContext arm64  <ae5bb0d7420e3772bc9f0b224432b001> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x1c0247000 - 0x1c0259fff CoreDuetDaemonProtocol arm64  <374cb31631f8396aa1bc2a18cfccab12> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1c025a000 - 0x1c02c5fff IMFoundation arm64  <54ecf135ff5738b381bcf8f963890f11> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x1c02c6000 - 0x1c02f7fff vCard arm64  <a24514b8eb1637e0b8499e1eb2a7b332> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1c02f8000 - 0x1c0417fff Contacts arm64  <55e1d18533643da4bb10a57345742911> /System/Library/Frameworks/Contacts.framework/Contacts
0x1c0418000 - 0x1c0419fff DiagnosticLogCollection arm64  <efc6ac801e113ab5ba0948fc9ff00d76> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x1c041a000 - 0x1c041bfff Marco arm64  <89e35f51ffcb33a2b3e0550bb2e0e386> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1c041c000 - 0x1c0423fff MessageProtection arm64  <4a5fa063ed5f319fb68946d95866651a> /System/Library/PrivateFrameworks/MessageProtection.framework/MessageProtection
0x1c0424000 - 0x1c073afff StoreServices arm64  <7276e8776dbe3d949a1b266bd938bdb3> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1c073b000 - 0x1c0752fff Engram arm64  <41bdbdddec9d38d7901b7ea3159084e1> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1c0753000 - 0x1c086dfff IDSFoundation arm64  <ba5c1aea7178343d94bab72558893076> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1c086e000 - 0x1c0879fff CaptiveNetwork arm64  <dc0d6b335fe6360db8f570b153f93f57> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1c087a000 - 0x1c08abfff EAP8021X arm64  <e82ea6cb186e3dfd8fc20acfc7770998> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1c08ac000 - 0x1c08e9fff MobileWiFi arm64  <03cfbf6142c7310386e56aa2c7fe3ccd> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1c08ea000 - 0x1c08ecfff OAuth arm64  <c6c85bc210a9305c9f4116ed4efbc484> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x1c08ed000 - 0x1c08effff CommonAuth arm64  <b4116d9cc391382c819551d0f837676d> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1c08f0000 - 0x1c0960fff Heimdal arm64  <7b1184f444293581984ad9b33d7204dd> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1c0961000 - 0x1c098afff GSS arm64  <74b973d471d83cbc879a82d13c3db585> /System/Library/Frameworks/GSS.framework/GSS
0x1c098b000 - 0x1c09a4fff ApplePushService arm64  <247da4d634c638c5a3f46053934aa7c6> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1c09a5000 - 0x1c0a3ffff AccountsDaemon arm64  <079f9307b69239668e9b72c55e8ee396> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x1c0a40000 - 0x1c0a62fff AppleIDSSOAuthentication arm64  <4f6b0aabbfc230a7b9f394738af1cba9> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1c0a63000 - 0x1c0ae8fff AppleAccount arm64  <ebb58ea7d8ee32b2a50ce105f5846927> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x1c0ae9000 - 0x1c0c45fff CoreUtils arm64  <a543f25a8643388380048ed8a80e4fd3> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1c0c46000 - 0x1c0d5bfff IDS arm64  <0a7abd70144f38ae802910bcf2584e13> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1c0d5c000 - 0x1c0d82fff MediaServices arm64  <30d81dad1c753200acb10bde0ce1b998> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x1c0d83000 - 0x1c0f63fff MediaRemote arm64  <cb50cb0618f43a1eb66ad16a743e8508> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x1c0f64000 - 0x1c0f7ffff UserManagement arm64  <aab9cba78d243715a3118bafc25c93c3> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1c0f91000 - 0x1c0fc1fff Bom arm64  <27d2cb8ad22f3b1fa9e4ab01fdef2b2f> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1c0fc2000 - 0x1c0fc6fff CommunicationsFilter arm64  <3c91664453d23bd8aa92105c002ae20e> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x1c0fc7000 - 0x1c0febfff FTAWD arm64  <c10e76f52bb93e9890bda86187979f81> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x1c0fec000 - 0x1c1047fff FTServices arm64  <935103f8796d3f8984855dab93a14fe5> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x1c1081000 - 0x1c108cfff ProactiveEventTracker arm64  <2a5a658b49f03cc18f9d1f70127e5782> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1c10ec000 - 0x1c1110fff AddressBook arm64  <39fe84ea4b9c3ba095c4b6f1b894a55e> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x1c2210000 - 0x1c2670fff SiriTTS arm64  <f20cc9956c2c30b8be3253fa8d024c4d> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x1c2671000 - 0x1c26cefff SAObjects arm64  <14cabee4d606312eaff561d25541de86> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x1c26cf000 - 0x1c2710fff VoiceServices arm64  <abf790d68de83187a160fee412aac734> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x1c2742000 - 0x1c2863fff AssistantServices arm64  <8183ecd187e833b1a21f92a37b1edb93> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x1c2a27000 - 0x1c2a98fff CoreDAV arm64  <8f78567cedcc32d3afd1cd5fbe53dc50> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1c2a99000 - 0x1c2acdfff iCalendar arm64  <6e8d2ab6d7fa3d6b84868d61c137e5bb> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1c2ace000 - 0x1c2adcfff PersonaKit arm64  <911f0bb1661e340e8eda6e88f3c6a6f1> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1c2add000 - 0x1c2b35fff CalendarFoundation arm64  <9144e0d9a25e3b0b974ac876593f3c9e> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x1c2b67000 - 0x1c2c04fff CalendarDatabase arm64  <4a1572ce39fd3d44b6f31e231005911b> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x1c2c05000 - 0x1c2c5ffff CalendarDaemon arm64  <b11d7da508d63ae4b01cd683de718930> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x1c2dda000 - 0x1c2ec9fff EventKit arm64  <47ce793d8afe3bd0a4cb937132fe0746> /System/Library/Frameworks/EventKit.framework/EventKit
0x1c31a6000 - 0x1c31b1fff CoreRecents arm64  <c9e26efdb64739a9b35be049985329c4> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x1c3718000 - 0x1c3734fff PrototypeTools arm64  <82893defb7153b6eba6699e6c387a853> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1c3735000 - 0x1c37befff CoreSymbolication arm64  <4180ec89d0aa3c4c8981d1e51b275827> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1c37bf000 - 0x1c3908fff SearchFoundation arm64  <80fb78b06a483271964cb9a20f764972> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x1c3909000 - 0x1c390ffff IncomingCallFilter arm64  <c70dee57870b3f569f4af869927cc884> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x1c3b2a000 - 0x1c3b32fff CoreTime arm64  <2794cf580ba139f88b8724d49ad6114d> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1c3b86000 - 0x1c3bc6fff DifferentialPrivacy arm64  <43737d3dd672390eaaf18cc8919fbd14> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1c4186000 - 0x1c418cfff MobileSystemServices arm64  <3d8a3d2af32a3b38b97aadce8b3a52c3> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1c4603000 - 0x1c4607fff CoreOptimization arm64  <8e4a143b80803fbcbf4ba81c5147f16b> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1c4608000 - 0x1c4665fff SafariCore arm64  <44e771e5e2d43bbeae883fb2949e0e10> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x1c4666000 - 0x1c46c0fff CorePrediction arm64  <130e93cf8cae314ebc1ac0f3fe513984> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1c46c1000 - 0x1c47c7fff Navigation arm64  <4a0cd173af1b38409bec071cd56633fb> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1c47c8000 - 0x1c47e1fff ContactsDonation arm64  <d49c43e5a11336f1b307608e15718497> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x1c480f000 - 0x1c4887fff NanoRegistry arm64  <5cb2c6baa0393ee6971e0144f08cff74> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1c48fc000 - 0x1c4958fff ContactsUICore arm64  <d6990083bb663becb74db6ebf87eabee> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x1c4959000 - 0x1c4ad1fff ContactsUI arm64  <3313ec1d0e393367bda348a500fe5d8d> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x1c4ad2000 - 0x1c4b9dfff CorePDF arm64  <65141725213e3b7e8046166235649b2f> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x1c4e63000 - 0x1c5331fff WebKit arm64  <ba7e8e8ef0fb3fd1b66b59af1b99f721> /System/Library/Frameworks/WebKit.framework/WebKit
0x1c53d4000 - 0x1c53d9fff ConstantClasses arm64  <a14c496d54a23638889194f4bf298e71> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1c53da000 - 0x1c53e2fff CertUI arm64  <6fca30de5c8c3fec81f6f7d36b245a80> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1c557f000 - 0x1c55e9fff WebBookmarks arm64  <f813d893e7d93f9b8ed8364bf7fc71f1> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1c5ca0000 - 0x1c62fafff VectorKit arm64  <b230dff3b22e3bd399c5d34a5aa11120> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x1c62fb000 - 0x1c6548fff MapKit arm64  <9b26cfd95e3d3060835d0366fa4371df> /System/Library/Frameworks/MapKit.framework/MapKit
0x1c6d89000 - 0x1c6daefff MobileInstallation arm64  <67607be899883a63a31ebd577036c705> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x1c6daf000 - 0x1c6db6fff EmailAddressing arm64  <9e1fa6808fbf3dada7d7530bc46fda47> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
0x1c6db7000 - 0x1c6db9fff MessageSupport arm64  <110b6dd5962134a9af293105afde1b1f> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x1c6dbd000 - 0x1c6e18fff MIME arm64  <a53c1f9411aa3afaa239f5b7b6ddae5a> /System/Library/PrivateFrameworks/MIME.framework/MIME
0x1c6e51000 - 0x1c6e8afff Notes arm64  <46c6f514c65535fb989c7022d0a91b2f> /System/Library/PrivateFrameworks/Notes.framework/Notes
0x1c6e8b000 - 0x1c6f58fff TelephonyUtilities arm64  <fbbdae0d03b9359e9ec36496f4f00534> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x1c6fb6000 - 0x1c7011fff DataAccess arm64  <9d92f035e03436b6b442d4cff4360948> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x1c7441000 - 0x1c7459fff CoreFollowUp arm64  <4b2fb372dc6d3badbd42f88d340d65f9> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1c74cf000 - 0x1c74dffff MailServices arm64  <0a3fb346f9df3f53ab266dd189d12e9d> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x1c7574000 - 0x1c759cfff MailSupport arm64  <daa3448d9d7133da9d1a6b9b8d4b73ca> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
0x1c759d000 - 0x1c76f5fff Message arm64  <d8b2ab585d553b989f5683b5312caca8> /System/Library/PrivateFrameworks/Message.framework/Message
0x1c7a10000 - 0x1c7a42fff SharedUtils arm64  <ff71e6fac7cf3762b46aa9b8d0241d8f> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x1c7a43000 - 0x1c7a84fff ContactsAutocomplete arm64  <37c619dd7b1d38869a6b720867b392a7> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
0x1c7c67000 - 0x1c7c6afff FTClientServices arm64  <f4283507d96a378380e2db026f0d6cb2> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x1c7e6e000 - 0x1c7e84fff LocalAuthentication arm64  <7a08aebc8197316fabd388f5f5659394> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1c81c4000 - 0x1c81d1fff SetupAssistantSupport arm64  <39bceb5a03123d9c996fb656296a50bd> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1c81d2000 - 0x1c81fefff SetupAssistant arm64  <a36be68594133a9a9d665a7b83448ae4> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x1c8e6b000 - 0x1c8e84fff CoreSDB arm64  <b2bd2741cc4831ddbdecd6e36be7db58> /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
0x1c8e85000 - 0x1c8f16fff IMSharedUtilities arm64  <0dce8c3c0df334028260d3040e037448> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
0x1c8f17000 - 0x1c8f1dfff LinguisticData arm64  <33e9c5f1892f302983980fb3b711998a> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1c95c9000 - 0x1c9601fff StoreKit arm64  <facdf389202830ef9cf0d98d780f6b7f> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x1c9696000 - 0x1c96acfff EmojiFoundation arm64  <ca8e3389430a3a3a9148e7b2e0cd7a99> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
0x1c96ad000 - 0x1c97ddfff IMDPersistence arm64  <ca76761ac74e3c76b649420776bc71e5> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
0x1ca5c7000 - 0x1ca68efff PDFKit arm64  <03d0dacc8a033e10b8b6fe9c457046cd> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x1ca7bb000 - 0x1ca981fff IMCore arm64  <8afa7ed7d90d32a8922f088bb2e009d9> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x1cab82000 - 0x1cabcffff SafariSafeBrowsing arm64  <b3dc3399eedc36c09f5ffc2882f55081> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1cb0e2000 - 0x1cb1e0fff MessageUI arm64  <e1917f87762c3717b1539851d8c1bace> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x1cc7d2000 - 0x1cc82bfff CallKit arm64  <5e885043d938371ea86f9fa966ad86d6> /System/Library/Frameworks/CallKit.framework/CallKit
0x1cc88d000 - 0x1cc8e7fff IMAVCore arm64  <4c0a5682f6aa39f2baab0586f3e98013> /System/Library/PrivateFrameworks/IMAVCore.framework/IMAVCore
0x1cd597000 - 0x1cd5eafff LoggingSupport arm64  <1f1c6027db803b0da5d603c7892d70eb> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x1cf6a0000 - 0x1cf6c4fff AppSupportUI arm64  <e37d8a902823367a9a73d4da95d2d84b> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x1d047f000 - 0x1d0484fff kperf arm64  <aacc436be4413558911784d3c5868717> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1d06de000 - 0x1d0704fff CellularPlanManager arm64  <a61afefa2dd5343aa7fd7848f0b9fef6> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1d08ec000 - 0x1d08f4fff kperfdata arm64  <07cdf27744d53c899ef6568ca60a93d7> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1d093a000 - 0x1d0942fff libdscsym.dylib arm64  <fc8036818e1c37a6897f171a625e6b30> /usr/lib/libdscsym.dylib
0x1d0943000 - 0x1d0947fff libsysdiagnose.dylib arm64  <77de8fe55c603311b660f7787213c0f4> /usr/lib/libsysdiagnose.dylib
0x1d0ba9000 - 0x1d0baefff IDSKVStore arm64  <5a682853c53635e0b496e4cbd32aa714> /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore
0x1d0d10000 - 0x1d0d4bfff ktrace arm64  <5e716bd202b433d599fd14e8ae790d5b> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1d2fff000 - 0x1d300efff CTCarrierSpace arm64  <5bd71f5764953d509aa3d71588943f8c> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x1d34a6000 - 0x1d34bafff DeviceIdentity arm64  <524b6854c2db316789910b6879620eea> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1d55d5000 - 0x1d5611fff Rapport arm64  <6503af18058d3222a1a287fbab594cfa> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1d564e000 - 0x1d566bfff SignpostSupport arm64  <5c82dad2278137fab253183ff0198ad2> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1d6610000 - 0x1d662cfff libtailspin.dylib arm64  <ea7a0bb37fc8337e960fa41137219811> /usr/lib/libtailspin.dylib
0x1d692b000 - 0x1d6c11fff RawCamera arm64  <7d18ab54ced13c699aadfedec7f08343> /System/Library/CoreServices/RawCamera.bundle/RawCamera
0x1d6d1f000 - 0x1d6d33fff libCGInterfaces.dylib arm64  <85b9e4a9303230569e25491fd7f191c3> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x1d96b4000 - 0x1d96dbfff CoreServicesInternal arm64  <a099ea39d88831bfbc5f234d047b2e58> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1d9d55000 - 0x1d9d5cfff EmailCore arm64  <85567eaa748336db84bdf4030307c427> /System/Library/PrivateFrameworks/EmailCore.framework/EmailCore
0x1d9d6a000 - 0x1d9d7bfff libGSFontCache.dylib arm64  <af323cbcb5cc3c409e51377af12eb88c> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1d9d7c000 - 0x1d9daefff libTrueTypeScaler.dylib arm64  <015e8c878acc3f019b9c7a83f6606823> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
0x1db8ff000 - 0x1db903fff InternationalSupport arm64  <a9f9bcf0b66a318b8f4fe2ef30e1de4e> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1dccd3000 - 0x1dccdffff PersonaUI arm64  <46a2953340543dcd8f740b39e81eca56> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x1dd11b000 - 0x1dd125fff SignpostCollection arm64  <adb35347388836f2be93bc78bbd25b15> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1dd7a3000 - 0x1dd7a9fff TextInputUI arm64  <fa18a68edc9e30f485a73ff370f4b782> /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
0x1ddcd9000 - 0x1ddcdcfff XCTTargetBootstrap arm64  <125834652e7a3a11bc651eaa9e666daf> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1ddd1f000 - 0x1ddd31fff libEDR arm64  <eb83850e8b51332eb927337cd510794d> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1de94b000 - 0x1de94bfff libcharset.1.dylib arm64  <261ef847003736228dff4aa79221b198> /usr/lib/libcharset.1.dylib
0x1df45a000 - 0x1df45bfff liblog_network.dylib arm64  <fd1e988a105c37c4b4ca5cbf2e765c4f> /usr/lib/log/liblog_network.dylib
0x1df6d8000 - 0x1df82cfff CoreServices arm64  <7ca0c8226edd3f0e9de6c9ada3f8854c> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1df859000 - 0x1df872fff MPSRayIntersector arm64  <a59116136430388d88d2fc7069710099> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1df8a2000 - 0x1df9ddfff Network arm64  <cf486b8fe27230998f9db137573d0919> /System/Library/Frameworks/Network.framework/Network
0x1df9fb000 - 0x1df9fffff ASEProcessing arm64  <3703b68e414f32dbbdd1ac4a97a7ba1d> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1dfa00000 - 0x1dfa0bfff AXCoreUtilities arm64  <35b935e1fb03325a967b71c339a63fd1> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1dfc86000 - 0x1dfdc3fff AppleMediaServices arm64  <e900e6a7d5c8312da04eaebb917427b6> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x1e03af000 - 0x1e03cafff DoNotDisturb arm64  <55263d99b6823350943b771281915e94> /System/Library/PrivateFrameworks/DoNotDisturb.framework/DoNotDisturb
0x1e0502000 - 0x1e055afff DocumentManager arm64  <efe8ee676487367180d6691106bbdbdc> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1e0697000 - 0x1e069bfff IdleTimerServices arm64  <c5d940c64ac53ef0a529cf996b367829> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1e0717000 - 0x1e0742fff MetadataUtilities arm64  <b956b88e7e56373080ebba7760868b33> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1e0cc1000 - 0x1e0d12fff OTSVG arm64  <120d3e9410e33b1fbfebc7db541098d2> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1e0f5c000 - 0x1e0fbcfff ROCKit arm64  <ab04ec8bccfe3770b46413ff6a9bab0a> /System/Library/PrivateFrameworks/ROCKit.framework/ROCKit
0x1e11d2000 - 0x1e11e4fff RemoteTextInput arm64  <e054dcd726d23669ad241943e85887f1> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1e120d000 - 0x1e12a7fff SampleAnalysis arm64  <fb22ef1fe16d3175ad56bf23e1e94a7d> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1e138c000 - 0x1e138cfff SignpostNotification arm64  <7d1b1e317bea32ecaf71290b96d6e123> /System/Library/PrivateFrameworks/SignpostNotification.framework/SignpostNotification
0x1e13fb000 - 0x1e1403fff StatsKit arm64  <64e328675e8b33fab748332751a870dd> /System/Library/PrivateFrameworks/StatsKit.framework/StatsKit
0x1e1f28000 - 0x1e305dfff UIKitCore arm64  <db4b7f70039932b49da37218b5a4ba49> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1e305e000 - 0x1e3069fff UIKitServices arm64  <dc4399111db53da69d735b616bd65b90> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x1e306a000 - 0x1e3071fff URLFormatting arm64  <6103f7f4467a38ac889cf6fc4946ef10> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting


EOF


Replies

Consider this:

Exception Type:  EXC_BREAKPOINT (SIGTRAP)

There are various causes for an

EXC_BREAKPOINT
exception but, if you’re running Swift code on iOS, the most likely cause if that you’ve triggered a Swift trap. For example, force unwrapping an option that’s nil (using
!
) will crash like this.

Now check out the backtrace of the crashing thread:

0 fdlV3     … ViewRecipesVC.collectionView(_:cellForItemAt:) + 1768 (<compiler-generated>:0)  
1 fdlV3     … @objc ViewRecipesVC.collectionView(_:cellForItemAt:) + 96 (<compiler-generated>:0)  
2 UIKitCore … -[UICollectionView _createPreparedCellForItemAtIndexPath:withLayoutAttributes:applyAttributes:isF... + 356 (UICollectionView.m:1992)  
…

Frame 2 is the

UICollectionView
implementation calling your
-collectionView:cellForItemAtIndexPath:
data source method. This uses Objective-C calling conventions, so the Swift compiler has inserted the code in frame 1 to set things up for Swift. Frame 0 is your Swift implementation of that method.

The annoying thing about frame 0 is that it’s compiler-generated code but at a huge offset (1768). The first point means that you’re not getting a line number from the symbolication, while the second point means there’s no obvious place to look for the cause.

Can you reproduce this problem? If so, my recommendation is that you try doing this with a non-optimised build. I suspect that’ll give you a nicer backtrace.

If not, things get hard. My next step here would be to disassemble the code in frame 0 to see how you get to offset 1768.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

Unfortunately, I can't reproduce the problem, but I disassembled the code in frame 0 to offset 1768 and it's leading me into this func here:


    func getRecipes(premium: Bool, offset: Int, handler: @escaping (_ recipesArray: [RecipeModel]) -> ()) {
        var recipes = [RecipeModel]()
        if premium == true {
            AF.request("\(RECIPES_URL)\(OFFSET_PARAM)\(offset)", method: .get, parameters: nil, encoding: JSONEncoding.default, headers: BEARER_HEADER).responseDecodable { (response: DataResponse<[RecipeModel]>) in
                if response.result.error == nil {
                    recipes = self.decodeData(response: response)
                    handler(recipes)
                } else {
                    //handle error here
                }
            }
        } else {
            AF.request("\(RECIPES_URL)\(FREE_RECIPES_URL)\(OFFSET_PARAM)\(offset)", method: .get, parameters: nil, encoding: JSONEncoding.default, headers: BOOK_BEARER_HEADER).responseDecodable { (response: DataResponse<[RecipeModel]>) in
                recipes = self.decodeData(response: response)
                handler(recipes)
            }
        }
    }


Here is the decodeData func as well, somewhere in these funcs I think I am having the problem


    func decodeData(response: DataResponse<[RecipeModel]>) -> [RecipeModel] {
        var recipesArray = [RecipeModel]()
        if response.result.error == nil {
            guard let data = response.data else { print("Data in decode func didn't work"); return []}
            let recipesDecoded = try? JSONDecoder().decode([RecipeModel].self, from: data)
            for recipe in recipesDecoded ?? [] {
                if recipe.recipeStatus == "publish" && recipe.recipeCategory != "Flexible Dieting 101" && recipe.recipeCategory != "Interviews" {
                    recipesArray.append(recipe)
                }
            }
            return recipesArray
        } else {
            print("no try again")
        }
        return recipesArray
    }


Anything that looks like it could be the problem here?


Right now when I call the getRecipes func I am passing in an array.count for the Int and I think that could be what's wrong because its passing nil or some other value that is not correct causing the func to not call properly, these are just guesses right now since that is all I can think of that would give me nil unless I need to handle the nil response in decodeData differently?

Assuming this is a Swift trap — which seems likely based on the exception type — there are a bunch of potential causes. The ones that immediately spring to mind include:

  • Unwrapping an optional that’s

    nil
    , that is, the
    !
    operator (A)
  • Unwrapping an implicitly unwrapped optional (B)

  • Array access out of bounds (C)

  • Failed

    as!
    cast (D)
  • Integer out of bounds, including underflow, overflow, and narrowing, that is, converting from some integer type to some narrower one, where the value won’t fit (E)

  • Failed

    try!
    (F)

Some of these are easy to spot in the source code (for A, D and F you can just search for

!
), but others are less so.

I had a look through your code snippets and there’s nothing immediately obvious, but the code is heavily dependent on other code and the trap may have been inlined from there.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"