Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xcode 12 / iOS 14 / image pick (single and multiple) / from image_picker #65995 #407

Closed
monsieurtanuki opened this issue Sep 23, 2020 · 55 comments
Labels
iOS Issue applies to iOS platform

Comments

@monsieurtanuki
Copy link

monsieurtanuki commented Sep 23, 2020

Describe the bug
cf. flutter/flutter#65995
I created a brand new project from scratch and I still get the following message:

Picker Unavailable
There was an error while preparing the picker.
Please try later again

Issue details

  1. Android Studio 4.0.1
  2. file_picker: ^2.0.1+1
  3. Xcode 12 / iOS 14
  4. tried on iOS Simulator iPhone 8 Plus, iPhone 11 Pro Max and iPad Pro (12.9-inch) - 4th generation
  5. same issue with FilePicker.platform.pickFiles(type: FileType.image) and FilePicker.platform.pickFiles(type: FileType.image, allowMultiple: true)
  6. A simple app from scratch

Screenshots and/or video

Screenshot

Simulator Screen Shot - iPhone 8 Plus - 2020-09-23 at 12 22 42

Flutter Version details

flutter doctor -v
[✓] Flutter (Channel stable, 1.20.4, on Mac OS X 10.15.5 19F101, locale fr-FR)
    • Flutter version 1.20.4 at /Users/fabricefontaine/development/flutter
    • Framework revision fba99f6cf9 (9 days ago), 2020-09-14 15:32:52 -0700
    • Engine revision d1bc06f032
    • Dart version 2.9.2

 
[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
    • Android SDK at /Users/fabricefontaine/Library/Android/sdk
    • Platform android-30, build-tools 30.0.2
    • Java binary at: /Applications/Android
      Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build
      1.8.0_242-release-1644-b3-6222593)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 12.0)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 12.0, Build version 12A7209
    • CocoaPods version 1.9.3

[✓] Android Studio (version 4.0)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin version 49.0.2
    • Dart plugin version 193.7547
    • Java version OpenJDK Runtime Environment (build
      1.8.0_242-release-1644-b3-6222593)

[✓] Connected device (1 available)
    • iPhone 8 Plus (mobile) • 755F3CBA-6DA9-4C91-B05A-2CD42DF86E65 • ios •
      com.apple.CoreSimulator.SimRuntime.iOS-14-0 (simulator)

• No issues found!
@monsieurtanuki monsieurtanuki added the new issue An issue that hasn't yet been seen from the maintainer label Sep 23, 2020
@miguelpruivo miguelpruivo added iOS Issue applies to iOS platform wip and removed new issue An issue that hasn't yet been seen from the maintainer labels Sep 23, 2020
@miguelpruivo
Copy link
Owner

I wasn't able to get this issue, but there was actually one issue with the picker for iOS 14 that I've already addressed. Would you mind to please check 2.0.1+2? Thank you!

@monsieurtanuki
Copy link
Author

I tried again with 2.0.1+2 but it didn't work: same message.
I also tried on another simulator: iPad Pro (12.9-inch) - 4th generation.
Maybe similar to https://developer.apple.com/forums/thread/659384

@miguelpruivo
Copy link
Owner

@monsieurtanuki theres yet too little information about this online. I can't seem to find a reliable example, I'll have to dig it a bit more.

@monsieurtanuki
Copy link
Author

Is there a way I or you can put extra print statements in your code in order to understand what's wrong?

@miguelpruivo
Copy link
Owner

@monsieurtanuki building with Xcode should be enough. You can put it from there (navigate through Pods until file_picker).

@monsieurtanuki
Copy link
Author

@miguelpruivo I don't know anything about Xcode / swift.
Could you point me to the right direction, I would like to do something like this in order to trace each step in flutter:

- (void) resolvePickMedia:(MediaType)type withMultiPick:(BOOL)multiPick withCompressionAllowed:(BOOL)allowCompression  {
 
    Print("Hi there!"); // something like that <<<

    if (@available(iOS 14, *)) {
        PHPickerConfiguration *config = [[PHPickerConfiguration alloc] init];
        config.filter = type == IMAGE ? [PHPickerFilter imagesFilter] : type == VIDEO ? [PHPickerFilter videosFilter] : [PHPickerFilter anyFilterMatchingSubfilters:@[[PHPickerFilter videosFilter], [PHPickerFilter imagesFilter]]];
        

@miguelpruivo
Copy link
Owner

miguelpruivo commented Sep 24, 2020

@monsieurtanuki it's not the easiest thing to do, you'll need to go through Pods (see screenshot) and add debug code there.

Captura de ecrã 2020-09-24, às 14 21 36

Since it's made with Objective-C you can't use print(), you'll have to do Log("Something");

If you want to print out variables you can do Log("My variable %@", foo);

@monsieurtanuki
Copy link
Author

@miguelpruivo I know that what I do has an impact on the actual executed code - I managed to add crashes here and there in Objective-C, but I cannot see where the Log is supposed to be printed. Not in the flutter "Run" tab obviously.

@miguelpruivo
Copy link
Owner

Captura de ecrã 2020-09-24, às 15 55 04

Crashes and logs are printed on the right window. Make sure it's visible.

@monsieurtanuki
Copy link
Author

@miguelpruivo I could find a right window, that stayed desperately blank (but black).
Life is short: if I started to learn flutter it's not to have to learn dev on iOS later on.
Plus, even if I manage one day to display my logs, that doesn't mean that something relevant will come out of it.
I pause for the moment. Thinking about rolling back to Xcode 11.

@miguelpruivo
Copy link
Owner

@monsieurtanuki rolling back will prevent you from building to iOS 14.

As I’m the only maintainer I have to take a further look into this on my off hours. I’m sorry for any inconvenience, I’ll do my best as soon as I can to fix this.

@monsieurtanuki
Copy link
Author

@miguelpruivo Oh, nothing personal. It's just that initially I developed apps on Android, then I wanted to develop apps on iOS too, and I literally spent (wasted?) months about that. And I was about to deliver a production version of my app this week.
I'm angry with iOS, and Apple in general.

Thanks for your library anyway, and I hope that very soon the issue will be fixed! And I know how frustrating it can be when someone reports a bug that you cannot reproduce ;)

@miguelpruivo
Copy link
Owner

This is an urgent issue, so I’ll try to fix it ASAP. Don’t worry. :)

@tneotia
Copy link

tneotia commented Sep 27, 2020

Any updates on the invalid path for picking an image? I'm using FileType.media to display an image widget and getting this error (which seems slightly different from issue #406 's error):

flutter: The following FileSystemException was thrown resolving an image codec:
flutter: Cannot open file, path =
flutter: '/Users/tanay/Library/Developer/CoreSimulator/Devices/E1360B1E-CCF0-4631-96FD-E5FC4C105875/data/Containers/Shared/AppGroup/06C1595B-83FD-4CA1-8503-97F861336B56/File Provider Storage/photospicker/version=1&uuid=CCAF61BC-7527-4D9F-8A7F-62183CDB33B0&mode=compatible.png' (OS
flutter: Error: No such file or directory, errno = 2)

Don't know what the version, uuid, and mode parameters mean/are there for but maybe it can help find the issue?

@miguelpruivo
Copy link
Owner

@tneotia this is still WIP, I’ll keep you updated.

@miguelpruivo
Copy link
Owner

Please, check #405 answer and let me know if it's working now.

@monsieurtanuki
Copy link
Author

@miguelpruivo The interface is slightly different, but I still cannot see any file:

Simulator Screen Shot - iPhone 8 Plus - 2020-09-28 at 15 27 00

And I can see pictures with the "Photos" app:

Simulator Screen Shot - iPhone 8 Plus - 2020-09-28 at 15 43 53

Could it be that with the new system you cannot see the pics on your iPhone, but only the ones in iCloud? (I don't use iCloud)

@tneotia
Copy link

tneotia commented Sep 28, 2020

@monsieurtanuki it seems that right now it isn't loading the photos picker... Is your filetype set to FileType.media? That's what I use to open just the image picker rather than files picker.

@miguelpruivo
Copy link
Owner

@monsieurtanuki what is the FileType that you are using? Have you tried FileType.image? Weird that with me it works perfectly, both on simulator and my iPhone.

@monsieurtanuki
Copy link
Author

Correction: what I've just described in my previous comment was without any file type (same as with FilePicker.platform.pickFiles(type: FileType.any)).

If I use FileType.image or FileType.media, I get the same "Picker Unavailable" as previously:

Simulator Screen Shot - iPhone 8 Plus - 2020-09-28 at 16 00 29

@tneotia
Copy link

tneotia commented Sep 28, 2020

That's strange... I haven't tested with the new branch but previously the picker was showing for me, just my app was unable to open the image from the path with the error I commented above. @miguelpruivo I will update you with my findings in 30min-1hr - I don't have a physical device so I can only test on simulator.

@miguelpruivo
Copy link
Owner

@monsieurtanuki using FileType.any opens document picker which does rely on iCloud, that's correct.

Using FileType.image or media will open gallery. Weird that you get Picker Unavailable. I can't seem to be able to replicate it. 😞

@monsieurtanuki
Copy link
Author

using FileType.any opens document picker which does rely on iCloud, that's correct.

@miguelpruivo Just curious: is that typical apple non-sense, that any does not include images that are on the smartphone but not in the cloud?

Using FileType.image or media will open gallery. Weird that you get Picker Unavailable. I can't seem to be able to replicate it. 😞

@tneotia said "it seems that right now it isn't loading the photos picker", which would match what I experience.
Currently trying with another simulator...

@miguelpruivo
Copy link
Owner

@monsieurtanuki Apple does not have a typical file explorer like Android. I mean, it actually does, it's the Files app that ships with iOS. However, it mostly relies on iCloud documents (or any other provider such GDrive, Dropbox etc.) and/or local documents if you already have saved there. You can't navigate thought directories and such, like on Android. So yes, you can assume that it being empty on the simulator is the most normal thing to see.

When I try with the plugin's example app and my own iPhone (iOS 14) it works properly (and I have more than 10k media on my iPhone). Could it be something else? Does that happen with the example app?

@BirjuVachhani
Copy link

@miguelpruivo This makes much more sense now. I'll try this and will surely let you know.

@BirjuVachhani
Copy link

BirjuVachhani commented Sep 29, 2020

@miguelpruivo T

@BirjuVachhani iOS 14 introduced a new framework that prevents users from being asked permission if privacy isn't compromised. This is, it uses a different process (native gallery) to let users pick whatever they want and then return the result to the Flutter app. This provides a better user experience than actually asking permissions if they aren't required. You can read more about it here.

Image Picker, on the other hand, is "running" from this as it requires a more complex implementation, so they are just preventing crashes from happening and keeping the old image controller (I've been following the thread as well).

Currently you are getting that exception because I haven't yet published a version fully functional, but you can give it a try by replacing your file_picker with:

file_picker:
    git:
      url: https://github.com/miguelpruivo/flutter_file_picker
      ref: fix/ios14-picker

Let me know if it worked for you.

@miguelpruivo This worked perfectly for me.

@miguelpruivo
Copy link
Owner

@BirjuVachhani good to know. I'll probably publish a new version with it later today.

@BirjuVachhani
Copy link

@miguelpruivo That sounds great. I have a production release tomorrow so I am really looking forward to it.

@osaxma
Copy link

osaxma commented Sep 29, 2020

Currently you are getting that exception because I haven't yet published a version fully functional, but you can give it a try by replacing your file_picker with:

file_picker:
    git:
      url: https://github.com/miguelpruivo/flutter_file_picker
      ref: fix/ios14-picker

Works like a charm!

(I tried it using FileType.image)

@knoonrx
Copy link

knoonrx commented Sep 29, 2020

@BirjuVachhani iOS 14 introduced a new framework that prevents users from being asked permission if privacy isn't compromised. This is, it uses a different process (native gallery) to let users pick whatever they want and then return the result to the Flutter app. This provides a better user experience than actually asking permissions if they aren't required. You can read more about it here.

Image Picker, on the other hand, is "running" from this as it requires a more complex implementation, so they are just preventing crashes from happening and keeping the old image controller (I've been following the thread as well).

Currently you are getting that exception because I haven't yet published a version fully functional, but you can give it a try by replacing your file_picker with:

file_picker:
    git:
      url: https://github.com/miguelpruivo/flutter_file_picker
      ref: fix/ios14-picker

Let me know if it worked for you.

Works 💯 %

@miguelpruivo
Copy link
Owner

Deployed with 2.0.6. You can now update your dependency to file_picker: 2.0.6.

@monsieurtanuki having your issue is still preventing me from closing this as it seems a bit different, however, couldn't find any possible way to replicate it. 😞 If you manage to create a simple project with all the steps, that'd be great!

@BirjuVachhani
Copy link

Deployed with 2.0.6. You can now update your dependency to file_picker: 2.0.6.

@monsieurtanuki having your issue is still preventing me from closing this as it seems a bit different, however, couldn't find any possible way to replicate it. 😞 If you manage to create a simple project with all the steps, that'd be great!

@miguelpruivo great work! Thanks a lot. I'll try it out asap...

@monsieurtanuki
Copy link
Author

@miguelpruivo I've created the simplest project: https://github.com/monsieurtanuki/picker_unavailable
If I click on the "+" button, I get the already mentioned "Picker Unavailable" message.

@miguelpruivo
Copy link
Owner

@monsieurtanuki thank you, all try that as soon as possible.

@BirjuVachhani
Copy link

@miguelpruivo I tested it and it works like a charm! ❤️

@osaxma
Copy link

osaxma commented Sep 30, 2020

Thanks @miguelpruivo for your time and effort.

Using version file_picker: 2.0.6 and works fine.

Side note about a possible bug in the iOS simulator:
I noticed that the iOS simulator has issues when selecting HDR images. The flutter_picker package will return no element found. Though the problem seems to be from the simulator. In iPhone 11 Max (iOS 14), when I try to edit an HDR image inside the Photos app, the app shows a black background or just crashes. Just in case someone runs into the same issue, check if the photo is editable inside the Photos app.

@miguelpruivo
Copy link
Owner

miguelpruivo commented Sep 30, 2020

@osaxma nice finding! Indeed I have noticed that HDR pictures from simulator can’t be loaded, but on physical device it worked just fine, so I ignored it, since I can assume it must be a simulator issue. But after your finding, it turns out it’s probably an iOS 14 issue when loading HDR assets (which is required when you edit in your photos app).

@miguelpruivo
Copy link
Owner

@monsieurtanuki with your sample, it showed briefly (1 second I'd say) the Picker unavailable message but then it loaded the content immediately.

It seems that there is some issue regarding PHPicker on iOS itself and it was also reported recently here.

I believe that if you remove the Xcode derived data and run a full clean, it should work properly (or in a different simulator).

@monsieurtanuki
Copy link
Author

@miguelpruivo I tried again and again, by cleaning, with a different Simulator, but I still get the "Picker Unavailable" message - and nothing more even one minute after.

Two remarks:

  1. Would that make sense for you to add a "legacy" parameter so that the developer can decide to use the "iOS13-" style?
  2. When cleaning my environment I saw a warning - could you have a look at it and tell me if you find it suspicious?
pod deintegrate && rm Podfile.lock && pod install
Deintegrating `Runner.xcodeproj`
Deleted 1 'Check Pods Manifest.lock' build phases.
Deleted 1 'Embed Pods Frameworks' build phases.
- Pods_Runner.framework
Deleting Pod file references from project
- Pods-Runner.debug.xcconfig
- Pods-Runner.release.xcconfig
- Pods-Runner.profile.xcconfig
Deleted 1 empty `Pods` groups from project.
Deleted 1 empty `Frameworks` groups from project.
Removing `Pods` directory.

Project has been deintegrated. No traces of CocoaPods left in project.
Note: The workspace referencing the Pods project still remains.
Analyzing dependencies
Downloading dependencies
Installing DKImagePickerController (4.3.2)
Installing DKPhotoGallery (0.0.17)
Installing Flutter (1.0.0)
Installing SDWebImage (5.8.3)
Installing SwiftyGif (5.3.0)
Installing file_picker (0.0.1)
Generating Pods project
Integrating client project
Pod installation complete! There are 2 dependencies from the Podfile and 6 total pods installed.

[!] CocoaPods did not set the base configuration of your project because your project already has a custom config set. In order for CocoaPods integration to work at all, please either set the base configurations of the target `Runner` to `Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig` or include the `Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig` in your build configuration (`Flutter/Release.xcconfig`).

@miguelpruivo
Copy link
Owner

@monsieurtanuki that warning is "normal" and it's always there unless a custom configuration is provided (from your app) but that isn't required.

Using iOS 13 style on iOS 14 could result in unexpected crashes (hence the image_picker issue — from iOS 14 and later, devs should use PHPicker which is more reliable and offers more options such as a search bar). However, you shouldn't and you can't get that issue. I'm surprised that you do. There must be something in your setup that's resulting in that but I didn't figure what yet because you seem to be the only one with that.

Do you have a real device where you can test?

@monsieurtanuki
Copy link
Author

@miguelpruivo OK for your comments about the warning message and the irrelevancy of iOS 13 settings on iOS 14.

I don't have an actual iPhone to test it on, though I know it's part of the sick Apple business model to force developers to buy a Mac and an iPhone. I managed to get a Mac from a friend, I managed to use a friend's iPad for the once-in-a-lifetime account set-up in Xcode, but that's it for me.
And even if I managed to borrow temporarily an iPad for tests about this current issue, I would need one later for everything else in my app that needs the selected picture.

Obviously you cannot do anything about iOS 14 bugs. Thanks for your help anyway, and feel free to close this issue.

@miguelpruivo
Copy link
Owner

miguelpruivo commented Oct 2, 2020

@monsieurtanuki I'm sorry that I couldn't help you much further than this. 😞 Let me know if you come up with a solution as I'm interested to know what could be potentially causing it.

If anyone experience the same issue reported by OP, please feel free to reopen this.

Thank you!

@tneotia
Copy link

tneotia commented Oct 4, 2020

@miguelpruivo I hate to reopen this but I pushed a build to TestFlight today and my tester had a crash when opening from gallery. It's super long, but here it is:

Incident Identifier: 76A98804-AF61-4159-9CDF-DD1EC5C53459
Hardware Model: iPhone12,5
Process: Runner [48401]
Path: /private/var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Runner
Identifier: org.thelatinschool.canvasgrades
Version: 29 (2.3.0)
AppStoreTools: 12A7207
AppVariant: 1:iPhone12,5:14
Beta: YES
Code Type: ARM-64 (Native)
Role: Foreground
Parent Process: launchd [1]
Coalition: org.thelatinschool.canvasgrades [2540]

Date/Time: 2020-10-04 02:43:50.1257 +0300
Launch Time: 2020-10-04 02:34:32.8468 +0300
OS Version: iPhone OS 14.0.1 (18A393)
Release Type: User
Baseband Version: 2.00.01
Report Version: 104

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000010
VM Region Info: 0x10 is not in any region. Bytes before following region: 4345184240
REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL
UNUSED SPACE AT START
--->
__TEXT 102fe4000-102fe8000 [ 16K] r-x/r-x SM=COW ...er.app/Runner

Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [48401]
Triggered by Thread: 16

Thread 0 name:
Thread 0:
0 libsystem_kernel.dylib 0x00000001c9defdd0 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001c9def184 mach_msg + 76 (mach_msg.c:103)
2 CoreFoundation 0x000000019de5ecf8 __CFRunLoopServiceMachPort + 380 (CFRunLoop.c:2641)
3 CoreFoundation 0x000000019de58ea8 __CFRunLoopRun + 1216 (CFRunLoop.c:2974)
4 CoreFoundation 0x000000019de584bc CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
5 GraphicsServices 0x00000001b48dd820 GSEventRunModal + 164 (GSEvent.c:2259)
6 UIKitCore 0x00000001a07fc734 -[UIApplication _run] + 1072 (UIApplication.m:3270)
7 UIKitCore 0x00000001a0801e10 UIApplicationMain + 168 (UIApplication.m:4739)
8 Runner 0x0000000102fe9a20 main + 64 (AppDelegate.swift:6)
9 libdyld.dylib 0x000000019db1fe60 start + 4

Thread 1 name:
Thread 1:
0 libsystem_kernel.dylib 0x00000001c9defdd0 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001c9def184 mach_msg + 76 (mach_msg.c:103)
2 CoreFoundation 0x000000019de5ecf8 __CFRunLoopServiceMachPort + 380 (CFRunLoop.c:2641)
3 CoreFoundation 0x000000019de58ea8 __CFRunLoopRun + 1216 (CFRunLoop.c:2974)
4 CoreFoundation 0x000000019de584bc CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
5 Foundation 0x000000019f0d5e30 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 232 (NSRunLoop.m:374)
6 Foundation 0x000000019f0d5d08 -[NSRunLoop(NSRunLoop) runUntilDate:] + 92 (NSRunLoop.m:421)
7 UIKitCore 0x00000001a08ace94 -[UIEventFetcher threadMain] + 516 (UIEventFetcher.m:834)
8 Foundation 0x000000019f2400f0 NSThread__start + 864 (NSThread.m:724)
9 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
10 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 2 name:
Thread 2:
0 libsystem_pthread.dylib 0x00000001e5440610 pthread_mutex_unlock + 32 (pthread_mutex.c:1565)
1 Flutter 0x0000000103dc1d44 0x10383c000 + 5791044
2 Flutter 0x0000000103b5b82c 0x10383c000 + 3274796
3 Flutter 0x0000000103be9eb0 0x10383c000 + 3858096
4 Flutter 0x0000000103d07a30 0x10383c000 + 5028400
5 App 0x000000010a80617c Precompiled_Stub_CallAutoScopeNative + 80
6 App 0x000000010a8ae45c Precompiled_PictureRecorder__constructor_16065589_2789 + 48
7 App 0x000000010a96ba74 Precompiled_PaintingContext__startRecording_467266271_5993 + 108
8 App 0x000000010a96b9dc Precompiled_PaintingContext_get_canvas_5992 + 44
9 App 0x000000010a96a650 Precompiled_RenderEditable__paintContents_457245603_5987 + 488
10 App 0x000000010aa49710 Precompiled_RenderEditable_paint_9218 + 352
11 App 0x000000010a8adb74 Precompiled_RenderObject__paintWithContext_467266271_2772 + 96
12 App 0x000000010a8adaf8 Precompiled_PaintingContext_paintChild_2771 + 128
13 App 0x000000010a8ada58 Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_471160605_paint_2770 + 64
14 App 0x000000010a8adb74 Precompiled_RenderObject__paintWithContext_467266271_2772 + 96
15 App 0x000000010a8adaf8 Precompiled_PaintingContext_paintChild_2771 + 128
16 App 0x000000010a8ada58 Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_471160605_paint_2770 + 64
17 App 0x000000010a99c7fc Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_471160605_paint_paint_6889 + 192
18 App 0x000000010a96dd64 Precompiled_PaintingContext_pushLayer_6020 + 312
19 App 0x000000010aa47d88 Precompiled_RenderLeaderLayer_paint_9205 + 352
20 App 0x000000010a8adb74 Precompiled_RenderObject__paintWithContext_467266271_2772 + 96
21 App 0x000000010a8adaf8 Precompiled_PaintingContext_paintChild_2771 + 128
22 App 0x000000010a8ada58 Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_471160605_paint_2770 + 64
23 App 0x000000010a8adb74 Precompiled_RenderObject__paintWithContext_467266271_2772 + 96
24 App 0x000000010a8adaf8 Precompiled_PaintingContext_paintChild_2771 + 128
25 App 0x000000010a8ada58 Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_471160605_paint_2770 + 64
26 App 0x000000010a8adb74 Precompiled_RenderObject__paintWithContext_467266271_2772 + 96
27 App 0x000000010a8adaf8 Precompiled_PaintingContext_paintChild_2771 + 128
28 App 0x000000010a8ada58 Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_471160605_paint_2770 + 64
29 App 0x000000010a8adb74 Precompiled_RenderObject__paintWithContext_467266271_2772 + 96
30 App 0x000000010a8adaf8 Precompiled_PaintingContext_paintChild_2771 + 128
31 App 0x000000010a8ada58 Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_471160605_paint_2770 + 64
32 App 0x000000010a8adb74 Precompiled_RenderObject__paintWithContext_467266271_2772 + 96
33 App 0x000000010a8adaf8 Precompiled_PaintingContext_paintChild_2771 + 128
34 App 0x000000010a8ada58 Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_471160605_paint_2770 + 64
35 App 0x000000010a8adb74 Precompiled_RenderObject__paintWithContext_467266271_2772 + 96
36 App 0x000000010a8adaf8 Precompiled_PaintingContext_paintChild_2771 + 128
37 App 0x000000010a8ada58 Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_471160605_paint_2770 + 64
38 App 0x000000010a8adb74 Precompiled_RenderObject__paintWithContext_467266271_2772 + 96
39 App 0x000000010a8ae0f0 Precompiled_PaintingContext__repaintCompositedChild_467266271_2779 + 292
40 App 0x000000010a9a9eb4 Precompiled_PipelineOwner_flushPaint_7139 + 448
41 App 0x000000010a9a9c00 Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_545399801_drawFrame_7137 + 132
42 App 0x000000010a9a9800 Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_545399801_drawFrame_7133 + 192
43 App 0x000000010a9b136c Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_545399801__handlePersistentFrameCallback_452452173_7246 + 32
44 App 0x000000010a9b132c Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_545399801__handlePersistentFrameCallback_452452173__h... + 120
45 App 0x000000010a89169c Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_545399801__invokeFrameCallback_493222615_2379 + 84
46 App 0x000000010a891580 Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_545399801_handleDrawFrame_2378 + 612
47 App 0x000000010a891300 Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_545399801__handleDrawFrame_493222615_2377 + 64
48 App 0x000000010a8912a0 Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_545399801__handleDrawFrame_493222615__handleDrawFrame_493222615_2376 + 68
49 App 0x000000010a813ce4 Precompiled_____rootRun_4048458_221 + 208
50 App 0x000000010a813f84 Precompiled_____rootRun_4048458__rootRun_4048458_223 + 464
51 App 0x000000010abccab8 Precompiled__CustomZone_4048458_run_15236 + 184
52 App 0x000000010abcee2c Precompiled__CustomZone_4048458_runGuarded_15294 + 52
53 App 0x000000010a9c5d2c Precompiled_____invoke_16065589_7568 + 156
54 App 0x000000010a9c6714 Precompiled_____drawFrame_16065589_7581 + 72
55 App 0x000000010a805f78 Precompiled_Stub_InvokeDartCode + 268
56 Flutter 0x0000000103cf330c 0x10383c000 + 4944652
57 Flutter 0x0000000103dd16e8 0x10383c000 + 5854952
58 Flutter 0x0000000103bf3624 0x10383c000 + 3896868
59 Flutter 0x0000000103b360d0 0x10383c000 + 3121360
60 Flutter 0x000000010386b134 0x10383c000 + 192820
61 Flutter 0x000000010387746c 0x10383c000 + 242796
62 Flutter 0x00000001038793e0 0x10383c000 + 250848
63 CoreFoundation 0x000000019de60050 CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION + 32 (CFRunLoop.c:1807)
64 CoreFoundation 0x000000019de5fc50 __CFRunLoopDoTimer + 1064 (CFRunLoop.c:2415)
65 CoreFoundation 0x000000019de5f0c4 __CFRunLoopDoTimers + 328 (CFRunLoop.c:2575)
66 CoreFoundation 0x000000019de59178 __CFRunLoopRun + 1936 (CFRunLoop.c:3090)
67 CoreFoundation 0x000000019de584bc CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
68 Flutter 0x00000001038792bc 0x10383c000 + 250556
69 Flutter 0x0000000103878c44 0x10383c000 + 248900
70 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
71 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 3 name:
Thread 3:
0 libsystem_kernel.dylib 0x00000001c9defdd0 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001c9def184 mach_msg + 76 (mach_msg.c:103)
2 CoreFoundation 0x000000019de5ecf8 __CFRunLoopServiceMachPort + 380 (CFRunLoop.c:2641)
3 CoreFoundation 0x000000019de58ea8 __CFRunLoopRun + 1216 (CFRunLoop.c:2974)
4 CoreFoundation 0x000000019de584bc CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
5 Flutter 0x00000001038792bc 0x10383c000 + 250556
6 Flutter 0x0000000103878c44 0x10383c000 + 248900
7 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
8 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 4 name:
Thread 4:
0 libsystem_kernel.dylib 0x00000001c9defdd0 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001c9def184 mach_msg + 76 (mach_msg.c:103)
2 CoreFoundation 0x000000019de5ecf8 __CFRunLoopServiceMachPort + 380 (CFRunLoop.c:2641)
3 CoreFoundation 0x000000019de58ea8 __CFRunLoopRun + 1216 (CFRunLoop.c:2974)
4 CoreFoundation 0x000000019de584bc CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
5 Flutter 0x00000001038792bc 0x10383c000 + 250556
6 Flutter 0x0000000103878c44 0x10383c000 + 248900
7 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
8 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 5 name:
Thread 5:
0 libsystem_kernel.dylib 0x00000001c9e1375c __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001e543e550 _pthread_cond_wait + 1192 (pthread_cond.c:636)
2 libc++.1.dylib 0x00000001b1ffac8c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 28 (__threading_support:390)
3 Flutter 0x0000000103873918 0x10383c000 + 227608
4 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
5 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 6 name:
Thread 6:
0 libsystem_kernel.dylib 0x00000001c9e1375c __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001e543e550 _pthread_cond_wait + 1192 (pthread_cond.c:636)
2 libc++.1.dylib 0x00000001b1ffac8c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 28 (__threading_support:390)
3 Flutter 0x0000000103873918 0x10383c000 + 227608
4 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
5 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 7 name:
Thread 7:
0 libsystem_kernel.dylib 0x00000001c9e1375c __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001e543e550 _pthread_cond_wait + 1192 (pthread_cond.c:636)
2 libc++.1.dylib 0x00000001b1ffac8c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 28 (__threading_support:390)
3 Flutter 0x0000000103873918 0x10383c000 + 227608
4 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
5 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 8 name:
Thread 8:
0 libsystem_kernel.dylib 0x00000001c9e1375c __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001e543e550 _pthread_cond_wait + 1192 (pthread_cond.c:636)
2 libc++.1.dylib 0x00000001b1ffac8c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 28 (__threading_support:390)
3 Flutter 0x0000000103873918 0x10383c000 + 227608
4 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
5 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 9 name:
Thread 9:
0 libsystem_kernel.dylib 0x00000001c9e1375c __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001e543e550 _pthread_cond_wait + 1192 (pthread_cond.c:636)
2 libc++.1.dylib 0x00000001b1ffac8c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 28 (__threading_support:390)
3 Flutter 0x0000000103873918 0x10383c000 + 227608
4 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
5 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 10 name:
Thread 10:
0 libsystem_kernel.dylib 0x00000001c9e1375c __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001e543e550 _pthread_cond_wait + 1192 (pthread_cond.c:636)
2 libc++.1.dylib 0x00000001b1ffac8c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 28 (__threading_support:390)
3 Flutter 0x0000000103873918 0x10383c000 + 227608
4 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
5 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 11 name:
Thread 11:
0 libsystem_kernel.dylib 0x00000001c9e154e4 kevent + 8
1 Flutter 0x0000000103bf7bcc 0x10383c000 + 3914700
2 Flutter 0x0000000103c25bd8 0x10383c000 + 4103128
3 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
4 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 12 name:
Thread 12:
0 libsystem_kernel.dylib 0x00000001c9defdd0 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001c9def184 mach_msg + 76 (mach_msg.c:103)
2 Runner 0x000000010300b0f0 FIRCLSMachExceptionReply + 100 (FIRCLSMachException.c:260)
3 Runner 0x000000010300b0f0 FIRCLSMachExceptionServer + 968 (FIRCLSMachException.c:178)
4 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
5 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 13 name:
Thread 13:
0 libsystem_kernel.dylib 0x00000001c9e1375c __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001e543e550 _pthread_cond_wait + 1192 (pthread_cond.c:636)
2 libc++.1.dylib 0x00000001b1ffac8c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 28 (__threading_support:390)
3 JavaScriptCore 0x00000001a7f02188 void std::__1::condition_variable_any::wait<std::__1::unique_lockbmalloc::Mutex >(std::__1::unique_lockbmalloc::Mutex&) + 108 (condition_variable:203)
4 JavaScriptCore 0x00000001a7f06728 bmalloc::Scavenger::threadRunLoop() + 196 (condition_variable:212)
5 JavaScriptCore 0x00000001a7f06364 bmalloc::Scavenger::threadEntryPoint(bmalloc::Scavenger*) + 16 (Scavenger.cpp:395)
6 JavaScriptCore 0x00000001a7f07828 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void ()(bmalloc::Scavenger), bmalloc::Scaveng... + 48 (type_traits:3545)
7 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
8 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 14 name:
Thread 14:
0 libsystem_kernel.dylib 0x00000001c9defdd0 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001c9def184 mach_msg + 76 (mach_msg.c:103)
2 CoreFoundation 0x000000019de5ecf8 __CFRunLoopServiceMachPort + 380 (CFRunLoop.c:2641)
3 CoreFoundation 0x000000019de58ea8 __CFRunLoopRun + 1216 (CFRunLoop.c:2974)
4 CoreFoundation 0x000000019de584bc CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242)
5 CFNetwork 0x000000019e711050 +[__CFN_CoreSchedulingSetRunnable _run:] + 572 (CoreSchedulingSet.mm:1374)
6 Foundation 0x000000019f2400f0 NSThread__start + 864 (NSThread.m:724)
7 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
8 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 15:
0 libsystem_pthread.dylib 0x00000001e5443774 start_wqthread + 0

Thread 16 name:
Thread 16 Crashed:
0 file_picker 0x00000001044bd018 -[FilePickerPlugin handleResult:] + 220 (FilePickerPlugin.m:271)
1 file_picker 0x00000001044bd014 -[FilePickerPlugin handleResult:] + 216 (FilePickerPlugin.m:271)
2 libdispatch.dylib 0x000000019dadefd0 _dispatch_call_block_and_release + 32 (init.c:1454)
3 libdispatch.dylib 0x000000019dae0ac8 _dispatch_client_callout + 20 (object.m:559)
4 libdispatch.dylib 0x000000019dae3a10 _dispatch_queue_override_invoke + 692 (inline_internal.h:2548)
5 libdispatch.dylib 0x000000019daf1104 _dispatch_root_queue_drain + 356 (inline_internal.h:2589)
6 libdispatch.dylib 0x000000019daf18e8 _dispatch_worker_thread2 + 116 (queue.c:6766)
7 libsystem_pthread.dylib 0x00000001e543c8cc _pthread_wqthread + 216 (pthread.c:2206)
8 libsystem_pthread.dylib 0x00000001e544377c start_wqthread + 8

Thread 17:
0 libsystem_pthread.dylib 0x00000001e5443774 start_wqthread + 0

Thread 18:
0 libsystem_pthread.dylib 0x00000001e5443774 start_wqthread + 0

Thread 19 name:
Thread 19:
0 libsystem_kernel.dylib 0x00000001c9e1375c __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001e543e57c _pthread_cond_wait + 1236 (pthread_cond.c:640)
2 Flutter 0x0000000103d41a7c 0x10383c000 + 5266044
3 Flutter 0x0000000103d8b440 0x10383c000 + 5567552
4 Flutter 0x0000000103d413a4 0x10383c000 + 5264292
5 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
6 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 20:
0 libsystem_pthread.dylib 0x00000001e5443774 start_wqthread + 0

Thread 21 name:
Thread 21:
0 libsystem_kernel.dylib 0x00000001c9e1375c __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001e543e57c _pthread_cond_wait + 1236 (pthread_cond.c:640)
2 Flutter 0x0000000103d41a7c 0x10383c000 + 5266044
3 Flutter 0x0000000103d8b440 0x10383c000 + 5567552
4 Flutter 0x0000000103d413a4 0x10383c000 + 5264292
5 libsystem_pthread.dylib 0x00000001e543aca8 _pthread_start + 320 (pthread.c:880)
6 libsystem_pthread.dylib 0x00000001e5443788 thread_start + 8

Thread 16 crashed with ARM Thread State (64-bit):
x0: 0x0000000282735920 x1: 0x00000001e7d8831e x2: 0x000000016cea2d00 x3: 0x000000016cea2d40
x4: 0x0000000000000010 x5: 0x0000000000000073 x6: 0x0034003600360032 x7: 0x0000000000000001
x8: 0x000000016cea30e0 x9: 0x0000000000000001 x10: 0x02000001fb331461 x11: 0x03000001fb331461
x12: 0x0000000000750700 x13: 0x04000001fb331461 x14: 0x00000000bf223000 x15: 0x00000001fb331460
x16: 0x00000001b1f7b9c4 x17: 0x000000019ddc6514 x18: 0x0000000000000000 x19: 0x0000000280b18dc0
x20: 0x00000002826c6970 x21: 0x0000000000000000 x22: 0x0000000282735920 x23: 0x00000002826c6970
x24: 0x0000000000000000 x25: 0x00000001fb8ec1c4 x26: 0x00000000000005ff x27: 0x00000001fb3303c0
x28: 0x0000000002ffffff fp: 0x000000016cea2e70 lr: 0x00000001044bd014
sp: 0x000000016cea2e30 pc: 0x00000001044bd018 cpsr: 0x60000000
esr: 0x92000006 (Data Abort) byte read Translation fault

Binary Images:
0x102fe4000 - 0x1031d3fff Runner arm64 /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Runner
0x1032fc000 - 0x10335bfff Alamofire arm64 /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/Alamofire.framework/Alamofire
0x103444000 - 0x103457fff FBLPromises arm64 /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/FBLPromises.framework/FBLPromises
0x10347c000 - 0x103487fff GoogleToolboxForMac arm64 <9b0895e8456f3d5bb5026a13e76177cc> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/GoogleToolboxForMac.framework/GoogleToolboxForMac
0x1034a0000 - 0x1034a7fff device_info arm64 /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/device_info.framework/device_info
0x1034b8000 - 0x1034bffff path_provider arm64 <7441fcc43dbc3507a2d1ea072071658c> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/path_provider.framework/path_provider
0x1034d0000 - 0x10353ffff dyld arm64e <0edb2835e9a8365187487d336708cfec> /usr/lib/dyld
0x1035c0000 - 0x10361ffff DKImagePickerController arm64 <2420e2f3855e375792108b1b338f206a> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/DKImagePickerController.framework/DKImagePickerController
0x10372c000 - 0x103777fff DKPhotoGallery arm64 /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/DKPhotoGallery.framework/DKPhotoGallery
0x10383c000 - 0x103edffff Flutter arm64 <69e39d2c0321356899c0b26fb71147fd> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/Flutter.framework/Flutter
0x1041d0000 - 0x1041f7fff GTMSessionFetcher arm64 /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher
0x10423c000 - 0x10425bfff GoogleUtilities arm64 /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/GoogleUtilities.framework/GoogleUtilities
0x104294000 - 0x1042e3fff Protobuf arm64 <0611b0dbd41f339280716faf0dc53dc1> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/Protobuf.framework/Protobuf
0x104390000 - 0x1043d7fff SDWebImage arm64 <86b7c1d0d73c32abb2d179983170a361> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/SDWebImage.framework/SDWebImage
0x104478000 - 0x10448bfff SwiftyGif arm64 <25101942b37c333d90e445f98cc20612> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/SwiftyGif.framework/SwiftyGif
0x1044b4000 - 0x1044c3fff file_picker arm64 <322d8fb0fb31397090292cda855306ef> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/file_picker.framework/file_picker
0x1044dc000 - 0x1044ebfff flutter_email_sender arm64 /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/flutter_email_sender.framework/flutter_email_sender
0x104504000 - 0x10458bfff flutter_inappwebview arm64 /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/flutter_inappwebview.framework/flutter_inappwebview
0x104684000 - 0x10468ffff image_picker arm64 <76c6f96b30383b6495ca0d1e9ec0996f> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/image_picker.framework/image_picker
0x1046a8000 - 0x1046fffff libwebp arm64 <634c1777cc333b8a9f277be35ae780d6> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/libwebp.framework/libwebp
0x104754000 - 0x10475ffff nanopb arm64 <3f2a6a57b81e306dab2de53f7463972c> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/nanopb.framework/nanopb
0x104770000 - 0x10477bfff open_file arm64 <01e775ea8e083b9599044804d9dd3b74> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/open_file.framework/open_file
0x10478c000 - 0x104797fff rate_my_app arm64 <846fc1e3c5ca3fee8ddee23bcb9c86d7> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/rate_my_app.framework/rate_my_app
0x1047b4000 - 0x1047bbfff screen arm64 <364beb2f17a637c79c2c5c1c6f11b37d> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/screen.framework/screen
0x1047cc000 - 0x1047d3fff shared_preferences arm64 <19e42a5b2fe83860954d66a7b26f9138> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/shared_preferences.framework/shared_preferences
0x1047e4000 - 0x1047ebfff uni_links arm64 <842cb6734f4f30379edbb5266a3a95c0> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/uni_links.framework/uni_links
0x1047fc000 - 0x104807fff url_launcher arm64 <7a2aa3a7c62b3019bf78da0e3bbacea7> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/url_launcher.framework/url_launcher
0x10481c000 - 0x10482bfff video_player arm64 /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/video_player.framework/video_player
0x104848000 - 0x10484ffff video_thumbnail arm64 /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/video_thumbnail.framework/video_thumbnail
0x104860000 - 0x104867fff wakelock arm64 <87f0cb59dd93300598b6e59075a04464> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/wakelock.framework/wakelock
0x104878000 - 0x104887fff webview_flutter arm64 <73636f5a0f0d38188aa35dfa11a7912a> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/webview_flutter.framework/webview_flutter
0x104b68000 - 0x104b73fff libobjc-trampolines.dylib arm64e <9c4daf11088c3f588effdd33ae00ee07> /usr/lib/libobjc-trampolines.dylib
0x10a800000 - 0x10b283fff App arm64 <95243dc73e8c3f12894a93d015079000> /var/containers/Bundle/Application/15763CAE-BDDB-4F7E-8E7C-B93B7D29FE40/Runner.app/Frameworks/App.framework/App
0x10ffb8000 - 0x10ffbbfff FileProviderOverride arm64e /System/Library/Frameworks/FileProvider.framework/OverrideBundles/FileProviderOverride.bundle/FileProviderOverride
0x111704000 - 0x111707fff CloudDocsFileProvider arm64e <7559041c26e335958f13a5a3cb8a02f5> /System/Library/Frameworks/FileProvider.framework/OverrideBundles/CloudDocsFileProvider.bundle/CloudDocsFileProvider
0x19dadd000 - 0x19db1efff libdispatch.dylib arm64e <8e662f82b1e43e7ea37618e9755a8f51> /usr/lib/system/libdispatch.dylib
0x19db1f000 - 0x19db58fff libdyld.dylib arm64e <90a4e82e250c35e38b2d51d6d8b1119b> /usr/lib/system/libdyld.dylib
0x19db59000 - 0x19ddc0fff libicucore.A.dylib arm64e <9a22d83439b03852800b4f1c22d96f30> /usr/lib/libicucore.A.dylib
0x19ddc1000 - 0x19e174fff CoreFoundation arm64e <472c9193115d34cdad1d0e7e091c9432> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x19e175000 - 0x19e319fff CoreServices arm64e <5f08c7be8a043950b50a455075613670> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x19e31a000 - 0x19e361fff WirelessDiagnostics arm64e /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x19e362000 - 0x19e3dbfff SystemConfiguration arm64e <560fcc9dd59f3fee9dbb26782474f21f> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x19e3dc000 - 0x19e4cdfff CoreTelephony arm64e <3b124b5cbc0e3191abecff20e050cb2c> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x19e4ce000 - 0x19e95bfff CFNetwork arm64e <81f1c72300083684a8f93eac348cb8e6> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x19e95c000 - 0x19f057fff libnetwork.dylib arm64e <57cc220061cf38809bbce21ae207e1d8> /usr/lib/libnetwork.dylib
0x19f058000 - 0x19f0cdfff Accounts arm64e <21e6a82c35af37758738eb166d2516f9> /System/Library/Frameworks/Accounts.framework/Accounts
0x19f0ce000 - 0x19f37cfff Foundation arm64e <095c09dd64363270b062a150203fdeed> /System/Library/Frameworks/Foundation.framework/Foundation
0x19f37d000 - 0x19f6d6fff ImageIO arm64e <251bb16754253a5f81d10c6d99c8078e> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x19f6d7000 - 0x19f6effff libCGInterfaces.dylib arm64e <23f8849201973c1c8079ebd10361cc21> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x19f6f0000 - 0x19fc7efff CoreGraphics arm64e /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x19fc7f000 - 0x1a10b9fff UIKitCore arm64e <47154c6d47df3abba15256b159b014e4> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1a10ba000 - 0x1a10d7fff libAccessibility.dylib arm64e /usr/lib/libAccessibility.dylib
0x1a10d8000 - 0x1a1356fff QuartzCore arm64e /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x1a1357000 - 0x1a13bffff BackBoardServices arm64e /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1a13c0000 - 0x1a144afff TextInput arm64e /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1a144b000 - 0x1a14b2fff libusrtcp.dylib arm64e <88fb5994222e34218e552fe1ca1df6ca> /usr/lib/libusrtcp.dylib
0x1a14b3000 - 0x1a1855fff AppleMediaServices arm64e /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x1a1856000 - 0x1a19cffff libswiftFoundation.dylib arm64e /usr/lib/swift/libswiftFoundation.dylib
0x1a19d0000 - 0x1a1dfbfff libswiftCore.dylib arm64e /usr/lib/swift/libswiftCore.dylib
0x1a1dfc000 - 0x1a1e11fff UIKitServices arm64e <86d736e120cd3cdca8ff5414bba3d5cc> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x1a1e12000 - 0x1a1f63fff Preferences arm64e /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x1a1f64000 - 0x1a2180fff ContactsUI arm64e <54cae8b0503737df96c492a8c6cf0c4c> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x1a2181000 - 0x1a2335fff CoreText arm64e <050bdd2cb8ed38e38eaa0594fa8240f2> /System/Library/Frameworks/CoreText.framework/CoreText
0x1a2336000 - 0x1a234ffff ExtensionKit arm64e /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit
0x1a2365000 - 0x1a23e6fff BaseBoard arm64e <7a9aa681f37b360cb4acd2d6b4749c66> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1a23e7000 - 0x1a260bfff CoreDuet arm64e /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x1a260c000 - 0x1a2761fff Contacts arm64e <67cc4cbb4d7c3ca59a85123d2988fc02> /System/Library/Frameworks/Contacts.framework/Contacts
0x1a2762000 - 0x1a3c3afff GeoServices arm64e <5e5eb6645dac3f2198854bc3f4dce643> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1a3c3b000 - 0x1a3cc2fff CoreLocation arm64e /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1a3cc3000 - 0x1a3e6bfff CloudKit arm64e /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1a3e6c000 - 0x1a41ddfff CoreData arm64e /System/Library/Frameworks/CoreData.framework/CoreData
0x1a4eb5000 - 0x1a4ebffff libswiftCoreGraphics.dylib arm64e <54b9c52778203cb08af0d248ec6e8159> /usr/lib/swift/libswiftCoreGraphics.dylib
0x1a4ec0000 - 0x1a4efffff AppSupport arm64e <3ea1df04e23535a08e8829059dd0bb0b> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1a4f00000 - 0x1a5023fff ManagedConfiguration arm64e /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1a5024000 - 0x1a5093fff IMFoundation arm64e <728dee4ab148368287fb3f76241610d6> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x1a5094000 - 0x1a51a0fff IDS arm64e <10b4c03229b4345692797d5ecacf266c> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1a51a1000 - 0x1a52e8fff Security arm64e <561035ebc71638dcb8704157d8e33a12> /System/Library/Frameworks/Security.framework/Security
0x1a52e9000 - 0x1a56ecfff MediaPlayer arm64e /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x1a56ed000 - 0x1a5705fff AudioSession arm64e /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
0x1a5706000 - 0x1a589efff AVFCore arm64e /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
0x1a589f000 - 0x1a5e0ffff Intents arm64e /System/Library/Frameworks/Intents.framework/Intents
0x1a5e10000 - 0x1a5e5cfff TextInputUI arm64e /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
0x1a5e5d000 - 0x1a6167fff CoreImage arm64e <05532db016c13c7ea972fe487d012de4> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1a6168000 - 0x1a6224fff ColorSync arm64e /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x1a6225000 - 0x1a625ffff CoreVideo arm64e /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x1a6260000 - 0x1a6a1bfff MediaToolbox arm64e <1db71a5dd37f39309b78459d935170f5> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x1a6a1c000 - 0x1a6b12fff CoreMedia arm64e /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1a6b13000 - 0x1a6d7afff AudioToolbox arm64e <0931c9403c0f353e9e99509524b52546> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x1a6d7b000 - 0x1a6dcbfff CoreHaptics arm64e <722e975225f23e749a39407011251d96> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x1a6dcc000 - 0x1a6e2afff UserActivity arm64e <4bdc0d49c9fc31f5b6f26a7e1ac7a33a> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
0x1a6e2b000 - 0x1a6f2efff UIFoundation arm64e /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1a6f2f000 - 0x1a6f6dfff libsystem_info.dylib arm64e <745a30449c5b3b0c8befb0ef20946543> /usr/lib/system/libsystem_info.dylib
0x1a6f6e000 - 0x1a6fecfff libsystem_c.dylib arm64e <556a84c292fc3808b22531980a063367> /usr/lib/system/libsystem_c.dylib
0x1a6fed000 - 0x1a7037fff RunningBoardServices arm64e <25ba98bf3dcd3c0aa0b668338627cc67> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x1a7038000 - 0x1a8007fff JavaScriptCore arm64e /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1a85a6000 - 0x1a8633fff ContactsFoundation arm64e <6d4810bc14833d2780e811f4d59b9c2e> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1a8634000 - 0x1a886dfff HealthKit arm64e <51184df92a30338faa739d6684948c17> /System/Library/Frameworks/HealthKit.framework/HealthKit
0x1a886e000 - 0x1a8890fff ProactiveEventTracker arm64e /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1a8891000 - 0x1a88dafff Lexicon arm64e <69ef17c2e407356da99fec9f301d3889> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1a88db000 - 0x1a8946fff PersonalizationPortrait arm64e <5ecb7348835730bc88534ccd9a8e1879> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait
0x1a8947000 - 0x1a8996fff CoreDuetContext arm64e <7411a7097f8039aebb969dd711ba46ea> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x1a8997000 - 0x1a8a40fff IOKit arm64e <937fc8dffa133ec39f27653439df070f> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1a8a41000 - 0x1a8a51fff DataMigration arm64e /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1a8a52000 - 0x1a8aadfff SpringBoardServices arm64e <31be00340ef33e4d8514b5d10c84f63a> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x1a8aae000 - 0x1a8abffff ContextKit arm64e <665d84d6f2753b43a95a43839bbf19d9> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
0x1a8ac0000 - 0x1a8d1ffff CoreMotion arm64e <6577524450723c8795579f82c2cd925a> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1a8d20000 - 0x1a8e5ffff EventKit arm64e <64fa133c69e23281a47469c92894d670> /System/Library/Frameworks/EventKit.framework/EventKit
0x1a93a8000 - 0x1a960ffff MediaRemote arm64e <7c84d798236231d09aab437599305b73> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x1a9610000 - 0x1a97b3fff CoreUtils arm64e <4c48b88e47e833b7bd3dc24f44bba99a> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1a97b4000 - 0x1a97cafff FamilyCircle arm64e <8f912ab46995329d83e96cdeb22072d0> /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
0x1a97cb000 - 0x1a9839fff CoreSpotlight arm64e /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x1a9c2c000 - 0x1a9dbcfff AssistantServices arm64e <6050b44da72d3f2b9e262efb43085c8e> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x1a9dbd000 - 0x1a9e81fff CoreUI arm64e <0178bb0828b43a5691715df7ecbea490> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x1a9e82000 - 0x1a9eccfff SafariSafeBrowsing arm64e /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1a9ecd000 - 0x1aa625fff WebKit arm64e <124bfdb64282342392a89b5762b5d1f4> /System/Library/Frameworks/WebKit.framework/WebKit
0x1aa626000 - 0x1aca2dfff WebCore arm64e <3df1722a76393fdbb84268e29b58f600> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1aca2e000 - 0x1aca8bfff libMobileGestalt.dylib arm64e /usr/lib/libMobileGestalt.dylib
0x1aca8c000 - 0x1acaa7fff CommonUtilities arm64e <7e975a3917393d88b53aad8d94812157> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1acaa8000 - 0x1acc12fff IDSFoundation arm64e /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1acc13000 - 0x1acd13fff IMSharedUtilities arm64e <93847627150c31f785a1cdcb37408663> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
0x1acd14000 - 0x1acdbafff CoreSuggestions arm64e /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x1acdbb000 - 0x1ace57fff AddressBookLegacy arm64e /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1ace58000 - 0x1ace8afff UserNotifications arm64e <3f4e582924c534c2a3b431b6f1f04418> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1ace8b000 - 0x1acf13fff FrontBoardServices arm64e /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1acf14000 - 0x1acf37fff libsystem_malloc.dylib arm64e /usr/lib/system/libsystem_malloc.dylib
0x1acf38000 - 0x1ad202fff MapKit arm64e <3d6925ce55ce3d6db6ee278734203094> /System/Library/Frameworks/MapKit.framework/MapKit
0x1ad203000 - 0x1ad9bcfff VectorKit arm64e /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x1ad9bd000 - 0x1ada4dfff AuthKit arm64e /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x1ada4e000 - 0x1adae0fff AppleAccount arm64e <8ea3e70807be3da79a380cf92e3d94f8> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x1adae1000 - 0x1adbe2fff AVFAudio arm64e <11042ffbf8b03e708f3546e0c1baa07f> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1adbe3000 - 0x1ade42fff AudioToolboxCore arm64e /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x1ade74000 - 0x1ae11efff StoreServices arm64e /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1ae11f000 - 0x1ae2a0fff Sharing arm64e <1b512cdaaef4364188ff25781b35365d> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x1ae2a1000 - 0x1ae344fff ShareSheet arm64e /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x1ae345000 - 0x1ae431fff CoreParsec arm64e <48207e8a698d38e488ebd6fc7649e809> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x1ae432000 - 0x1ae47afff PhotoFoundation arm64e <3e133001e5213974abb9f3f36a3831d0> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x1ae47b000 - 0x1ae6bcfff Photos arm64e /System/Library/Frameworks/Photos.framework/Photos
0x1ae6bd000 - 0x1aedbffff PhotoLibraryServices arm64e /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x1aedc0000 - 0x1aee7cfff AssetsLibraryServices arm64e <9dee7490203b3fc7a5c13f4df0c98791> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x1aee7d000 - 0x1aeecdfff MobileBackup arm64e <35e53ecd422a366badf0453898108655> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x1aeece000 - 0x1aeee1fff MSUDataAccessor arm64e <96b071ee7dcf3a38abbc13f58d0d0c8a> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor
0x1aeee2000 - 0x1aef08fff MobileAsset arm64e <1109eb95a87f3c66b6f8c47102115ae7> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x1aef09000 - 0x1aef18fff libsystem_networkextension.dylib arm64e <524ca3579f993ac6aa8da1b82fb18d81> /usr/lib/system/libsystem_networkextension.dylib
0x1aef19000 - 0x1af163fff NetworkExtension arm64e /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1af190000 - 0x1af553fff CoreML arm64e <27a97a764ef432f7bf7d0b5d002ce550> /System/Library/Frameworks/CoreML.framework/CoreML
0x1af554000 - 0x1afcbffff Espresso arm64e /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1afcc0000 - 0x1afdb0fff VideoToolbox arm64e <6c6ca0b4f4ca366191a8cc3f67d3ab54> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x1afdb1000 - 0x1afdfafff OnBoardingKit arm64e <88056458f0af387ab15f77973e12ffba> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
0x1afdfb000 - 0x1afef2fff AccessibilityUtilities arm64e /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
0x1afef3000 - 0x1aff03fff AXCoreUtilities arm64e <7e285398d1533a0da6182e3be8bf1f4b> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1aff04000 - 0x1b04affff PhotosUI arm64e /System/Library/Frameworks/PhotosUI.framework/PhotosUI
0x1b04b0000 - 0x1b0da0fff PhotosUICore arm64e <1afeee37a1ab38528b88b0e2d754ecdb> /System/Library/PrivateFrameworks/PhotosUICore.framework/PhotosUICore
0x1b0da1000 - 0x1b0f15fff Montreal arm64e <4b2fba64633a33c1b05f1b46006724fd> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1b0f16000 - 0x1b1029fff LanguageModeling arm64e <4fb1688d2a093eb6877dc312e21eec8c> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1b102a000 - 0x1b1032fff InternationalSupport arm64e <00948173af7e31799e0e376e140898d6> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1b1033000 - 0x1b127dfff iTunesCloud arm64e <6fbd557a0d5c3db39f0e6a7d744e6ce3> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x1b127e000 - 0x1b12bffff libswiftUIKit.dylib arm64e <38cd415cdea239bd90792716a2b7d95b> /usr/lib/swift/libswiftUIKit.dylib
0x1b13d6000 - 0x1b147cfff CalendarDatabase arm64e /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x1b147d000 - 0x1b14c7fff Notes arm64e <99bf17890c9a3d6a949106cb413b47a0> /System/Library/PrivateFrameworks/Notes.framework/Notes
0x1b14c8000 - 0x1b15a3fff LinkPresentation arm64e <02df5a479786392dbe8fe679a2f314ce> /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
0x1b15a4000 - 0x1b16c5fff Combine arm64e <43c88ca34f2a3dc5960fba7f4bc9cc46> /System/Library/Frameworks/Combine.framework/Combine
0x1b1751000 - 0x1b1761fff UniformTypeIdentifiers arm64e <7db4098ee20a319a8b79accd1af517b8> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
0x1b1762000 - 0x1b17e2fff CloudDocs arm64e /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x1b17e3000 - 0x1b19dbfff Message arm64e /System/Library/PrivateFrameworks/Message.framework/Message
0x1b19dc000 - 0x1b1a57fff EmailFoundation arm64e <585bf2d87f1c3fbab7c9f468c76f58eb> /System/Library/PrivateFrameworks/EmailFoundation.framework/EmailFoundation
0x1b1cd3000 - 0x1b1d0efff MediaServices arm64e <2a54adad283a37c494a63993ef368061> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x1b1d0f000 - 0x1b1e77fff SearchFoundation arm64e <372cbc777f95331891df8f06f18f74b0> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x1b1e78000 - 0x1b1ed2fff WebBookmarks arm64e <3cbf26d5519d3414a6437f091d4ce204> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1b1f52000 - 0x1b1f8bfff libobjc.A.dylib arm64e <49c230fd98e13a5c9c797e5b42c612bb> /usr/lib/libobjc.A.dylib
0x1b1f8c000 - 0x1b1fedfff LoggingSupport arm64e <100ef23c1fff3e79943046eb6ab726f2> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x1b1fee000 - 0x1b204bfff libc++.1.dylib arm64e /usr/lib/libc++.1.dylib
0x1b204c000 - 0x1b2061fff libc++abi.dylib arm64e /usr/lib/libc++abi.dylib
0x1b2062000 - 0x1b20a3fff SetupAssistant arm64e /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x1b20a4000 - 0x1b20befff OctagonTrust arm64e /System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust
0x1b21d3000 - 0x1b2215fff CoreAutoLayout arm64e <2f390e306e7e3643ac2db9e7f1fdee2a> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout
0x1b2216000 - 0x1b236efff Network arm64e /System/Library/Frameworks/Network.framework/Network
0x1b236f000 - 0x1b23a4fff MobileKeyBag arm64e <82742edb59233214935eb7b77df8aec5> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1b25d2000 - 0x1b25e6fff BaseBoardUI arm64e /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x1b25e7000 - 0x1b268ffff libvDSP.dylib arm64e <1fc99350d2c2349eb42e15812a38f723> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1b2690000 - 0x1b26c2fff libAudioToolboxUtility.dylib arm64e /usr/lib/libAudioToolboxUtility.dylib
0x1b2876000 - 0x1b2901fff CoreNLP arm64e <82afed5623763629b594aca66c2ff6f2> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1b2902000 - 0x1b2a18fff FileProvider arm64e <13f53bcd1b54331e838986a6a86462a3> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1b2a19000 - 0x1b2a29fff BiomeStorage arm64e <02b6165739be3a0ab96c1c955a0b7b1d> /System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage
0x1b2a2a000 - 0x1b2a41fff libswiftDispatch.dylib arm64e <0d10042e115b30e3b8e70c4e0eaf28e7> /usr/lib/swift/libswiftDispatch.dylib
0x1b2a42000 - 0x1b2a78fff DataDetectorsCore arm64e <3b65646ea664373daace198c53ce9f42> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1b2a79000 - 0x1b2b06fff Symbolication arm64e <78286f5e305c30109783b4339a49bb2b> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x1b2b07000 - 0x1b2b24fff CrashReporterSupport arm64e /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1b2b67000 - 0x1b2c35fff TelephonyUtilities arm64e /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x1b2c6e000 - 0x1b2e5bfff MPSNeuralNetwork arm64e /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1b2e5c000 - 0x1b2eb0fff MPSCore arm64e /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1b3009000 - 0x1b3074fff CalendarFoundation arm64e /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x1b30d6000 - 0x1b31c0fff NLP arm64e <3ed97bdb4bd2343db04eba1c628ac617> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1b31c1000 - 0x1b31e9fff AppSupportUI arm64e <153fe82684b63862b4ea9a3a87a9228d> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x1b31f3000 - 0x1b3247fff FTServices arm64e /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x1b3248000 - 0x1b32f8fff libboringssl.dylib arm64e /usr/lib/libboringssl.dylib
0x1b32f9000 - 0x1b3310fff ProtocolBuffer arm64e <7d2d98a511873f8a9a5976fd20ae893d> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1b3311000 - 0x1b3417fff AVKit arm64e <19f1562fe1c9396ebfa02151e41f0a89> /System/Library/Frameworks/AVKit.framework/AVKit
0x1b3585000 - 0x1b3594fff AssertionServices arm64e /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1b3595000 - 0x1b35bdfff CloudServices arm64e <4ff5b75b72663199a1e5d46b956b3a02> /System/Library/PrivateFrameworks/CloudServices.framework/CloudServices
0x1b3610000 - 0x1b36effff Metal arm64e /System/Library/Frameworks/Metal.framework/Metal
0x1b36f0000 - 0x1b3834fff MediaExperience arm64e <818c58f791fa3106bd8f387d27def499> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x1b3835000 - 0x1b3bebfff VideoProcessing arm64e <5a84db3652223d4ea8c6f4a501dc4685> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing
0x1b3bec000 - 0x1b3c02fff libsystem_trace.dylib arm64e /usr/lib/system/libsystem_trace.dylib
0x1b3c03000 - 0x1b3c34fff CoreServicesInternal arm64e <2f37665ef53b39bbb41bda1695dfc702> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1b3c35000 - 0x1b3c9afff SafariCore arm64e /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x1b3c9b000 - 0x1b3ec8fff SafariShared arm64e /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x1b3ec9000 - 0x1b3f61fff AppStoreDaemon arm64e <5ee83bf80a21356baf4666c596c9ed28> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
0x1b435e000 - 0x1b43a4fff ContactsAutocompleteUI arm64e /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework/ContactsAutocompleteUI
0x1b43a5000 - 0x1b44defff MessageUI arm64e <8daeb8f18d633d098c8a319023289535> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x1b47f7000 - 0x1b4894fff SAObjects arm64e <0b13e28deb963561a03e290ff0e35804> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x1b4895000 - 0x1b48d9fff VoiceServices arm64e /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x1b48da000 - 0x1b48e2fff GraphicsServices arm64e <7bd8d66c9d7c307b8d0f47dac469dd30> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1b48e3000 - 0x1b4938fff DeviceManagement arm64e <58a2e081aef73156aa50f626f668527c> /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
0x1b4939000 - 0x1b4aa6fff Translation arm64e <6137fa23a18d300f8694a49a66d58fd1> /System/Library/PrivateFrameworks/Translation.framework/Translation
0x1b4aa7000 - 0x1b4abcfff PowerLog arm64e /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1b4abd000 - 0x1b4ae5fff DuetActivityScheduler arm64e /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x1b61d4000 - 0x1b646bfff Vision arm64e /System/Library/Frameworks/Vision.framework/Vision
0x1b646c000 - 0x1b64c7fff DataAccess arm64e <529729a6ff6c32f193dc302de88652bd> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x1b64c8000 - 0x1b6535fff ProactiveSupport arm64e /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x1b6562000 - 0x1b6581fff ApplePushService arm64e <1f6296dbaa96375e8327c4ec0e2036e2> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1b6582000 - 0x1b65aafff BoardServices arm64e <703c40ff2eee3a2b95c919f64f2bc8b9> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x1b6715000 - 0x1b6744fff libncurses.5.4.dylib arm64e <49a66a9d7afd34c8bc59a2edf024a33b> /usr/lib/libncurses.5.4.dylib
0x1b6745000 - 0x1b6791fff OSAnalytics arm64e /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x1b6792000 - 0x1b6816fff CoreBluetooth arm64e /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1b69fb000 - 0x1b6a3efff TemplateKit arm64e /System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit
0x1b6a3f000 - 0x1b6a73fff MobileInstallation arm64e <113635d9113d308ebfed8b431e1c56ab> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x1b6a74000 - 0x1b6b01fff libTelephonyUtilDynamic.dylib arm64e <3eecaff2d5ba32a186383ab1be55ec62> /usr/lib/libTelephonyUtilDynamic.dylib
0x1b6b02000 - 0x1b6b6ffff NanoRegistry arm64e <36f0f237d3c53cb091bea46bd390308e> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1b6c46000 - 0x1b6c63fff CoreMaterial arm64e <982b31809ff6307794e69a9e7aed6a5b> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x1b6cd6000 - 0x1b6e5efff libsqlite3.dylib arm64e <05638db7ffe03218aef9c7dfabc96c6c> /usr/lib/libsqlite3.dylib
0x1b6e5f000 - 0x1b6f20fff AVFCapture arm64e <3bc82fbd04663a22904093bce04d30bb> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture
0x1b6f21000 - 0x1b7251fff CMCapture arm64e <5be4e9f7935536309143c1c1b5543769> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture
0x1b73ad000 - 0x1b7604fff MobileSpotlightIndex arm64e <2be829dcff8338a99adc6a615d18bda1> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1b7605000 - 0x1b76abfff Email arm64e <7de7e51477763074b2c8b2a8b08659f1> /System/Library/PrivateFrameworks/Email.framework/Email
0x1b7a1c000 - 0x1b7a26fff libsystem_notify.dylib arm64e <66e6c05f812a30d39f4c76c900058cf3> /usr/lib/system/libsystem_notify.dylib
0x1b7a27000 - 0x1b7a6bfff CryptoTokenKit arm64e <9db89610eaf432fea4aaf7fd5f9491d9> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
0x1b7ad7000 - 0x1b7b49fff libcorecrypto.dylib arm64e <582e301e65713ea8b14dadb6e1f0090d> /usr/lib/system/libcorecrypto.dylib
0x1b7b4a000 - 0x1b7b6dfff UserManagement arm64e /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1b7c46000 - 0x1b7c5cfff libsystem_asl.dylib arm64e <413dd64c8fbb335594156b9a7c558917> /usr/lib/system/libsystem_asl.dylib
0x1b7c5d000 - 0x1b7c80fff AppSSO arm64e <0797e3f2a0833fe8a62f28b8f3d0d640> /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO
0x1b7c81000 - 0x1b7c9efff SharedWebCredentials arm64e <1e6586541d8230e3985c3cac8b43804c> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x1b7c9f000 - 0x1b7e81fff SafariServices arm64e <4e826e79f75238eeb9a0b48770412ba6> /System/Library/Frameworks/SafariServices.framework/SafariServices
0x1b7ed7000 - 0x1b7f0efff DataAccessExpress arm64e <031f9f9a28a439a9bae1fae55490168d> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1b7f0f000 - 0x1b7f46fff CoreServicesStore arm64e <017eb8e6480e330b9ae29a0098163b45> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x1b7f47000 - 0x1b7f6cfff CoreAnalytics arm64e <5e1eb2047e10305c901481bc6bd254dd> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1b7f6d000 - 0x1b7f78fff SymptomAnalytics arm64e <60a0fe2efa1b34658e7191a25c1778fa> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
0x1b8164000 - 0x1b8173fff NanoPreferencesSync arm64e /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x1b8976000 - 0x1b89a1fff IconServices arm64e /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x1b93b7000 - 0x1b967cfff vImage arm64e <496bad9adc8f3d4cb488fb7c5076c657> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1ba29f000 - 0x1ba477fff IMCore arm64e <85c39acb3e183b1abbff2f693c0e5e57> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x1ba56f000 - 0x1ba586fff IAP arm64e /System/Library/PrivateFrameworks/IAP.framework/IAP
0x1ba587000 - 0x1ba5dffff ktrace arm64e <97e14fe7264d3870badd820c7823159e> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1ba5e0000 - 0x1ba5e2fff libAXSafeCategoryBundle.dylib arm64e <1d24024736383e0fbf9ae3f1115fc35c> /usr/lib/libAXSafeCategoryBundle.dylib
0x1ba8f4000 - 0x1ba902fff Celestial arm64e <9b32310ef4603bb584c872d68d50f91a> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1ba9ab000 - 0x1ba9f1fff Pegasus arm64e /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x1ba9f2000 - 0x1bab52fff WebKitLegacy arm64e <3e92ffdfae9a3e3a9a0b6092f319f2b7> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1babc1000 - 0x1bac34fff ClassKit arm64e <53ff02923cae30ffae546ffb11a0eac1> /System/Library/Frameworks/ClassKit.framework/ClassKit
0x1bac35000 - 0x1bac79fff StoreKit arm64e /System/Library/Frameworks/StoreKit.framework/StoreKit
0x1bb9ba000 - 0x1bb9c4fff IOMobileFramebuffer arm64e <4ec6bd022e3f3add864231dc1745a09e> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1bb9c5000 - 0x1bba3dfff ScreenTimeCore arm64e /System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore
0x1bbaea000 - 0x1bbc6dfff CloudPhotoLibrary arm64e /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1bbc6e000 - 0x1bbf39fff MusicLibrary arm64e /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x1bbf3a000 - 0x1bbfa2fff CallKit arm64e /System/Library/Frameworks/CallKit.framework/CallKit
0x1bbfdc000 - 0x1bc044fff AXRuntime arm64e /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
0x1bc045000 - 0x1bc064fff PrototypeTools arm64e <14499686d8cc30658c4abd74f0d6b520> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1bc065000 - 0x1bc091fff PersistentConnection arm64e <6dfa9026254e3be4bf1636a9a878ea9d> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1bc16f000 - 0x1bc18efff BiomeStreams arm64e <86fce763d2b53cbcbf924b508cf4f2e2> /System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams
0x1bc1aa000 - 0x1bc45dfff PencilKit arm64e <2a241c7eb2193949b6a778e68cf61f55> /System/Library/Frameworks/PencilKit.framework/PencilKit
0x1bc507000 - 0x1bc518fff libswiftUniformTypeIdentifiers.dylib arm64e /usr/lib/swift/libswiftUniformTypeIdentifiers.dylib
0x1bc519000 - 0x1bc694fff CoreSpeech arm64e <93f28eb2bec131228d64e0fb586ed943> /System/Library/PrivateFrameworks/CoreSpeech.framework/CoreSpeech
0x1bc695000 - 0x1bc7e9fff IMDPersistence arm64e <1ef0a2419ac13a859b11e442aea939ab> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
0x1bca4b000 - 0x1bcb03fff SafariSharedUI arm64e /System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI
0x1bcb04000 - 0x1bcb1ffff TextToSpeech arm64e <41c3883f80523724a8aaf2aca4a28016> /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
0x1bcb20000 - 0x1bcb35fff AppSSOCore arm64e /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore
0x1bcb44000 - 0x1bcb5bfff CoreFollowUp arm64e <72f18a19c03037609dfe9b85ced1df11> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1bcb5c000 - 0x1bcbd3fff Rapport arm64e <6dc22f8509063fd68da3d27d50e36999> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1bcc75000 - 0x1bcc87fff Categories arm64e <28ac707af4eb3483b47c9bba42c5484a> /System/Library/PrivateFrameworks/Categories.framework/Categories
0x1bcf31000 - 0x1bcf57fff LocationSupport arm64e /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x1bcf58000 - 0x1bcf8bfff iCalendar arm64e <27271cca8dc539a39b90753c9be2f06e> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1bcfb8000 - 0x1bd0c0fff ConfigurationEngineModel arm64e <5a582888511c353491f7a331457cdfb6> /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
0x1bd0c1000 - 0x1bd0eafff CacheDelete arm64e <08efb3bff53d3371a90481ac9cd13207> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1bd0eb000 - 0x1bd167fff CVNLP arm64e /System/Library/PrivateFrameworks/CVNLP.framework/CVNLP
0x1bd2ab000 - 0x1bd2adfff OSAServicesClient arm64e <6a38abbab843345db9de833d5fb875a2> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x1bd2ae000 - 0x1bd2b0fff BiomeFoundation arm64e <33c51ad79b5e393e805b7c4cc02e03ac> /System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation
0x1bd2b1000 - 0x1bd30afff ProtectedCloudStorage arm64e /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1bd30b000 - 0x1bd342fff C2 arm64e <9843a52420e63aa99fd2644e252e2d5d> /System/Library/PrivateFrameworks/C2.framework/C2
0x1bd343000 - 0x1bd397fff DifferentialPrivacy arm64e <24f67e53d4f230cdb4215872f60a5d0c> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1bd578000 - 0x1bdd4ffff EmbeddedAcousticRecognition arm64e /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition
0x1bdd50000 - 0x1bddc5fff SiriInstrumentation arm64e <7e62bde78c5f3fd4a7815078e0c7361a> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
0x1bddc6000 - 0x1bde0afff BiometricKit arm64e <28c610ac83c032fd8f1dd4e5d7777b20> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x1bde44000 - 0x1bdef8fff CoreSymbolication arm64e <94a6d09d304e3288a6212fbd12db8069> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1bdf6f000 - 0x1be01dfff SpeakerRecognition arm64e <03f7a4c40d7a3aae9df7fdaf7e01ceec> /System/Library/PrivateFrameworks/SpeakerRecognition.framework/SpeakerRecognition
0x1be632000 - 0x1be633fff MessageSupport arm64e <7865af67e7dc35b6a23520e09e4b6f1a> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x1be634000 - 0x1be646fff IOSurface arm64e /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1be647000 - 0x1be6a7fff MobileWiFi arm64e /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1be6ac000 - 0x1be6ccfff DataDeliveryServices arm64e /System/Library/PrivateFrameworks/DataDeliveryServices.framework/DataDeliveryServices
0x1bea63000 - 0x1bea7ffff DoNotDisturb arm64e /System/Library/PrivateFrameworks/DoNotDisturb.framework/DoNotDisturb
0x1beaea000 - 0x1beb92fff MMCS arm64e <6137689c0baf3037b16d88f501a7777d> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1bebfc000 - 0x1bec37fff libGLImage.dylib arm64e <277ecc94ade23fb093a222d67e3be679> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1bec38000 - 0x1bec3ffff libsystem_symptoms.dylib arm64e /usr/lib/system/libsystem_symptoms.dylib
0x1bec83000 - 0x1bf1dafff CoreAudio arm64e <58e2a85948e13f09b813f64f14f8db15> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1bf1db000 - 0x1bf1f2fff ContactsDonation arm64e /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x1bf1f3000 - 0x1bf211fff IntentsCore arm64e /System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore
0x1bf2b4000 - 0x1bf2ecfff ImageCaptureCore arm64e /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore
0x1bf447000 - 0x1bf58efff Navigation arm64e <14b5eaf68e8a3022bcc5918ebd8c63dd> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1bf58f000 - 0x1bf5abfff SafariFoundation arm64e <77e54e15bf0b314eb70a54a0bd7fecbd> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
0x1bf727000 - 0x1bf73afff MaterialKit arm64e <864965e701e33800ad13a0b8b5d872e7> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
0x1bf84e000 - 0x1bf85efff CoreAUC arm64e /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1c0070000 - 0x1c0080fff SettingsFoundation arm64e <1f28dd82fe9337b9a071c481b7ed3cbb> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
0x1c0a5a000 - 0x1c0ab9fff ToneLibrary arm64e <19651f3625d33c959ec948e2b49537fd> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x1c12e7000 - 0x1c12f4fff MediaSafetyNet arm64e /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet
0x1c12f5000 - 0x1c1331fff TimeSync arm64e <19f8eec2d1af366ca9252f22796a40da> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync
0x1c13c8000 - 0x1c1405fff ExposureNotification arm64e <4ae51d6780d430dea9d2dcee03374949> /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification
0x1c1a79000 - 0x1c1a82fff CoreTime arm64e <508feef2bbef3240b3f23f8d81ce3817> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1c2213000 - 0x1c240dfff NeutrinoCore arm64e <85e3d3d521a038a298e26fc8ff6ad1e7> /System/Library/PrivateFrameworks/NeutrinoCore.framework/NeutrinoCore
0x1c241d000 - 0x1c251cfff TextRecognition arm64e <6a045081f85b3a10b75de1d82fe57d54> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
0x1c262d000 - 0x1c2636fff ContextKitExtraction arm64e <4d84eb7b84ad33b6ad6ad5750d0d67eb> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction
0x1c270e000 - 0x1c2710fff libswiftObjectiveC.dylib arm64e <7cddbcc344c93dc7acf92a0cdf2c9a6d> /usr/lib/swift/libswiftObjectiveC.dylib
0x1c2711000 - 0x1c2958fff libmorphun.dylib arm64e <49c99e35c6a934159f36aab71535758d> /usr/lib/libmorphun.dylib
0x1c2f68000 - 0x1c2fd1fff EmailCore arm64e /System/Library/PrivateFrameworks/EmailCore.framework/EmailCore
0x1c38fb000 - 0x1c3946fff MIME arm64e /System/Library/PrivateFrameworks/MIME.framework/MIME
0x1c3c21000 - 0x1c3c37fff MailServices arm64e <632fe633fa7330a58cc63d1754b0310f> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x1c3c38000 - 0x1c3c74fff PhotosPlayer arm64e /System/Library/PrivateFrameworks/PhotosPlayer.framework/PhotosPlayer
0x1c3cb8000 - 0x1c3d3bfff CoreDAV arm64e <6e51f31851ff33c3a3ee9e522ea1c489> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1c3f14000 - 0x1c3f23fff MobileIcons arm64e /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1c4307000 - 0x1c43dafff ProofReader arm64e <36979c6d6b5a3a1da0bc9da1958528ec> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x1c5540000 - 0x1c5599fff AccessibilitySharedSupport arm64e <45c86ebd8a3c39e8bac8f8a13141d7b6> /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/AccessibilitySharedSupport
0x1c559a000 - 0x1c55a4fff MallocStackLogging arm64e <959cea429c8c3774b7bb57d923931b0b> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x1c560a000 - 0x1c57d4fff EmailDaemon arm64e /System/Library/PrivateFrameworks/EmailDaemon.framework/EmailDaemon
0x1c57d5000 - 0x1c581ffff MetadataUtilities arm64e /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1c5d51000 - 0x1c5d7ffff MailSupport arm64e <69ff906ebcd937459f1ca6f4a1c71b34> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
0x1c5eff000 - 0x1c5f58fff CoreLocationProtobuf arm64e <27e49b2a45aa39a894b2d4e28f3134e8> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1c6168000 - 0x1c619afff Bom arm64e <382a2327bcdb39d9888fe0673a00ca5f> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1c61ca000 - 0x1c61d0fff PushKit arm64e <0d192f987bea31e89dc0ef63c8cd08d7> /System/Library/Frameworks/PushKit.framework/PushKit
0x1c61d1000 - 0x1c6238fff PhotosFormats arm64e <1c6928264e40350e953bd7ef9962e9e7> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1c6391000 - 0x1c6421fff Quagga arm64e /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1c6422000 - 0x1c642afff StudyLog arm64e <71fe9a0a1b1f329cbb25c1c52747e435> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1c73c2000 - 0x1c7402fff NaturalLanguage arm64e /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
0x1c7e72000 - 0x1c7e91fff MediaStream arm64e /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1c85e2000 - 0x1c85f0fff libAXSpeechManager.dylib arm64e <6decbe6826fe333084a26a630f4c9d3a> /usr/lib/libAXSpeechManager.dylib
0x1c8af6000 - 0x1c8b1efff MediaConversionService arm64e <28e44e956f1535caae48bd66c9c3070c> /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
0x1c8c72000 - 0x1c8db3fff CoreHandwriting arm64e <10004e9de5233dfdb39f62caeca5d173> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
0x1c954d000 - 0x1c9558fff AppleIDAuthSupport arm64e /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1c9568000 - 0x1c957ffff LocalAuthentication arm64e <2df06d19191a3b3da0c9c38e99b5650f> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1c9580000 - 0x1c9586fff IOAccelerator arm64e <9f737432cca632d8b3b156520aac7328> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1c9964000 - 0x1c996dfff CloudPhotoServices arm64e <29c3410050d7331f9841dd5b0091a86a> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1c99b1000 - 0x1c9a48fff iTunesStore arm64e <33f53e138a2b367daf7cd68fc0e1001c> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x1c9dec000 - 0x1c9e1cfff libsystem_kernel.dylib arm64e <59731692aa323825a88458acb9737644> /usr/lib/system/libsystem_kernel.dylib
0x1ca04c000 - 0x1ca155fff ResponseKit arm64e <8b609dd06e7c36b681a50ca245cc84df> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
0x1ca156000 - 0x1ca18ffff EmojiFoundation arm64e <4baee4b33d3e3503b7d1ddc0f3e3c286> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
0x1ca7ad000 - 0x1ca7bafff FontServices arm64e /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1ca964000 - 0x1ca970fff MediaAccessibility arm64e <6f83133dcaf0367ab79cd70dd5637062> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1ca9b2000 - 0x1caf66fff SiriTTS arm64e <6997ede7e38030a387c02588cf873a7a> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x1caf67000 - 0x1caf75fff SetupAssistantSupport arm64e <1a1005cba2863572a26d543c2c0af041> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1caf7d000 - 0x1cafddfff Social arm64e <82b75e2e4c64362f9c9de166e52e9181> /System/Library/Frameworks/Social.framework/Social
0x1cb075000 - 0x1cb0a6fff VirtualGarage arm64e <2433c2a542b336ff8a5b2eae80d4b458> /System/Library/PrivateFrameworks/VirtualGarage.framework/VirtualGarage
0x1cb0a7000 - 0x1cb0ccfff NetAppsUtilities arm64e /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities
0x1cb0cd000 - 0x1cb130fff Osprey arm64e <81b4b745ff26352fb4bd8c54815beb53> /System/Library/PrivateFrameworks/Osprey.framework/Osprey
0x1cc2f2000 - 0x1cc2fefff libdscsym.dylib arm64e /usr/lib/libdscsym.dylib
0x1cc2ff000 - 0x1cc310fff HangTracer arm64e /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1cc4c5000 - 0x1cc581fff SampleAnalysis arm64e <7c5c8f9abf37383d92aa83168b2925f8> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1cc582000 - 0x1cc5b1fff PlugInKit arm64e <34335d227c0c3128bff34927098a0866> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1cc64f000 - 0x1cc650fff libSystem.B.dylib arm64e <12f5f00125353bddb9fa5dc321f01eb7> /usr/lib/libSystem.B.dylib
0x1cc94b000 - 0x1cc954fff MobileActivation arm64e /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x1cc955000 - 0x1cc9acfff CalendarDaemon arm64e <9835803ab644372fb610bc41f501cafb> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x1ccaa7000 - 0x1ccb17fff libarchive.2.dylib arm64e <37f4e6c029323a7481f4ccd0f1db138e> /usr/lib/libarchive.2.dylib
0x1ccb18000 - 0x1ccb3cfff libtailspin.dylib arm64e <0344c70574ca3e4f90ea0e8ee615ec96> /usr/lib/libtailspin.dylib
0x1ccb3d000 - 0x1ccfa3fff libBNNS.dylib arm64e /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1ccfa4000 - 0x1ccfe4fff SharedUtils arm64e <8ee5c78b4b573df0bf314ced50fbaa1a> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x1cd290000 - 0x1cd295fff libsysdiagnose.dylib arm64e <48cffb82d25638e780ff9feb0553486d> /usr/lib/libsysdiagnose.dylib
0x1cd2c9000 - 0x1cd3d3fff CoreMediaStream arm64e /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1cd5df000 - 0x1cd5dffff AVFoundation arm64e /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1cd5e0000 - 0x1cd5e0fff Accelerate arm64e <71a558df7b393393beefc18b64eb40a7> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1cd5e1000 - 0x1cd6b9fff libBLAS.dylib arm64e <6bef995904f13c9891ae412fdf0c9db2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1cd6ba000 - 0x1cda00fff libLAPACK.dylib arm64e <5803bdd9057f3e0a9c31cf4db037dc40> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1cda01000 - 0x1cda15fff libLinearAlgebra.dylib arm64e <0b423d8f83e23cd0b3d429eda539639f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1cda16000 - 0x1cda1afff libQuadrature.dylib arm64e /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1cda1b000 - 0x1cda7dfff libSparse.dylib arm64e /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1cda7e000 - 0x1cda8ffff libSparseBLAS.dylib arm64e <7a692f9682283ead89e86a176c808b0b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1cda90000 - 0x1cdae8fff libvMisc.dylib arm64e <9e3ea0f2f393334ba92af2ba54050d32> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1cdae9000 - 0x1cdae9fff vecLib arm64e <61e4ca844c0a30b4a5041e6984896542> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1cdb24000 - 0x1cdb35fff AssetsLibrary arm64e /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x1cdc49000 - 0x1cdc65fff AuthenticationServices arm64e <532aeb1ba2f8390e9957afa9eea8129e> /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
0x1cdd57000 - 0x1cddbffff CoreMIDI arm64e <1f98c3d9fb96322a99bd419790a1b867> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
0x1ce2b7000 - 0x1ce2cdfff ExternalAccessory arm64e <7daa96c3c38a303d9cf827a9365d43de> /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
0x1ce30c000 - 0x1ce338fff GSS arm64e <32402c29e4393b14ae1e02712956edcb> /System/Library/Frameworks/GSS.framework/GSS
0x1ce49d000 - 0x1ce5e9fff MLCompute arm64e <51ab5e00439a3949bd9c97706f5ea552> /System/Library/Frameworks/MLCompute.framework/MLCompute
0x1ce610000 - 0x1ce629fff MetalKit arm64e <7ce8e8daa13235de9c17754b2bddd627> /System/Library/Frameworks/MetalKit.framework/MetalKit
0x1ce62a000 - 0x1ce6b0fff MPSImage arm64e <80a3847aa14b3f64aab52965835329c8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1ce6b1000 - 0x1ce6d7fff MPSMatrix arm64e <6d1aaa500fd132ed8ee3ccf7f590d638> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1ce6d8000 - 0x1ce711fff MPSNDArray arm64e <5ea55ce05bcb33529df58b5816e8b8bb> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x1ce712000 - 0x1ce75afff MPSRayIntersector arm64e <3e2fe3d98e6c351581493775f2df6398> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1ce75b000 - 0x1ce75bfff MetalPerformanceShaders arm64e <32d7001d8c533f5bbf94315fe80201fe> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1ceaed000 - 0x1ceaedfff MobileCoreServices arm64e /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1cf6d6000 - 0x1cf6defff OpenGLES arm64e <6f9a3cfa3d753a9bb1065625c68ef776> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1cf6df000 - 0x1cf6e0fff libCVMSPluginSupport.dylib arm64e <4fd23cd5650c385da948abaf81ea94e9> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1cf6e1000 - 0x1cf6e7fff libCoreFSCache.dylib arm64e <3b665ba3bc10354095b4e533c6aefa73> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1cf6e8000 - 0x1cf6edfff libCoreVMClient.dylib arm64e <2e1d4f49a6ea3a4ab3f3308134c89b68> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1cf6ee000 - 0x1cf6f7fff libGFXShared.dylib arm64e /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1cf8b0000 - 0x1cf973fff PDFKit arm64e /System/Library/Frameworks/PDFKit.framework/PDFKit
0x1cf983000 - 0x1cf9c0fff QuickLookThumbnailing arm64e /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x1d0082000 - 0x1d01cdfff SoundAnalysis arm64e <85291be31c9938a09ffcd4ca2350931b> /System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis
0x1d01ce000 - 0x1d01defff Speech arm64e <77e99e4d67c23fea8e386c390ab5a674> /System/Library/Frameworks/Speech.framework/Speech
0x1d02fe000 - 0x1d02fefff UIKit arm64e <3ee15b63cf6131a0899017c8a85f8794> /System/Library/Frameworks/UIKit.framework/UIKit
0x1d0308000 - 0x1d03cffff VideoSubscriberAccount arm64e /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
0x1d03d0000 - 0x1d0fa7fff libfaceCore.dylib arm64e /System/Library/Frameworks/Vision.framework/libfaceCore.dylib
0x1d0fc2000 - 0x1d0fc2fff VisionKit arm64e /System/Library/Frameworks/VisionKit.framework/VisionKit
0x1d14f5000 - 0x1d14f8fff AFKUser arm64e <69baf598bdf233f79fde7342fb9e6298> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser
0x1d15bc000 - 0x1d183cfff ANECompiler arm64e <5c5b1d3c8a333c60ab33d22abd85d1ce> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x1d183d000 - 0x1d1851fff ANEServices arm64e /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1d1856000 - 0x1d190ffff APFS arm64e /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1d1910000 - 0x1d1919fff ASEProcessing arm64e <6dfb1d2d0c193f718c22ec0559693c40> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1d2128000 - 0x1d212dfff AggregateDictionary arm64e <0ed6d5b178af3f7bb772fe8ea7dc93f3> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1d22b3000 - 0x1d238afff AirPlaySync arm64e /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync
0x1d2494000 - 0x1d24b0fff AlgosScoreFramework arm64e <622fef6e95753f29ba6dccf5a4644e28> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework
0x1d25dd000 - 0x1d25fffff AppConduit arm64e /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x1d26da000 - 0x1d26e4fff AppStoreOverlays arm64e /System/Library/PrivateFrameworks/AppStoreOverlays.framework/AppStoreOverlays
0x1d3611000 - 0x1d37abfff AppleCVA arm64e <2bb91856c9fb3df1b55dcf66d27aed51> /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA
0x1d37ea000 - 0x1d37f9fff AppleFSCompression arm64e /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1d3806000 - 0x1d3814fff AppleIDSSOAuthentication arm64e <76b54b6615f73d83ae3aa1b087259035> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1d3815000 - 0x1d385afff AppleJPEG arm64e /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1d38de000 - 0x1d38f2fff AppleNeuralEngine arm64e <40a9ed3076be39198720c123e19ab166> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1d38fc000 - 0x1d3920fff AppleSauce arm64e <4596e400b5f0314690f0ee115466df28> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1d3951000 - 0x1d396ffff AssetCacheServices arm64e <8c2482c6df103cc7a9c4f9b8699563c3> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x1d3ad3000 - 0x1d3b31fff AuthKitUI arm64e /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
0x1d3b32000 - 0x1d3b87fff AutoLoop arm64e <5fed3f07e58b3aaf90dfc01f99c3f51e> /System/Library/PrivateFrameworks/AutoLoop.framework/AutoLoop
0x1d3b9d000 - 0x1d3b9efff BackgroundTaskAgent arm64e <808d55120fb938a6b570f188c0e4ba5d> /System/Library/PrivateFrameworks/BackgroundTaskAgent.framework/BackgroundTaskAgent
0x1d3bc2000 - 0x1d3bdafff BiomePubSub arm64e <2595b9dc1ef13f3ba703cd59c2bc2dbe> /System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub
0x1d3ec3000 - 0x1d3ed2fff BluetoothManager arm64e <190135fef3b132fd91c90d061f7d952e> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x1d416d000 - 0x1d4177fff CMCaptureCore arm64e <853ffa5c9be13ff69e5e38ef564ccf37> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore
0x1d4178000 - 0x1d418ffff CPAnalytics arm64e <341a7fb733e83500a879e7fd28dd4b8a> /System/Library/PrivateFrameworks/CPAnalytics.framework/CPAnalytics
0x1d4192000 - 0x1d41a1fff CPMS arm64e /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x1d41a2000 - 0x1d41b2fff CTCarrierSpace arm64e /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x1d431e000 - 0x1d434afff CameraEditKit arm64e <62c10ddac8ea3693bb4ce9b26c8a920c> /System/Library/PrivateFrameworks/CameraEditKit.framework/CameraEditKit
0x1d44c2000 - 0x1d44cdfff CaptiveNetwork arm64e <856d72f92c2a3ad2bdc9bfa8a1064fd1> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1d45f0000 - 0x1d462cfff Catalyst arm64e <60a0bb38d04e321ca4f3988e0aac6e25> /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
0x1d4652000 - 0x1d4676fff CellularPlanManager arm64e <707ed92bfa2e3df5b84315982294a272> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1d468f000 - 0x1d4697fff CertUI arm64e <5b7bdf2207793b1bbb593827569c0825> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1d46a0000 - 0x1d46effff ChunkingLibrary arm64e <5d9ede62bc2a31009a31a91c50c20a2d> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1d4b0e000 - 0x1d4b15fff CommonAuth arm64e <2a0eefeee53f3882a2fe8e76d5b20a13> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1d4b16000 - 0x1d4b1afff CommunicationsFilter arm64e /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x1d4bed000 - 0x1d4bf0fff ConstantClasses arm64e <7f95443740b33a08868e9c9f01ee5c0e> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1d4bfa000 - 0x1d4c38fff ContactsAutocomplete arm64e <8ff09ce031e830c691442c5d472c42d4> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
0x1d4c3e000 - 0x1d4cb4fff ContactsUICore arm64e /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x1d4cf1000 - 0x1d4e35fff CoreAppleCVA arm64e <201a95eae4a436098f3e9e3ec831c6c7> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA
0x1d4e36000 - 0x1d4f2afff CoreBrightness arm64e <65d7c6b213d13912a9435a77c73f1cc2> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1d4f97000 - 0x1d4fa6fff CoreDuetDaemonProtocol arm64e /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1d4fa9000 - 0x1d4fabfff CoreDuetDebugLogging arm64e /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1d4fba000 - 0x1d4fccfff CoreEmoji arm64e /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1d5510000 - 0x1d5514fff CoreOptimization arm64e /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1d5515000 - 0x1d55d1fff CorePDF arm64e /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x1d55d2000 - 0x1d55dafff CorePhoneNumbers arm64e /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1d55db000 - 0x1d5631fff CorePrediction arm64e /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1d5f66000 - 0x1d5f71fff CoreRecents arm64e <3001273673d33b8e99c3b81cb551378b> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x1d5f72000 - 0x1d5fdafff CoreRecognition arm64e <2e48f388d99b3681a2dcc8730025ce65> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x1d5fdb000 - 0x1d5ff3fff CoreSDB arm64e <1bb6f44936473df0977aaa6925c132b5> /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
0x1d5ff4000 - 0x1d601efff CoreSVG arm64e /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x1d61d3000 - 0x1d61d7fff DAAPKit arm64e <3e139e5c2a8d30ef8f899f7451f4cee1> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1d61f5000 - 0x1d6202fff DCIMServices arm64e <2341ce49777a337695ea336b3753c1ec> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1d6219000 - 0x1d6256fff DataDetectorsNaturalLanguage arm64e <914953aa2f0b33d4858dec501d342a47> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
0x1d62b7000 - 0x1d62c6fff DeviceIdentity arm64e <18765398850c3a4cac3935b5b85c8c13> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1d63f5000 - 0x1d642cfff DistributedEvaluation arm64e /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation
0x1d647a000 - 0x1d6549fff DocumentCamera arm64e <5f609f12378132cbb5675841b044e8fb> /System/Library/PrivateFrameworks/DocumentCamera.framework/DocumentCamera
0x1d654a000 - 0x1d6585fff DocumentManager arm64e /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1d6586000 - 0x1d65a5fff DocumentManagerCore arm64e <0e09b139d55f3f3080eb10d7cdd0acef> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1d6630000 - 0x1d6632fff DragUI arm64e <04a685e2c8e6333bb4adc3e6ca208560> /System/Library/PrivateFrameworks/DragUI.framework/DragUI
0x1d6662000 - 0x1d6692fff EAP8021X arm64e /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1d66a9000 - 0x1d66b3fff EmailAddressing arm64e /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
0x1d66c2000 - 0x1d66d7fff Engram arm64e <01329b9b6b843b9985b38e04e5185f09> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1d6814000 - 0x1d681bfff ExtensionFoundation arm64e <01dc50fd8a5a3fdb93cbf788c90ae44c> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation
0x1d69ad000 - 0x1d69b5fff FSEvents arm64e /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
0x1d69b6000 - 0x1d69d5fff FTAWD arm64e <0260eb5e663b32909124240f18a96046> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x1d69d6000 - 0x1d69d9fff FTClientServices arm64e /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x1d69da000 - 0x1d6dedfff FaceCore arm64e <0727bfb81f7335d4a62b373407e20cb2> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1d6df6000 - 0x1d6dfbfff FeatureFlagsSupport arm64e <5494fff67c0435a09d6add38315ea46b> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport
0x1d6dfc000 - 0x1d6e05fff FeedbackLogger arm64e /System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger
0x1d6f9b000 - 0x1d70dbfff libFontParser.dylib arm64e <3f478f21fa2a3b549c4b54be73367ca8> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1d70dc000 - 0x1d70e4fff libGSFont.dylib arm64e <4750d311567633aea079f6f4f6755024> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x1d70e5000 - 0x1d7122fff libGSFontCache.dylib arm64e /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1d7189000 - 0x1d7196fff libhvf.dylib arm64e /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x1d71bd000 - 0x1d71d5fff Futhark arm64e <9993d9f7f1cf36958ac3e6e4da335d23> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1d7d60000 - 0x1d7d60fff libmetal_timestamp.dylib arm64e <4f1c947e82ac348a90d6679bb896c509> /System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libmetal_timestamp.dylib
0x1d7e3f000 - 0x1d7e5efff GenerationalStorage arm64e <817fbc94f28c31cf8431be86c54611fb> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x1d7e5f000 - 0x1d7e6cfff GraphVisualizer arm64e /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1d7e97000 - 0x1d7ea3fff HID arm64e <61a4dbd08ef534d6a5903629da0388a7> /System/Library/PrivateFrameworks/HID.framework/HID
0x1d80fa000 - 0x1d816bfff Heimdal arm64e /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1d8378000 - 0x1d83f1fff HomeSharing arm64e /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1d844b000 - 0x1d8450fff IDSKVStore arm64e <24ef0b8ff4983f76b3c62da12c2bc5ba> /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore
0x1d8755000 - 0x1d8774fff IOGPU arm64e <5925316e4e8f3311808ccbea35a1e52e> /System/Library/PrivateFrameworks/IOGPU.framework/IOGPU
0x1d8776000 - 0x1d877ffff IOKitten arm64e <2e57a1528ebe3c648c4e6a4524415a22> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten
0x1d8780000 - 0x1d8782fff IOSurfaceAccelerator arm64e <0a2b5c3a75293458b9774a97d262ed34> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1d87a6000 - 0x1d87adfff IdleTimerServices arm64e <9ec1bef963ab30f2af168c36daa05e2b> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1d87b6000 - 0x1d87bbfff IncomingCallFilter arm64e /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x1d87bc000 - 0x1d8838fff InertiaCam arm64e <8a0d897be1e5376690ff99ad196616d0> /System/Library/PrivateFrameworks/InertiaCam.framework/InertiaCam
0x1d887c000 - 0x1d8889fff IntentsFoundation arm64e <8ce4773609ab3fedb58e54a2269d1c64> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1d88a4000 - 0x1d88a6fff InternationalTextSearch arm64e <504e36028c7b36ed842e02795827dfd1> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x1d88a7000 - 0x1d88c3fff IntlPreferences arm64e <670f5159e1983a3a9d3699f373f432ec> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1d8aff000 - 0x1d8b1efff LatentSemanticMapping arm64e /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/LatentSemanticMapping
0x1d8b32000 - 0x1d8b38fff LinguisticData arm64e /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1d8b89000 - 0x1d8bc2fff LocalAuthenticationPrivateUI arm64e /System/Library/PrivateFrameworks/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI
0x1d8d80000 - 0x1d8d80fff Marco arm64e <95d392e6232330a3a9dc4b10c9d8a45e> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1d8ff8000 - 0x1d92c2fff MediaLibraryCore arm64e <59ac73f9e097348a80617e940212ea5f> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x1d92c3000 - 0x1d934efff MediaPlatform arm64e /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x1d974a000 - 0x1d9817fff MetalTools arm64e <61b68ff6c532307298feed668d9d7364> /System/Library/PrivateFrameworks/MetalTools.framework/MetalTools
0x1d9839000 - 0x1d9886fff MetricsKit arm64e /System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit
0x1d9897000 - 0x1d98abfff MobileBluetooth arm64e /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1d992c000 - 0x1d9932fff MobileSystemServices arm64e /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1d9cdc000 - 0x1d9ce2fff Netrb arm64e <0d9dcb7385523eb6861032c57fc19614> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1d9da1000 - 0x1d9dbafff NetworkStatistics arm64e /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1d9dbb000 - 0x1d9dd9fff NeutrinoKit arm64e <395ba2a7c5a03f68a9291aaeb8d1adb8> /System/Library/PrivateFrameworks/NeutrinoKit.framework/NeutrinoKit
0x1d9e72000 - 0x1d9e74fff OAuth arm64e <63c278e681243cbabbbeab5bbd0478c3> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x1d9e93000 - 0x1d9ed3fff OTSVG arm64e <26399cb07c713c468c2275f6855f72ef> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1da508000 - 0x1da50afff ParsecSubscriptionServiceSupport arm64e <632a5c22c07738d4a3fb79038d90c79a> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x1da50f000 - 0x1da53afff Pasteboard arm64e <3974423edbb83ff7ac4acefa25539be6> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
0x1da56b000 - 0x1da576fff PersonaKit arm64e /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1da577000 - 0x1da584fff PersonaUI arm64e <9824a9e2c101384b97307d821210caee> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x1da5a7000 - 0x1da5a7fff PhoneNumbers arm64e <8068b1103b73301ca2cc7133762da46b> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1da5b0000 - 0x1da6b0fff PhotoImaging arm64e <5239ad4799133c7c9f01ed8551367f6c> /System/Library/PrivateFrameworks/PhotoImaging.framework/PhotoImaging
0x1da6b1000 - 0x1da70ffff PhotoLibrary arm64e /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary
0x1da759000 - 0x1da796fff PhotosImagingFoundation arm64e <054b7a8fa7133268b926da8b64097bf9> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x1da797000 - 0x1da7e2fff PhysicsKit arm64e /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1da89d000 - 0x1da8a8fff PointerUIServices arm64e <54cd47d70df63bfa9b18ee642bc0137e> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
0x1dbcea000 - 0x1dbcf7fff PrototypeToolsUI arm64e <7ce82c3c83773765bec396d7649ccaf9> /System/Library/PrivateFrameworks/PrototypeToolsUI.framework/PrototypeToolsUI
0x1dbd7f000 - 0x1dbd89fff RTCReporting arm64e <0eabf81df93e3c4ab8b6700ea19a8ef0> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1dc0cb000 - 0x1dc0dcfff RemoteTextInput arm64e <3d60f26d14cf344788bd7209e3accfe4> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1dc0dd000 - 0x1dc145fff RemoteUI arm64e /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
0x1dc17d000 - 0x1dc181fff RevealCore arm64e /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
0x1dc198000 - 0x1dc520fff SDAPI arm64e /System/Library/PrivateFrameworks/SDAPI.framework/SDAPI
0x1dca72000 - 0x1dca7cfff SignpostCollection arm64e /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1dca7d000 - 0x1dca7dfff SignpostMetrics arm64e /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x1dca7f000 - 0x1dcabefff SignpostSupport arm64e <76ad0b61b05f33b088a76ca72677f7ae> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1dd38b000 - 0x1dd38bfff SoftLinking arm64e <2b1bcbbfba023f4eaa4cabb4737441e5> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking
0x1dd8a7000 - 0x1dd8e5fff StreamingZip arm64e <75492329a22430229e9e0b5b568d9b56> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1dd8ed000 - 0x1dd8f7fff SymptomDiagnosticReporter arm64e /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1dd92a000 - 0x1dd946fff SymptomPresentationFeed arm64e <2b43dd82ef8c3b89a5273f3f97c0d7f8> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
0x1dd985000 - 0x1dd995fff TCC arm64e <503be2baf75c3d9083a63a941d77c334> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1de292000 - 0x1de346fff TextureIO arm64e <9a26c192560335b98d3253266c86d1c7> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1de56b000 - 0x1de572fff URLFormatting arm64e /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1deb47000 - 0x1deb71fff UsageTracking arm64e <476f7de536103bc6abb8f54eaee4c64d> /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking
0x1df66e000 - 0x1df735fff VoiceTrigger arm64e <7381287d7e5b333fa24c5dcd5e4b6c5a> /System/Library/PrivateFrameworks/VoiceTrigger.framework/VoiceTrigger
0x1df7fb000 - 0x1df7fcfff WatchdogClient arm64e <7fd564a2b2163e16b064b8a515c81918> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x1df820000 - 0x1df834fff WebContentAnalysis arm64e <37dcebccb4c8338591f589136007bf40> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalysis
0x1dfad2000 - 0x1e0207fff libwebrtc.dylib arm64e /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1e0285000 - 0x1e029bfff WebUI arm64e /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x1e07c5000 - 0x1e07c8fff XCTTargetBootstrap arm64e <8c0bf42cfdfa36fcbf0fe6953940e166> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1e082a000 - 0x1e0849fff caulk arm64e /System/Library/PrivateFrameworks/caulk.framework/caulk
0x1e2d4b000 - 0x1e2d50fff kperf arm64e <69f57dd2db363a8587da7b4a473f7647> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1e2d51000 - 0x1e2d59fff kperfdata arm64e <40c3ffb08469369db26f9ea14c4a79a2> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1e2d5a000 - 0x1e2d6ffff libEDR arm64e <7ac1666003cc31c891c1c18dc211d196> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1e2d88000 - 0x1e2d98fff perfdata arm64e <75fc57c4594538ea8e5f4ea212f43bb8> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x1e2d99000 - 0x1e2dc9fff vCard arm64e /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1e36e3000 - 0x1e371ffff libAWDSupport.dylib arm64e <882c3f98283b35f3a92b45ae54f62a9c> /usr/lib/libAWDSupport.dylib
0x1e3720000 - 0x1e3ad9fff libAWDSupportFramework.dylib arm64e <86c60ec311753e37bd5cafb6454bcb06> /usr/lib/libAWDSupportFramework.dylib
0x1e3c56000 - 0x1e3c65fff libAudioStatistics.dylib arm64e <0adba9bdaa7935aba4954dfaf26f44df> /usr/lib/libAudioStatistics.dylib
0x1e3e02000 - 0x1e3e35fff libCRFSuite.dylib arm64e /usr/lib/libCRFSuite.dylib
0x1e3e36000 - 0x1e3e37fff libCTGreenTeaLogger.dylib arm64e <812b8ea956463b5ba463de20b69173de> /usr/lib/libCTGreenTeaLogger.dylib
0x1e3e38000 - 0x1e3e42fff libChineseTokenizer.dylib arm64e <2d6c38c1531b3d01b720a44f93cef323> /usr/lib/libChineseTokenizer.dylib
0x1e40ea000 - 0x1e40f1fff libIOReport.dylib arm64e <6149fe3ea1bb31a188a5cb4cc6f0fd78> /usr/lib/libIOReport.dylib
0x1e4167000 - 0x1e416efff libMatch.1.dylib arm64e /usr/lib/libMatch.1.dylib
0x1e427f000 - 0x1e4280fff libThaiTokenizer.dylib arm64e <519b9a347abd3e7a8fdf2499bdd9e352> /usr/lib/libThaiTokenizer.dylib
0x1e43b6000 - 0x1e43b8fff libapp_launch_measurement.dylib arm64e /usr/lib/libapp_launch_measurement.dylib
0x1e43b9000 - 0x1e43cffff libapple_nghttp2.dylib arm64e /usr/lib/libapple_nghttp2.dylib
0x1e43d0000 - 0x1e4461fff libate.dylib arm64e /usr/lib/libate.dylib
0x1e44f1000 - 0x1e4501fff libbsm.0.dylib arm64e <70d5b0c38155321f88c29ee18dcc372a> /usr/lib/libbsm.0.dylib
0x1e4502000 - 0x1e450efff libbz2.1.0.dylib arm64e <84538f4d009d3ee3ab069741061656a1> /usr/lib/libbz2.1.0.dylib
0x1e450f000 - 0x1e450ffff libcharset.1.dylib arm64e /usr/lib/libcharset.1.dylib
0x1e4510000 - 0x1e4521fff libcmph.dylib arm64e /usr/lib/libcmph.dylib
0x1e4522000 - 0x1e4539fff libcompression.dylib arm64e <79a34b951ccf3d96bd90641e70705229> /usr/lib/libcompression.dylib
0x1e453a000 - 0x1e4550fff libcoretls.dylib arm64e <8f025f8d28d133bfb7bffcd76119362b> /usr/lib/libcoretls.dylib
0x1e4551000 - 0x1e4552fff libcoretls_cfhelpers.dylib arm64e <85351a7650543f129a91c5cd35ce3606> /usr/lib/libcoretls_cfhelpers.dylib
0x1e4575000 - 0x1e457cfff libcupolicy.dylib arm64e <18a72ff08fd13e63ab82eba5dcb4f1be> /usr/lib/libcupolicy.dylib
0x1e457d000 - 0x1e4584fff libdns_services.dylib arm64e /usr/lib/libdns_services.dylib
0x1e4585000 - 0x1e45a2fff libedit.3.dylib arm64e <53feb927ae203e6d94c558b65be676c5> /usr/lib/libedit.3.dylib
0x1e45a3000 - 0x1e45a3fff libenergytrace.dylib arm64e <93fd96bb029834ba8a176281feb50f0b> /usr/lib/libenergytrace.dylib
0x1e45a4000 - 0x1e45bdfff libexpat.1.dylib arm64e <305600b63bdb32c7bf53ab8c921320b4> /usr/lib/libexpat.1.dylib
0x1e45e7000 - 0x1e45ebfff libgermantok.dylib arm64e <8eab8d0dc47e37029ffd10f4dcbb40d4> /usr/lib/libgermantok.dylib
0x1e45ec000 - 0x1e45f1fff libheimdal-asn1.dylib arm64e <96f2b2bce19f3c6998c15db0090065f6> /usr/lib/libheimdal-asn1.dylib
0x1e45f2000 - 0x1e46e7fff libiconv.2.dylib arm64e <63eb338b33383476948a14f27e40f8f9> /usr/lib/libiconv.2.dylib
0x1e470b000 - 0x1e470cfff liblangid.dylib arm64e <45895c3083db3526820b741ac048d164> /usr/lib/liblangid.dylib
0x1e470d000 - 0x1e4718fff liblockdown.dylib arm64e /usr/lib/liblockdown.dylib
0x1e4719000 - 0x1e4731fff liblzma.5.dylib arm64e <43065732fada371b992ab2b2c4624eba> /usr/lib/liblzma.5.dylib
0x1e475f000 - 0x1e47b3fff libmecab.dylib arm64e /usr/lib/libmecab.dylib
0x1e47b4000 - 0x1e49e7fff libmecabra.dylib arm64e <1d5bb1cb6f05364095b28aaba1b8a100> /usr/lib/libmecabra.dylib
0x1e49e8000 - 0x1e49fafff libmis.dylib arm64e /usr/lib/libmis.dylib
0x1e49fb000 - 0x1e4a10fff libnetworkextension.dylib arm64e <9c7e4d27ae4733fbb423150cb215b2df> /usr/lib/libnetworkextension.dylib
0x1e4dad000 - 0x1e4de7fff libpcap.A.dylib arm64e <52d89a2c60443daa899c4841a4b7abc9> /usr/lib/libpcap.A.dylib
0x1e4de8000 - 0x1e4df6fff libperfcheck.dylib arm64e /usr/lib/libperfcheck.dylib
0x1e4dfe000 - 0x1e4e10fff libprequelite.dylib arm64e <8a648e7d14293623ba1291e60bfd320d> /usr/lib/libprequelite.dylib
0x1e4e11000 - 0x1e4e23fff libprotobuf-lite.dylib arm64e <15b98382f29730fabb9af7e250292143> /usr/lib/libprotobuf-lite.dylib
0x1e4e24000 - 0x1e4e85fff libprotobuf.dylib arm64e <88a91562fc1134f4855dfe5eb4d0e91b> /usr/lib/libprotobuf.dylib
0x1e4e86000 - 0x1e4ee4fff libquic.dylib arm64e <9f2baec3d26e3ae1ae9a169e9ba1f3ca> /usr/lib/libquic.dylib
0x1e4ee5000 - 0x1e4efcfff libresolv.9.dylib arm64e <7db9e99ca409335e90f7af85b71e1414> /usr/lib/libresolv.9.dylib
0x1e4efd000 - 0x1e4efffff libsandbox.1.dylib arm64e /usr/lib/libsandbox.1.dylib
0x1e4f48000 - 0x1e4f4bfff libutil.dylib arm64e <91876979deaa3f53b03a2f67f175a381> /usr/lib/libutil.dylib
0x1e4f4c000 - 0x1e5035fff libxml2.2.dylib arm64e <7f6c0ab2b6a13186b4ccbfd1b763748b> /usr/lib/libxml2.2.dylib
0x1e503a000 - 0x1e5062fff libxslt.1.dylib arm64e <2501045ac8243911b2157e48906bd7e7> /usr/lib/libxslt.1.dylib
0x1e5063000 - 0x1e5074fff libz.1.dylib arm64e <5de4ab9f462e32af96561b6abf953192> /usr/lib/libz.1.dylib
0x1e50ae000 - 0x1e50b0fff liblog_network.dylib arm64e <7c0472c7691b37d88b954d04b4130c48> /usr/lib/log/liblog_network.dylib
0x1e50b9000 - 0x1e50c0fff libswiftAVFoundation.dylib arm64e <29fc5382f4bc3c8499eb83389a104841> /usr/lib/swift/libswiftAVFoundation.dylib
0x1e5155000 - 0x1e515dfff libswiftCoreAudio.dylib arm64e <382b16c43113378496d24c455d8a5f9a> /usr/lib/swift/libswiftCoreAudio.dylib
0x1e5163000 - 0x1e5163fff libswiftCoreFoundation.dylib arm64e /usr/lib/swift/libswiftCoreFoundation.dylib
0x1e5164000 - 0x1e5164fff libswiftCoreImage.dylib arm64e /usr/lib/swift/libswiftCoreImage.dylib
0x1e5165000 - 0x1e5167fff libswiftCoreLocation.dylib arm64e <49fb07a6bad830ae996fce52c4e5b4f6> /usr/lib/swift/libswiftCoreLocation.dylib
0x1e5168000 - 0x1e5171fff libswiftCoreMIDI.dylib arm64e /usr/lib/swift/libswiftCoreMIDI.dylib
0x1e5176000 - 0x1e51b0fff libswiftCoreMedia.dylib arm64e <29ca6152bb9a349da7f662af092e0763> /usr/lib/swift/libswiftCoreMedia.dylib
0x1e51bd000 - 0x1e51c6fff libswiftDarwin.dylib arm64e <6d267560e5013f3ca97961792d7089d0> /usr/lib/swift/libswiftDarwin.dylib
0x1e51e5000 - 0x1e51e9fff libswiftMetal.dylib arm64e <593c9fccfa5f31b899ebfd021c651c12> /usr/lib/swift/libswiftMetal.dylib
0x1e5256000 - 0x1e5256fff libswiftPhotos.dylib arm64e /usr/lib/swift/libswiftPhotos.dylib
0x1e525c000 - 0x1e525dfff libswiftQuartzCore.dylib arm64e <7fb2d6fdac7239caa8036e41e823ead5> /usr/lib/swift/libswiftQuartzCore.dylib
0x1e5299000 - 0x1e529bfff libswiftWebKit.dylib arm64e <0dc4ba05599b3e108104e970a8c99738> /usr/lib/swift/libswiftWebKit.dylib
0x1e52af000 - 0x1e52c2fff libswiftsimd.dylib arm64e /usr/lib/swift/libswiftsimd.dylib
0x1e52c3000 - 0x1e52c8fff libcache.dylib arm64e /usr/lib/system/libcache.dylib
0x1e52c9000 - 0x1e52d5fff libcommonCrypto.dylib arm64e <2129f1afe12c32b6adbe25db7bb800f3> /usr/lib/system/libcommonCrypto.dylib
0x1e52d6000 - 0x1e52d9fff libcompiler_rt.dylib arm64e <971aa349c5953cdb92e17ecc1eff874d> /usr/lib/system/libcompiler_rt.dylib
0x1e52da000 - 0x1e52e2fff libcopyfile.dylib arm64e <31a6be830fb33743bef715636d8ee7a2> /usr/lib/system/libcopyfile.dylib
0x1e53c5000 - 0x1e53c5fff liblaunch.dylib arm64e <2a8dc138bf1d387b8505c0600ac11829> /usr/lib/system/liblaunch.dylib
0x1e53c6000 - 0x1e53cbfff libmacho.dylib arm64e <39844434902132eab1c5a247ca4e6284> /usr/lib/system/libmacho.dylib
0x1e53cc000 - 0x1e53cefff libremovefile.dylib arm64e <43ab9de9d434362d9bcb3a75cfd4e594> /usr/lib/system/libremovefile.dylib
0x1e53cf000 - 0x1e53d0fff libsystem_blocks.dylib arm64e /usr/lib/system/libsystem_blocks.dylib
0x1e53d1000 - 0x1e53d3fff libsystem_collections.dylib arm64e <6a492ae6ed763562a79028c334f80003> /usr/lib/system/libsystem_collections.dylib
0x1e53d4000 - 0x1e53d8fff libsystem_configuration.dylib arm64e /usr/lib/system/libsystem_configuration.dylib
0x1e53d9000 - 0x1e53eafff libsystem_containermanager.dylib arm64e /usr/lib/system/libsystem_containermanager.dylib
0x1e53eb000 - 0x1e53ecfff libsystem_coreservices.dylib arm64e <7f053a54bc9935e8b6ac7654320dc19c> /usr/lib/system/libsystem_coreservices.dylib
0x1e53ed000 - 0x1e53f6fff libsystem_darwin.dylib arm64e <64e0b8bebbc135f19d36ac9a7ecb4771> /usr/lib/system/libsystem_darwin.dylib
0x1e53f7000 - 0x1e53fffff libsystem_dnssd.dylib arm64e <27f1f7ddb2593dfd9656bc8611e3e6e7> /usr/lib/system/libsystem_dnssd.dylib
0x1e5400000 - 0x1e5402fff libsystem_featureflags.dylib arm64e /usr/lib/system/libsystem_featureflags.dylib
0x1e5403000 - 0x1e5430fff libsystem_m.dylib arm64e <159d362ad8fc3aa0926623dea4f7e179> /usr/lib/system/libsystem_m.dylib
0x1e5431000 - 0x1e5437fff libsystem_platform.dylib arm64e /usr/lib/system/libsystem_platform.dylib
0x1e5438000 - 0x1e5438fff libsystem_product_info_filter.dylib arm64e /usr/lib/system/libsystem_product_info_filter.dylib
0x1e5439000 - 0x1e5444fff libsystem_pthread.dylib arm64e <36e670e74b8835d488f1ad2ebcfc7b09> /usr/lib/system/libsystem_pthread.dylib
0x1e5445000 - 0x1e5448fff libsystem_sandbox.dylib arm64e /usr/lib/system/libsystem_sandbox.dylib
0x1e5449000 - 0x1e5453fff libunwind.dylib arm64e <1110d417a1d9353ca13a27257c9c3e34> /usr/lib/system/libunwind.dylib
0x1e5454000 - 0x1e5488fff libxpc.dylib arm64e <71e5302f09be31168d43ec2d4c27be10> /usr/lib/system/libxpc.dylib
0x1e5520000 - 0x1e553bfff AccessibilitySettingsLoader arm64e /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
0x1e668d000 - 0x1e69a4fff AGXMetalA13 arm64e /System/Library/Extensions/AGXMetalA13.bundle/AGXMetalA13
0x1e6c4e000 - 0x1e6c60fff SpotlightLinguistics arm64e /System/Library/PrivateFrameworks/SpotlightLinguistics.framework/SpotlightLinguistics

EOF

I looked this up and some people point to it being some sort of memory leak, but I can't find anything related to this and PHPicker. Or is this a problem in my app rather than the plugin?

@miguelpruivo
Copy link
Owner

Hi @tneotia, I don’t actually see anything there related to the plugin itself. Might be something else with the app or any other plugin. 😞

@tneotia
Copy link

tneotia commented Oct 4, 2020

Alright, thanks! I'll try to look into it but I don't have much experience reading swift logs

@tneotia
Copy link

tneotia commented Oct 5, 2020

@miguelpruivo I looked into it a little today and here's how to reproduce it:

  1. Use filetype.image or filetype.media
  2. have a button to open the picker and just keep spamming it with touches
  3. the button opens the picker and while you are still spamming a photo will get selected and then the app crashes immediately

I don't know if this will be reproducible on the example app or if there is something specific in the way I am using the image that is causing the app to crash, but could you see if you are able to reproduce this using the method above? Or anyone else if they would like as well.

Edit: Cloned source and was able to reproduce on example app as well. Same method as above, on dropdown choose media or image and then spam the file picker button.

@tneotia
Copy link

tneotia commented Oct 5, 2020

I ran with Xcode to debug and it pointed out these lines as where the exception occurred:

- (void) handleResult:(id) files {
    _result([FileUtils resolveFileInfo: [files isKindOfClass: [NSArray class]] ? files : @[files] withData:self.loadDataToMemory]);
    _result = nil;
}

with error
#0 0x000000010baa352a in -[FilePickerPlugin handleResult:] at /Users/tanay/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/file_picker-2.0.6/ios/Classes/FilePickerPlugin.m:271

and

dispatch_group_notify(group, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),^{
        [self handleResult:urls];
    });

with error #1 0x000000010baa488e in __44-[FilePickerPlugin picker:didFinishPicking:]_block_invoke.303 at /Users/tanay/Desktop/flutter/.pub-cache/hosted/pub.dartlang.org/file_picker-2.0.6/ios/Classes/FilePickerPlugin.m:406

In FilePickerPlugin.m

Sorry if this is useless, as I said earlier I don't have any experience with debugging Swift and such. If this seems like an error due to this plugin, I can help debug anything else you would like. If not, I assume it is an iOS issue? Can't understand how this would be specific to my app but maybe it is?

@miguelpruivo
Copy link
Owner

@tneotia can you try reproduce it with the example app?

@tneotia
Copy link

tneotia commented Oct 5, 2020

Yep I mentioned above in an edit that it was reproducible on example as well

@miguelpruivo
Copy link
Owner

@tneotia well, I'll take a look as soon as I have the time, but this seems like low priority for me as it should be just worker threads conflicting due to multiple calls to the picker — I don't actually think an user will try to do so and if he does, shouldn't fear undesired behaviors (this also happens sometimes if you brute force some feature in any app/OS 😄).

Nevertheless, I'd be happy to take care of it and make it even better.

Thank you!

@tneotia
Copy link

tneotia commented Oct 5, 2020

Oh I see. No problem, for me its not really a blocker since the user isn't going to be spamming the images, just something I found while testing a build. Take your time with this, and if you need anything else let me know!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
iOS Issue applies to iOS platform
Projects
None yet
Development

No branches or pull requests

6 participants