crash收集上报方案

崩溃的类别

有三个层面的崩溃

- mach exception

- signal

- NSException

崩溃的采集

系统自带的crash采集

TODO

使用PLCrashReporter采集

使用pod集成

  pod ‘PLCrashReporter’, ‘~> 1.2’  

AppDelegate.m中导入头文件

#import <CrashReporter/CrashReporter.h>
#import <CrashReporter/PLCrashReportTextFormatter.h>  

集成代码

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
   

    PLCrashReporter *crashReporter = [PLCrashReporter sharedReporter];
    NSError *error;
    // Check if we previously crashed
    if ([crashReporter hasPendingCrashReport]) {
        [self handleCrashReport];
    }
    // Enable the Crash Reporter
    if (![crashReporter enableCrashReporterAndReturnError: &error]) {
        NSLog(@"Warning: Could not enable crash reporter: %@", error);
    }
    
    return YES;
}

 - (void)handleCrashReport {
     PLCrashReporter *crashReporter = [PLCrashReporter sharedReporter];
     NSData *crashData;
     NSError *error;
     
     // Try loading the crash report
     crashData = [crashReporter loadPendingCrashReportDataAndReturnError:&error];
     if (crashData == nil) {
         NSLog(@"Could not load crash report: %@", error);
         [crashReporter purgePendingCrashReport];
         return;
     }
     
     // We could send the report from here, but we'll just print out some debugging info instead
     PLCrashReport *report = [[PLCrashReport alloc] initWithData:crashData error:&error];
     if (report == nil) {
         NSLog(@"Could not parse crash report");
         [crashReporter purgePendingCrashReport];
         return;
     }
     
     NSLog(@"Crashed on %@", report.systemInfo.timestamp);
     NSLog(@"Crashed with signal %@ (code %@, address=0x%" PRIx64 ")", report.signalInfo.name, report.signalInfo.code, report.signalInfo.address);
     NSString *humanReadText = [PLCrashReportTextFormatter stringValueForCrashReport:report withTextFormat:PLCrashReportTextFormatiOS];
     NSLog(@"Crashed Format Text %@", humanReadText);

     [crashReporter purgePendingCrashReport];
     return;
 }  

测试

调试状态是不起作用的,需要stop工程,从模拟器启动程序,让程序崩溃,然后用xcode运行工程,上述的打印代码就会起作用,会打印crash日志,如下

  1 ncident Identifier: CE45A2B8-B804-46D7-813F-15A9EAA6C4E7
  2 CrashReporter Key:   TODO
  3 Hardware Model:      iPhone10,1
  4 Process:         crashdemo2 [6125]
  5 Path:            /private/var/containers/Bundle/Application/E5838098-D6F3-4264-BF3E-4093CC777A86/crashdemo2.app/crashdemo2
  6 Identifier:      com.yf.crashdemo2
  7 Version:         1
  8 Code Type:       ARM-64
  9 Parent Process:  ??? [1]
 10 
 11 Date/Time:       2019-11-27 09:21:07 +0000
 12 OS Version:      iPhone OS 13.1.3 (17A878)
 13 Report Version:  104
 14 
 15 Exception Type:  SIGABRT
 16 Exception Codes: #0 at 0x19970cebc
 17 Crashed Thread:  0
 18 
 19 Application Specific Information:
 20 *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArray0 objectAtIndex:]: index 1 beyond bounds for empty NSArray'
 21 
 22 Last Exception Backtrace:
 23 0   CoreFoundation                      0x000000019991498c 0x1997e9000 + 1227148
 24 1   libobjc.A.dylib                     0x000000019963d0a4 0x199637000 + 24740
 25 2   CoreFoundation                      0x00000001998140fc 0x1997e9000 + 176380
 26 3   crashdemo2                          0x0000000104d3f3f0 0x104d38000 + 29680
 27 4   UIKitCore                           0x000000019d94eb64 0x19cf32000 + 10603364
 28 5   UIKitCore                           0x000000019d94ea08 0x19cf32000 + 10603016
 29 6   UIKitCore                           0x000000019d95caf0 0x19cf32000 + 10660592
 30 7   UIKitCore                           0x000000019d95e0a8 0x19cf32000 + 10666152
 31 8   UIKitCore                           0x000000019d93aae8 0x19cf32000 + 10521320
 32 9   UIKitCore                           0x000000019d9b223c 0x19cf32000 + 11010620
 33 10  UIKitCore                           0x000000019d9b4798 0x19cf32000 + 11020184
 34 11  UIKitCore                           0x000000019d9ad60c 0x19cf32000 + 10991116
 35 12  CoreFoundation                      0x00000001998927e0 0x1997e9000 + 694240
 36 13  CoreFoundation                      0x0000000199892738 0x1997e9000 + 694072
 37 14  CoreFoundation                      0x0000000199891ed0 0x1997e9000 + 691920
 38 15  CoreFoundation                      0x000000019988d01c 0x1997e9000 + 671772
 39 16  CoreFoundation                      0x000000019988c8bc 0x1997e9000 + 669884
 40 17  GraphicsServices                    0x00000001a36f8328 0x1a36f5000 + 13096
 41 18  UIKitCore                           0x000000019d9226d4 0x19cf32000 + 10421972
 42 19  crashdemo2                          0x0000000104d432f0 0x104d38000 + 45808
 43 20  libdyld.dylib                       0x0000000199717460 0x199716000 + 5216
 44 
 45 Thread 0 Crashed:
 46 0   libsystem_kernel.dylib              0x000000019970cebc 0x1996e8000 + 151228
 47 1   libsystem_c.dylib                   0x000000019957c824 0x199509000 + 473124
 48 2   crashdemo2                          0x0000000104d46e64 0x104d38000 + 61028
 49 3   CoreFoundation                      0x0000000199914c94 0x1997e9000 + 1227924
 50 4   libobjc.A.dylib                     0x000000019963d34c 0x199637000 + 25420
 51 5   libc++abi.dylib                     0x00000001996e2304 0x1996d4000 + 58116
 52 6   libc++abi.dylib                     0x00000001996e1ed8 0x1996d4000 + 57048
 53 7   libobjc.A.dylib                     0x000000019963d258 0x199637000 + 25176
 54 8   CoreFoundation                      0x000000019988c92c 0x1997e9000 + 669996
 55 9   GraphicsServices                    0x00000001a36f8328 0x1a36f5000 + 13096
 56 10  UIKitCore                           0x000000019d9226d4 0x19cf32000 + 10421972
 57 11  crashdemo2                          0x0000000104d432f0 0x104d38000 + 45808
 58 12  libdyld.dylib                       0x0000000199717460 0x199716000 + 5216
 59 
 60 Thread 1:
 61 0   libsystem_kernel.dylib              0x000000019970da74 0x1996e8000 + 154228
 62 1   libsystem_pthread.dylib             0x0000000199634ae0 0x199626000 + 60128
 63 
 64 Thread 2:
 65 0   libsystem_kernel.dylib              0x000000019970da74 0x1996e8000 + 154228
 66 1   libsystem_pthread.dylib             0x0000000199634ae0 0x199626000 + 60128
 67 
 68 Thread 3:
 69 0   libsystem_kernel.dylib              0x000000019970da74 0x1996e8000 + 154228
 70 1   libsystem_pthread.dylib             0x0000000199634ae0 0x199626000 + 60128
 71 
 72 Thread 4:
 73 0   libsystem_kernel.dylib              0x000000019970da74 0x1996e8000 + 154228
 74 1   libsystem_pthread.dylib             0x0000000199634ae0 0x199626000 + 60128
 75 
 76 Thread 5:
 77 0   libsystem_kernel.dylib              0x00000001996eb5f4 0x1996e8000 + 13812
 78 1   CoreFoundation                      0x0000000199892068 0x1997e9000 + 692328
 79 2   CoreFoundation                      0x000000019988d188 0x1997e9000 + 672136
 80 3   CoreFoundation                      0x000000019988c8bc 0x1997e9000 + 669884
 81 4   Foundation                          0x0000000199bcc994 0x199bc5000 + 31124
 82 5   Foundation                          0x0000000199bcc874 0x199bc5000 + 30836
 83 6   UIKitCore                           0x000000019d9ba49c 0x19cf32000 + 11043996
 84 7   Foundation                          0x0000000199cfd0b0 0x199bc5000 + 1278128
 85 8   libsystem_pthread.dylib             0x00000001996311ec 0x199626000 + 45548
 86 9   libsystem_pthread.dylib             0x0000000199634aec 0x199626000 + 60140
 87 
 88 Thread 6:
 89 0   libsystem_kernel.dylib              0x000000019970da74 0x1996e8000 + 154228
 90 1   libsystem_pthread.dylib             0x0000000199634ae0 0x199626000 + 60128
 91 
 92 Thread 0 crashed with ARM-64 Thread State:
 93     pc: 0x000000019970cebc     fp: 0x000000016b0c7780     sp: 0x000000016b0c7760     x0: 0x0000000000000000 
 94     x1: 0x0000000000000000     x2: 0x0000000000000000     x3: 0x0000000000000000     x4: 0x0000000000000010 
 95     x5: 0x0000000283da2820     x6: 0x000000000c000005     x7: 0x0000000000000005     x8: 0x000000010501d800 
 96     x9: 0x000000019962cb5c    x10: 0x0000000199628720    x11: 0x00070002811b4200    x12: 0x00000002811b4210 
 97    x13: 0x000021a1e12e5ba9    x14: 0x000000000000003f    x15: 0x7000000000000000    x16: 0x0000000000000148 
 98    x17: 0x00000001997f52e0    x18: 0x0000000000000000    x19: 0x0000000000000006    x20: 0x0000000000000407 
 99    x21: 0x000000010501d8e0    x22: 0x0000000116500950    x23: 0x00000001d649b5e0    x24: 0x00000001e12e2000 
100    x25: 0x00000001d0eeb933    x26: 0x00000001d0eed126    x27: 0x00000001999aa906    x28: 0x00000001decaebd8 
101     lr: 0x000000019962cc1c   cpsr: 0x0000000040000000 
102 
103 Binary Images:
104        0x104d38000 -        0x104d67fff +crashdemo2 arm64  <d7be993b8a9c398e8c91cdf9ad70bba3> /private/var/containers/Bundle/Application/E5838098-D6F3-4264-BF3E-4093CC777A86/crashdemo2.app/crashdemo2
105        0x104d98000 -        0x104db3fff  FMDB arm64  <a21e81693eb73af4ac2dddef56d4044b> /private/var/containers/Bundle/Application/E5838098-D6F3-4264-BF3E-4093CC777A86/crashdemo2.app/Frameworks/FMDB.framework/FMDB
106        0x104ddc000 -        0x104debfff  JQFMDB arm64  <89ca59d57db33092ba3a5599cfccfb5b> /private/var/containers/Bundle/Application/E5838098-D6F3-4264-BF3E-4093CC777A86/crashdemo2.app/Frameworks/JQFMDB.framework/JQFMDB
107        0x104ec8000 -        0x104ed3fff  libobjc-trampolines.dylib arm64  <048eb53f47913e0a9314876c6577aa10> /usr/lib/libobjc-trampolines.dylib
108        0x1994bf000 -        0x1994d5fff  libsystem_trace.dylib arm64  <f7e5141b7c243e5aaa79065004ecbf30> /usr/lib/system/libsystem_trace.dylib
109        0x1994d6000 -        0x199507fff  libxpc.dylib arm64  <217dc1a778213f1fa8373825d770ef05> /usr/lib/system/libxpc.dylib
110        0x199508000 -        0x199508fff  libsystem_blocks.dylib arm64  <c06042b841f63e4994717b606330928a> /usr/lib/system/libsystem_blocks.dylib
111        0x199509000 -        0x199585fff  libsystem_c.dylib arm64  <c4beb94cb8313889a4034b7a4aa4dcdf> /usr/lib/system/libsystem_c.dylib
112        0x199586000 -        0x1995fafff  libdispatch.dylib arm64  <3a5db4e0bc24375d897e51e6cf7d6304> /usr/lib/system/libdispatch.dylib
113        0x1995fb000 -        0x19961afff  libsystem_malloc.dylib arm64  <5dbcbc6428083e64890cb59f2ddfeb1d> /usr/lib/system/libsystem_malloc.dylib
114        0x19961b000 -        0x199625fff  libsystem_platform.dylib arm64  <09a51269d3c53ece87b7f32c096af8e7> /usr/lib/system/libsystem_platform.dylib
115        0x199626000 -        0x199636fff  libsystem_pthread.dylib arm64  <c3fa4f34750f362bbefe835bfb15c0f8> /usr/lib/system/libsystem_pthread.dylib
116        0x199637000 -        0x199667fff  libobjc.A.dylib arm64  <b39048c383953de4af4daca3097fdc53> /usr/lib/libobjc.A.dylib
117        0x199668000 -        0x1996d3fff  libcorecrypto.dylib arm64  <6ddbd01331ce32cb9fce3c5f40880ac5> /usr/lib/system/libcorecrypto.dylib
118        0x1996d4000 -        0x1996e7fff  libc++abi.dylib arm64  <b148bc1f83c834e2868d00db2d9bbb55> /usr/lib/libc++abi.dylib
119        0x1996e8000 -        0x199715fff  libsystem_kernel.dylib arm64  <92cbd0cb514f3a23a21c169e915052a7> /usr/lib/system/libsystem_kernel.dylib
120        0x199716000 -        0x199747fff  libdyld.dylib arm64  <e1637502bfcb3bbcb3e1ccf78617e0e4> /usr/lib/system/libdyld.dylib
121        0x199748000 -        0x19974ffff  libsystem_darwin.dylib arm64  <c10d7897c5833454b6f9697c78d9eeb6> /usr/lib/system/libsystem_darwin.dylib
122        0x199750000 -        0x1997a6fff  libc++.1.dylib arm64  <4547c800a6533ece9808c26768583e25> /usr/lib/libc++.1.dylib
123        0x1997a7000 -        0x1997e8fff  libsystem_info.dylib arm64  <bb4a834b619136be866b5018d4eb692d> /usr/lib/system/libsystem_info.dylib
124        0x1997e9000 -        0x199b5dfff  CoreFoundation arm64  <da838e756b30360e9661c4800a7e1bf6> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
125        0x199b5e000 -        0x199bc4fff  SystemConfiguration arm64  <24254722088c3cb5af21e32f8a1366f9> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
126        0x199bc5000 -        0x199e7efff  Foundation arm64  <0df2911e80cb32898a1eed0913d55a12> /System/Library/Frameworks/Foundation.framework/Foundation
127        0x199e7f000 -        0x199eb1fff  libCRFSuite.dylib arm64  <5eea9a99dc773f8fa38a7214c7192306> /usr/lib/libCRFSuite.dylib
128        0x199eb2000 -        0x19a02bfff  CoreServices arm64  <4631a29affb23a9d95ff1037507bd066> /System/Library/Frameworks/CoreServices.framework/CoreServices
129        0x19a02c000 -        0x19a08dfff  libSparse.dylib arm64  <c9c6da9287043061931f9425bb776862> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
130        0x19a08e000 -        0x19a57cfff  ImageIO arm64  <71d13168073032b08e658e66dc59001c> /System/Library/Frameworks/ImageIO.framework/ImageIO
131        0x19a57d000 -        0x19a57ffff  ConstantClasses arm64  <db0b6ffe8580302fb454a1c9e242cfd7> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
132        0x19a580000 -        0x19a71cfff  CoreText arm64  <47a65ed0e0b43c039a4fe4222224ca3a> /System/Library/Frameworks/CoreText.framework/CoreText
133        0x19a71d000 -        0x19a847fff  Security arm64  <9d07b519c420314c82d202818501325b> /System/Library/Frameworks/Security.framework/Security
134        0x19a848000 -        0x19a8eafff  IOKit arm64  <8acdb99787bd3d9b841c28ad5b55b74a> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
135        0x19a8eb000 -        0x19a921fff  libMobileGestalt.dylib arm64  <e0a5a3f77ff13aedb102f27e9f2d9694> /usr/lib/libMobileGestalt.dylib
136        0x19a922000 -        0x19a97efff  libprotobuf.dylib arm64  <857eac10094e3fb0a8412969b0b27389> /usr/lib/libprotobuf.dylib
137        0x19a97f000 -        0x19a990fff  libprotobuf-lite.dylib arm64  <d065ff8c37e635dd8da3754b6e81e73d> /usr/lib/libprotobuf-lite.dylib
138        0x19a991000 -        0x19abe2fff  libicucore.A.dylib arm64  <9204a32b02813cb58029ebca005794cf> /usr/lib/libicucore.A.dylib
139        0x19ac0d000 -        0x19ac55fff  WirelessDiagnostics arm64  <b6cc161ce0103ffda515a17c1ba0bc77> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
140        0x19ac56000 -        0x19ac8ffff  libAWDSupport.dylib arm64  <cf5a5034052834089493e2414ee58501> /usr/lib/libAWDSupport.dylib
141        0x19ac90000 -        0x19b116fff  CoreAudio arm64  <68b4311c467231b2a4bbb640ffefb7b1> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
142        0x19b117000 -        0x19b3e2fff  CoreImage arm64  <5041875b776930448d5f1e40ff094bce> /System/Library/Frameworks/CoreImage.framework/CoreImage
143        0x19b3e3000 -        0x19b4d1fff  LanguageModeling arm64  <019d35151d7739409fecbaa2f0bc9be4> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
144        0x19b4d2000 -        0x19b518fff  Lexicon arm64  <bb228ebb571f3f23b4aeb7296e3376ab> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
145        0x19b519000 -        0x19b69cfff  libsqlite3.dylib arm64  <deee5c788e863223aaff0c33bb8ce515> /usr/lib/libsqlite3.dylib
146        0x19b69d000 -        0x19b6ccfff  MobileKeyBag arm64  <77a7737b65673a42be50c4551d1e3d2b> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
147        0x19b6cd000 -        0x19b6d6fff  libsystem_notify.dylib arm64  <fe955a03725d3f83b0c5d712107a2b68> /usr/lib/system/libsystem_notify.dylib
148        0x19b6d7000 -        0x19b8a0fff  CoreDuet arm64  <1ba0f3cf789a38b1916b5405c7254039> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
149        0x19b8a1000 -        0x19b9e2fff  Montreal arm64  <58aa00de87a53a988a7a6925b68f96a3> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
150        0x19b9e3000 -        0x19bacafff  NLP arm64  <dd2ffae7d54734cb90a6adbe51d38b8b> /System/Library/PrivateFrameworks/NLP.framework/NLP
151        0x19bacb000 -        0x19bae7fff  CellularPlanManager arm64  <4b2b7c4c96f2339b8073aa7dffc73bf5> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
152        0x19bae8000 -        0x19bb25fff  AppSupport arm64  <e235a396706b3dae8dd6eb9a9a4836ad> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
153        0x19bb26000 -        0x19bff2fff  libnetwork.dylib arm64  <66ee12926fe43b729cd6c8dd412fa201> /usr/lib/libnetwork.dylib
154        0x19bff3000 -        0x19c0fcfff  ManagedConfiguration arm64  <7321be890f633f1c8b998ec44e409631> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
155        0x19c0fd000 -        0x19c127fff  CoreServicesStore arm64  <0d51d3b6cf493681b7fe115573ad8354> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
156        0x19c128000 -        0x19c148fff  UserManagement arm64  <2565b0e2de2533c8818b6c7e89d7b2f9> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
157        0x19c149000 -        0x19c400fff  CoreML arm64  <6a211919d74f39aa80cbf2f3b0eadd7d> /System/Library/Frameworks/CoreML.framework/CoreML
158        0x19c401000 -        0x19c417fff  ProtocolBuffer arm64  <bdd192c04c60333baed3cb503c4f26e3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
159        0x19c418000 -        0x19c432fff  CommonUtilities arm64  <70615b240c993a968f7d8b22e810632f> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
160        0x19c433000 -        0x19c433fff  libenergytrace.dylib arm64  <be232718f429386f881be1485fd5e860> /usr/lib/libenergytrace.dylib
161        0x19c434000 -        0x19c46afff  RunningBoardServices arm64  <fc42bb21e62d3e59a8ab06b844560200> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
162        0x19c46b000 -        0x19c4defff  BaseBoard arm64  <c0d9960bc54c3c10be665c722d239a35> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
163        0x19ca25000 -        0x19ca93fff  CoreLocation arm64  <a6e3792da0fd3ffb8d863737d7080ffa> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
164        0x19caa1000 -        0x19caf4fff  Accounts arm64  <c6f269a35ebb36a987ed1d4b1953ec5e> /System/Library/Frameworks/Accounts.framework/Accounts
165        0x19cb06000 -        0x19ce51fff  CFNetwork arm64  <dd1595007d533484aa3d9dd5073d7a2f> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
166        0x19ce52000 -        0x19cf31fff  UIFoundation arm64  <762ab2275b383575ab8edadd5cce81ca> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
167        0x19cf32000 -        0x19dfd3fff  UIKitCore arm64  <82c949dd37f635f7b3ef62ba342f6bf5> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
168        0x19dfd4000 -        0x19dfe1fff  AssertionServices arm64  <4fef6e63b07c31819944cba5beef11c2> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
169        0x19dfe2000 -        0x19e0b3fff  CoreTelephony arm64  <8498f53222a138bfa79be9c333d8237b> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
170        0x19e0b4000 -        0x19e0b9fff  AggregateDictionary arm64  <627b9cb989923d4887e48fa247a37cfe> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
171        0x19e0ba000 -        0x19e0d0fff  libsystem_asl.dylib arm64  <04233c43380135619ce81eb5ed210716> /usr/lib/system/libsystem_asl.dylib
172        0x19e0d1000 -        0x19e148fff  CloudDocs arm64  <fa131fb683fe3c86a058c0a0642e4cb5> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
173        0x19e149000 -        0x19e46afff  CoreData arm64  <a44f3b0e35af3b26b9e3f764077562ea> /System/Library/Frameworks/CoreData.framework/CoreData
174        0x19e6d8000 -        0x19e703fff  BoardServices arm64  <397361d5d88d315ea2e9979a46efac0c> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
175        0x19e7b3000 -        0x19e7c1fff  libsystem_networkextension.dylib arm64  <20bc358488a93893aac7b5e4a0130106> /usr/lib/system/libsystem_networkextension.dylib
176        0x19e7c2000 -        0x19e7e2fff  CoreAnalytics arm64  <1ae72168247f3e57b56f80b361a65f1a> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
177        0x19e7e3000 -        0x19e953fff  CloudKit arm64  <92fcfab621483f38b7df5bb78e4c4c87> /System/Library/Frameworks/CloudKit.framework/CloudKit
178        0x19e954000 -        0x19e9a0fff  SpringBoardServices arm64  <b9ae2754d13f3754a8ee22dde9a82eb9> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
179        0x19e9a1000 -        0x19ea14fff  FrontBoardServices arm64  <949083b6181132709ca8fe2468c56568> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
180        0x19ea15000 -        0x19eb2cfff  Network arm64  <92a1012a81b43c1890e61982b82d41af> /System/Library/Frameworks/Network.framework/Network
181        0x19eb8a000 -        0x19eb91fff  libsystem_symptoms.dylib arm64  <b3d47c4684ac38d2a187645bdedc3125> /usr/lib/system/libsystem_symptoms.dylib
182        0x19eb92000 -        0x19fa14fff  GeoServices arm64  <761d16b850e43d28946687d4bbb96ea0> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
183        0x19fa15000 -        0x19fa1dfff  TCC arm64  <ffcf214c13b93871be86c3d5c3108939> /System/Library/PrivateFrameworks/TCC.framework/TCC
184        0x19fa1e000 -        0x19fa77fff  IMFoundation arm64  <6b88d26a956e3d8cb00bc921cf0d1741> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
185        0x19fa78000 -        0x19fbd7fff  CoreUtils arm64  <9bae008296e836f7b0ca309787a1e0e6> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
186        0x19fcce000 -        0x19fcd7fff  libsystem_containermanager.dylib arm64  <24b221bed7f339d5b272e017d5ba4dcf> /usr/lib/system/libsystem_containermanager.dylib
187        0x19fcd8000 -        0x19fd52fff  AppleAccount arm64  <94805868ca243c17a018784a27fadd0d> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
188        0x19fd53000 -        0x19fd6efff  ApplePushService arm64  <bec0e926db1c3a40bf1d1806f0d07e96> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
189        0x19fd6f000 -        0x19fe58fff  IDS arm64  <cd7f600a66bf3f869032a752898716eb> /System/Library/PrivateFrameworks/IDS.framework/IDS
190        0x19fe59000 -        0x19ff85fff  IDSFoundation arm64  <78406df91d7f3163a93151c8512c3834> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
191        0x19ff86000 -        0x19ff87fff  libCTGreenTeaLogger.dylib arm64  <47db0a7fe71938d4bf303758cc76bcf3> /usr/lib/libCTGreenTeaLogger.dylib
192        0x19ffe8000 -        0x1a00e5fff  CoreMedia arm64  <4e0d2da77f5b31d0998a027b7e16c987> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
193        0x1a00e6000 -        0x1a00f5fff  UIKitServices arm64  <1b738cdb4c523ab5a81cf03994ba8be2> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
194        0x1a00f6000 -        0x1a0148fff  BackBoardServices arm64  <da0ce7310ee63880b2f33421e029ded6> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
195        0x1a0149000 -        0x1a0396fff  QuartzCore arm64  <5a4a8f86a37d3290ac6a9c03140fa5d3> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
196        0x1a0397000 -        0x1a0554fff  ColorSync arm64  <6f2244d3ec8039ce9703fff1c6be602e> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
197        0x1a0555000 -        0x1a0ac3fff  CoreGraphics arm64  <28e4305086b13449ab7514ac4056a1bf> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
198        0x1a0ac4000 -        0x1a0bf4fff  Contacts arm64  <39c73201bd0f37538ee0aff07a5b4b97> /System/Library/Frameworks/Contacts.framework/Contacts
199        0x1a0bf5000 -        0x1a0c24fff  UserNotifications arm64  <d2b17eac642e3bfd901fbd1b1c8bc5b7> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
200        0x1a0c25000 -        0x1a0c48fff  LocationSupport arm64  <bf8e3754625338f2ba6d940354134775> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
201        0x1a0da1000 -        0x1a135afff  WebKit arm64  <049fc73494c93e5d826fabb56f7e2d25> /System/Library/Frameworks/WebKit.framework/WebKit
202        0x1a135b000 -        0x1a2f3ffff  WebCore arm64  <2545001929ac3112b397178574b6afa5> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
203        0x1a2f40000 -        0x1a2f57fff  libAccessibility.dylib arm64  <3d25b129f6b33962908f274588266073> /usr/lib/libAccessibility.dylib
204        0x1a2f58000 -        0x1a2f63fff  AXCoreUtilities arm64  <0b39af12dddf3af6ad6ab5562e6a3eff> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
205        0x1a2f64000 -        0x1a2fd8fff  ContactsFoundation arm64  <3770041970503cd49103e024e44d922d> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
206        0x1a2fd9000 -        0x1a2fedfff  PowerLog arm64  <3a35cb784cb733148a853fdba6ae5441> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
207        0x1a2fee000 -        0x1a2ffffff  IOSurface arm64  <4b69c4e924b13c0bb6302065b9bf9665> /System/Library/Frameworks/IOSurface.framework/IOSurface
208        0x1a3000000 -        0x1a36f4fff  MediaToolbox arm64  <af8fa7d9a68b3d18afd94ec7fe60da87> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
209        0x1a36f5000 -        0x1a36fdfff  GraphicsServices arm64  <0bf55c8caf0033c882926d40ffeb6f46> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
210        0x1a37e0000 -        0x1a39cffff  AVFoundation arm64  <ef96489e88af3b22a193cade73dc0297> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
211        0x1a3a08000 -        0x1a3a55fff  MobileWiFi arm64  <32ed7928804239d7ae59d7e706c2ae3c> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
212        0x1a3a56000 -        0x1a3a6efff  MobileAsset arm64  <98105034326f35c783bd932f5ede0386> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
213        0x1a3a6f000 -        0x1a3a7cfff  libGSFont.dylib arm64  <1e3a2506bd9d3ff3a7fd2bd734e6443e> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
214        0x1a3a7d000 -        0x1a3a86fff  FontServices arm64  <f9ef1fde732130dca0e92a8702d7d378> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
215        0x1a3a87000 -        0x1a3bd0fff  libFontParser.dylib arm64  <efcf40d0671f30f49d3182336540c058> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
216        0x1a3c1f000 -        0x1a3d5dfff  SearchFoundation arm64  <816637f6492b340a95b95880d01a1079> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
217        0x1a44d8000 -        0x1a473bfff  vImage arm64  <e292006a2b5c3de69c9c5a730e0857b5> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
218        0x1a473c000 -        0x1a496efff  AudioToolbox arm64  <845848c42a7a31338883d56f3dee889b> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
219        0x1a496f000 -        0x1a49a4fff  libAudioToolboxUtility.dylib arm64  <800acfd8417e3c28aee5e654f7982a55> /usr/lib/libAudioToolboxUtility.dylib
220        0x1a4dbe000 -        0x1a4e50fff  ShareSheet arm64  <2f4b58acc7d6337d8c4ef0d3dab0d78b> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
221        0x1a4e65000 -        0x1a4f19fff  PDFKit arm64  <1827bc968a4238afa7ebe460e96b7c02> /System/Library/Frameworks/PDFKit.framework/PDFKit
222        0x1a4f97000 -        0x1a4fc4fff  DocumentManager arm64  <b2138f289ea935f8b324efb8db524c38> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
223        0x1a521d000 -        0x1a5290fff  AuthKit arm64  <0e3d32ce73e9392ebef45baeaf331715> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
224        0x1a5291000 -        0x1a569ffff  Intents arm64  <051990c089773064b1f2f0929a599021> /System/Library/Frameworks/Intents.framework/Intents
225        0x1a56b5000 -        0x1a5801fff  WebKitLegacy arm64  <c77e345b8678359abe54cc164403bf97> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
226        0x1a5802000 -        0x1a586afff  TextInput arm64  <0c3b121d00d036d98b4ec76698e7421e> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
227        0x1a58e8000 -        0x1a58ebfff  XCTTargetBootstrap arm64  <a36df7a21d223d26a9614dd317675268> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
228        0x1a58ec000 -        0x1a59a1fff  CorePDF arm64  <36fe0cc3cffa39a1be4e21a69109d7ba> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
229        0x1a5d95000 -        0x1a609efff  AppleMediaServices arm64  <cc11ef9ae6973b94b4c678d82b7db881> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
230        0x1a60c6000 -        0x1a6287fff  CoreMotion arm64  <81ae655a9ea93456ac44fb41da5ac4e0> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
231        0x1a6288000 -        0x1a6375fff  AVFAudio arm64  <90502188446033e884fd9a1d30a416b4> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
232        0x1a6594000 -        0x1a664afff  CoreUI arm64  <65a0afca82ea340b95a95d5136646a16> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
233        0x1a6670000 -        0x1a66a5fff  CoreVideo arm64  <95d72d7d25aa37e8aa77260884538882> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
234        0x1a66a6000 -        0x1a68dafff  AudioToolboxCore arm64  <279b39efc6fb3ca7889754e855161fac> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
235        0x1a68db000 -        0x1a691ffff  CoreDuetContext arm64  <a5b9d392f7c334fd819fb02950eb0404> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
236        0x1a6920000 -        0x1a6959fff  SetupAssistant arm64  <0f8ec0c6084c32edbe3ac31fd9c897a3> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
237        0x1a6a15000 -        0x1a6a3ffff  PlugInKit arm64  <d026d05c72a33dc5a0a108d7eec4aa5e> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
238        0x1a6eb6000 -        0x1a6f16fff  ProactiveSupport arm64  <d4bd8ffec9b03526b20e50af519e7f24> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
239        0x1a7150000 -        0x1a7167fff  PrototypeTools arm64  <1e3a3602813c32339f229a0f99468ade> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
240        0x1a7168000 -        0x1a7255fff  MediaExperience arm64  <9a663f1064af37c5b70518b635fc6cbd> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
241        0x1a7256000 -        0x1a7509fff  Celestial arm64  <94529087e6343000859f7e58ee890bf8> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
242        0x1a7e21000 -        0x1a7ef0fff  AVKit arm64  <c7f1068f70cb321b916e6645dd159dd3> /System/Library/Frameworks/AVKit.framework/AVKit
243        0x1a7ef1000 -        0x1a7f1ffff  Pegasus arm64  <ae114678fc063dfd92deef0912b11a00> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
244        0x1a7f20000 -        0x1a7f22fff  libapp_launch_measurement.dylib arm64  <ab917f448ed6390db2848bb31cf97687> /usr/lib/libapp_launch_measurement.dylib
245        0x1a7ffd000 -        0x1a805ffff  CoreSpotlight arm64  <be081c3d34e23954ae6c9e6f2ad3d37b> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
246        0x1a8060000 -        0x1a80f3fff  AddressBookLegacy arm64  <2346d467850636c5a3d21770cf4af3fe> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
247        0x1a80f4000 -        0x1a8103fff  CrashReporterSupport arm64  <2f3dcb71e4ee37df8ba41ca1bd43a6c9> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
248        0x1a8117000 -        0x1a81d1fff  LinkPresentation arm64  <d021b846875238959eaed1c218522957> /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
249        0x1a8207000 -        0x1a820bfff  libsystem_configuration.dylib arm64  <482ba88cc017345a8efbaf6348914f12> /usr/lib/system/libsystem_configuration.dylib
250        0x1a83eb000 -        0x1a83f9fff  HangTracer arm64  <f0f83bc43c483ed2bc76dbbf04ee88c5> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
251        0x1a83fa000 -        0x1a845ffff  CoreNLP arm64  <a6bd80d378d9304293156563bcda5f7f> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
252        0x1a8460000 -        0x1a8461fff  liblangid.dylib arm64  <b1e0f2078efc341d90b7a7792609b068> /usr/lib/liblangid.dylib
253        0x1a8462000 -        0x1a91c2fff  JavaScriptCore arm64  <6d4e079bcbd2340388dfe601466dfd46> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
254        0x1a91c3000 -        0x1a9250fff  libTelephonyUtilDynamic.dylib arm64  <a69dcec202ae3acba22991712ad812eb> /usr/lib/libTelephonyUtilDynamic.dylib
255        0x1a94df000 -        0x1a94e8fff  IOMobileFramebuffer arm64  <44222c32b59e3940a50e6a2d204ab9ce> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
256        0x1a9833000 -        0x1a984dfff  CoreMaterial arm64  <4ac1f9baac87368c9e94692f1c4b5b89> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
257        0x1a984e000 -        0x1a9934fff  libxml2.2.dylib arm64  <6e692ba566223b738f3e96ef0b5d078b> /usr/lib/libxml2.2.dylib
258        0x1aafa0000 -        0x1aafe8fff  MetadataUtilities arm64  <770681b046343cf69c1d8e43a41cb4c3> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
259        0x1ab975000 -        0x1abb90fff  NetworkExtension arm64  <90b0cbb1a3bf3570ab878a58871442f5> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
260        0x1abb91000 -        0x1abbc7fff  DataDetectorsCore arm64  <aec5256b6e9a3d9094c2f558b3e0e7c2> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
261        0x1abbc8000 -        0x1abc28fff  CalendarFoundation arm64  <700ab7227bb333eb9781f6342407c6dc> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
262        0x1abc29000 -        0x1abd1bfff  EventKit arm64  <3cd05a3b2f4535cf9e820dcd5e84592f> /System/Library/Frameworks/EventKit.framework/EventKit
263        0x1abd1c000 -        0x1abd50fff  MediaServices arm64  <79462d9dfa03390d866910b5d15c75a7> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
264        0x1ac1da000 -        0x1ac205fff  PersistentConnection arm64  <edf4e9dff6483fe680ecd59ab2ed514a> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
265        0x1ac206000 -        0x1ac259fff  CalendarDaemon arm64  <18e5c5b220363eb1bd6dded40f58f37a> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
266        0x1ac25a000 -        0x1ac2f0fff  CalendarDatabase arm64  <0888845be2773a6ebef874da62c2323a> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
267        0x1ac2f1000 -        0x1ac4c7fff  MediaRemote arm64  <adda1b08bcdd3aa8b46fa03abdb9627a> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
268        0x1ac4c8000 -        0x1ac4d0fff  CorePhoneNumbers arm64  <e3bc7af68f603c6390d8ef9fce97004b> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
269        0x1ac4e1000 -        0x1ac506fff  DuetActivityScheduler arm64  <b722c506d1b23860ae2912a553bbcbd9> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
270        0x1ac606000 -        0x1ac628fff  CoreSVG arm64  <405dbd55c7b03ade9b467743aecd9ad3> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
271        0x1ac643000 -        0x1ac660fff  ProactiveEventTracker arm64  <057c3e98ce1e34458dec485cbfff0eb9> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
272        0x1ac661000 -        0x1ac66bfff  MallocStackLogging arm64  <5e3fa430968c3f5ca7caef722499ee36> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
273        0x1ac66c000 -        0x1ac700fff  CoreSuggestions arm64  <ddde39ea309431b283caaac927c9ffec> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
274        0x1ad0e2000 -        0x1ad117fff  CoreBluetooth arm64  <f4a0eea6eeed389f833dfb98494bd330> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
275        0x1ad118000 -        0x1ad11afff  libsystem_sandbox.dylib arm64  <8790f7f8f85e333b9bbfdab82787f7a1> /usr/lib/system/libsystem_sandbox.dylib
276        0x1ad27b000 -        0x1ad2e2fff  Rapport arm64  <95842c19a5783bfeb5aa15933fa7fe96> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
277        0x1ad2e3000 -        0x1ad30ffff  OSAnalytics arm64  <741167c0cdd83e4d871c6fcf5b75315a> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
278        0x1ad310000 -        0x1ad33dfff  MobileInstallation arm64  <9ac7519f99703268a02317ae8724228b> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
279        0x1ad33e000 -        0x1ad3d8fff  Metal arm64  <db1a636672073b7388362da9f1569d26> /System/Library/Frameworks/Metal.framework/Metal
280        0x1ad3d9000 -        0x1ad3dffff  IOAccelerator arm64  <a469e8ced5203169b0a934a32a9ae8d9> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
281        0x1ad3e0000 -        0x1ad3ebfff  MediaAccessibility arm64  <9a969317430d3916aba8c75982d3d188> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
282        0x1ad409000 -        0x1ad410fff  libsystem_dnssd.dylib arm64  <f339bcf081ce3a57a518bcc56d28b4cf> /usr/lib/system/libsystem_dnssd.dylib
283        0x1ad411000 -        0x1ad417fff  PushKit arm64  <fe364e50a4dd3b28b18e0b4bb86e881a> /System/Library/Frameworks/PushKit.framework/PushKit
284        0x1ad418000 -        0x1ad51bfff  FileProvider arm64  <65d024f77aa03bb0a76f4d8e2c5945af> /System/Library/Frameworks/FileProvider.framework/FileProvider
285        0x1ad52f000 -        0x1ad530fff  BackgroundTaskAgent arm64  <b4501442fd1c369ca45d1f023a8630a2> /System/Library/PrivateFrameworks/BackgroundTaskAgent.framework/BackgroundTaskAgent
286        0x1ad531000 -        0x1ad535fff  LinguisticData arm64  <e5abe8d82d6a3330ad287e1c1c5b6b4c> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
287        0x1ad57a000 -        0x1ad635fff  VideoToolbox arm64  <568f073809c53b80b5b90e0b0080b71c> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
288        0x1adb8f000 -        0x1adb97fff  SymptomDiagnosticReporter arm64  <d189850aa2a73627aec3f25997e3a2e2> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
289        0x1adb98000 -        0x1adb9afff  IOSurfaceAccelerator arm64  <69fa54616a3031cda2e9833a04cd4e1f> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
290        0x1adc47000 -        0x1adc76fff  DataAccessExpress arm64  <c89f0e32620032559779a379f8e2e28b> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
291        0x1adce5000 -        0x1adcfafff  CoreFollowUp arm64  <49cfbdbda3a833a1ba695f15dcc95078> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
292        0x1add04000 -        0x1add19fff  libcoretls.dylib arm64  <73cbc7c41bd13c9fb7ab4b3249d2c137> /usr/lib/libcoretls.dylib
293        0x1add6f000 -        0x1addfefff  libate.dylib arm64  <f0c1e877138f30789e5dab57308f204d> /usr/lib/libate.dylib
294        0x1af1b6000 -        0x1af1effff  SAObjects arm64  <8fe4b90e06d134189de6c0067fc66d1e> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
295        0x1af2a3000 -        0x1af2b0fff  DataMigration arm64  <7b0d9fd981eb3dde8f58522b5e5286d3> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
296        0x1af463000 -        0x1af487fff  IconServices arm64  <2320fdd83df33f14b74bf60324e95465> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
297        0x1af8d2000 -        0x1af8d3fff  WatchdogClient arm64  <99c4b76de07238a1a6a9db0f7b4fd928> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
298        0x1af8d4000 -        0x1af8e5fff  libprequelite.dylib arm64  <abff7892262b38049ce850a23dbe247c> /usr/lib/libprequelite.dylib
299        0x1af90a000 -        0x1af91afff  CoreEmoji arm64  <61b0c15324be377995c806372710b507> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
300        0x1af9ad000 -        0x1af9fafff  ClassKit arm64  <20cbfe4079133f278da27826c4a0117f> /System/Library/Frameworks/ClassKit.framework/ClassKit
301        0x1afa67000 -        0x1afa71fff  CPMS arm64  <b07d69f67ae734a18e06609646867880> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
302        0x1afbd3000 -        0x1afc1ffff  MobileBackup arm64  <9edb3fbc98a13bcca1c2c4d298e6fb2f> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
303        0x1afccf000 -        0x1afcd6fff  CoreTime arm64  <4686ef91e5bf345a9e11204317ac84ee> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
304        0x1b057b000 -        0x1b0599fff  AppConduit arm64  <e3fb04a99b33331d934bb69d28a5a349> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
305        0x1b059a000 -        0x1b05b2fff  IntlPreferences arm64  <3649d7fd9d673c10afb307f8a66c5e60> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
306        0x1b0911000 -        0x1b09e4fff  CoreBrightness arm64  <5e787a9996db3121b6ddf74af3ffd8cb> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
307        0x1b09e5000 -        0x1b09ecfff  libIOReport.dylib arm64  <608a00131d4d3adfb6ade4baafe2c905> /usr/lib/libIOReport.dylib
308        0x1b0b7c000 -        0x1b0d24fff  libBNNS.dylib arm64  <cc1068188e0e3f15a64f062f6f875189> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
309        0x1b0d25000 -        0x1b0d2bfff  StudyLog arm64  <75bd4f9ad94d388090731234304fc77f> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
310        0x1b1f44000 -        0x1b1f57fff  LocalAuthentication arm64  <6f95204ae8a3321c9ca4e453569dff7b> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
311        0x1b1f80000 -        0x1b1f8bfff  CaptiveNetwork arm64  <7b9872f15ef53d949a1ec3c621672d1f> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
312        0x1b20dd000 -        0x1b218ffff  libBLAS.dylib arm64  <096dcd9c201133cc83c9f198963ffafb> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
313        0x1b2190000 -        0x1b219efff  CTCarrierSpace arm64  <4f2ac44ddbad31fc9172c6fa5385a89d> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
314        0x1b2c1f000 -        0x1b2c38fff  libtailspin.dylib arm64  <92a341afb72834eb99f1d815318cf2a6> /usr/lib/libtailspin.dylib
315        0x1b2d85000 -        0x1b2d93fff  MobileIcons arm64  <e6acfdfe52b33804b7286804a1af1a42> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
316        0x1b2d94000 -        0x1b2e94fff  ResponseKit arm64  <028761cdcf523a50b2f009a5d4f74c09> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
317        0x1b2f5b000 -        0x1b2fa2fff  CoreHaptics arm64  <25d720c635eb30a58467ec76aa553b91> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
318        0x1b2fa3000 -        0x1b306bfff  ProofReader arm64  <5b341390bb22333e92273b1fa7053dc7> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
319        0x1b30db000 -        0x1b315bfff  CoreSymbolication arm64  <3bb5224121c131908ee079775b7fa1f5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
320        0x1b315c000 -        0x1b3162fff  IdleTimerServices arm64  <f74efe882c4d3a0787bc175c9545977d> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
321        0x1b37e0000 -        0x1b3827fff  LoggingSupport arm64  <1efe9eef51d439b1896521d304b8f9cc> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
322        0x1b392c000 -        0x1b3986fff  ProtectedCloudStorage arm64  <2d8760437fd83e3bb2cdcb37d4c00848> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
323        0x1b3a70000 -        0x1b3a79fff  OpenGLES arm64  <bbea5c5ec4e53502b1db53935a260b37> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
324        0x1b3bda000 -        0x1b3be2fff  libGFXShared.dylib arm64  <935e83d3ba7d3a07b84de5e69d47a28c> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
325        0x1b3be3000 -        0x1b3c17fff  SharedUtils arm64  <915236f8f8bd365891273fc990603390> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
326        0x1b4cae000 -        0x1b4ceafff  StreamingZip arm64  <8b969f56f78d3585b589d58d4b23dcc9> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
327        0x1b5bbf000 -        0x1b5bc2fff  InternationalTextSearch arm64  <ced031b1995535069987fe4e0fdb24ae> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
328        0x1b6586000 -        0x1b659efff  NetworkStatistics arm64  <6cef360982ae39c0b01abe9084287b17> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
329        0x1b69f9000 -        0x1b69fffff  Netrb arm64  <40a8a1a95e1c38d5af74bbafb0919119> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
330        0x1b6a03000 -        0x1b6a33fff  EAP8021X arm64  <bfbde4fdaa0f3d20bc929cc34b41b411> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
331        0x1b6a34000 -        0x1b6a36fff  OSAServicesClient arm64  <c5eaed3a005e374e8d0588c92a59e8f6> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
332        0x1b6bd0000 -        0x1b6bd4fff  libgermantok.dylib arm64  <519dde12281b39c98940ae8185b07e4d> /usr/lib/libgermantok.dylib
333        0x1b6bd5000 -        0x1b6c88fff  libmecab.dylib arm64  <0656d578f9f93f2a9c8a765db61d3e19> /usr/lib/libmecab.dylib
334        0x1b7272000 -        0x1b7280fff  CoreDuetDaemonProtocol arm64  <3e59e555f21e3203849dda490e1ac19b> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
335        0x1b823b000 -        0x1b823dfff  OAuth arm64  <eb7ff78d307c3876ad1b42a1480673e4> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
336        0x1b8cdd000 -        0x1b8d4cfff  libarchive.2.dylib arm64  <da3dcfeaa1133946afd69ce4fdd66b3a> /usr/lib/libarchive.2.dylib
337        0x1b8d4d000 -        0x1b8d7cfff  C2 arm64  <f6e457a669bd3341b78f77af63c9e0ca> /System/Library/PrivateFrameworks/C2.framework/C2
338        0x1b8d7d000 -        0x1b8db1fff  NaturalLanguage arm64  <f85dd1d50f2f32909667b49168903d36> /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
339        0x1b8e45000 -        0x1b8e46fff  libsystem_coreservices.dylib arm64  <056ff41b4a3e3e058c63563a2b6cc624> /usr/lib/system/libsystem_coreservices.dylib
340        0x1b8e58000 -        0x1b8e69fff  libmis.dylib arm64  <f40fa333544b3686ad9ae933548a6f20> /usr/lib/libmis.dylib
341        0x1b905b000 -        0x1b9063fff  libcopyfile.dylib arm64  <0680a413ee233d1d877cbd1a1b98cd7e> /usr/lib/system/libcopyfile.dylib
342        0x1b93b0000 -        0x1b943ffff  AccountsDaemon arm64  <0de70eb7ac3c3a5b9982fba9df0bd53b> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
343        0x1b9440000 -        0x1b944bfff  AppleIDSSOAuthentication arm64  <8571665a6d953776b80282e3531a91e2> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
344        0x1b957e000 -        0x1b95f9fff  Symbolication arm64  <e7b9b471b56337a9804d1351aa5e1666> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
345        0x1b97ae000 -        0x1b97fcfff  ChunkingLibrary arm64  <1ff2202c91fc32198ec48d59ebd8d3c0> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
346        0x1b9cea000 -        0x1b9cecfff  CoreDuetDebugLogging arm64  <c979219e86023ae593e61d32ec6305f4> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
347        0x1ba7bd000 -        0x1ba7fafff  SignpostSupport arm64  <5d0dbc6b595d33e0abef55d64c3b8798> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
348        0x1baa30000 -        0x1baa39fff  SignpostCollection arm64  <4db83358c8c039fda69a821becb01363> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
349        0x1bb161000 -        0x1bb168fff  URLFormatting arm64  <c50b071bba3e34fba8aeb6f1221cc9fd> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
350        0x1bb27d000 -        0x1bb4a3fff  MobileSpotlightIndex arm64  <b0691a85f04a3d0e957fefb5b8ae9dad> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
351        0x1bb88b000 -        0x1bb8d1fff  CoreLocationProtobuf arm64  <84dfc3606d803552bdff56b837e57beb> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
352        0x1bb95c000 -        0x1bb9d9fff  Quagga arm64  <7a1f4aa0ebee356296d167ebec9d3440> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
353        0x1bbce2000 -        0x1bbcf6fff  libEDR arm64  <37b400daffbe3678805197a77f3c43e9> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
354        0x1bc901000 -        0x1bc90ffff  libperfcheck.dylib arm64  <5dd7217122b43afe9a58122605f7a58c> /usr/lib/libperfcheck.dylib
355        0x1bc910000 -        0x1bc91bfff  libAudioStatistics.dylib arm64  <d844fa136b253b2db02951286543671e> /usr/lib/libAudioStatistics.dylib
356        0x1bcad2000 -        0x1bcae2fff  caulk arm64  <40c59f79f177373787db8857002e4a9a> /System/Library/PrivateFrameworks/caulk.framework/caulk
357        0x1bcb22000 -        0x1bcb28fff  MobileSystemServices arm64  <a7b7f3b4a8d335348fc792a3d46ab154> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
358        0x1bdbed000 -        0x1bdc26fff  libGLImage.dylib arm64  <ed6377f3817334fdbb8058a0fb238777> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
359        0x1be04c000 -        0x1be05dfff  libSparseBLAS.dylib arm64  <2388d02f952132cb891f08249ccb6253> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
360        0x1be05e000 -        0x1be071fff  Engram arm64  <766e498cdb82360889b73f670b1c3c45> /System/Library/PrivateFrameworks/Engram.framework/Engram
361        0x1be0e9000 -        0x1be123fff  DataDetectorsNaturalLanguage arm64  <a4bb1907e76e34cfaf1ecea9bc8b4cbe> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
362        0x1be41d000 -        0x1be49bfff  CoreDAV arm64  <53899828aa7431839999685892419b04> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
363        0x1beddd000 -        0x1bededfff  RemoteTextInput arm64  <c4c62091295e39fa9ebe6fd0d15f4d76> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
364        0x1bee16000 -        0x1bee45fff  iCalendar arm64  <1edb3421405c37258b7869c850885a4f> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
365        0x1beeaa000 -        0x1beebefff  libLinearAlgebra.dylib arm64  <188a2c0085103d40968c51b56786a050> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
366        0x1bf15b000 -        0x1bf169fff  CoreAUC arm64  <c16c87f59d663a9aa1a3ede3e7c88778> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
367        0x1bfb5c000 -        0x1bfba3fff  PhysicsKit arm64  <7559b947b99d34dc92b1168af13a010b> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
368        0x1bfba4000 -        0x1bfbf5fff  CorePrediction arm64  <823145e885533d46a7036c7edd5d3c55> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
369        0x1c0028000 -        0x1c0073fff  SafariSafeBrowsing arm64  <94d66640f5f9338d81202be956d09679> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
370        0x1c0516000 -        0x1c0534fff  GenerationalStorage arm64  <7679232cd37d322391458de38cfba542> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
371        0x1c0598000 -        0x1c05a3fff  PersonaKit arm64  <2711c35822cb372b94b26227ac95c3ae> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
372        0x1c09b1000 -        0x1c09b6fff  kperf arm64  <cd3c6ea37c4b3dff942699d706f58f70> /System/Library/PrivateFrameworks/kperf.framework/kperf
373        0x1c0b7e000 -        0x1c0baefff  libpcap.A.dylib arm64  <680fb4c1bd6b3049b41a4e03338e5a04> /usr/lib/libpcap.A.dylib
374        0x1c0edf000 -        0x1c0f79fff  libvDSP.dylib arm64  <17cedcd634703db1947605912da5c153> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
375        0x1c0f7a000 -        0x1c0fa5fff  vCard arm64  <08b7040ecb1f34128c8e037d87456a1a> /System/Library/PrivateFrameworks/vCard.framework/vCard
376        0x1c0fe7000 -        0x1c1072fff  SampleAnalysis arm64  <5129d9cc0b8d381782ef5759bf290bb2> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
377        0x1c1073000 -        0x1c107dfff  IntentsFoundation arm64  <1dcf59962c193c069e4c9e0bd5694759> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
378        0x1c1ad5000 -        0x1c1ad5fff  Accelerate arm64  <6e2f0eb242eb3d698c49d7b8937ce681> /System/Library/Frameworks/Accelerate.framework/Accelerate
379        0x1c1ad7000 -        0x1c1df2fff  libLAPACK.dylib arm64  <ae620ec525a731d9a715ce70c875f543> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
380        0x1c1df3000 -        0x1c1df7fff  libQuadrature.dylib arm64  <01a3f7ce12f73cd6bbfc1aa29f62c134> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
381        0x1c1df8000 -        0x1c1e51fff  libvMisc.dylib arm64  <0ce6a4851cc3335aa62b3c574ada23ca> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
382        0x1c1e52000 -        0x1c1e52fff  vecLib arm64  <2cf4dce3a72b3ddf9c1cc5a73120b032> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
383        0x1c2213000 -        0x1c2240fff  GSS arm64  <225e035e34ef3230887f4b414afbb0f6> /System/Library/Frameworks/GSS.framework/GSS
384        0x1c2254000 -        0x1c2285fff  MPSCore arm64  <253f3941794d3d36bf90c53ad2876155> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
385        0x1c2286000 -        0x1c22fffff  MPSImage arm64  <a362ef81e4063a93a6813fb317bfd3e7> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
386        0x1c2300000 -        0x1c2322fff  MPSMatrix arm64  <33c124071cf13deea1bb4a48e72fbb41> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
387        0x1c2323000 -        0x1c2336fff  MPSNDArray arm64  <5a5c21a804e1357ab7064fd433aafd11> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
388        0x1c2337000 -        0x1c24c7fff  MPSNeuralNetwork arm64  <90d91a4c61f43277ae5aa1420558b674> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
389        0x1c24c8000 -        0x1c250dfff  MPSRayIntersector arm64  <e152efc155913577b49e91b625dca0bb> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
390        0x1c250e000 -        0x1c250efff  MetalPerformanceShaders arm64  <524dd85aa77238da874d1229353c75c7> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
391        0x1c251b000 -        0x1c251bfff  MobileCoreServices arm64  <b91d13f35d1236a6bc318a72f38375c5> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
392        0x1c2526000 -        0x1c2527fff  libCVMSPluginSupport.dylib arm64  <39c3e90d26ed386d9955392a8da964e0> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
393        0x1c2528000 -        0x1c252efff  libCoreFSCache.dylib arm64  <32d64b26af353775af862800179e1d1c> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
394        0x1c252f000 -        0x1c2534fff  libCoreVMClient.dylib arm64  <7418e2f0eb4034e6ab4f783fb21edaa5> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
395        0x1c2568000 -        0x1c259cfff  QuickLookThumbnailing arm64  <795d3c9195bd30c78c78df3a22dab551> /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
396        0x1c29f6000 -        0x1c29f6fff  UIKit arm64  <44227237da7d3edea3b99cc794e2febc> /System/Library/Frameworks/UIKit.framework/UIKit
397        0x1c2e2b000 -        0x1c2f73fff  ANECompiler arm64  <0d6e93768fa637c6897f0d353809ae7f> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
398        0x1c2f74000 -        0x1c2f84fff  ANEServices arm64  <5d2c3db7a40730dfb59284006538da7f> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
399        0x1c301e000 -        0x1c3022fff  ASEProcessing arm64  <0be9968405863cd097ab4ed2c3859cb6> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
400        0x1c31b5000 -        0x1c31c0fff  AccountSettings arm64  <11239ef0cb573b44b94329704ddb767f> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
401        0x1c3b8c000 -        0x1c3b9afff  AppleFSCompression arm64  <20b78ff40b34321c8397a01f9a92cb7b> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
402        0x1c3ba1000 -        0x1c3babfff  AppleIDAuthSupport arm64  <ab244dd6390c38c1a00750d4c567c5eb> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
403        0x1c3bac000 -        0x1c3bedfff  AppleJPEG arm64  <ce3824f89459369493f4e409b57fea97> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
404        0x1c3c09000 -        0x1c3c1afff  AppleNeuralEngine arm64  <d0b0ec20d42135039dd9f5af213ba458> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
405        0x1c3c21000 -        0x1c3c44fff  AppleSauce arm64  <46c45cd4efe533f28302e2818e916179> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
406        0x1c3e3b000 -        0x1c3e6bfff  Bom arm64  <2d8cca84b2113c37a3d6d24acc22224e> /System/Library/PrivateFrameworks/Bom.framework/Bom
407        0x1c48c6000 -        0x1c48cdfff  CommonAuth arm64  <f4289b96febe3ad78e676e673d56e645> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
408        0x1c4ce3000 -        0x1c4ce7fff  CoreOptimization arm64  <c1d01b5b359c3b958498dd3b4099d55f> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
409        0x1c4dff000 -        0x1c4e0afff  DeviceIdentity arm64  <8f5cb2106a6a39a296a2fb946b4cc9f6> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
410        0x1c4f95000 -        0x1c4faffff  DocumentManagerCore arm64  <541299da83fa30a39572afccfcdb9288> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
411        0x1c5066000 -        0x1c56b0fff  Espresso arm64  <4bf12b5fa9e43b319c94f443f75826d4> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
412        0x1c5976000 -        0x1c5d88fff  FaceCore arm64  <aa934e067ceb3cda8c75ed1a6aa5ed35> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
413        0x1c5e58000 -        0x1c5e6cfff  libGSFontCache.dylib arm64  <805cb023cea63ead9e157671ab941a6f> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
414        0x1c5ed0000 -        0x1c5edcfff  libhvf.dylib arm64  <943e21adebc932fab557c3ba69921476> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
415        0x1c6bd6000 -        0x1c6be2fff  GraphVisualizer arm64  <a073f2b408b53c35b5894ed4e32cf04c> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
416        0x1c753b000 -        0x1c75aafff  Heimdal arm64  <bf9929b673b03d5991d96693ca6f3ec8> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
417        0x1c7ac8000 -        0x1c7acefff  InternationalSupport arm64  <d037a3229a7137188e8e49913f1779fc> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
418        0x1c7d85000 -        0x1c7d85fff  Marco arm64  <84106752c0e433848f3a45d25d8adee3> /System/Library/PrivateFrameworks/Marco.framework/Marco
419        0x1c8271000 -        0x1c8283fff  MobileDeviceLink arm64  <6aedf5ec46203ce39055d75f1ce3537c> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
420        0x1c8532000 -        0x1c8571fff  OTSVG arm64  <f37dbabfdc2a369e800f12d0169471ca> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
421        0x1c8bbf000 -        0x1c8bbffff  PhoneNumbers arm64  <af3eb8f1a8e835cca5a87ec7703680d8> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
422        0x1ca55b000 -        0x1ca55ffff  RevealCore arm64  <f0022354349332e3b64de5eabc7746eb> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
423        0x1ca6f2000 -        0x1ca6fefff  SetupAssistantSupport arm64  <5c1f14cb73a03d0eb3d6a1bb803ae3f4> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
424        0x1ca71c000 -        0x1ca71cfff  SignpostMetrics arm64  <6a23f80b3e95362a97024435d699234d> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
425        0x1caffd000 -        0x1cb09ffff  TextureIO arm64  <a0baffecbe53353f91d5a8cdd54906b7> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
426        0x1cbebd000 -        0x1cc3a2fff  libwebrtc.dylib arm64  <c5cf11f1e58937cf919f6ada153b916a> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
427        0x1cc529000 -        0x1cc531fff  kperfdata arm64  <ee26ca6500e23d249a58d7a6557c28b7> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
428        0x1cc532000 -        0x1cc579fff  ktrace arm64  <614bdefc4f223b10aadade4e08cc09d0> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
429        0x1cc592000 -        0x1cc59efff  perfdata arm64  <7fbb27c9d7703b95be175f147f109bdb> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
430        0x1cc59f000 -        0x1cc5adfff  zudp arm64  <b86e3f97732e3d4a9d84b579f1d8db70> /System/Library/PrivateFrameworks/zudp.framework/zudp
431        0x1cc9a4000 -        0x1ccc9dfff  libAWDSupportFramework.dylib arm64  <d9342c0ef5dc3c0da0701a5306bba9d4> /usr/lib/libAWDSupportFramework.dylib
432        0x1cce4c000 -        0x1cce56fff  libChineseTokenizer.dylib arm64  <ee21709661723d82b04979c62aa995f7> /usr/lib/libChineseTokenizer.dylib
433        0x1cce7b000 -        0x1cd02efff  libFosl_dynamic.dylib arm64  <b27260b4610937b7ad0d212a1fcc32e9> /usr/lib/libFosl_dynamic.dylib
434        0x1cd0ab000 -        0x1cd0b1fff  libMatch.1.dylib arm64  <a294cd89de0435929d6d41ef11108d3f> /usr/lib/libMatch.1.dylib
435        0x1cd245000 -        0x1cd246fff  libSystem.B.dylib arm64  <f11cb1ccb61639b18d76192163af9c98> /usr/lib/libSystem.B.dylib
436        0x1cd24f000 -        0x1cd251fff  libThaiTokenizer.dylib arm64  <b41d39b5c1c634439152a02656b3f8bd> /usr/lib/libThaiTokenizer.dylib
437        0x1cd350000 -        0x1cd365fff  libapple_nghttp2.dylib arm64  <8f44a3c8d09d3767a9faac6ecd1e117d> /usr/lib/libapple_nghttp2.dylib
438        0x1cd3de000 -        0x1cd3eefff  libbsm.0.dylib arm64  <34e5d47f9eb53fcb90e8d376b2495d76> /usr/lib/libbsm.0.dylib
439        0x1cd3ef000 -        0x1cd3fbfff  libbz2.1.0.dylib arm64  <585b38ef25d13a32ae5a58063781d3f3> /usr/lib/libbz2.1.0.dylib
440        0x1cd3fc000 -        0x1cd3fcfff  libcharset.1.dylib arm64  <8f45b0844d5137cf81dad41df7d09791> /usr/lib/libcharset.1.dylib
441        0x1cd3fd000 -        0x1cd40efff  libcmph.dylib arm64  <613da5e4a09f34fc8d38e2522ca6e355> /usr/lib/libcmph.dylib
442        0x1cd40f000 -        0x1cd426fff  libcompression.dylib arm64  <0510173465113cb5a85ad77c1f2ab922> /usr/lib/libcompression.dylib
443        0x1cd427000 -        0x1cd428fff  libcoretls_cfhelpers.dylib arm64  <7c006b990b843bebb47b3a2b7226af4d> /usr/lib/libcoretls_cfhelpers.dylib
444        0x1cd429000 -        0x1cd42ffff  libcupolicy.dylib arm64  <cae0e1b8ef8b36aeb0d0aa2428e7e3c1> /usr/lib/libcupolicy.dylib
445        0x1cd46f000 -        0x1cd478fff  libdscsym.dylib arm64  <fc37a3a0bd6039f79adf629e7417e5af> /usr/lib/libdscsym.dylib
446        0x1cd9d6000 -        0x1cd9dbfff  libheimdal-asn1.dylib arm64  <194f2d30c4133319ba80b44b8fb95da5> /usr/lib/libheimdal-asn1.dylib
447        0x1cd9dc000 -        0x1cdacdfff  libiconv.2.dylib arm64  <c7159c1dc5f2393880195f1f26a812d6> /usr/lib/libiconv.2.dylib
448        0x1cdae3000 -        0x1cdaeefff  liblockdown.dylib arm64  <54781e736ccd39a3bca20a8387978134> /usr/lib/liblockdown.dylib
449        0x1cdb08000 -        0x1cdb20fff  liblzma.5.dylib arm64  <a240c647436c3eec873320bde9f08286> /usr/lib/liblzma.5.dylib
450        0x1cde93000 -        0x1cdec2fff  libncurses.5.4.dylib arm64  <5e5c455de6ba30b9960c057a460ccf0b> /usr/lib/libncurses.5.4.dylib
451        0x1cdec3000 -        0x1cded7fff  libnetworkextension.dylib arm64  <3485a06e384737bf9e51cb52409ba639> /usr/lib/libnetworkextension.dylib
452        0x1ce261000 -        0x1ce279fff  libresolv.9.dylib arm64  <a66f83497e563c98ab5502c0550edb7f> /usr/lib/libresolv.9.dylib
453        0x1ce27a000 -        0x1ce27cfff  libsandbox.1.dylib arm64  <79d45127a2a630da946c8a5a32b79900> /usr/lib/libsandbox.1.dylib
454        0x1ce283000 -        0x1ce2b4fff  libtidy.A.dylib arm64  <e6106393eb593afc98f3404eff5d4e43> /usr/lib/libtidy.A.dylib
455        0x1ce2ed000 -        0x1ce2fefff  libz.1.dylib arm64  <f8c60e32c7063653ad1f6be0e1a67550> /usr/lib/libz.1.dylib
456        0x1ce735000 -        0x1ce73afff  libcache.dylib arm64  <f17694258699365bada071b6cd590c45> /usr/lib/system/libcache.dylib
457        0x1ce73b000 -        0x1ce747fff  libcommonCrypto.dylib arm64  <ff724a2044093eb29367dfcd5a519a0f> /usr/lib/system/libcommonCrypto.dylib
458        0x1ce748000 -        0x1ce74cfff  libcompiler_rt.dylib arm64  <95a2a970877e365fae720a708a8edd68> /usr/lib/system/libcompiler_rt.dylib
459        0x1ce821000 -        0x1ce821fff  liblaunch.dylib arm64  <a816029cb1a4394cbbde334b0d5ca673> /usr/lib/system/liblaunch.dylib
460        0x1ce822000 -        0x1ce827fff  libmacho.dylib arm64  <ae1368acefd2371bad32d77575985795> /usr/lib/system/libmacho.dylib
461        0x1ce828000 -        0x1ce82afff  libremovefile.dylib arm64  <056edd870d1a3755b48c06dcbe44441b> /usr/lib/system/libremovefile.dylib
462        0x1ce82b000 -        0x1ce82cfff  libsystem_featureflags.dylib arm64  <112de23b918f32fc95b72d5bbc4de99f> /usr/lib/system/libsystem_featureflags.dylib
463        0x1ce82d000 -        0x1ce85afff  libsystem_m.dylib arm64  <a03fbf7c033f30ed858a58ca85114fba> /usr/lib/system/libsystem_m.dylib
464        0x1ce85b000 -        0x1ce860fff  libunwind.dylib arm64  <cbba89c76f2730f6b8250fc0a4de9795> /usr/lib/system/libunwind.dylib
465        0x1ceb3a000 -        0x1ceba1fff  NanoRegistry arm64  <d4e2f3bd0ddf352dbf0cdd7a26b5d812> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
466        0x1ceba2000 -        0x1cebaffff  NanoPreferencesSync arm64  <ce6ba95c85c7309da39fa2515579269f> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
未符号化前的崩溃信息

从上面的信息可以知道是因为数组越界导致的程序崩溃,仍旧不够精确,我们需要精确的知道崩溃在哪个页面,哪个函数,哪一行,需要对上述崩溃信息进行符号化,不过在此之前,我们需要将崩溃信息存储在设备上,以备下次程序运行的时候将这些信息上报到服务器.

崩溃信息的存储

目前我是采用FMDB存储的

崩溃信息的上报

考虑直接上传崩溃信息字符串,在后台自动以文件的形式存储,每次打包上传对应dSYM文件,如此符号化所需的全部资料都具备了,借用相应的工具

崩溃信息的解析

crash的符号化

1.RLCrashReporter生成的文件.plcrash类型的,需要转换为为.log或者.crash

./bin/plcrashutil convert --format=iphone example_report.plcrash > crash.log

需要获取对应的dSYM文件,以及crash文件,通过系统自带的工具symbolicatecrash符号化

配置环境变量
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
转换
./symbolicatecrash crash.log xxx.app.dSYM > result.log

Xcode11中symbolicatecrash程序的路径仍然是

/Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash  

符号化之后的崩溃信息

  1 Incident Identifier: CE45A2B8-B804-46D7-813F-15A9EAA6C4E7
  2 CrashReporter Key:   TODO
  3 Hardware Model:      iPhone10,1
  4 Process:         crashdemo2 [6125]
  5 Path:            /private/var/containers/Bundle/Application/E5838098-D6F3-4264-BF3E-4093CC777A86/crashdemo2.app/crashdemo2
  6 Identifier:      com.yf.crashdemo2
  7 Version:         1
  8 Code Type:       ARM-64
  9 Parent Process:  ??? [1]
 10 
 11 Date/Time:       2019-11-27 09:21:07 +0000
 12 OS Version:      iPhone OS 13.1.3 (17A878)
 13 Report Version:  104
 14 
 15 Exception Type:  SIGABRT
 16 Exception Codes: #0 at 0x19970cebc
 17 Crashed Thread:  0
 18 
 19 Application Specific Information:
 20 *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArray0 objectAtIndex:]: index 1 beyond bounds for empty NSArray'
 21 
 22 Last Exception Backtrace:
 23 0   CoreFoundation                      0x000000019991498c __exceptionPreprocess + 220
 24 1   libobjc.A.dylib                     0x000000019963d0a4 objc_exception_throw + 55
 25 2   CoreFoundation                      0x00000001998140fc -[__NSArray0 objectAtIndex:] + 107
 26 3   crashdemo2                          0x0000000104d3f3f0 0x104d38000 + 29680
 27 4   UIKitCore                           0x000000019d94eb64 forwardTouchMethod + 327
 28 5   UIKitCore                           0x000000019d94ea08 -[UIResponder touchesBegan:withEvent:] + 59
 29 6   UIKitCore                           0x000000019d95caf0 -[UIWindow _sendTouchesForEvent:] + 1691
 30 7   UIKitCore                           0x000000019d95e0a8 -[UIWindow sendEvent:] + 3351
 31 8   UIKitCore                           0x000000019d93aae8 -[UIApplication sendEvent:] + 335
 32 9   UIKitCore                           0x000000019d9b223c __dispatchPreprocessedEventFromEventQueue + 5879
 33 10  UIKitCore                           0x000000019d9b4798 __handleEventQueueInternal + 4923
 34 11  UIKitCore                           0x000000019d9ad60c __handleHIDEventFetcherDrain + 107
 35 12  CoreFoundation                      0x00000001998927e0 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 23
 36 13  CoreFoundation                      0x0000000199892738 __CFRunLoopDoSource0 + 79
 37 14  CoreFoundation                      0x0000000199891ed0 __CFRunLoopDoSources0 + 179
 38 15  CoreFoundation                      0x000000019988d01c __CFRunLoopRun + 1079
 39 16  CoreFoundation                      0x000000019988c8bc CFRunLoopRunSpecific + 463
 40 17  GraphicsServices                    0x00000001a36f8328 GSEventRunModal + 103
 41 18  UIKitCore                           0x000000019d9226d4 UIApplicationMain + 1935
 42 19  crashdemo2                          0x0000000104d432f0 0x104d38000 + 45808
 43 20  libdyld.dylib                       0x0000000199717460 start + 3
 44 
 45 Thread 0 Crashed:
 46 0   libsystem_kernel.dylib              0x000000019970cebc __pthread_kill + 8
 47 1   libsystem_c.dylib                   0x000000019957c824 abort + 100
 48 2   crashdemo2                          0x0000000104d46e64 0x104d38000 + 61028
 49 3   CoreFoundation                      0x0000000199914c94 __handleUncaughtException + 636
 50 4   libobjc.A.dylib                     0x000000019963d34c _objc_terminate+ 25420 () + 112
 51 5   libc++abi.dylib                     0x00000001996e2304 std::__terminate(void (*)+ 58116 ()) + 16
 52 6   libc++abi.dylib                     0x00000001996e1ed8 __cxa_rethrow + 144
 53 7   libobjc.A.dylib                     0x000000019963d258 objc_exception_rethrow + 40
 54 8   CoreFoundation                      0x000000019988c92c CFRunLoopRunSpecific + 576
 55 9   GraphicsServices                    0x00000001a36f8328 GSEventRunModal + 103
 56 10  UIKitCore                           0x000000019d9226d4 UIApplicationMain + 1935
 57 11  crashdemo2                          0x0000000104d432f0 0x104d38000 + 45808
 58 12  libdyld.dylib                       0x0000000199717460 start + 3
 59 
 60 Thread 1:
 61 0   libsystem_kernel.dylib              0x000000019970da74 __workq_kernreturn + 8
 62 1   libsystem_pthread.dylib             0x0000000199634ae0 start_wqthread + 8
 63 
 64 Thread 2:
 65 0   libsystem_kernel.dylib              0x000000019970da74 __workq_kernreturn + 8
 66 1   libsystem_pthread.dylib             0x0000000199634ae0 start_wqthread + 8
 67 
 68 Thread 3:
 69 0   libsystem_kernel.dylib              0x000000019970da74 __workq_kernreturn + 8
 70 1   libsystem_pthread.dylib             0x0000000199634ae0 start_wqthread + 8
 71 
 72 Thread 4:
 73 0   libsystem_kernel.dylib              0x000000019970da74 __workq_kernreturn + 8
 74 1   libsystem_pthread.dylib             0x0000000199634ae0 start_wqthread + 8
 75 
 76 Thread 5:
 77 0   libsystem_kernel.dylib              0x00000001996eb5f4 mach_msg_trap + 8
 78 1   CoreFoundation                      0x0000000199892068 __CFRunLoopServiceMachPort + 216
 79 2   CoreFoundation                      0x000000019988d188 __CFRunLoopRun + 1444
 80 3   CoreFoundation                      0x000000019988c8bc CFRunLoopRunSpecific + 463
 81 4   Foundation                          0x0000000199bcc994 -[NSRunLoop+ 31124 (NSRunLoop) runMode:beforeDate:] + 228
 82 5   Foundation                          0x0000000199bcc874 -[NSRunLoop+ 30836 (NSRunLoop) runUntilDate:] + 88
 83 6   UIKitCore                           0x000000019d9ba49c -[UIEventFetcher threadMain] + 152
 84 7   Foundation                          0x0000000199cfd0b0 __NSThread__start__ + 848
 85 8   libsystem_pthread.dylib             0x00000001996311ec _pthread_start + 124
 86 9   libsystem_pthread.dylib             0x0000000199634aec thread_start + 8
 87 
 88 Thread 6:
 89 0   libsystem_kernel.dylib              0x000000019970da74 __workq_kernreturn + 8
 90 1   libsystem_pthread.dylib             0x0000000199634ae0 start_wqthread + 8
 91 
 92 Thread 0 crashed with ARM-64 Thread State:
 93     pc: 0x000000019970cebc     fp: 0x000000016b0c7780     sp: 0x000000016b0c7760     x0: 0x0000000000000000 
 94     x1: 0x0000000000000000     x2: 0x0000000000000000     x3: 0x0000000000000000     x4: 0x0000000000000010 
 95     x5: 0x0000000283da2820     x6: 0x000000000c000005     x7: 0x0000000000000005     x8: 0x000000010501d800 
 96     x9: 0x000000019962cb5c    x10: 0x0000000199628720    x11: 0x00070002811b4200    x12: 0x00000002811b4210 
 97    x13: 0x000021a1e12e5ba9    x14: 0x000000000000003f    x15: 0x7000000000000000    x16: 0x0000000000000148 
 98    x17: 0x00000001997f52e0    x18: 0x0000000000000000    x19: 0x0000000000000006    x20: 0x0000000000000407 
 99    x21: 0x000000010501d8e0    x22: 0x0000000116500950    x23: 0x00000001d649b5e0    x24: 0x00000001e12e2000 
100    x25: 0x00000001d0eeb933    x26: 0x00000001d0eed126    x27: 0x00000001999aa906    x28: 0x00000001decaebd8 
101     lr: 0x000000019962cc1c   cpsr: 0x0000000040000000 
102 
103 Binary Images:
104        0x104d38000 -        0x104d67fff +crashdemo2 arm64  <d7be993b8a9c398e8c91cdf9ad70bba3> /private/var/containers/Bundle/Application/E5838098-D6F3-4264-BF3E-4093CC777A86/crashdemo2.app/crashdemo2
105        0x104d98000 -        0x104db3fff  FMDB arm64  <a21e81693eb73af4ac2dddef56d4044b> /private/var/containers/Bundle/Application/E5838098-D6F3-4264-BF3E-4093CC777A86/crashdemo2.app/Frameworks/FMDB.framework/FMDB
106        0x104ddc000 -        0x104debfff  JQFMDB arm64  <89ca59d57db33092ba3a5599cfccfb5b> /private/var/containers/Bundle/Application/E5838098-D6F3-4264-BF3E-4093CC777A86/crashdemo2.app/Frameworks/JQFMDB.framework/JQFMDB
107        0x104ec8000 -        0x104ed3fff  libobjc-trampolines.dylib arm64  <048eb53f47913e0a9314876c6577aa10> /usr/lib/libobjc-trampolines.dylib
108        0x1994bf000 -        0x1994d5fff  libsystem_trace.dylib arm64  <f7e5141b7c243e5aaa79065004ecbf30> /usr/lib/system/libsystem_trace.dylib
109        0x1994d6000 -        0x199507fff  libxpc.dylib arm64  <217dc1a778213f1fa8373825d770ef05> /usr/lib/system/libxpc.dylib
110        0x199508000 -        0x199508fff  libsystem_blocks.dylib arm64  <c06042b841f63e4994717b606330928a> /usr/lib/system/libsystem_blocks.dylib
111        0x199509000 -        0x199585fff  libsystem_c.dylib arm64  <c4beb94cb8313889a4034b7a4aa4dcdf> /usr/lib/system/libsystem_c.dylib
112        0x199586000 -        0x1995fafff  libdispatch.dylib arm64  <3a5db4e0bc24375d897e51e6cf7d6304> /usr/lib/system/libdispatch.dylib
113        0x1995fb000 -        0x19961afff  libsystem_malloc.dylib arm64  <5dbcbc6428083e64890cb59f2ddfeb1d> /usr/lib/system/libsystem_malloc.dylib
114        0x19961b000 -        0x199625fff  libsystem_platform.dylib arm64  <09a51269d3c53ece87b7f32c096af8e7> /usr/lib/system/libsystem_platform.dylib
115        0x199626000 -        0x199636fff  libsystem_pthread.dylib arm64  <c3fa4f34750f362bbefe835bfb15c0f8> /usr/lib/system/libsystem_pthread.dylib
116        0x199637000 -        0x199667fff  libobjc.A.dylib arm64  <b39048c383953de4af4daca3097fdc53> /usr/lib/libobjc.A.dylib
117        0x199668000 -        0x1996d3fff  libcorecrypto.dylib arm64  <6ddbd01331ce32cb9fce3c5f40880ac5> /usr/lib/system/libcorecrypto.dylib
118        0x1996d4000 -        0x1996e7fff  libc++abi.dylib arm64  <b148bc1f83c834e2868d00db2d9bbb55> /usr/lib/libc++abi.dylib
119        0x1996e8000 -        0x199715fff  libsystem_kernel.dylib arm64  <92cbd0cb514f3a23a21c169e915052a7> /usr/lib/system/libsystem_kernel.dylib
120        0x199716000 -        0x199747fff  libdyld.dylib arm64  <e1637502bfcb3bbcb3e1ccf78617e0e4> /usr/lib/system/libdyld.dylib
121        0x199748000 -        0x19974ffff  libsystem_darwin.dylib arm64  <c10d7897c5833454b6f9697c78d9eeb6> /usr/lib/system/libsystem_darwin.dylib
122        0x199750000 -        0x1997a6fff  libc++.1.dylib arm64  <4547c800a6533ece9808c26768583e25> /usr/lib/libc++.1.dylib
123        0x1997a7000 -        0x1997e8fff  libsystem_info.dylib arm64  <bb4a834b619136be866b5018d4eb692d> /usr/lib/system/libsystem_info.dylib
124        0x1997e9000 -        0x199b5dfff  CoreFoundation arm64  <da838e756b30360e9661c4800a7e1bf6> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
125        0x199b5e000 -        0x199bc4fff  SystemConfiguration arm64  <24254722088c3cb5af21e32f8a1366f9> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
126        0x199bc5000 -        0x199e7efff  Foundation arm64  <0df2911e80cb32898a1eed0913d55a12> /System/Library/Frameworks/Foundation.framework/Foundation
127        0x199e7f000 -        0x199eb1fff  libCRFSuite.dylib arm64  <5eea9a99dc773f8fa38a7214c7192306> /usr/lib/libCRFSuite.dylib
128        0x199eb2000 -        0x19a02bfff  CoreServices arm64  <4631a29affb23a9d95ff1037507bd066> /System/Library/Frameworks/CoreServices.framework/CoreServices
129        0x19a02c000 -        0x19a08dfff  libSparse.dylib arm64  <c9c6da9287043061931f9425bb776862> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
130        0x19a08e000 -        0x19a57cfff  ImageIO arm64  <71d13168073032b08e658e66dc59001c> /System/Library/Frameworks/ImageIO.framework/ImageIO
131        0x19a57d000 -        0x19a57ffff  ConstantClasses arm64  <db0b6ffe8580302fb454a1c9e242cfd7> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
132        0x19a580000 -        0x19a71cfff  CoreText arm64  <47a65ed0e0b43c039a4fe4222224ca3a> /System/Library/Frameworks/CoreText.framework/CoreText
133        0x19a71d000 -        0x19a847fff  Security arm64  <9d07b519c420314c82d202818501325b> /System/Library/Frameworks/Security.framework/Security
134        0x19a848000 -        0x19a8eafff  IOKit arm64  <8acdb99787bd3d9b841c28ad5b55b74a> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
135        0x19a8eb000 -        0x19a921fff  libMobileGestalt.dylib arm64  <e0a5a3f77ff13aedb102f27e9f2d9694> /usr/lib/libMobileGestalt.dylib
136        0x19a922000 -        0x19a97efff  libprotobuf.dylib arm64  <857eac10094e3fb0a8412969b0b27389> /usr/lib/libprotobuf.dylib
137        0x19a97f000 -        0x19a990fff  libprotobuf-lite.dylib arm64  <d065ff8c37e635dd8da3754b6e81e73d> /usr/lib/libprotobuf-lite.dylib
138        0x19a991000 -        0x19abe2fff  libicucore.A.dylib arm64  <9204a32b02813cb58029ebca005794cf> /usr/lib/libicucore.A.dylib
139        0x19ac0d000 -        0x19ac55fff  WirelessDiagnostics arm64  <b6cc161ce0103ffda515a17c1ba0bc77> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
140        0x19ac56000 -        0x19ac8ffff  libAWDSupport.dylib arm64  <cf5a5034052834089493e2414ee58501> /usr/lib/libAWDSupport.dylib
141        0x19ac90000 -        0x19b116fff  CoreAudio arm64  <68b4311c467231b2a4bbb640ffefb7b1> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
142        0x19b117000 -        0x19b3e2fff  CoreImage arm64  <5041875b776930448d5f1e40ff094bce> /System/Library/Frameworks/CoreImage.framework/CoreImage
143        0x19b3e3000 -        0x19b4d1fff  LanguageModeling arm64  <019d35151d7739409fecbaa2f0bc9be4> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
144        0x19b4d2000 -        0x19b518fff  Lexicon arm64  <bb228ebb571f3f23b4aeb7296e3376ab> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
145        0x19b519000 -        0x19b69cfff  libsqlite3.dylib arm64  <deee5c788e863223aaff0c33bb8ce515> /usr/lib/libsqlite3.dylib
146        0x19b69d000 -        0x19b6ccfff  MobileKeyBag arm64  <77a7737b65673a42be50c4551d1e3d2b> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
147        0x19b6cd000 -        0x19b6d6fff  libsystem_notify.dylib arm64  <fe955a03725d3f83b0c5d712107a2b68> /usr/lib/system/libsystem_notify.dylib
148        0x19b6d7000 -        0x19b8a0fff  CoreDuet arm64  <1ba0f3cf789a38b1916b5405c7254039> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
149        0x19b8a1000 -        0x19b9e2fff  Montreal arm64  <58aa00de87a53a988a7a6925b68f96a3> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
150        0x19b9e3000 -        0x19bacafff  NLP arm64  <dd2ffae7d54734cb90a6adbe51d38b8b> /System/Library/PrivateFrameworks/NLP.framework/NLP
151        0x19bacb000 -        0x19bae7fff  CellularPlanManager arm64  <4b2b7c4c96f2339b8073aa7dffc73bf5> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
152        0x19bae8000 -        0x19bb25fff  AppSupport arm64  <e235a396706b3dae8dd6eb9a9a4836ad> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
153        0x19bb26000 -        0x19bff2fff  libnetwork.dylib arm64  <66ee12926fe43b729cd6c8dd412fa201> /usr/lib/libnetwork.dylib
154        0x19bff3000 -        0x19c0fcfff  ManagedConfiguration arm64  <7321be890f633f1c8b998ec44e409631> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
155        0x19c0fd000 -        0x19c127fff  CoreServicesStore arm64  <0d51d3b6cf493681b7fe115573ad8354> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
156        0x19c128000 -        0x19c148fff  UserManagement arm64  <2565b0e2de2533c8818b6c7e89d7b2f9> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
157        0x19c149000 -        0x19c400fff  CoreML arm64  <6a211919d74f39aa80cbf2f3b0eadd7d> /System/Library/Frameworks/CoreML.framework/CoreML
158        0x19c401000 -        0x19c417fff  ProtocolBuffer arm64  <bdd192c04c60333baed3cb503c4f26e3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
159        0x19c418000 -        0x19c432fff  CommonUtilities arm64  <70615b240c993a968f7d8b22e810632f> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
160        0x19c433000 -        0x19c433fff  libenergytrace.dylib arm64  <be232718f429386f881be1485fd5e860> /usr/lib/libenergytrace.dylib
161        0x19c434000 -        0x19c46afff  RunningBoardServices arm64  <fc42bb21e62d3e59a8ab06b844560200> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
162        0x19c46b000 -        0x19c4defff  BaseBoard arm64  <c0d9960bc54c3c10be665c722d239a35> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
163        0x19ca25000 -        0x19ca93fff  CoreLocation arm64  <a6e3792da0fd3ffb8d863737d7080ffa> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
164        0x19caa1000 -        0x19caf4fff  Accounts arm64  <c6f269a35ebb36a987ed1d4b1953ec5e> /System/Library/Frameworks/Accounts.framework/Accounts
165        0x19cb06000 -        0x19ce51fff  CFNetwork arm64  <dd1595007d533484aa3d9dd5073d7a2f> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
166        0x19ce52000 -        0x19cf31fff  UIFoundation arm64  <762ab2275b383575ab8edadd5cce81ca> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
167        0x19cf32000 -        0x19dfd3fff  UIKitCore arm64  <82c949dd37f635f7b3ef62ba342f6bf5> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
168        0x19dfd4000 -        0x19dfe1fff  AssertionServices arm64  <4fef6e63b07c31819944cba5beef11c2> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
169        0x19dfe2000 -        0x19e0b3fff  CoreTelephony arm64  <8498f53222a138bfa79be9c333d8237b> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
170        0x19e0b4000 -        0x19e0b9fff  AggregateDictionary arm64  <627b9cb989923d4887e48fa247a37cfe> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
171        0x19e0ba000 -        0x19e0d0fff  libsystem_asl.dylib arm64  <04233c43380135619ce81eb5ed210716> /usr/lib/system/libsystem_asl.dylib
172        0x19e0d1000 -        0x19e148fff  CloudDocs arm64  <fa131fb683fe3c86a058c0a0642e4cb5> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
173        0x19e149000 -        0x19e46afff  CoreData arm64  <a44f3b0e35af3b26b9e3f764077562ea> /System/Library/Frameworks/CoreData.framework/CoreData
174        0x19e6d8000 -        0x19e703fff  BoardServices arm64  <397361d5d88d315ea2e9979a46efac0c> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
175        0x19e7b3000 -        0x19e7c1fff  libsystem_networkextension.dylib arm64  <20bc358488a93893aac7b5e4a0130106> /usr/lib/system/libsystem_networkextension.dylib
176        0x19e7c2000 -        0x19e7e2fff  CoreAnalytics arm64  <1ae72168247f3e57b56f80b361a65f1a> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
177        0x19e7e3000 -        0x19e953fff  CloudKit arm64  <92fcfab621483f38b7df5bb78e4c4c87> /System/Library/Frameworks/CloudKit.framework/CloudKit
178        0x19e954000 -        0x19e9a0fff  SpringBoardServices arm64  <b9ae2754d13f3754a8ee22dde9a82eb9> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
179        0x19e9a1000 -        0x19ea14fff  FrontBoardServices arm64  <949083b6181132709ca8fe2468c56568> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
180        0x19ea15000 -        0x19eb2cfff  Network arm64  <92a1012a81b43c1890e61982b82d41af> /System/Library/Frameworks/Network.framework/Network
181        0x19eb8a000 -        0x19eb91fff  libsystem_symptoms.dylib arm64  <b3d47c4684ac38d2a187645bdedc3125> /usr/lib/system/libsystem_symptoms.dylib
182        0x19eb92000 -        0x19fa14fff  GeoServices arm64  <761d16b850e43d28946687d4bbb96ea0> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
183        0x19fa15000 -        0x19fa1dfff  TCC arm64  <ffcf214c13b93871be86c3d5c3108939> /System/Library/PrivateFrameworks/TCC.framework/TCC
184        0x19fa1e000 -        0x19fa77fff  IMFoundation arm64  <6b88d26a956e3d8cb00bc921cf0d1741> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
185        0x19fa78000 -        0x19fbd7fff  CoreUtils arm64  <9bae008296e836f7b0ca309787a1e0e6> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
186        0x19fcce000 -        0x19fcd7fff  libsystem_containermanager.dylib arm64  <24b221bed7f339d5b272e017d5ba4dcf> /usr/lib/system/libsystem_containermanager.dylib
187        0x19fcd8000 -        0x19fd52fff  AppleAccount arm64  <94805868ca243c17a018784a27fadd0d> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
188        0x19fd53000 -        0x19fd6efff  ApplePushService arm64  <bec0e926db1c3a40bf1d1806f0d07e96> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
189        0x19fd6f000 -        0x19fe58fff  IDS arm64  <cd7f600a66bf3f869032a752898716eb> /System/Library/PrivateFrameworks/IDS.framework/IDS
190        0x19fe59000 -        0x19ff85fff  IDSFoundation arm64  <78406df91d7f3163a93151c8512c3834> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
191        0x19ff86000 -        0x19ff87fff  libCTGreenTeaLogger.dylib arm64  <47db0a7fe71938d4bf303758cc76bcf3> /usr/lib/libCTGreenTeaLogger.dylib
192        0x19ffe8000 -        0x1a00e5fff  CoreMedia arm64  <4e0d2da77f5b31d0998a027b7e16c987> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
193        0x1a00e6000 -        0x1a00f5fff  UIKitServices arm64  <1b738cdb4c523ab5a81cf03994ba8be2> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
194        0x1a00f6000 -        0x1a0148fff  BackBoardServices arm64  <da0ce7310ee63880b2f33421e029ded6> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
195        0x1a0149000 -        0x1a0396fff  QuartzCore arm64  <5a4a8f86a37d3290ac6a9c03140fa5d3> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
196        0x1a0397000 -        0x1a0554fff  ColorSync arm64  <6f2244d3ec8039ce9703fff1c6be602e> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
197        0x1a0555000 -        0x1a0ac3fff  CoreGraphics arm64  <28e4305086b13449ab7514ac4056a1bf> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
198        0x1a0ac4000 -        0x1a0bf4fff  Contacts arm64  <39c73201bd0f37538ee0aff07a5b4b97> /System/Library/Frameworks/Contacts.framework/Contacts
199        0x1a0bf5000 -        0x1a0c24fff  UserNotifications arm64  <d2b17eac642e3bfd901fbd1b1c8bc5b7> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
200        0x1a0c25000 -        0x1a0c48fff  LocationSupport arm64  <bf8e3754625338f2ba6d940354134775> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
201        0x1a0da1000 -        0x1a135afff  WebKit arm64  <049fc73494c93e5d826fabb56f7e2d25> /System/Library/Frameworks/WebKit.framework/WebKit
202        0x1a135b000 -        0x1a2f3ffff  WebCore arm64  <2545001929ac3112b397178574b6afa5> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
203        0x1a2f40000 -        0x1a2f57fff  libAccessibility.dylib arm64  <3d25b129f6b33962908f274588266073> /usr/lib/libAccessibility.dylib
204        0x1a2f58000 -        0x1a2f63fff  AXCoreUtilities arm64  <0b39af12dddf3af6ad6ab5562e6a3eff> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
205        0x1a2f64000 -        0x1a2fd8fff  ContactsFoundation arm64  <3770041970503cd49103e024e44d922d> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
206        0x1a2fd9000 -        0x1a2fedfff  PowerLog arm64  <3a35cb784cb733148a853fdba6ae5441> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
207        0x1a2fee000 -        0x1a2ffffff  IOSurface arm64  <4b69c4e924b13c0bb6302065b9bf9665> /System/Library/Frameworks/IOSurface.framework/IOSurface
208        0x1a3000000 -        0x1a36f4fff  MediaToolbox arm64  <af8fa7d9a68b3d18afd94ec7fe60da87> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
209        0x1a36f5000 -        0x1a36fdfff  GraphicsServices arm64  <0bf55c8caf0033c882926d40ffeb6f46> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
210        0x1a37e0000 -        0x1a39cffff  AVFoundation arm64  <ef96489e88af3b22a193cade73dc0297> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
211        0x1a3a08000 -        0x1a3a55fff  MobileWiFi arm64  <32ed7928804239d7ae59d7e706c2ae3c> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
212        0x1a3a56000 -        0x1a3a6efff  MobileAsset arm64  <98105034326f35c783bd932f5ede0386> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
213        0x1a3a6f000 -        0x1a3a7cfff  libGSFont.dylib arm64  <1e3a2506bd9d3ff3a7fd2bd734e6443e> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
214        0x1a3a7d000 -        0x1a3a86fff  FontServices arm64  <f9ef1fde732130dca0e92a8702d7d378> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
215        0x1a3a87000 -        0x1a3bd0fff  libFontParser.dylib arm64  <efcf40d0671f30f49d3182336540c058> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
216        0x1a3c1f000 -        0x1a3d5dfff  SearchFoundation arm64  <816637f6492b340a95b95880d01a1079> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
217        0x1a44d8000 -        0x1a473bfff  vImage arm64  <e292006a2b5c3de69c9c5a730e0857b5> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
218        0x1a473c000 -        0x1a496efff  AudioToolbox arm64  <845848c42a7a31338883d56f3dee889b> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
219        0x1a496f000 -        0x1a49a4fff  libAudioToolboxUtility.dylib arm64  <800acfd8417e3c28aee5e654f7982a55> /usr/lib/libAudioToolboxUtility.dylib
220        0x1a4dbe000 -        0x1a4e50fff  ShareSheet arm64  <2f4b58acc7d6337d8c4ef0d3dab0d78b> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
221        0x1a4e65000 -        0x1a4f19fff  PDFKit arm64  <1827bc968a4238afa7ebe460e96b7c02> /System/Library/Frameworks/PDFKit.framework/PDFKit
222        0x1a4f97000 -        0x1a4fc4fff  DocumentManager arm64  <b2138f289ea935f8b324efb8db524c38> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
223        0x1a521d000 -        0x1a5290fff  AuthKit arm64  <0e3d32ce73e9392ebef45baeaf331715> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
224        0x1a5291000 -        0x1a569ffff  Intents arm64  <051990c089773064b1f2f0929a599021> /System/Library/Frameworks/Intents.framework/Intents
225        0x1a56b5000 -        0x1a5801fff  WebKitLegacy arm64  <c77e345b8678359abe54cc164403bf97> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
226        0x1a5802000 -        0x1a586afff  TextInput arm64  <0c3b121d00d036d98b4ec76698e7421e> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
227        0x1a58e8000 -        0x1a58ebfff  XCTTargetBootstrap arm64  <a36df7a21d223d26a9614dd317675268> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
228        0x1a58ec000 -        0x1a59a1fff  CorePDF arm64  <36fe0cc3cffa39a1be4e21a69109d7ba> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
229        0x1a5d95000 -        0x1a609efff  AppleMediaServices arm64  <cc11ef9ae6973b94b4c678d82b7db881> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
230        0x1a60c6000 -        0x1a6287fff  CoreMotion arm64  <81ae655a9ea93456ac44fb41da5ac4e0> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
231        0x1a6288000 -        0x1a6375fff  AVFAudio arm64  <90502188446033e884fd9a1d30a416b4> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
232        0x1a6594000 -        0x1a664afff  CoreUI arm64  <65a0afca82ea340b95a95d5136646a16> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
233        0x1a6670000 -        0x1a66a5fff  CoreVideo arm64  <95d72d7d25aa37e8aa77260884538882> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
234        0x1a66a6000 -        0x1a68dafff  AudioToolboxCore arm64  <279b39efc6fb3ca7889754e855161fac> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
235        0x1a68db000 -        0x1a691ffff  CoreDuetContext arm64  <a5b9d392f7c334fd819fb02950eb0404> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
236        0x1a6920000 -        0x1a6959fff  SetupAssistant arm64  <0f8ec0c6084c32edbe3ac31fd9c897a3> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
237        0x1a6a15000 -        0x1a6a3ffff  PlugInKit arm64  <d026d05c72a33dc5a0a108d7eec4aa5e> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
238        0x1a6eb6000 -        0x1a6f16fff  ProactiveSupport arm64  <d4bd8ffec9b03526b20e50af519e7f24> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
239        0x1a7150000 -        0x1a7167fff  PrototypeTools arm64  <1e3a3602813c32339f229a0f99468ade> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
240        0x1a7168000 -        0x1a7255fff  MediaExperience arm64  <9a663f1064af37c5b70518b635fc6cbd> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
241        0x1a7256000 -        0x1a7509fff  Celestial arm64  <94529087e6343000859f7e58ee890bf8> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
242        0x1a7e21000 -        0x1a7ef0fff  AVKit arm64  <c7f1068f70cb321b916e6645dd159dd3> /System/Library/Frameworks/AVKit.framework/AVKit
243        0x1a7ef1000 -        0x1a7f1ffff  Pegasus arm64  <ae114678fc063dfd92deef0912b11a00> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
244        0x1a7f20000 -        0x1a7f22fff  libapp_launch_measurement.dylib arm64  <ab917f448ed6390db2848bb31cf97687> /usr/lib/libapp_launch_measurement.dylib
245        0x1a7ffd000 -        0x1a805ffff  CoreSpotlight arm64  <be081c3d34e23954ae6c9e6f2ad3d37b> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
246        0x1a8060000 -        0x1a80f3fff  AddressBookLegacy arm64  <2346d467850636c5a3d21770cf4af3fe> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
247        0x1a80f4000 -        0x1a8103fff  CrashReporterSupport arm64  <2f3dcb71e4ee37df8ba41ca1bd43a6c9> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
248        0x1a8117000 -        0x1a81d1fff  LinkPresentation arm64  <d021b846875238959eaed1c218522957> /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
249        0x1a8207000 -        0x1a820bfff  libsystem_configuration.dylib arm64  <482ba88cc017345a8efbaf6348914f12> /usr/lib/system/libsystem_configuration.dylib
250        0x1a83eb000 -        0x1a83f9fff  HangTracer arm64  <f0f83bc43c483ed2bc76dbbf04ee88c5> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
251        0x1a83fa000 -        0x1a845ffff  CoreNLP arm64  <a6bd80d378d9304293156563bcda5f7f> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
252        0x1a8460000 -        0x1a8461fff  liblangid.dylib arm64  <b1e0f2078efc341d90b7a7792609b068> /usr/lib/liblangid.dylib
253        0x1a8462000 -        0x1a91c2fff  JavaScriptCore arm64  <6d4e079bcbd2340388dfe601466dfd46> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
254        0x1a91c3000 -        0x1a9250fff  libTelephonyUtilDynamic.dylib arm64  <a69dcec202ae3acba22991712ad812eb> /usr/lib/libTelephonyUtilDynamic.dylib
255        0x1a94df000 -        0x1a94e8fff  IOMobileFramebuffer arm64  <44222c32b59e3940a50e6a2d204ab9ce> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
256        0x1a9833000 -        0x1a984dfff  CoreMaterial arm64  <4ac1f9baac87368c9e94692f1c4b5b89> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
257        0x1a984e000 -        0x1a9934fff  libxml2.2.dylib arm64  <6e692ba566223b738f3e96ef0b5d078b> /usr/lib/libxml2.2.dylib
258        0x1aafa0000 -        0x1aafe8fff  MetadataUtilities arm64  <770681b046343cf69c1d8e43a41cb4c3> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
259        0x1ab975000 -        0x1abb90fff  NetworkExtension arm64  <90b0cbb1a3bf3570ab878a58871442f5> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
260        0x1abb91000 -        0x1abbc7fff  DataDetectorsCore arm64  <aec5256b6e9a3d9094c2f558b3e0e7c2> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
261        0x1abbc8000 -        0x1abc28fff  CalendarFoundation arm64  <700ab7227bb333eb9781f6342407c6dc> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
262        0x1abc29000 -        0x1abd1bfff  EventKit arm64  <3cd05a3b2f4535cf9e820dcd5e84592f> /System/Library/Frameworks/EventKit.framework/EventKit
263        0x1abd1c000 -        0x1abd50fff  MediaServices arm64  <79462d9dfa03390d866910b5d15c75a7> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
264        0x1ac1da000 -        0x1ac205fff  PersistentConnection arm64  <edf4e9dff6483fe680ecd59ab2ed514a> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
265        0x1ac206000 -        0x1ac259fff  CalendarDaemon arm64  <18e5c5b220363eb1bd6dded40f58f37a> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
266        0x1ac25a000 -        0x1ac2f0fff  CalendarDatabase arm64  <0888845be2773a6ebef874da62c2323a> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
267        0x1ac2f1000 -        0x1ac4c7fff  MediaRemote arm64  <adda1b08bcdd3aa8b46fa03abdb9627a> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
268        0x1ac4c8000 -        0x1ac4d0fff  CorePhoneNumbers arm64  <e3bc7af68f603c6390d8ef9fce97004b> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
269        0x1ac4e1000 -        0x1ac506fff  DuetActivityScheduler arm64  <b722c506d1b23860ae2912a553bbcbd9> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
270        0x1ac606000 -        0x1ac628fff  CoreSVG arm64  <405dbd55c7b03ade9b467743aecd9ad3> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
271        0x1ac643000 -        0x1ac660fff  ProactiveEventTracker arm64  <057c3e98ce1e34458dec485cbfff0eb9> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
272        0x1ac661000 -        0x1ac66bfff  MallocStackLogging arm64  <5e3fa430968c3f5ca7caef722499ee36> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
273        0x1ac66c000 -        0x1ac700fff  CoreSuggestions arm64  <ddde39ea309431b283caaac927c9ffec> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
274        0x1ad0e2000 -        0x1ad117fff  CoreBluetooth arm64  <f4a0eea6eeed389f833dfb98494bd330> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
275        0x1ad118000 -        0x1ad11afff  libsystem_sandbox.dylib arm64  <8790f7f8f85e333b9bbfdab82787f7a1> /usr/lib/system/libsystem_sandbox.dylib
276        0x1ad27b000 -        0x1ad2e2fff  Rapport arm64  <95842c19a5783bfeb5aa15933fa7fe96> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
277        0x1ad2e3000 -        0x1ad30ffff  OSAnalytics arm64  <741167c0cdd83e4d871c6fcf5b75315a> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
278        0x1ad310000 -        0x1ad33dfff  MobileInstallation arm64  <9ac7519f99703268a02317ae8724228b> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
279        0x1ad33e000 -        0x1ad3d8fff  Metal arm64  <db1a636672073b7388362da9f1569d26> /System/Library/Frameworks/Metal.framework/Metal
280        0x1ad3d9000 -        0x1ad3dffff  IOAccelerator arm64  <a469e8ced5203169b0a934a32a9ae8d9> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
281        0x1ad3e0000 -        0x1ad3ebfff  MediaAccessibility arm64  <9a969317430d3916aba8c75982d3d188> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
282        0x1ad409000 -        0x1ad410fff  libsystem_dnssd.dylib arm64  <f339bcf081ce3a57a518bcc56d28b4cf> /usr/lib/system/libsystem_dnssd.dylib
283        0x1ad411000 -        0x1ad417fff  PushKit arm64  <fe364e50a4dd3b28b18e0b4bb86e881a> /System/Library/Frameworks/PushKit.framework/PushKit
284        0x1ad418000 -        0x1ad51bfff  FileProvider arm64  <65d024f77aa03bb0a76f4d8e2c5945af> /System/Library/Frameworks/FileProvider.framework/FileProvider
285        0x1ad52f000 -        0x1ad530fff  BackgroundTaskAgent arm64  <b4501442fd1c369ca45d1f023a8630a2> /System/Library/PrivateFrameworks/BackgroundTaskAgent.framework/BackgroundTaskAgent
286        0x1ad531000 -        0x1ad535fff  LinguisticData arm64  <e5abe8d82d6a3330ad287e1c1c5b6b4c> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
287        0x1ad57a000 -        0x1ad635fff  VideoToolbox arm64  <568f073809c53b80b5b90e0b0080b71c> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
288        0x1adb8f000 -        0x1adb97fff  SymptomDiagnosticReporter arm64  <d189850aa2a73627aec3f25997e3a2e2> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
289        0x1adb98000 -        0x1adb9afff  IOSurfaceAccelerator arm64  <69fa54616a3031cda2e9833a04cd4e1f> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
290        0x1adc47000 -        0x1adc76fff  DataAccessExpress arm64  <c89f0e32620032559779a379f8e2e28b> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
291        0x1adce5000 -        0x1adcfafff  CoreFollowUp arm64  <49cfbdbda3a833a1ba695f15dcc95078> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
292        0x1add04000 -        0x1add19fff  libcoretls.dylib arm64  <73cbc7c41bd13c9fb7ab4b3249d2c137> /usr/lib/libcoretls.dylib
293        0x1add6f000 -        0x1addfefff  libate.dylib arm64  <f0c1e877138f30789e5dab57308f204d> /usr/lib/libate.dylib
294        0x1af1b6000 -        0x1af1effff  SAObjects arm64  <8fe4b90e06d134189de6c0067fc66d1e> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
295        0x1af2a3000 -        0x1af2b0fff  DataMigration arm64  <7b0d9fd981eb3dde8f58522b5e5286d3> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
296        0x1af463000 -        0x1af487fff  IconServices arm64  <2320fdd83df33f14b74bf60324e95465> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
297        0x1af8d2000 -        0x1af8d3fff  WatchdogClient arm64  <99c4b76de07238a1a6a9db0f7b4fd928> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
298        0x1af8d4000 -        0x1af8e5fff  libprequelite.dylib arm64  <abff7892262b38049ce850a23dbe247c> /usr/lib/libprequelite.dylib
299        0x1af90a000 -        0x1af91afff  CoreEmoji arm64  <61b0c15324be377995c806372710b507> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
300        0x1af9ad000 -        0x1af9fafff  ClassKit arm64  <20cbfe4079133f278da27826c4a0117f> /System/Library/Frameworks/ClassKit.framework/ClassKit
301        0x1afa67000 -        0x1afa71fff  CPMS arm64  <b07d69f67ae734a18e06609646867880> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
302        0x1afbd3000 -        0x1afc1ffff  MobileBackup arm64  <9edb3fbc98a13bcca1c2c4d298e6fb2f> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
303        0x1afccf000 -        0x1afcd6fff  CoreTime arm64  <4686ef91e5bf345a9e11204317ac84ee> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
304        0x1b057b000 -        0x1b0599fff  AppConduit arm64  <e3fb04a99b33331d934bb69d28a5a349> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
305        0x1b059a000 -        0x1b05b2fff  IntlPreferences arm64  <3649d7fd9d673c10afb307f8a66c5e60> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
306        0x1b0911000 -        0x1b09e4fff  CoreBrightness arm64  <5e787a9996db3121b6ddf74af3ffd8cb> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
307        0x1b09e5000 -        0x1b09ecfff  libIOReport.dylib arm64  <608a00131d4d3adfb6ade4baafe2c905> /usr/lib/libIOReport.dylib
308        0x1b0b7c000 -        0x1b0d24fff  libBNNS.dylib arm64  <cc1068188e0e3f15a64f062f6f875189> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
309        0x1b0d25000 -        0x1b0d2bfff  StudyLog arm64  <75bd4f9ad94d388090731234304fc77f> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
310        0x1b1f44000 -        0x1b1f57fff  LocalAuthentication arm64  <6f95204ae8a3321c9ca4e453569dff7b> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
311        0x1b1f80000 -        0x1b1f8bfff  CaptiveNetwork arm64  <7b9872f15ef53d949a1ec3c621672d1f> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
312        0x1b20dd000 -        0x1b218ffff  libBLAS.dylib arm64  <096dcd9c201133cc83c9f198963ffafb> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
313        0x1b2190000 -        0x1b219efff  CTCarrierSpace arm64  <4f2ac44ddbad31fc9172c6fa5385a89d> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
314        0x1b2c1f000 -        0x1b2c38fff  libtailspin.dylib arm64  <92a341afb72834eb99f1d815318cf2a6> /usr/lib/libtailspin.dylib
315        0x1b2d85000 -        0x1b2d93fff  MobileIcons arm64  <e6acfdfe52b33804b7286804a1af1a42> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
316        0x1b2d94000 -        0x1b2e94fff  ResponseKit arm64  <028761cdcf523a50b2f009a5d4f74c09> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
317        0x1b2f5b000 -        0x1b2fa2fff  CoreHaptics arm64  <25d720c635eb30a58467ec76aa553b91> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
318        0x1b2fa3000 -        0x1b306bfff  ProofReader arm64  <5b341390bb22333e92273b1fa7053dc7> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
319        0x1b30db000 -        0x1b315bfff  CoreSymbolication arm64  <3bb5224121c131908ee079775b7fa1f5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
320        0x1b315c000 -        0x1b3162fff  IdleTimerServices arm64  <f74efe882c4d3a0787bc175c9545977d> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
321        0x1b37e0000 -        0x1b3827fff  LoggingSupport arm64  <1efe9eef51d439b1896521d304b8f9cc> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
322        0x1b392c000 -        0x1b3986fff  ProtectedCloudStorage arm64  <2d8760437fd83e3bb2cdcb37d4c00848> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
323        0x1b3a70000 -        0x1b3a79fff  OpenGLES arm64  <bbea5c5ec4e53502b1db53935a260b37> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
324        0x1b3bda000 -        0x1b3be2fff  libGFXShared.dylib arm64  <935e83d3ba7d3a07b84de5e69d47a28c> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
325        0x1b3be3000 -        0x1b3c17fff  SharedUtils arm64  <915236f8f8bd365891273fc990603390> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
326        0x1b4cae000 -        0x1b4ceafff  StreamingZip arm64  <8b969f56f78d3585b589d58d4b23dcc9> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
327        0x1b5bbf000 -        0x1b5bc2fff  InternationalTextSearch arm64  <ced031b1995535069987fe4e0fdb24ae> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
328        0x1b6586000 -        0x1b659efff  NetworkStatistics arm64  <6cef360982ae39c0b01abe9084287b17> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
329        0x1b69f9000 -        0x1b69fffff  Netrb arm64  <40a8a1a95e1c38d5af74bbafb0919119> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
330        0x1b6a03000 -        0x1b6a33fff  EAP8021X arm64  <bfbde4fdaa0f3d20bc929cc34b41b411> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
331        0x1b6a34000 -        0x1b6a36fff  OSAServicesClient arm64  <c5eaed3a005e374e8d0588c92a59e8f6> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
332        0x1b6bd0000 -        0x1b6bd4fff  libgermantok.dylib arm64  <519dde12281b39c98940ae8185b07e4d> /usr/lib/libgermantok.dylib
333        0x1b6bd5000 -        0x1b6c88fff  libmecab.dylib arm64  <0656d578f9f93f2a9c8a765db61d3e19> /usr/lib/libmecab.dylib
334        0x1b7272000 -        0x1b7280fff  CoreDuetDaemonProtocol arm64  <3e59e555f21e3203849dda490e1ac19b> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
335        0x1b823b000 -        0x1b823dfff  OAuth arm64  <eb7ff78d307c3876ad1b42a1480673e4> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
336        0x1b8cdd000 -        0x1b8d4cfff  libarchive.2.dylib arm64  <da3dcfeaa1133946afd69ce4fdd66b3a> /usr/lib/libarchive.2.dylib
337        0x1b8d4d000 -        0x1b8d7cfff  C2 arm64  <f6e457a669bd3341b78f77af63c9e0ca> /System/Library/PrivateFrameworks/C2.framework/C2
338        0x1b8d7d000 -        0x1b8db1fff  NaturalLanguage arm64  <f85dd1d50f2f32909667b49168903d36> /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
339        0x1b8e45000 -        0x1b8e46fff  libsystem_coreservices.dylib arm64  <056ff41b4a3e3e058c63563a2b6cc624> /usr/lib/system/libsystem_coreservices.dylib
340        0x1b8e58000 -        0x1b8e69fff  libmis.dylib arm64  <f40fa333544b3686ad9ae933548a6f20> /usr/lib/libmis.dylib
341        0x1b905b000 -        0x1b9063fff  libcopyfile.dylib arm64  <0680a413ee233d1d877cbd1a1b98cd7e> /usr/lib/system/libcopyfile.dylib
342        0x1b93b0000 -        0x1b943ffff  AccountsDaemon arm64  <0de70eb7ac3c3a5b9982fba9df0bd53b> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
343        0x1b9440000 -        0x1b944bfff  AppleIDSSOAuthentication arm64  <8571665a6d953776b80282e3531a91e2> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
344        0x1b957e000 -        0x1b95f9fff  Symbolication arm64  <e7b9b471b56337a9804d1351aa5e1666> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
345        0x1b97ae000 -        0x1b97fcfff  ChunkingLibrary arm64  <1ff2202c91fc32198ec48d59ebd8d3c0> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
346        0x1b9cea000 -        0x1b9cecfff  CoreDuetDebugLogging arm64  <c979219e86023ae593e61d32ec6305f4> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
347        0x1ba7bd000 -        0x1ba7fafff  SignpostSupport arm64  <5d0dbc6b595d33e0abef55d64c3b8798> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
348        0x1baa30000 -        0x1baa39fff  SignpostCollection arm64  <4db83358c8c039fda69a821becb01363> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
349        0x1bb161000 -        0x1bb168fff  URLFormatting arm64  <c50b071bba3e34fba8aeb6f1221cc9fd> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
350        0x1bb27d000 -        0x1bb4a3fff  MobileSpotlightIndex arm64  <b0691a85f04a3d0e957fefb5b8ae9dad> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
351        0x1bb88b000 -        0x1bb8d1fff  CoreLocationProtobuf arm64  <84dfc3606d803552bdff56b837e57beb> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
352        0x1bb95c000 -        0x1bb9d9fff  Quagga arm64  <7a1f4aa0ebee356296d167ebec9d3440> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
353        0x1bbce2000 -        0x1bbcf6fff  libEDR arm64  <37b400daffbe3678805197a77f3c43e9> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
354        0x1bc901000 -        0x1bc90ffff  libperfcheck.dylib arm64  <5dd7217122b43afe9a58122605f7a58c> /usr/lib/libperfcheck.dylib
355        0x1bc910000 -        0x1bc91bfff  libAudioStatistics.dylib arm64  <d844fa136b253b2db02951286543671e> /usr/lib/libAudioStatistics.dylib
356        0x1bcad2000 -        0x1bcae2fff  caulk arm64  <40c59f79f177373787db8857002e4a9a> /System/Library/PrivateFrameworks/caulk.framework/caulk
357        0x1bcb22000 -        0x1bcb28fff  MobileSystemServices arm64  <a7b7f3b4a8d335348fc792a3d46ab154> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
358        0x1bdbed000 -        0x1bdc26fff  libGLImage.dylib arm64  <ed6377f3817334fdbb8058a0fb238777> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
359        0x1be04c000 -        0x1be05dfff  libSparseBLAS.dylib arm64  <2388d02f952132cb891f08249ccb6253> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
360        0x1be05e000 -        0x1be071fff  Engram arm64  <766e498cdb82360889b73f670b1c3c45> /System/Library/PrivateFrameworks/Engram.framework/Engram
361        0x1be0e9000 -        0x1be123fff  DataDetectorsNaturalLanguage arm64  <a4bb1907e76e34cfaf1ecea9bc8b4cbe> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
362        0x1be41d000 -        0x1be49bfff  CoreDAV arm64  <53899828aa7431839999685892419b04> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
363        0x1beddd000 -        0x1bededfff  RemoteTextInput arm64  <c4c62091295e39fa9ebe6fd0d15f4d76> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
364        0x1bee16000 -        0x1bee45fff  iCalendar arm64  <1edb3421405c37258b7869c850885a4f> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
365        0x1beeaa000 -        0x1beebefff  libLinearAlgebra.dylib arm64  <188a2c0085103d40968c51b56786a050> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
366        0x1bf15b000 -        0x1bf169fff  CoreAUC arm64  <c16c87f59d663a9aa1a3ede3e7c88778> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
367        0x1bfb5c000 -        0x1bfba3fff  PhysicsKit arm64  <7559b947b99d34dc92b1168af13a010b> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
368        0x1bfba4000 -        0x1bfbf5fff  CorePrediction arm64  <823145e885533d46a7036c7edd5d3c55> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
369        0x1c0028000 -        0x1c0073fff  SafariSafeBrowsing arm64  <94d66640f5f9338d81202be956d09679> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
370        0x1c0516000 -        0x1c0534fff  GenerationalStorage arm64  <7679232cd37d322391458de38cfba542> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
371        0x1c0598000 -        0x1c05a3fff  PersonaKit arm64  <2711c35822cb372b94b26227ac95c3ae> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
372        0x1c09b1000 -        0x1c09b6fff  kperf arm64  <cd3c6ea37c4b3dff942699d706f58f70> /System/Library/PrivateFrameworks/kperf.framework/kperf
373        0x1c0b7e000 -        0x1c0baefff  libpcap.A.dylib arm64  <680fb4c1bd6b3049b41a4e03338e5a04> /usr/lib/libpcap.A.dylib
374        0x1c0edf000 -        0x1c0f79fff  libvDSP.dylib arm64  <17cedcd634703db1947605912da5c153> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
375        0x1c0f7a000 -        0x1c0fa5fff  vCard arm64  <08b7040ecb1f34128c8e037d87456a1a> /System/Library/PrivateFrameworks/vCard.framework/vCard
376        0x1c0fe7000 -        0x1c1072fff  SampleAnalysis arm64  <5129d9cc0b8d381782ef5759bf290bb2> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
377        0x1c1073000 -        0x1c107dfff  IntentsFoundation arm64  <1dcf59962c193c069e4c9e0bd5694759> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
378        0x1c1ad5000 -        0x1c1ad5fff  Accelerate arm64  <6e2f0eb242eb3d698c49d7b8937ce681> /System/Library/Frameworks/Accelerate.framework/Accelerate
379        0x1c1ad7000 -        0x1c1df2fff  libLAPACK.dylib arm64  <ae620ec525a731d9a715ce70c875f543> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
380        0x1c1df3000 -        0x1c1df7fff  libQuadrature.dylib arm64  <01a3f7ce12f73cd6bbfc1aa29f62c134> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
381        0x1c1df8000 -        0x1c1e51fff  libvMisc.dylib arm64  <0ce6a4851cc3335aa62b3c574ada23ca> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
382        0x1c1e52000 -        0x1c1e52fff  vecLib arm64  <2cf4dce3a72b3ddf9c1cc5a73120b032> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
383        0x1c2213000 -        0x1c2240fff  GSS arm64  <225e035e34ef3230887f4b414afbb0f6> /System/Library/Frameworks/GSS.framework/GSS
384        0x1c2254000 -        0x1c2285fff  MPSCore arm64  <253f3941794d3d36bf90c53ad2876155> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
385        0x1c2286000 -        0x1c22fffff  MPSImage arm64  <a362ef81e4063a93a6813fb317bfd3e7> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
386        0x1c2300000 -        0x1c2322fff  MPSMatrix arm64  <33c124071cf13deea1bb4a48e72fbb41> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
387        0x1c2323000 -        0x1c2336fff  MPSNDArray arm64  <5a5c21a804e1357ab7064fd433aafd11> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
388        0x1c2337000 -        0x1c24c7fff  MPSNeuralNetwork arm64  <90d91a4c61f43277ae5aa1420558b674> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
389        0x1c24c8000 -        0x1c250dfff  MPSRayIntersector arm64  <e152efc155913577b49e91b625dca0bb> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
390        0x1c250e000 -        0x1c250efff  MetalPerformanceShaders arm64  <524dd85aa77238da874d1229353c75c7> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
391        0x1c251b000 -        0x1c251bfff  MobileCoreServices arm64  <b91d13f35d1236a6bc318a72f38375c5> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
392        0x1c2526000 -        0x1c2527fff  libCVMSPluginSupport.dylib arm64  <39c3e90d26ed386d9955392a8da964e0> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
393        0x1c2528000 -        0x1c252efff  libCoreFSCache.dylib arm64  <32d64b26af353775af862800179e1d1c> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
394        0x1c252f000 -        0x1c2534fff  libCoreVMClient.dylib arm64  <7418e2f0eb4034e6ab4f783fb21edaa5> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
395        0x1c2568000 -        0x1c259cfff  QuickLookThumbnailing arm64  <795d3c9195bd30c78c78df3a22dab551> /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
396        0x1c29f6000 -        0x1c29f6fff  UIKit arm64  <44227237da7d3edea3b99cc794e2febc> /System/Library/Frameworks/UIKit.framework/UIKit
397        0x1c2e2b000 -        0x1c2f73fff  ANECompiler arm64  <0d6e93768fa637c6897f0d353809ae7f> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
398        0x1c2f74000 -        0x1c2f84fff  ANEServices arm64  <5d2c3db7a40730dfb59284006538da7f> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
399        0x1c301e000 -        0x1c3022fff  ASEProcessing arm64  <0be9968405863cd097ab4ed2c3859cb6> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
400        0x1c31b5000 -        0x1c31c0fff  AccountSettings arm64  <11239ef0cb573b44b94329704ddb767f> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
401        0x1c3b8c000 -        0x1c3b9afff  AppleFSCompression arm64  <20b78ff40b34321c8397a01f9a92cb7b> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
402        0x1c3ba1000 -        0x1c3babfff  AppleIDAuthSupport arm64  <ab244dd6390c38c1a00750d4c567c5eb> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
403        0x1c3bac000 -        0x1c3bedfff  AppleJPEG arm64  <ce3824f89459369493f4e409b57fea97> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
404        0x1c3c09000 -        0x1c3c1afff  AppleNeuralEngine arm64  <d0b0ec20d42135039dd9f5af213ba458> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
405        0x1c3c21000 -        0x1c3c44fff  AppleSauce arm64  <46c45cd4efe533f28302e2818e916179> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
406        0x1c3e3b000 -        0x1c3e6bfff  Bom arm64  <2d8cca84b2113c37a3d6d24acc22224e> /System/Library/PrivateFrameworks/Bom.framework/Bom
407        0x1c48c6000 -        0x1c48cdfff  CommonAuth arm64  <f4289b96febe3ad78e676e673d56e645> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
408        0x1c4ce3000 -        0x1c4ce7fff  CoreOptimization arm64  <c1d01b5b359c3b958498dd3b4099d55f> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
409        0x1c4dff000 -        0x1c4e0afff  DeviceIdentity arm64  <8f5cb2106a6a39a296a2fb946b4cc9f6> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
410        0x1c4f95000 -        0x1c4faffff  DocumentManagerCore arm64  <541299da83fa30a39572afccfcdb9288> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
411        0x1c5066000 -        0x1c56b0fff  Espresso arm64  <4bf12b5fa9e43b319c94f443f75826d4> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
412        0x1c5976000 -        0x1c5d88fff  FaceCore arm64  <aa934e067ceb3cda8c75ed1a6aa5ed35> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
413        0x1c5e58000 -        0x1c5e6cfff  libGSFontCache.dylib arm64  <805cb023cea63ead9e157671ab941a6f> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
414        0x1c5ed0000 -        0x1c5edcfff  libhvf.dylib arm64  <943e21adebc932fab557c3ba69921476> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
415        0x1c6bd6000 -        0x1c6be2fff  GraphVisualizer arm64  <a073f2b408b53c35b5894ed4e32cf04c> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
416        0x1c753b000 -        0x1c75aafff  Heimdal arm64  <bf9929b673b03d5991d96693ca6f3ec8> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
417        0x1c7ac8000 -        0x1c7acefff  InternationalSupport arm64  <d037a3229a7137188e8e49913f1779fc> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
418        0x1c7d85000 -        0x1c7d85fff  Marco arm64  <84106752c0e433848f3a45d25d8adee3> /System/Library/PrivateFrameworks/Marco.framework/Marco
419        0x1c8271000 -        0x1c8283fff  MobileDeviceLink arm64  <6aedf5ec46203ce39055d75f1ce3537c> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
420        0x1c8532000 -        0x1c8571fff  OTSVG arm64  <f37dbabfdc2a369e800f12d0169471ca> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
421        0x1c8bbf000 -        0x1c8bbffff  PhoneNumbers arm64  <af3eb8f1a8e835cca5a87ec7703680d8> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
422        0x1ca55b000 -        0x1ca55ffff  RevealCore arm64  <f0022354349332e3b64de5eabc7746eb> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
423        0x1ca6f2000 -        0x1ca6fefff  SetupAssistantSupport arm64  <5c1f14cb73a03d0eb3d6a1bb803ae3f4> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
424        0x1ca71c000 -        0x1ca71cfff  SignpostMetrics arm64  <6a23f80b3e95362a97024435d699234d> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
425        0x1caffd000 -        0x1cb09ffff  TextureIO arm64  <a0baffecbe53353f91d5a8cdd54906b7> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
426        0x1cbebd000 -        0x1cc3a2fff  libwebrtc.dylib arm64  <c5cf11f1e58937cf919f6ada153b916a> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
427        0x1cc529000 -        0x1cc531fff  kperfdata arm64  <ee26ca6500e23d249a58d7a6557c28b7> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
428        0x1cc532000 -        0x1cc579fff  ktrace arm64  <614bdefc4f223b10aadade4e08cc09d0> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
429        0x1cc592000 -        0x1cc59efff  perfdata arm64  <7fbb27c9d7703b95be175f147f109bdb> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
430        0x1cc59f000 -        0x1cc5adfff  zudp arm64  <b86e3f97732e3d4a9d84b579f1d8db70> /System/Library/PrivateFrameworks/zudp.framework/zudp
431        0x1cc9a4000 -        0x1ccc9dfff  libAWDSupportFramework.dylib arm64  <d9342c0ef5dc3c0da0701a5306bba9d4> /usr/lib/libAWDSupportFramework.dylib
432        0x1cce4c000 -        0x1cce56fff  libChineseTokenizer.dylib arm64  <ee21709661723d82b04979c62aa995f7> /usr/lib/libChineseTokenizer.dylib
433        0x1cce7b000 -        0x1cd02efff  libFosl_dynamic.dylib arm64  <b27260b4610937b7ad0d212a1fcc32e9> /usr/lib/libFosl_dynamic.dylib
434        0x1cd0ab000 -        0x1cd0b1fff  libMatch.1.dylib arm64  <a294cd89de0435929d6d41ef11108d3f> /usr/lib/libMatch.1.dylib
435        0x1cd245000 -        0x1cd246fff  libSystem.B.dylib arm64  <f11cb1ccb61639b18d76192163af9c98> /usr/lib/libSystem.B.dylib
436        0x1cd24f000 -        0x1cd251fff  libThaiTokenizer.dylib arm64  <b41d39b5c1c634439152a02656b3f8bd> /usr/lib/libThaiTokenizer.dylib
437        0x1cd350000 -        0x1cd365fff  libapple_nghttp2.dylib arm64  <8f44a3c8d09d3767a9faac6ecd1e117d> /usr/lib/libapple_nghttp2.dylib
438        0x1cd3de000 -        0x1cd3eefff  libbsm.0.dylib arm64  <34e5d47f9eb53fcb90e8d376b2495d76> /usr/lib/libbsm.0.dylib
439        0x1cd3ef000 -        0x1cd3fbfff  libbz2.1.0.dylib arm64  <585b38ef25d13a32ae5a58063781d3f3> /usr/lib/libbz2.1.0.dylib
440        0x1cd3fc000 -        0x1cd3fcfff  libcharset.1.dylib arm64  <8f45b0844d5137cf81dad41df7d09791> /usr/lib/libcharset.1.dylib
441        0x1cd3fd000 -        0x1cd40efff  libcmph.dylib arm64  <613da5e4a09f34fc8d38e2522ca6e355> /usr/lib/libcmph.dylib
442        0x1cd40f000 -        0x1cd426fff  libcompression.dylib arm64  <0510173465113cb5a85ad77c1f2ab922> /usr/lib/libcompression.dylib
443        0x1cd427000 -        0x1cd428fff  libcoretls_cfhelpers.dylib arm64  <7c006b990b843bebb47b3a2b7226af4d> /usr/lib/libcoretls_cfhelpers.dylib
444        0x1cd429000 -        0x1cd42ffff  libcupolicy.dylib arm64  <cae0e1b8ef8b36aeb0d0aa2428e7e3c1> /usr/lib/libcupolicy.dylib
445        0x1cd46f000 -        0x1cd478fff  libdscsym.dylib arm64  <fc37a3a0bd6039f79adf629e7417e5af> /usr/lib/libdscsym.dylib
446        0x1cd9d6000 -        0x1cd9dbfff  libheimdal-asn1.dylib arm64  <194f2d30c4133319ba80b44b8fb95da5> /usr/lib/libheimdal-asn1.dylib
447        0x1cd9dc000 -        0x1cdacdfff  libiconv.2.dylib arm64  <c7159c1dc5f2393880195f1f26a812d6> /usr/lib/libiconv.2.dylib
448        0x1cdae3000 -        0x1cdaeefff  liblockdown.dylib arm64  <54781e736ccd39a3bca20a8387978134> /usr/lib/liblockdown.dylib
449        0x1cdb08000 -        0x1cdb20fff  liblzma.5.dylib arm64  <a240c647436c3eec873320bde9f08286> /usr/lib/liblzma.5.dylib
450        0x1cde93000 -        0x1cdec2fff  libncurses.5.4.dylib arm64  <5e5c455de6ba30b9960c057a460ccf0b> /usr/lib/libncurses.5.4.dylib
451        0x1cdec3000 -        0x1cded7fff  libnetworkextension.dylib arm64  <3485a06e384737bf9e51cb52409ba639> /usr/lib/libnetworkextension.dylib
452        0x1ce261000 -        0x1ce279fff  libresolv.9.dylib arm64  <a66f83497e563c98ab5502c0550edb7f> /usr/lib/libresolv.9.dylib
453        0x1ce27a000 -        0x1ce27cfff  libsandbox.1.dylib arm64  <79d45127a2a630da946c8a5a32b79900> /usr/lib/libsandbox.1.dylib
454        0x1ce283000 -        0x1ce2b4fff  libtidy.A.dylib arm64  <e6106393eb593afc98f3404eff5d4e43> /usr/lib/libtidy.A.dylib
455        0x1ce2ed000 -        0x1ce2fefff  libz.1.dylib arm64  <f8c60e32c7063653ad1f6be0e1a67550> /usr/lib/libz.1.dylib
456        0x1ce735000 -        0x1ce73afff  libcache.dylib arm64  <f17694258699365bada071b6cd590c45> /usr/lib/system/libcache.dylib
457        0x1ce73b000 -        0x1ce747fff  libcommonCrypto.dylib arm64  <ff724a2044093eb29367dfcd5a519a0f> /usr/lib/system/libcommonCrypto.dylib
458        0x1ce748000 -        0x1ce74cfff  libcompiler_rt.dylib arm64  <95a2a970877e365fae720a708a8edd68> /usr/lib/system/libcompiler_rt.dylib
459        0x1ce821000 -        0x1ce821fff  liblaunch.dylib arm64  <a816029cb1a4394cbbde334b0d5ca673> /usr/lib/system/liblaunch.dylib
460        0x1ce822000 -        0x1ce827fff  libmacho.dylib arm64  <ae1368acefd2371bad32d77575985795> /usr/lib/system/libmacho.dylib
461        0x1ce828000 -        0x1ce82afff  libremovefile.dylib arm64  <056edd870d1a3755b48c06dcbe44441b> /usr/lib/system/libremovefile.dylib
462        0x1ce82b000 -        0x1ce82cfff  libsystem_featureflags.dylib arm64  <112de23b918f32fc95b72d5bbc4de99f> /usr/lib/system/libsystem_featureflags.dylib
463        0x1ce82d000 -        0x1ce85afff  libsystem_m.dylib arm64  <a03fbf7c033f30ed858a58ca85114fba> /usr/lib/system/libsystem_m.dylib
464        0x1ce85b000 -        0x1ce860fff  libunwind.dylib arm64  <cbba89c76f2730f6b8250fc0a4de9795> /usr/lib/system/libunwind.dylib
465        0x1ceb3a000 -        0x1ceba1fff  NanoRegistry arm64  <d4e2f3bd0ddf352dbf0cdd7a26b5d812> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
466        0x1ceba2000 -        0x1cebaffff  NanoPreferencesSync arm64  <ce6ba95c85c7309da39fa2515579269f> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
符号化之后的崩溃信息

iOS崩溃信息服务端符号化

推荐的是使用facebook开源的工具atosl https://github.com/facebookarchive/atosl

TODO

参考文章

https://blog.devzeng.com/blog/ios-plcrashreporter.html

猜你喜欢

转载自www.cnblogs.com/yufang/p/11943965.html