Rare platform crash when accessing downloaded NSData bytes
| Originator: | reuben.scratton | ||
| Number: | rdar://20172678 | Date Originated: | 16 March 2015 |
| Status: | Open | Resolved: | |
| Product: | iOS SDK | Product Version: | 7.x,8.x |
| Classification: | Crash | Reproducible: | Barely |
Our app performs all downloads with [NSURLSession dataTaskWithRequest]. Most data is processed on the downloading thread (i.e. in the callback passed to dataTaskWithRequest) into a more usable runtime representation, e.g. JSON data gets parsed into Obj-C model objects.
In the specific case of images, the downloaded image data (i.e. the raw bytes of the PNG or JPG) often end up being passed unmodified to another background thread that decompresses it for display.
That image decompression thread will *very* occasionally (we estimate once per 10,000 users) crash deep inside platform image decompression code:
Exception Type: SIGSEGV
Exception Codes: SEGV_ACCERR at 0x1046f8000
Crashed Thread: 9
Thread 9 Crashed:
0 Celestial 0x000000018e6bfa68 JPEGParseJPEGInfo + 780
1 Celestial 0x000000018e6a0740 createPixelBufferFromJPEG + 324
...
12 libRIP.A.dylib 0x000000018872cb04 ripc_DrawImage + 600
13 CoreGraphics 0x0000000188374250 CGContextDrawImage + 404
14 <our app> 0x00000001000a078c -[BNImageView decodeImageInBackground:forKey:] (BNImageView.m:249)
The crash reports show that the crash only occurs when the downloaded bytes are also being written to the url cache by another thread which does not crash:
Thread 3:
0 libsystem_kernel.dylib 0x0000000198ffa22c close + 8
1 CoreFoundation 0x000000018802b674 _CFStreamClose + 112
2 Foundation 0x0000000188fd8714 +[NSKeyedArchiver archiveRootObject:toFile:] + 280
3 <our app> 0x000000010003e318 __57-[BNURLCachedInfo updateCachedObject:withHeaders:andTTL:]_block_invoke (BNURLCachedInfo.m:257)
The NSKeyedArchiver here is (or has been) writing out the exact same NSData (actually an instance of the private class os_dispatch_data) that the image decompressor crashed on. We feel this is very likely to be relevant.
The workaround we've come up with is to have our downloader make a deep copy of the NSData bytes for image requests, and pass that copy to the decompressor. This workaround has been 100% effective.
Steps to Reproduce:
I wish we could show you how to reproduce it, however this crash is sufficiently rare that we have never been able to reproduce it ourselves... our diagnosis and eventual workaround was all done by pondering crash reports (a sample of which is attached).
The app is quite big - roughly 3 million users - and we estimate this crash occurred for one in every 10,000 users.
Expected Results:
No crash.
Actual Results:
Our users would get the standard crash experience of the app suddenly closing and finding themselves on their home screen.
Version:
iOS 7.x, and 8.x.
Relevant parts of crash report:
Exception Type: SIGSEGV
Exception Codes: SEGV_ACCERR at 0x1046f8000
Application Specific Information:
Selector name found in current argument registers: length
Thread 3: (the url cacher)
0 libsystem_kernel.dylib 0x0000000198ffa22c close + 8
1 CoreFoundation 0x000000018802b674 _CFStreamClose + 112
2 Foundation 0x0000000188fd8714 +[NSKeyedArchiver archiveRootObject:toFile:] + 280
3 <our app> 0x000000010003e318 __57-[BNURLCachedInfo updateCachedObject:withHeaders:andTTL:]_block_invoke (BNURLCachedInfo.m:257)
4 <our app> 0x000000010005c954 __44+[BNBlockOperation blockOperationWithBlock:]_block_invoke (BNBlockOperation.m:17)
5 Foundation 0x0000000188fe7508 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 12
6 Foundation 0x0000000188f38c94 -[NSBlockOperation main] + 92
7 Foundation 0x0000000188f2861c -[__NSOperationInternal _start:] + 632
8 Foundation 0x0000000188fea26c __NSOQSchedule_f + 224
9 libdispatch.dylib 0x0000000198ed136c _dispatch_client_callout + 12
10 libdispatch.dylib 0x0000000198edb4c0 _dispatch_queue_drain + 1212
11 libdispatch.dylib 0x0000000198ed4474 _dispatch_queue_invoke + 128
12 libdispatch.dylib 0x0000000198edd224 _dispatch_root_queue_drain + 660
13 libdispatch.dylib 0x0000000198ede75c _dispatch_worker_thread3 + 104
14 libsystem_pthread.dylib 0x00000001990ad2e4 _pthread_wqthread + 812
15 libsystem_pthread.dylib 0x00000001990acfa8 start_wqthread + 0
Thread 9 (the image decompressor) Crashed:
0 Celestial 0x000000018e6bfa68 JPEGParseJPEGInfo + 780
1 Celestial 0x000000018e6a0740 createPixelBufferFromJPEG + 324
2 Celestial 0x000000018e6a1f88 FigAspenDecodeJPEGIntoRGBSurface + 240
3 ImageIO 0x000000018937696c createIOSurfaceWithHardwareJpegDecode + 164
4 ImageIO 0x000000018937700c createImageBlockSetWithAspenHardwareDecode + 692
5 ImageIO 0x00000001893a6778 copyImageBlockSetAppleJPEG + 5028
6 ImageIO 0x00000001892f745c ImageProviderCopyImageBlockSetCallback + 780
7 CoreGraphics 0x0000000188384088 img_blocks_create + 408
8 CoreGraphics 0x0000000188378e00 img_decode_stage + 364
9 CoreGraphics 0x0000000188375548 img_data_lock + 1560
10 CoreGraphics 0x0000000188374520 CGSImageDataLock + 136
11 libRIP.A.dylib 0x000000018872d730 ripc_AcquireImage + 768
12 libRIP.A.dylib 0x000000018872cb04 ripc_DrawImage + 600
13 CoreGraphics 0x0000000188374250 CGContextDrawImage + 404
14 <our app> 0x00000001000a078c -[BNImageView decodeImageInBackground:forKey:] (BNImageView.m:249)
15 <our app> 0x00000001000a188c __56-[BNImageView onRequestLoadedObject:object:isCacheData:]_block_invoke (BNImageView.m:393)
16 libdispatch.dylib 0x0000000198ed13ac _dispatch_call_block_and_release + 20
17 libdispatch.dylib 0x0000000198ed136c _dispatch_client_callout + 12
18 libdispatch.dylib 0x0000000198edb4c0 _dispatch_queue_drain + 1212
19 libdispatch.dylib 0x0000000198ed4474 _dispatch_queue_invoke + 128
20 libdispatch.dylib 0x0000000198edd224 _dispatch_root_queue_drain + 660
21 libdispatch.dylib 0x0000000198ede75c _dispatch_worker_thread3 + 104
22 libsystem_pthread.dylib 0x00000001990ad2e4 _pthread_wqthread + 812
23 libsystem_pthread.dylib 0x00000001990acfa8 start_wqthread + 0
Thread 9 crashed with ARM-64 Thread State:
pc: 0x000000018e6bfa68 fp: 0x00000001029f0a40 sp: 0x00000001029f09d0 x0: 0x000000000000a947
x1: 0x000000018d0b5ab5 x2: 0x0000000100000000 x3: 0x0000000200000000 x4: 0x000000000000a947
x5: 0x0000000000000000 x6: 0x0000000000000000 x7: 0x00000001029f0adb x8: 0x00000001046f8018
x9: 0x0000000000000000 x10: 0x0000000000000001 x11: 0x0000000000000001 x12: 0x0000000500000000
x13: 0x0000000300000000 x14: 0x0000000400000000 x15: 0x0000000600000000 x16: 0x0000000700000000
x17: 0x0000000800000000 x18: 0x0000000000000000 x19: 0x00000001029f0adc x20: 0x00000001029f0adb
x21: 0x00000001046f8000 x22: 0x00000001029f0b8c x23: 0x00000001029f0af0 x24: 0x00000001029f0af8
x25: 0x00000001029f0b00 x26: 0x00000001029f0b08 x27: 0x00000001375b7dd0 x28: 0x00000001029f0ada
lr: 0x000000018e6bf7b0 cpsr: 0x0000000020000000
Binary Images:
0x100030000 - 0x100297fff <our app> arm64
0x186908000 - 0x186a9bfff AVFoundation arm64 <c9cd60a62cfb3e77be72db6cd3062a09> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x186a9c000 - 0x186b00fff libAVFAudio.dylib arm64 <017d90360b443ae788ef31cfd73d17f6> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib
0x186b44000 - 0x186b44fff Accelerate arm64 <e9ba7838f51634a7b59ed392be50e86f> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x186b5c000 - 0x186d7bfff vImage arm64 <da44067fc79931c7aef1b7e88bf82a83> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x186d7c000 - 0x186e23fff libBLAS.dylib arm64 <e5276e7784ef34a4baca480264978ea0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x186e24000 - 0x18719efff libLAPACK.dylib arm64 <165b05f9f75736d5ae8f5f39293bd6e7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1871a0000 - 0x1871b5fff libLinearAlgebra.dylib arm64 <5574ec3bd4e537e1b662d38a63aec58b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1871b8000 - 0x187220fff libvDSP.dylib arm64 <004f5668574139bc906c5fa4fdced3b1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x187224000 - 0x187247fff libvMisc.dylib arm64 <5790e7ace143367ea6f2428852be384e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x187248000 - 0x187248fff vecLib arm64 <211d7711a6e93fe8ae6d6b42585cad2d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x18724c000 - 0x18727afff Accounts arm64 <2508d336b9893176ad4e1bc67ff04188> /System/Library/Frameworks/Accounts.framework/Accounts
0x187280000 - 0x187302fff AddressBook arm64 <09e2e24ef5e23fb8a62ae209466a64bd> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x187304000 - 0x187454fff AddressBookUI arm64 <e79239b432af33e783296d2a9841578e> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
0x187458000 - 0x18746bfff AssetsLibrary arm64 <78cfe4f1af67381fb6941f4b1f25eef9> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x18761c000 - 0x1878d9fff AudioToolbox arm64 <f0b739a395993b808d66e85e1a6e9f18> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x187a78000 - 0x187c83fff CFNetwork arm64 <68adcebf440d30769bd2d67adc7932a2> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x187c84000 - 0x187d1bfff CloudKit arm64 <8f226c83b2793a0db1eefa14d697c04b> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x187d1c000 - 0x187d81fff CoreAudio arm64 <10aae62ba1c43dd29bc678fbf0f985ef> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x187da4000 - 0x187dc5fff CoreBluetooth arm64 <9ccc8812db60356ebb123ca9ca36f958> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x187dc8000 - 0x188006fff CoreData arm64 <33c0d795a45e35c9affed5cf9d83a8a1> /System/Library/Frameworks/CoreData.framework/CoreData
0x188008000 - 0x188364fff CoreFoundation arm64 <83a9627362333366a8543e8c2d28166e> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x188368000 - 0x1884cafff CoreGraphics arm64 <783a6b9356ed3b41beba516b483affb1> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x188520000 - 0x188522fff libCGXType.A.dylib arm64 <a23bc017fe0d3c2293a1391fe5ef658b> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib
0x188524000 - 0x18852ffff libCMSBuiltin.A.dylib arm64 <f691d5f2368d3b7d8668c7cbf6044af7> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib
0x188724000 - 0x188742fff libRIP.A.dylib arm64 <c7960ba6e4183d9cbb673b112b6ba300> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
0x188744000 - 0x188871fff CoreImage arm64 <444c44b06f533bad9c1b030edd486b49> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x188874000 - 0x1888d1fff CoreLocation arm64 <d8470e5719473c82a5f089624a04a1e5> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x18890c000 - 0x1889cafff CoreMedia arm64 <af73ae8152763066a3fc18bcbcdecf94> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1889cc000 - 0x188a9afff CoreMotion arm64 <b4148dfdca2036e893becf42286d9e09> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x188a9c000 - 0x188b0dfff CoreTelephony arm64 <f99cf601387938d3808c32e97a9a30cf> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x188b10000 - 0x188c12fff CoreText arm64 <128434ae7dda35bf8830f1914999fe3a> /System/Library/Frameworks/CoreText.framework/CoreText
0x188c14000 - 0x188c30fff CoreVideo arm64 <402f868dbba63d59a3b2e738982b9d71> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x188c34000 - 0x188d58fff EventKit arm64 <15cacaa609e33790a3bc644eb4d92191> /System/Library/Frameworks/EventKit.framework/EventKit
0x188f0c000 - 0x189160fff Foundation arm64 <fb0544132648377c8d2683d597a3583d> /System/Library/Frameworks/Foundation.framework/Foundation
0x189190000 - 0x1891b9fff GSS arm64 <7b3a88cbb59d33088db0fae35c30b7da> /System/Library/Frameworks/GSS.framework/GSS
0x189278000 - 0x1892e4fff IOKit arm64 <1cd3da5151d03be5a0ba0c30c19228ea> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1892e8000 - 0x189582fff ImageIO arm64 <100a3b5e1ea13c89a9771cad8f9508b2> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x189584000 - 0x189a24fff JavaScriptCore arm64 <8b0fade3317b38358fe56ac5ba61e2f3> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x18a298000 - 0x18a29efff MediaAccessibility arm64 <5dc0d8bda3593b9cb00a8703b21953fd> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x18a2a0000 - 0x18a4bbfff MediaPlayer arm64 <5c56df4977f33b41bdc6b6aed053f85b> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x18a4bc000 - 0x18a8d6fff MediaToolbox arm64 <0468767c75bb342cbbefc64bdf948be5> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x18a8d8000 - 0x18a9abfff MessageUI arm64 <f307aec0262838e1ad1302805c8a025c> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x18a9ac000 - 0x18aa1ffff Metal arm64 <69e3d92ae3ec3375a550022b7ac4a184> /System/Library/Frameworks/Metal.framework/Metal
0x18aa20000 - 0x18aaccfff MobileCoreServices arm64 <19505cbb66af328785e293c3b2810b00> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x18bc50000 - 0x18bc5afff OpenGLES arm64 <b707e102e4553f26994bfef0579c9f52> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x18bc60000 - 0x18bc61fff libCVMSPluginSupport.dylib arm64 <7e1f08d7776b37efb6ff01f6486afcde> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x18bc64000 - 0x18bc67fff libCoreFSCache.dylib arm64 <5888d3587c633af2ac7cf57ac15ab5e4> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x18bc68000 - 0x18bc6cfff libCoreVMClient.dylib arm64 <291806c545fe3219b844a93e2fb682b4> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x18bc70000 - 0x18bc7afff libGFXShared.dylib arm64 <f5e5cfc1d6673d469f25b3fa77fa995b> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x18bc7c000 - 0x18bcc7fff libGLImage.dylib arm64 <4e284cf07fe23789b94c9f204f7aa52e> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x18c228000 - 0x18c3acfff QuartzCore arm64 <313aba56d17e30d1b68b2fdfda1820f8> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x18c3b0000 - 0x18c40bfff QuickLook arm64 <ae12a3ed0acf3b6ca816e95d4a894d70> /System/Library/Frameworks/QuickLook.framework/QuickLook
0x18c640000 - 0x18c692fff Security arm64 <823c0a3088543396bef1e351da74c835> /System/Library/Frameworks/Security.framework/Security
0x18c694000 - 0x18c71ffff Social arm64 <928581a049c3306abe816e5113d652ae> /System/Library/Frameworks/Social.framework/Social
0x18c858000 - 0x18c8cbfff SystemConfiguration arm64 <cbcb5237ab8637aebf0cb493aaa4af92> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x18c8d0000 - 0x18d244fff UIKit arm64 <31ac3f3fa5153620907fbfbfd1d671b0> /System/Library/Frameworks/UIKit.framework/UIKit
0x18d248000 - 0x18d2c1fff VideoToolbox arm64 <13a05b41cd0136239ef94de508febe1d> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x18d2c4000 - 0x18d525fff WebKit arm64 <ec363b6f17ba3f068df0b771aa8ddc44> /System/Library/Frameworks/WebKit.framework/WebKit
0x18d950000 - 0x18d95dfff AOSNotification arm64 <8b9793a334fa3013803a6cb713053b44> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification
0x18dae8000 - 0x18db40fff AccountsDaemon arm64 <84c862ef63b332eb81b98f5ab414e3f4> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x18db44000 - 0x18db6afff AccountsUI arm64 <a7d2776eb1ad39d887a5e62c0292e597> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI
0x18db6c000 - 0x18db71fff AggregateDictionary arm64 <2f9120e6400835f08bd7bfd2d4ada020> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x18dd70000 - 0x18dda4fff AirPlaySupport arm64 <6f3dd0a70c643317b21ca301bd142257> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport
0x18dff0000 - 0x18e03afff AppSupport arm64 <f35ee13bec64354d9044e2a5ea519640> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x18e03c000 - 0x18e08ffff AppleAccount arm64 <267a2b98738333f099ccb095820590d6> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x18e198000 - 0x18e1e0fff AppleJPEG arm64 <8377453201ad3862b7b6182be4ac4342> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x18e1f4000 - 0x18e208fff ApplePushService arm64 <fc28105486c5380f95f8d52a3a3c2fac> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x18e20c000 - 0x18e215fff AppleSRP arm64 <7a5d169c15b83573a29f1c018c8ecbb8> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP
0x18e228000 - 0x18e233fff AssertionServices arm64 <52d911832bf9382d802961ea9d1614f9> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x18e234000 - 0x18e24ffff AssetsLibraryServices arm64 <5db6341939f63eaa86f0c0306e2b59c9> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x18e250000 - 0x18e27afff AssistantServices arm64 <4d30491ebb4f324d8a2d3910f3f5739e> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x18e2b4000 - 0x18e2b8fff BTLEAudioController arm64 <8539b6078e1b3c739d412842418188ed> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController
0x18e2bc000 - 0x18e2d8fff BackBoardServices arm64 <6ff3989d8caf3130aa41d0019ead5472> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x18e2e0000 - 0x18e31dfff BaseBoard arm64 <62044bafc2293567aec7797b25708b48> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x18e338000 - 0x18e33ffff BluetoothManager arm64 <2b1c765aab5a3ba6b6f8ded22ce99d6b> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x18e340000 - 0x18e370fff Bom arm64 <2724021b087139bcaa636d640e9b4127> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x18e40c000 - 0x18e414fff CacheDelete arm64 <81d93e7702c3390dbf003caa716dc3fb> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x18e468000 - 0x18e498fff CalendarFoundation arm64 <210e5342ce603b9887f0e10131df34a4> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x18e5d0000 - 0x18e5dafff CaptiveNetwork arm64 <8ba9d547383b3a7fba9a31cc361fc06a> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x18e5dc000 - 0x18e726fff Celestial arm64 <24aa1094177c3a5ead8cd4fa3369b83a> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x18e738000 - 0x18e753fff CertInfo arm64 <34bb9442ee1633238c1830d4ba2e7103> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo
0x18e754000 - 0x18e75afff CertUI arm64 <d540e6a6a1ab3b119b88d31509a2f390> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x18e8a4000 - 0x18e8c8fff ChunkingLibrary arm64 <ef3f4a4cae2d387b874e53eec51b37aa> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x18ecfc000 - 0x18edc0fff CloudPhotoLibrary arm64 <a7679e757e94373cb6c1f024e0f3b431> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x18ee20000 - 0x18ee22fff CommonAuth arm64 <be739a349719388087584ff4b16e0a0d> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x18ee24000 - 0x18ee36fff CommonUtilities arm64 <1cb495ce473a3127bb291cc541762fb3> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x18ee38000 - 0x18ee3cfff CommunicationsFilter arm64 <836ffdf2d1bf38948dc8ce6c2f8179e1> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x18eec4000 - 0x18eec9fff ConstantClasses arm64 <855d1ee3980637a1b48a47adf5327c35> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x18eecc000 - 0x18ef0afff ContentIndex arm64 <a2107dd376ac3e7da9261e74cec13881> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
0x18ef0c000 - 0x18ef10fff CoreAUC arm64 <bf359bb9dcc837f78745ec21c2983ad2> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x18ef44000 - 0x18efa4fff CoreDAV arm64 <e5ff66c9ce4239f7a81436aca6cae6dd> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x18efa8000 - 0x18efc7fff CoreDuet arm64 <f38d1f4e98f53778b1b9a404036dd90d> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x18efcc000 - 0x18efdefff CoreDuetDaemonProtocol arm64 <d7407f2a063d39139970e64968ff7b83> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x18efe8000 - 0x18efeafff CoreDuetDebugLogging arm64 <c794669b592d361d850e98c474076c01> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x18f170000 - 0x18f2a7fff CoreMediaStream arm64 <981a69f777193a8b82f1fa2111790019> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x18f2a8000 - 0x18f358fff CorePDF arm64 <cd828d67cd5a3f8f817e5578de264442> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x18f3cc000 - 0x18f3d7fff CoreRecents arm64 <07ba243dfb6d3686849128707aaee229> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x18f464000 - 0x18f488fff CoreServicesInternal arm64 <1a7d2fa9a1df316b8f974b8df3a3a407> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x18f6ec000 - 0x18f77efff CoreUI arm64 <2c327f9d33a0390a9e4eca6c3762e371> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x18f780000 - 0x18f7fcfff CoreUtils arm64 <b41c5bba90743d249a117bfcfb49d2cd> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x18f800000 - 0x18f806fff CrashReporterSupport arm64 <dc54f922fd9636bcb707444caca99c84> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x18f808000 - 0x18f80ffff DAAPKit arm64 <b631761d5d3c34e1a12ea2f07efa9055> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x18f810000 - 0x18f81bfff DCIMServices arm64 <4c460ddc57453c82b52960e45a70637c> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x18f81c000 - 0x18f86bfff DataAccess arm64 <a3b77691efff37218b48737250d0d0e0> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x18fac8000 - 0x18faeefff DataAccessExpress arm64 <50d5ab9c38ee3e69bd4da116bc7bd4f8> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x18fafc000 - 0x18fb18fff DataDetectorsCore arm64 <24f23c8aff76314d8ad25a94fa4705cf> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x18fb20000 - 0x18fb3cfff DataDetectorsUI arm64 <53ddecccd30638c9b209f66229eba9f5> /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
0x18fb40000 - 0x18fb47fff DataMigration arm64 <e0c839ae4aed387887ea9853c6c25682> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x18fb50000 - 0x18fb51fff DiagnosticLogCollection arm64 <fa41e1d5be703f8e80e8ff3316a49e3d> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x18fb54000 - 0x18fb74fff DictionaryServices arm64 <d4d267ee319135ccb3a6679497243088> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
0x18fb9c000 - 0x18fbc2fff EAP8021X arm64 <e6e05a22dbb1320690b65f4eb029d79e> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x18fcec000 - 0x18fceefff FTClientServices arm64 <1e686cf3c67a37ee8256de4034038d1d> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x18fcf0000 - 0x18fd22fff FTServices arm64 <d918c6224d4830cd817a0bdacc0a2bd9> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x18fd24000 - 0x190151fff FaceCore arm64 <a0f71a06ddb83c77b3b59257e4002445> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x190184000 - 0x190184fff FontServices arm64 <ee0991095b7e3183b4776c88a2f611e3> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x190188000 - 0x190267fff libFontParser.dylib arm64 <9002a342951f3cc98421946872538a41> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x190268000 - 0x190274fff libGSFontCache.dylib arm64 <0c92c17ccfd03da88fd356e758e17497> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x190384000 - 0x1903a4fff FrontBoardServices arm64 <0fcec11d993d3b30a5ef89f6bf0ad46a> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x190ed0000 - 0x190ee9fff GenerationalStorage arm64 <ef901d5502553db4992e914b9d6b9757> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x190eec000 - 0x1911a6fff GeoServices arm64 <e20d801831213e1184e2af1442e7b197> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1911a8000 - 0x1911bbfff GraphicsServices arm64 <b5078b39bd36372190e4ad5e7d991f68> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x191274000 - 0x1912dcfff Heimdal arm64 <0952108a44ec3da79eea080c300d7225> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x191394000 - 0x191429fff HomeSharing arm64 <adea973cf37b3830ab5f46da6e095c69> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x191494000 - 0x1914f6fff IDS arm64 <c3ab13565e513311805a3813291b9c27> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1914f8000 - 0x19151cfff IDSFoundation arm64 <5a05fb27e5083d09b5f289d7560edbee> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x19158c000 - 0x19164efff IMCore arm64 <1a1ef12a16163c8bb257192c3e3cb6a5> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x1916f8000 - 0x191768fff IMFoundation arm64 <c8aa1eec15b63d05831678746a299da0> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x191774000 - 0x191778fff IOAccelerator arm64 <b4ae4af121d83a928b8d0cfe36962f7a> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x191780000 - 0x191787fff IOMobileFramebuffer arm64 <ffee7fc53f5f3f2886cc97cab190381f> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x191788000 - 0x19178efff IOSurface arm64 <719f179613ae37b688ee169eb5ed46fc> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
0x191790000 - 0x191792fff IOSurfaceAccelerator arm64 <3fb692bcaed8321db9c674cf00c5f719> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x19184c000 - 0x191853fff IntlPreferences arm64 <1cba014916fa3c5f984e3a0c9f5bfb81> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x191854000 - 0x191896fff LanguageModeling arm64 <0f8255591fef33cdb8a91f460e678ccb> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x191924000 - 0x19196bfff MIME arm64 <a86fc4a77b8035428b8f6cc5ffb1d6e9> /System/Library/PrivateFrameworks/MIME.framework/MIME
0x19196c000 - 0x1919d5fff MMCS arm64 <cfbd5ad5d8b2301f941b5771aea45078> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x191a30000 - 0x191a3dfff MailServices arm64 <9072fc33768a3f569ea0bd79c8a7f3aa> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x191a80000 - 0x191b3dfff ManagedConfiguration arm64 <093d25f3da7d3310bc0f027d21758195> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x191b4c000 - 0x191b4dfff Marco arm64 <374e233c50c2373a8dc5ca0a817b12a4> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x191b50000 - 0x191bd6fff MediaControlSender arm64 <aef8a567c9cb3c529c9d471a7fecda1f> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender
0x191c8c000 - 0x191ca1fff MediaRemote arm64 <b54d94f44dcf3147ab669748e7fd1f19> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x191ca4000 - 0x191cb5fff MediaServices arm64 <46469813721c3f6193bbd7fbb4e0a5eb> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x191cb8000 - 0x191cd4fff MediaStream arm64 <4192ea8685bd39afb96fed206fa6471f> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x191d50000 - 0x191e4cfff Message arm64 <982014080efb3ca187aa0cc993e9818d> /System/Library/PrivateFrameworks/Message.framework/Message
0x191e58000 - 0x191e5bfff MessageSupport arm64 <1761532c47103f5092c043296744c01e> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x191e6c000 - 0x191e7bfff MobileAsset arm64 <9164537c500e345abf5970138aa9b1dd> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x191ea8000 - 0x191eb4fff MobileBluetooth arm64 <d698ec87311e3132b0de7ce0ddcd8fbb> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x191edc000 - 0x191ee5fff MobileIcons arm64 <cd577ec393b537bbab28fe4f672f4fe7> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x191ee8000 - 0x191ef1fff MobileInstallation arm64 <c3733052b8db3f23b36b50f706169cb5> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x191ef4000 - 0x191f03fff MobileKeyBag arm64 <3dbab843fac1356b9c669342cb4f20ba> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x191f40000 - 0x191f43fff MobileSystemServices arm64 <9b2bbc93fbb231baa08b41c6aee209ed> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x191f6c000 - 0x191f7dfff MobileWiFi arm64 <a85ec953124635a48c263a164c2ce560> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x191fcc000 - 0x1921a7fff MusicLibrary arm64 <52bf048b318e371ab1c61a5b9112715b> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x192274000 - 0x19227afff Netrb arm64 <b58a090c9a12346a9f4af0d22626f6f3> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x19227c000 - 0x192283fff NetworkStatistics arm64 <8d818200ba99385bbd69dad9dda0319d> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x192284000 - 0x1922a6fff Notes arm64 <698d570fbdb9362195fdb66aacfaf2d2> /System/Library/PrivateFrameworks/Notes.framework/Notes
0x1922b0000 - 0x1922b3fff OAuth arm64 <3049cf937f053793a4b97aa26375f1cb> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x192a88000 - 0x192ad6fff OpenCL arm64 <7350f5063e4232a1a3cc921e47de6ef5> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
0x192bf4000 - 0x192c1cfff PersistentConnection arm64 <b7044531bbf73fcf9b586269283bfb50> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x192dac000 - 0x193057fff PhotoLibraryServices arm64 <0ea2b6c7c4433417a115c3814803387d> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x193058000 - 0x193061fff PhotosFormats arm64 <35cfad94850636cc9078579196b81a69> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x193064000 - 0x1930b1fff PhysicsKit arm64 <625733e02bc3372ca473ac973020e32e> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1930b4000 - 0x1930cefff PlugInKit arm64 <cc8ba22bd61e32a5a80b083d5e0dd86e> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1930d0000 - 0x1930d8fff PowerLog arm64 <506bca8a5af033a68bbd5958c9f995a7> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x19332c000 - 0x1933ebfff Preferences arm64 <3f3d7c9fa8e730f087422321309c184d> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x1933ec000 - 0x193433fff PrintKit arm64 <2181399ad0d331e8934c69d4220f7bcc> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
0x193438000 - 0x1934f7fff ProofReader arm64 <377a2b68fdcf3fe3be30455084083eb5> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x1934f8000 - 0x19350bfff ProtectedCloudStorage arm64 <2472946aaf6b3b189d79c0492f24e291> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x19350c000 - 0x19351afff ProtocolBuffer arm64 <0a4f092c935c3f5291152d30a2e9e008> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x193558000 - 0x1935d6fff Quagga arm64 <a0e7e7857a69346ab1f5c4e065491469> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x193834000 - 0x1938d5fff SAObjects arm64 <7597eb6e1e253ddbbd70edf507e61315> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x193a88000 - 0x193aa7fff SpringBoardServices arm64 <5fac4d8fbdd43673bec6ae8b9624a0c1> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x193e9c000 - 0x193fe3fff StoreServices arm64 <a25f746c818a3e5e8e4db36a7bcbcb38> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1940c0000 - 0x1940c6fff SymptomReporter arm64 <031624973638381182fe4a16db316e67> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomReporter.framework/SymptomReporter
0x1940d4000 - 0x1940d7fff TCC arm64 <0dc32625c39b3087893e5da6ff7dd7b4> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x194128000 - 0x19416bfff TelephonyUtilities arm64 <1cb4e1e61c2e3d5580283cd1e3039be4> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x194f4c000 - 0x194f79fff TextInput arm64 <e1652f09112d3935bfa1d9bfc565b727> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x195050000 - 0x195129fff UIFoundation arm64 <402e5079593a32a8b49d604f4a1eedeb> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x195150000 - 0x195153fff UserFS arm64 <da16ebc138783ad7a4a1ed8d0b09bda7> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x1959a4000 - 0x1959c8fff VoiceServices arm64 <116b6fde28453423bd2983d14170dbb3> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x195a6c000 - 0x195a94fff WebBookmarks arm64 <fb8394570493371c850cdde82c85969d> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x195ab4000 - 0x1969dafff WebCore arm64 <0c8da31a7ecb37b083bd67e7726447b2> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1969dc000 - 0x196aaefff WebKitLegacy arm64 <d0b6b73ce448322eb6d3dd9027f0e224> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x196c7c000 - 0x196c83fff XPCKit arm64 <fb860221207438fdb53148328b798493> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
0x196c84000 - 0x196c8dfff XPCObjects arm64 <9eb286c27f9333be9f8ed58c733abd7b> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects
0x196ec0000 - 0x196eeafff iCalendar arm64 <36f60138b79e3dada1c790ff60bb86e0> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x196f18000 - 0x196f5afff iTunesStore arm64 <b4a3e5d1421c366eb17bedad7a232b2f> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x1978d4000 - 0x1978ddfff libAccessibility.dylib arm64 <8ab22dc86c0638b0889abecd9eb8ef2f> /usr/lib/libAccessibility.dylib
0x197b70000 - 0x197b8bfff libCRFSuite.dylib arm64 <a41a2f95f1ff30d9a4ab2d6145480db2> /usr/lib/libCRFSuite.dylib
0x197bcc000 - 0x197d03fff libFosl_dynamic.dylib arm64 <3013ac9596c03e458767997983ac758f> /usr/lib/libFosl_dynamic.dylib
0x197d24000 - 0x197d25fff libMobileCheckpoint.dylib arm64 <3a737eeafc17345cab56d72b55666cbb> /usr/lib/libMobileCheckpoint.dylib
0x197d28000 - 0x197d42fff libMobileGestalt.dylib arm64 <77de2524f3a1353c9d3d69c0eae234cc> /usr/lib/libMobileGestalt.dylib
0x197d44000 - 0x197d4dfff libMobileGestaltExtensions.dylib arm64 <c7c7467c62173754a89f19bcb78c26b2> /usr/lib/libMobileGestaltExtensions.dylib
0x197d74000 - 0x197d75fff libSystem.B.dylib arm64 <bb7dbbf6e1eb307da700a0d7b1bab1f4> /usr/lib/libSystem.B.dylib
0x197df8000 - 0x197e46fff libTelephonyUtilDynamic.dylib arm64 <a84c6f652ea63a52921b96b6185c531c> /usr/lib/libTelephonyUtilDynamic.dylib
0x197f70000 - 0x197f9afff libarchive.2.dylib arm64 <6e7ce417e487309c8acc744b1b6b523f> /usr/lib/libarchive.2.dylib
0x197f9c000 - 0x197f9cfff libassertion_extension.dylib arm64 <9d3b3adf5dde3ecb9a438a367d5b85d1> /usr/lib/libassertion_extension.dylib
0x197fdc000 - 0x197fecfff libbsm.0.dylib arm64 <6651c9abc7b6353c8343d7f0f4e09a23> /usr/lib/libbsm.0.dylib
0x197ff0000 - 0x198000fff libbz2.1.0.dylib arm64 <f6ec1b6a4719369aa059ee3269823a2d> /usr/lib/libbz2.1.0.dylib
0x198004000 - 0x19805afff libc++.1.dylib arm64 <c8e65982941e374c95463384e600181d> /usr/lib/libc++.1.dylib
0x19805c000 - 0x19807efff libc++abi.dylib arm64 <fd49f85cb61d31b582895366ea6c2d01> /usr/lib/libc++abi.dylib
0x198084000 - 0x198095fff libcmph.dylib arm64 <dca2c6c0bd65352b947d537395e23ab9> /usr/lib/libcmph.dylib
0x198098000 - 0x1980a0fff libcupolicy.dylib arm64 <1c1cb0caed4f3311bbae03d7e00e6bbc> /usr/lib/libcupolicy.dylib
0x1980dc000 - 0x1980f8fff libextension.dylib arm64 <e8ead22587533875b26071dda1330ce1> /usr/lib/libextension.dylib
0x198128000 - 0x19812dfff libheimdal-asn1.dylib arm64 <8a856e4415413a6db2e2a8b78fe378cc> /usr/lib/libheimdal-asn1.dylib
0x198130000 - 0x198223fff libiconv.2.dylib arm64 <3ebb30c258f43c0294bcdeebb48b3fc1> /usr/lib/libiconv.2.dylib
0x198224000 - 0x19840bfff libicucore.A.dylib arm64 <02e9eb5b92473df89af04da09371417a> /usr/lib/libicucore.A.dylib
0x198420000 - 0x198421fff liblangid.dylib arm64 <80e626200785352a8d5e98a061ca19b8> /usr/lib/liblangid.dylib
0x198424000 - 0x198430fff liblockdown.dylib arm64 <f53a3d2ac76330f7bd299be0a9206109> /usr/lib/liblockdown.dylib
0x198434000 - 0x19844dfff liblzma.5.dylib arm64 <717d1cd1e6f0343b859370862cce58d6> /usr/lib/liblzma.5.dylib
0x198824000 - 0x19883bfff libmis.dylib arm64 <130d691e68403ec2882abd44479e9891> /usr/lib/libmis.dylib
0x198884000 - 0x198a80fff libobjc.A.dylib arm64 <e6224d745a023588af8e5bb67498139a> /usr/lib/libobjc.A.dylib
0x198b68000 - 0x198b85fff libresolv.9.dylib arm64 <fd78cddab3e43bd9a7a6440273b15059> /usr/lib/libresolv.9.dylib
0x198bb8000 - 0x198c89fff libsqlite3.dylib arm64 <286839512b673f7c938aa79ac70bde15> /usr/lib/libsqlite3.dylib
0x198ce0000 - 0x198d12fff libtidy.A.dylib arm64 <2b69233bafd53bdaafa6d9b1767bbad5> /usr/lib/libtidy.A.dylib
0x198d14000 - 0x198d1dfff libtzupdate.dylib arm64 <f4e015552f4e354baae69d67893d8669> /usr/lib/libtzupdate.dylib
0x198d24000 - 0x198e12fff libxml2.2.dylib arm64 <dbcfe4d423bb3ae48174394f298ad244> /usr/lib/libxml2.2.dylib
0x198e14000 - 0x198e3dfff libxslt.1.dylib arm64 <f3770c5f8ac3313bbe4ef1258ebf5733> /usr/lib/libxslt.1.dylib
0x198e40000 - 0x198e51fff libz.1.dylib arm64 <2a347410b967358289e8256c913714de> /usr/lib/libz.1.dylib
0x198e54000 - 0x198e58fff libcache.dylib arm64 <d322f485769b3fd5a11bc2aff7265fdf> /usr/lib/system/libcache.dylib
0x198e5c000 - 0x198e68fff libcommonCrypto.dylib arm64 <6cb05550a33e392189c0d88e951f00f9> /usr/lib/system/libcommonCrypto.dylib
0x198e6c000 - 0x198e6ffff libcompiler_rt.dylib arm64 <65f2a15e126435769154e2a7b44b942e> /usr/lib/system/libcompiler_rt.dylib
0x198e70000 - 0x198e77fff libcopyfile.dylib arm64 <1f428d2df193398e9e72250952f08953> /usr/lib/system/libcopyfile.dylib
0x198e78000 - 0x198ecdfff libcorecrypto.dylib arm64 <c4022dca81eb3632a6d7f69bc6f083a1> /usr/lib/system/libcorecrypto.dylib
0x198ed0000 - 0x198ef6fff libdispatch.dylib arm64 <e19d74563485344485b6d4457a93e89d> /usr/lib/system/libdispatch.dylib
0x198ef8000 - 0x198efafff libdyld.dylib arm64 <7387fcdff0b93cbcab450356edc79b67> /usr/lib/system/libdyld.dylib
0x198efc000 - 0x198efcfff liblaunch.dylib arm64 <8224fcd7ddf93c0d81826478dfe9de27> /usr/lib/system/liblaunch.dylib
0x198f00000 - 0x198f05fff libmacho.dylib arm64 <cddfd20412643baeb9023095eb2cf29f> /usr/lib/system/libmacho.dylib
0x198f08000 - 0x198f09fff libremovefile.dylib arm64 <e8124da88b1131f2ac005b75d8559ca7> /usr/lib/system/libremovefile.dylib
0x198f0c000 - 0x198f21fff libsystem_asl.dylib arm64 <17448aec6f7d3498aebcabc8a1598c9a> /usr/lib/system/libsystem_asl.dylib
0x198f24000 - 0x198f25fff libsystem_blocks.dylib arm64 <f38b7145bed330d98d8d79b8362b03de> /usr/lib/system/libsystem_blocks.dylib
0x198f28000 - 0x198fa8fff libsystem_c.dylib arm64 <0fd40ab9115536e3843b8064b1748c7a> /usr/lib/system/libsystem_c.dylib
0x198fac000 - 0x198faefff libsystem_configuration.dylib arm64 <37655cc87bb3391b946955b0fbc4384a> /usr/lib/system/libsystem_configuration.dylib
0x198fb0000 - 0x198fb1fff libsystem_coreservices.dylib arm64 <a8e2019df4123295bf71800fa1bd73be> /usr/lib/system/libsystem_coreservices.dylib
0x198fb4000 - 0x198fc4fff libsystem_coretls.dylib arm64 <e837369c4d623fc7adb19a892b03aba8> /usr/lib/system/libsystem_coretls.dylib
0x198fc8000 - 0x198fd0fff libsystem_dnssd.dylib arm64 <18b39491d06c3fa18c810118f03143ee> /usr/lib/system/libsystem_dnssd.dylib
0x198fd4000 - 0x198ff5fff libsystem_info.dylib arm64 <72514f76b03335729f18da536331df97> /usr/lib/system/libsystem_info.dylib
0x198ff8000 - 0x199018fff libsystem_kernel.dylib arm64 <c9a63d5247363e37917b9202cd05b13f> /usr/lib/system/libsystem_kernel.dylib
0x19901c000 - 0x199038fff libsystem_m.dylib arm64 <5b5fb8f53a2a3ebd9696d92758148322> /usr/lib/system/libsystem_m.dylib
0x19903c000 - 0x199055fff libsystem_malloc.dylib arm64 <bb0250acb085340ea6689a755edc5515> /usr/lib/system/libsystem_malloc.dylib
0x199058000 - 0x19908ffff libsystem_network.dylib arm64 <2f8dd27634de3f66b15dc96981143ad0> /usr/lib/system/libsystem_network.dylib
0x199090000 - 0x199096fff libsystem_networkextension.dylib arm64 <fed7dcc5e8db37249addf5b14210492d> /usr/lib/system/libsystem_networkextension.dylib
0x199098000 - 0x1990a2fff libsystem_notify.dylib arm64 <4a9bcea2df8d351f987d0e9f84406427> /usr/lib/system/libsystem_notify.dylib
0x1990a4000 - 0x1990a8fff libsystem_platform.dylib arm64 <03902be9733b35d2b193cf8724a8d95a> /usr/lib/system/libsystem_platform.dylib
0x1990ac000 - 0x1990b4fff libsystem_pthread.dylib arm64 <ddb19a684b2d3281a81fb6688c7e5a78> /usr/lib/system/libsystem_pthread.dylib
0x1990b8000 - 0x1990bafff libsystem_sandbox.dylib arm64 <d8c82f4047333b93ae88ae4f71a1ce8c> /usr/lib/system/libsystem_sandbox.dylib
0x1990bc000 - 0x1990bffff libsystem_stats.dylib arm64 <e2b3982965873f27b542a1a81f212b5b> /usr/lib/system/libsystem_stats.dylib
0x1990c0000 - 0x1990c6fff libsystem_trace.dylib arm64 <122df0fd03b43a8f82ed69916c95524a> /usr/lib/system/libsystem_trace.dylib
0x1990c8000 - 0x1990cdfff libunwind.dylib arm64 <0c07617876a43cacbde6104a2b75f4f2> /usr/lib/system/libunwind.dylib
0x1990d0000 - 0x1990f3fff libxpc.dylib arm64 <a4f17798f3de3fbc85e3f569762f0eb9> /usr/lib/system/libxpc.dylib
Comments
Please note: Reports posted here will not necessarily be seen by Apple. All problems should be submitted at bugreport.apple.com before they are posted here. Please only post information for Radars that you have filed yourself, and please do not include Apple confidential information in your posts. Thank you!