kvs-coder / health_kit_reporter

A Flutter wrapper for the HealthKitReporter library
https://pub.dev/packages/health_kit_reporter
MIT License
38 stars 38 forks source link

Crash in production app encodeErrorEnvelope #13

Closed nohli closed 3 years ago

nohli commented 3 years ago

Describe the bug Reported crashes on iOS production devices.

Screenshots

1 3 4 5

Additional context Before the plugin integration the app had about zero crashes, now there are a few (about 7% of devices).

I don't know what additional information could help you.

kvs-coder commented 3 years ago

Hi @nohli

As I undestood, you did not experience this behaviour during development/debuging?

What is your project minimum support target? (This plugin requires iOS 12)

Some of the types like HKElectrocardiogramm or HKSeriesType will require higher iOS version - 14.0 and 13.0 respectively. So from crash reports I could assume that it could be that these types maybe were used in devices with iOS 12 and lower but the whole testing was executed only for devices with iOS 14+. Flutter unfortunately will not warn you about the availability of the types for different iOS systems...

Could you please also tell me as well, what 'flutter doctor' says?

nohli commented 3 years ago

@VictorKachalov it happens on all iOS versions. Does the 'Last Exception Backtrace' in the first screenshot help?

1

Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel beta, 1.26.0-17.3.pre, on macOS 11.2.1 20D74 darwin-x64,
    locale en-US)
[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
[✓] Xcode - develop for iOS and macOS
[✓] Android Studio (version 4.1)
[✓] VS Code (version 1.53.1)
[✓] Connected device (1 available)
    ! Error: Achims iPhone is not connected. Xcode will continue when Achims
      iPhone is connected. (code -13)
    ! Error: Achims iPhone is not connected. Xcode will continue when Achims
      iPhone is connected. (code -13)

• No issues found!`

kvs-coder commented 3 years ago

[✓] Flutter (Channel beta, 1.26.0-17.3.pre, on macOS 11.2.1 20D74 darwin-x64, locale en-US)

I see that the channel is "beta". I would advise to try to make a build on "stable" version, please see https://github.com/flutter/flutter/wiki/Flutter-build-release-channels

Could you please try this?

nohli commented 3 years ago

My apps are already null safe, I can't go back to stable. Also, the beta is very close to be released as stable... The crash appeared with this package - does the error message give any hint (like the SwiftHealthKitReporterPlugin.requestAuthorization and above parts), or can I provide any more details?

I can share the code, maybe there is something wrong (maybe if you have time, you could have a quick look). During debugging and on my device in production it works fine. Most of the device arguments and Category.uuid are set to null - does this make a difference? If all possible arguments are passed, there is unnecessary data like iOS version etc. saved in Apple Health.

import 'dart:io';

import 'package:device_info/device_info.dart';
import 'package:flutter/material.dart';
import 'package:health_kit_reporter/health_kit_reporter.dart';
import 'package:health_kit_reporter/model/payload/category.dart';
import 'package:health_kit_reporter/model/payload/device.dart';
import 'package:health_kit_reporter/model/payload/source.dart';
import 'package:health_kit_reporter/model/payload/source_revision.dart';
import 'package:health_kit_reporter/model/type/category_type.dart';
import 'package:package_info/package_info.dart';

Future<void> saveMindfulMinutes() async {
  if (await _isiPhone) {
    if (await _requestAuthorization()) {
      await _writeMindfulMinutes();
    }
  }
}

Future<bool> get _isiPhone async {
  try {
    final bool isiPhone = Platform.isIOS &&
        (await DeviceInfoPlugin().iosInfo).model.contains('iPhone');
    return isiPhone;
  } catch (error) {
    debugPrint('_isiPhone: ${error.toString()}');
  }
  return false;
}

Future<bool> _requestAuthorization() async {
  try {
    final List<String> readTypes = <String>[];
    final List<String> writeTypes = <String>[
      CategoryType.mindfulSession.identifier,
    ];
    final bool isRequested =
        await HealthKitReporter.requestAuthorization(readTypes, writeTypes);
    return isRequested;
  } catch (error) {
    debugPrint('_requestAuthorization(): ${error.toString()}');
  }
  return false;
}

Future<void> _writeMindfulMinutes() async {
  try {
    final bool canWrite = await HealthKitReporter.isAuthorizedToWrite(
        CategoryType.mindfulSession.identifier);
    if (canWrite) {
      final IosDeviceInfo deviceInfo = await DeviceInfoPlugin().iosInfo;
      final DateTime endTime = DateTime.now();
      final DateTime startTime = endTime.subtract(const Duration(minutes: 5));
      final Device device =
          Device(deviceInfo.name, null, null, null, null, null, null, null);
      const Source source = Source('Breathe', 'com.achimsapps.breathe');
      final List<String> osVersion = deviceInfo.systemVersion.split('.');
      final OperatingSystem operatingSystem = OperatingSystem(
        osVersion.isNotEmpty ? int.tryParse(osVersion[0]) ?? 14 : 14,
        osVersion.length > 1 ? int.tryParse(osVersion[1]) ?? 0 : 0,
        osVersion.length > 2 ? int.tryParse(osVersion[2]) ?? 0 : 0,
      );
      final String appVersion = (await PackageInfo.fromPlatform()).version;
      final SourceRevision sourceRevision = SourceRevision(
        source,
        appVersion,
        deviceInfo.utsname.machine,
        deviceInfo.systemVersion,
        operatingSystem,
      );
      const CategoryHarmonized harmonized = CategoryHarmonized(
        0,
        'Breath Meditation',
        <String, dynamic>{'': ''},
      );
      final Category mindfulMinutes = Category(
        null,
        CategoryType.mindfulSession.identifier,
        startTime.millisecondsSinceEpoch,
        endTime.millisecondsSinceEpoch,
        device,
        sourceRevision,
        harmonized,
      );
      // debugPrint(mindfulMinutes.map.toString());
      HealthKitReporter.save(mindfulMinutes);
    }
  } catch (error) {
    debugPrint('_writeMindfulMinutes(): ${error.toString()}');
  }
}
kvs-coder commented 3 years ago

Hi @nohli

I have investigated your code and haven't find anything wrong. I need to try to reproduce your error in order to understand what causes the issue. Because it is currently unclear why it crashes during authorization

SwiftHealthKitReporterPlugin.requestAuthorization
nohli commented 3 years ago

@VictorKachalov I also can't reproduce the crash on the simulator...the exception stacktrace always looks the same:

Last Exception Backtrace:
0   CoreFoundation                  __exceptionPreprocess + 216 (NSException.m:199)
1   libobjc.A.dylib                 objc_exception_throw + 56 (objc-exception.mm:565)
2   CoreFoundation                  +[NSException raise:format:arguments:] + 96 (NSException.m:146)
3   Foundation                      -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 128 (NSException.m:231)
4   Flutter                         -[FlutterStandardMethodCodec encodeErrorEnvelope:] + 196 (FlutterStandardCodec.mm:110)
5   Flutter                         __45-[FlutterMethodChannel setMethodCallHandler:]_block_invoke_2 + 136 (FlutterChannels.mm:0)
6   health_kit_reporter             thunk for @escaping @callee_unowned @convention(block) (@unowned Swift.AnyObject?) -> () + 92 (<compiler-generated>:0)
7   health_kit_reporter             closure #1 in SwiftHealthKitReporterPlugin.requestAuthorization(reporter:arguments:result:) + 320
8   health_kit_reporter             partial apply for closure #1 in SwiftHealthKitReporterPlugin.requestAuthorization(reporter:arguments:result:) + 72 (<compiler-generated>:0)
9   HealthKitReporter               thunk for @escaping @callee_guaranteed (@unowned Bool, @guaranteed Error?) -> () + 56 (<compiler-generated>:0)
10  HealthKit                       __84-[HKHealthStore requestAuthorizationToShareTypes:readTypes:shouldPrompt:completion:]_block_invoke + 368 (HKHealthStore.m:688)
Crash report 1 ``` Incident Identifier: D8AC0A9C-5F4A-46C5-81D7-6CF38424FE8F Hardware Model: iPhone9,1 Process: Runner [1679] Path: /private/var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Runner Identifier: com.achimsapps.breathe Version: 1609 (3.4.0) AppStoreTools: 12D4d AppVariant: 1:iPhone9,1:13 Code Type: ARM-64 (Native) Role: Foreground Parent Process: launchd [1] Coalition: com.achimsapps.breathe [543] Date/Time: 2021-02-08 22:36:14.9503 -0600 Launch Time: 2021-02-08 19:31:01.2062 -0600 OS Version: iPhone OS 14.2 (18B92) Release Type: User Baseband Version: 8.02.01 Report Version: 104 Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Triggered by Thread: 13 Last Exception Backtrace: 0 CoreFoundation 0x1add0d9d4 __exceptionPreprocess + 216 (NSException.m:199) 1 libobjc.A.dylib 0x1c16beb54 objc_exception_throw + 56 (objc-exception.mm:565) 2 CoreFoundation 0x1adc1c4fc +[NSException raise:format:arguments:] + 96 (NSException.m:146) 3 Foundation 0x1aef14878 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 128 (NSException.m:231) 4 Flutter 0x10585c82c -[FlutterStandardMethodCodec encodeErrorEnvelope:] + 196 (FlutterStandardCodec.mm:110) 5 Flutter 0x1058597c8 __45-[FlutterMethodChannel setMethodCallHandler:]_block_invoke_2 + 136 (FlutterChannels.mm:0) 6 health_kit_reporter 0x105152cbc thunk for @escaping @callee_unowned @convention(block) (@unowned Swift.AnyObject?) -> () + 92 (:0) 7 health_kit_reporter 0x105161c2c closure #1 in SwiftHealthKitReporterPlugin.requestAuthorization(reporter:arguments:result:) + 320 8 health_kit_reporter 0x10516ca14 partial apply for closure #1 in SwiftHealthKitReporterPlugin.requestAuthorization(reporter:arguments:result:) + 72 (:0) 9 HealthKitReporter 0x104dd875c thunk for @escaping @callee_guaranteed (@unowned Bool, @guaranteed Error?) -> () + 56 (:0) 10 HealthKit 0x1b7f9d21c __84-[HKHealthStore requestAuthorizationToShareTypes:readTypes:shouldPrompt:completion:]_block_invoke + 368 (HKHealthStore.m:688) 11 libdispatch.dylib 0x1ad945298 _dispatch_call_block_and_release + 24 (init.c:1454) 12 libdispatch.dylib 0x1ad946280 _dispatch_client_callout + 16 (object.m:559) 13 libdispatch.dylib 0x1ad8eedcc _dispatch_lane_serial_drain$VARIANT$mp + 612 (inline_internal.h:2548) 14 libdispatch.dylib 0x1ad8ef8d8 _dispatch_lane_invoke$VARIANT$mp + 472 (queue.c:3862) 15 libdispatch.dylib 0x1ad8f9338 _dispatch_workloop_worker_thread + 712 (queue.c:6601) 16 libsystem_pthread.dylib 0x1f43aa5a4 _pthread_wqthread + 272 (pthread.c:2206) 17 libsystem_pthread.dylib 0x1f43ad874 start_wqthread + 8 Thread 0 name: Thread 0: 0 libsystem_kernel.dylib 0x00000001d8e2a644 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001d8e29a48 mach_msg + 72 (mach_msg.c:103) 2 CoreFoundation 0x00000001adc8d0ec __CFRunLoopServiceMachPort + 376 (CFRunLoop.c:2641) 3 CoreFoundation 0x00000001adc87560 __CFRunLoopRun + 1176 (CFRunLoop.c:2974) 4 CoreFoundation 0x00000001adc86b90 CFRunLoopRunSpecific + 572 (CFRunLoop.c:3242) 5 GraphicsServices 0x00000001c3fa9598 GSEventRunModal + 160 (GSEvent.c:2259) 6 UIKitCore 0x00000001b0570638 -[UIApplication _run] + 1052 (UIApplication.m:3266) 7 UIKitCore 0x00000001b0575bb8 UIApplicationMain + 164 (UIApplication.m:4738) 8 Runner 0x0000000104c5dc6c main + 64 (AppDelegate.swift:5) 9 libdyld.dylib 0x00000001ad965588 start + 4 Thread 1 name: Thread 1: 0 libsystem_kernel.dylib 0x00000001d8e2a644 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001d8e29a48 mach_msg + 72 (mach_msg.c:103) 2 CoreFoundation 0x00000001adc8d0ec __CFRunLoopServiceMachPort + 376 (CFRunLoop.c:2641) 3 CoreFoundation 0x00000001adc87560 __CFRunLoopRun + 1176 (CFRunLoop.c:2974) 4 CoreFoundation 0x00000001adc86b90 CFRunLoopRunSpecific + 572 (CFRunLoop.c:3242) 5 Foundation 0x00000001aeea47f8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228 (NSRunLoop.m:374) 6 Foundation 0x00000001aeea46d8 -[NSRunLoop(NSRunLoop) runUntilDate:] + 88 (NSRunLoop.m:421) 7 UIKitCore 0x00000001b061c438 -[UIEventFetcher threadMain] + 504 (UIEventFetcher.m:836) 8 Foundation 0x00000001af0014bc __NSThread__start__ + 848 (NSThread.m:724) 9 libsystem_pthread.dylib 0x00000001f43a8b3c _pthread_start + 288 (pthread.c:881) 10 libsystem_pthread.dylib 0x00000001f43ad880 thread_start + 8 Thread 2 name: Thread 2: 0 libsystem_kernel.dylib 0x00000001d8e2a644 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001d8e29a48 mach_msg + 72 (mach_msg.c:103) 2 CoreFoundation 0x00000001adc8d0ec __CFRunLoopServiceMachPort + 376 (CFRunLoop.c:2641) 3 CoreFoundation 0x00000001adc87560 __CFRunLoopRun + 1176 (CFRunLoop.c:2974) 4 CoreFoundation 0x00000001adc86b90 CFRunLoopRunSpecific + 572 (CFRunLoop.c:3242) 5 Flutter 0x000000010559aa0c fml::MessageLoopDarwin::Run() + 88 (message_loop_darwin.mm:46) 6 Flutter 0x000000010559a410 fml::MessageLoopImpl::DoRun() + 28 (message_loop_impl.cc:96) 7 Flutter 0x000000010559a410 fml::MessageLoop::Run() + 32 (message_loop.cc:49) 8 Flutter 0x000000010559a410 fml::Thread::Thread(std::__1::basic_string, std::__1::allocator > const&)::$_0::operator()() const + 144 (thread.cc:35) 9 Flutter 0x000000010559a410 decltype(std::__1::forward, std::__1::allocator > const&)::$_0>(fp)()) std::__1::__invoke >, fml::Thread::Thread(std::__1::basic_string >, fml::Thread::Thread(std::__1::basic_string, std::__1::allocator > const&)::$_0::operator()() const + 144 (thread.cc:35) 9 Flutter 0x000000010559a410 decltype(std::__1::forward, std::__1::allocator > const&)::$_0>(fp)()) std::__1::__invoke >, fml::Thread::Thread(std::__1::basic_string >, fml::Thread::Thread(std::__1::basic_string, std::__1::allocator > const&)::$_0::operator()() const + 144 (thread.cc:35) 9 Flutter 0x000000010559a410 decltype(std::__1::forward, std::__1::allocator > const&)::$_0>(fp)()) std::__1::__invoke >, fml::Thread::Thread(std::__1::basic_string >, fml::Thread::Thread(std::__1::basic_string&) + 24 (__threading_support:390) 3 Flutter 0x0000000105595b18 void std::__1::condition_variable::wait(std::__1::unique_lock&, fml::ConcurrentMessageLoop::WorkerMain()::$_1) + 40 (__mutex_base:374) 4 Flutter 0x0000000105595b18 fml::ConcurrentMessageLoop::WorkerMain() + 80 (concurrent_message_loop.cc:80) 5 Flutter 0x0000000105595b18 fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 184 (concurrent_message_loop.cc:26) 6 Flutter 0x0000000105595b18 decltype(std::__1::forward(fp)()) std::__1::__invoke(fm... + 184 (type_traits:4425) 7 Flutter 0x0000000105595b18 void std::__1::__thread_execute >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned lon... + 184 (thread:341) 8 Flutter 0x0000000105595b18 void* std::__1::__thread_proxy >, fml::ConcurrentMessageLoop::ConcurrentMessageLo... + 256 (thread:351) 9 libsystem_pthread.dylib 0x00000001f43a8b3c _pthread_start + 288 (pthread.c:881) 10 libsystem_pthread.dylib 0x00000001f43ad880 thread_start + 8 Thread 6 name: Thread 6: 0 libsystem_kernel.dylib 0x00000001d8e4d61c __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001f43a22fc _pthread_cond_wait$VARIANT$mp + 1180 (pthread_cond.c:636) 2 libc++.1.dylib 0x00000001c175ae0c std::__1::condition_variable::wait(std::__1::unique_lock&) + 24 (__threading_support:390) 3 Flutter 0x0000000105595b18 void std::__1::condition_variable::wait(std::__1::unique_lock&, fml::ConcurrentMessageLoop::WorkerMain()::$_1) + 40 (__mutex_base:374) 4 Flutter 0x0000000105595b18 fml::ConcurrentMessageLoop::WorkerMain() + 80 (concurrent_message_loop.cc:80) 5 Flutter 0x0000000105595b18 fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 184 (concurrent_message_loop.cc:26) 6 Flutter 0x0000000105595b18 decltype(std::__1::forward(fp)()) std::__1::__invoke(fm... + 184 (type_traits:4425) 7 Flutter 0x0000000105595b18 void std::__1::__thread_execute >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned lon... + 184 (thread:341) 8 Flutter 0x0000000105595b18 void* std::__1::__thread_proxy >, fml::ConcurrentMessageLoop::ConcurrentMessageLo... + 256 (thread:351) 9 libsystem_pthread.dylib 0x00000001f43a8b3c _pthread_start + 288 (pthread.c:881) 10 libsystem_pthread.dylib 0x00000001f43ad880 thread_start + 8 Thread 7 name: Thread 7: 0 libsystem_kernel.dylib 0x00000001d8e4e290 __ulock_wait + 8 1 libsystem_platform.dylib 0x00000001f43978b0 _os_unfair_lock_lock_slow + 192 2 libsystem_malloc.dylib 0x00000001bc735be0 tiny_malloc_should_clear + 128 (locking.h:48) 3 libsystem_malloc.dylib 0x00000001bc722c48 szone_malloc_should_clear + 76 (magazine_malloc.c:232) 4 libsystem_malloc.dylib 0x00000001bc72e9ac _malloc_zone_malloc + 144 (malloc.c:1514) 5 libsystem_malloc.dylib 0x00000001bc72f410 realloc + 112 (malloc.c:1531) 6 Flutter 0x00000001057a8eb8 dart::realloc(void*, unsigned long) + 8 (allocation.cc:20) 7 Flutter 0x00000001057a8eb8 dart::MallocWriteStream::Realloc(long) + 40 (datastream.cc:24) 8 Flutter 0x00000001057a55a0 dart::BaseWriteStream::EnsureSpace(long) + 40 (datastream.h:525) 9 Flutter 0x00000001057a55a0 dart::BaseWriteStream::WriteByte(unsigned char) + 40 (datastream.h:431) 10 Flutter 0x00000001057a55a0 void dart::BaseWriteStream::Write(int) + 40 (datastream.h:422) 11 Flutter 0x00000001057a55a0 dart::BaseWriteStream::Raw<4, int>::Write(dart::BaseWriteStream*, int) + 40 (datastream.h:345) 12 Flutter 0x00000001057a55a0 void dart::BaseWriter::Write(int) + 68 (snapshot.h:439) 13 Flutter 0x00000001057a55a0 dart::BaseWriter::WriteVMIsolateObject(long) + 68 (snapshot.h:461) 14 Flutter 0x00000001057a55a0 dart::ApiMessageWriter::WriteNullObject() + 68 (dart_api_message.cc:864) 15 Flutter 0x00000001057a55a0 dart::ApiMessageWriter::WriteCObjectInlined(_Dart_CObject*, Dart_CObject_Type) + 144 (dart_api_message.cc:999) 16 Flutter 0x00000001057a668c dart::ApiMessageWriter::WriteCObject(_Dart_CObject*) + 12 (dart_api_message.cc:935) 17 Flutter 0x00000001057a668c dart::ApiMessageWriter::WriteCMessage(_Dart_CObject*, long long, dart::Message::Priority) + 908 (dart_api_message.cc:1163) 18 Flutter 0x000000010588c9f0 dart::PostCObjectHelper(long long, _Dart_CObject*) + 200 (native_api_impl.cc:48) 19 Flutter 0x00000001056a99ec Dart_PostCObject + 12 (native_api_impl.cc:59) 20 Flutter 0x00000001056a99ec dart::bin::DartUtils::PostNull(long long) + 12 (dartutils.cc:649) 21 Flutter 0x00000001056a99ec dart::bin::EventHandlerImplementation::HandleTimeout() + 108 (eventhandler_macos.cc:419) 22 Flutter 0x00000001056a99ec dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long) + 516 (eventhandler_macos.cc:459) 23 Flutter 0x00000001056d65d0 dart::bin::ThreadStart(void*) + 48 (thread_macos.cc:87) 24 libsystem_pthread.dylib 0x00000001f43a8b3c _pthread_start + 288 (pthread.c:881) 25 libsystem_pthread.dylib 0x00000001f43ad880 thread_start + 8 Thread 8 name: Thread 8: 0 libsystem_kernel.dylib 0x00000001d8e2a644 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001d8e29a48 mach_msg + 72 (mach_msg.c:103) 2 CoreFoundation 0x00000001adc8d0ec __CFRunLoopServiceMachPort + 376 (CFRunLoop.c:2641) 3 CoreFoundation 0x00000001adc87560 __CFRunLoopRun + 1176 (CFRunLoop.c:2974) 4 CoreFoundation 0x00000001adc86b90 CFRunLoopRunSpecific + 572 (CFRunLoop.c:3242) 5 AudioSession 0x00000001b51c6098 GenericRunLoopThread::Entry(void*) + 156 (GenericRunLoopThread.h:91) 6 AudioSession 0x00000001b51c7ff8 CAPThread::Entry(CAPThread*) + 88 (CAPThread.cpp:321) 7 libsystem_pthread.dylib 0x00000001f43a8b3c _pthread_start + 288 (pthread.c:881) 8 libsystem_pthread.dylib 0x00000001f43ad880 thread_start + 8 Thread 9 name: Thread 9: 0 libobjc.A.dylib 0x00000001c16ba468 objc_msgSend + 8 1 MediaRemote 0x00000001b8d6c008 __37-[MRXPCConnection _registerCallbacks]_block_invoke.40 + 84 (MRXPCConnection.m:140) 2 libdispatch.dylib 0x00000001ad946280 _dispatch_client_callout + 16 (object.m:559) 3 libdispatch.dylib 0x00000001ad8f5b8c _dispatch_lane_barrier_sync_invoke_and_complete + 56 (queue.c:998) 4 MediaRemote 0x00000001b8d6be80 __37-[MRXPCConnection _registerCallbacks]_block_invoke + 396 (MRXPCConnection.m:139) 5 libxpc.dylib 0x00000001f43cb128 _xpc_connection_call_event_handler + 68 (connection.c:0) 6 libxpc.dylib 0x00000001f43cb4a4 _xpc_connection_mach_event + 880 (connection.c:1227) 7 libdispatch.dylib 0x00000001ad946340 _dispatch_client_callout4 + 16 (object.m:599) 8 libdispatch.dylib 0x00000001ad8ffc30 _dispatch_mach_msg_invoke$VARIANT$mp + 384 (mach.c:2443) 9 libdispatch.dylib 0x00000001ad8eec94 _dispatch_lane_serial_drain$VARIANT$mp + 300 (inline_internal.h:2589) 10 libdispatch.dylib 0x00000001ad900838 _dispatch_mach_invoke$VARIANT$mp + 472 (mach.c:2765) 11 libdispatch.dylib 0x00000001ad8eec94 _dispatch_lane_serial_drain$VARIANT$mp + 300 (inline_internal.h:2589) 12 libdispatch.dylib 0x00000001ad8ef8d8 _dispatch_lane_invoke$VARIANT$mp + 472 (queue.c:3862) 13 libdispatch.dylib 0x00000001ad8f9338 _dispatch_workloop_worker_thread + 712 (queue.c:6601) 14 libsystem_pthread.dylib 0x00000001f43aa5a4 _pthread_wqthread + 272 (pthread.c:2206) 15 libsystem_pthread.dylib 0x00000001f43ad874 start_wqthread + 8 Thread 10 name: Thread 10: 0 libsystem_kernel.dylib 0x00000001d8e4c308 __bsdthread_ctl + 8 1 libsystem_pthread.dylib 0x00000001f43abff4 _pthread_set_properties_self + 120 (qos.c:255) 2 libdispatch.dylib 0x00000001ad8ea634 _dispatch_set_priority_and_mach_voucher_slow$VARIANT$mp + 160 (queue.c:167) 3 libdispatch.dylib 0x00000001ad8ea7d0 _dispatch_set_priority_and_voucher_slow$VARIANT$mp + 212 (queue.c:193) 4 libdispatch.dylib 0x00000001ad8eb454 _dispatch_continuation_pop$VARIANT$mp + 608 (inline_internal.h:2267) 5 libdispatch.dylib 0x00000001ad8fc0ac _dispatch_source_invoke$VARIANT$mp + 1308 (source.c:570) 6 libdispatch.dylib 0x00000001ad8f0a14 _dispatch_workloop_invoke$VARIANT$mp + 1604 (inline_internal.h:2589) 7 libdispatch.dylib 0x00000001ad8f9338 _dispatch_workloop_worker_thread + 712 (queue.c:6601) 8 libsystem_pthread.dylib 0x00000001f43aa5a4 _pthread_wqthread + 272 (pthread.c:2206) 9 libsystem_pthread.dylib 0x00000001f43ad874 start_wqthread + 8 Thread 11: 0 libsystem_pthread.dylib 0x00000001f43ad86c start_wqthread + 0 Thread 12: 0 libsystem_pthread.dylib 0x00000001f43ad86c start_wqthread + 0 Thread 13 name: Thread 13 Crashed: 0 libsystem_kernel.dylib 0x00000001d8e4d84c __pthread_kill + 8 1 libsystem_pthread.dylib 0x00000001f43a99e8 pthread_kill + 212 (pthread.c:1388) 2 libsystem_c.dylib 0x00000001b69b98f4 abort + 100 (abort.c:110) 3 libc++abi.dylib 0x00000001c17bacc8 abort_message + 128 (abort_message.cpp:76) 4 libc++abi.dylib 0x00000001c17acca0 demangling_terminate_handler() + 296 (cxa_default_handlers.cpp:67) 5 libobjc.A.dylib 0x00000001c16bee04 _objc_terminate() + 124 (objc-exception.mm:701) 6 libc++abi.dylib 0x00000001c17ba154 std::__terminate(void (*)()) + 16 (cxa_handlers.cpp:59) 7 libc++abi.dylib 0x00000001c17ba0ec std::terminate() + 44 (cxa_handlers.cpp:88) 8 libdispatch.dylib 0x00000001ad946294 _dispatch_client_callout + 36 (object.m:562) 9 libdispatch.dylib 0x00000001ad8eedcc _dispatch_lane_serial_drain$VARIANT$mp + 612 (inline_internal.h:2548) 10 libdispatch.dylib 0x00000001ad8ef8d8 _dispatch_lane_invoke$VARIANT$mp + 472 (queue.c:3862) 11 libdispatch.dylib 0x00000001ad8f9338 _dispatch_workloop_worker_thread + 712 (queue.c:6601) 12 libsystem_pthread.dylib 0x00000001f43aa5a4 _pthread_wqthread + 272 (pthread.c:2206) 13 libsystem_pthread.dylib 0x00000001f43ad874 start_wqthread + 8 Thread 14: 0 libsystem_pthread.dylib 0x00000001f43ad86c start_wqthread + 0 Thread 15: 0 libsystem_pthread.dylib 0x00000001f43ad86c start_wqthread + 0 Thread 16: 0 libsystem_pthread.dylib 0x00000001f43ad86c start_wqthread + 0 Thread 17: 0 libsystem_pthread.dylib 0x00000001f43ad86c start_wqthread + 0 Thread 18: 0 libsystem_pthread.dylib 0x00000001f43ad86c start_wqthread + 0 Thread 13 crashed with ARM Thread State (64-bit): x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000 x4: 0x00000001c17bdf31 x5: 0x000000016b602430 x6: 0x000000000000006e x7: 0x0000000000000033 x8: 0x000000016b603000 x9: 0x608250044becb575 x10: 0x0000000000000002 x11: 0x000000000000000b x12: 0x00000001f615fc4a x13: 0x0000000000000001 x14: 0x0000000000000010 x15: 0x0000000000000028 x16: 0x0000000000000148 x17: 0x0000000000000000 x18: 0x0000000000000000 x19: 0x0000000000000006 x20: 0x0000000000000eab x21: 0x000000016b6030e0 x22: 0x0000000000000114 x23: 0x0000000000000000 x24: 0x0000000000000000 x25: 0x0000000283c64080 x26: 0x0000000280721780 x27: 0x0000000136199038 x28: 0x0000000000000000 fp: 0x000000016b602390 lr: 0x00000001f43a99e8 sp: 0x000000016b602370 pc: 0x00000001d8e4d84c cpsr: 0x40000000 esr: 0x56000080 Address size fault Binary Images: 0x104c58000 - 0x104c5ffff Runner arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Runner 0x104c8c000 - 0x104c9bfff PurchasesHybridCommon arm64 <1fe2e87a652e342ead74154dcd327ecd> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/PurchasesHybridCommon.framework/PurchasesHybridCommon 0x104cc4000 - 0x104d2ffff dyld arm64 /usr/lib/dyld 0x104db0000 - 0x104e13fff HealthKitReporter arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/HealthKitReporter.framework/HealthKitReporter 0x104f30000 - 0x104f5ffff Purchases arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/Purchases.framework/Purchases 0x104fb0000 - 0x104fd3fff PurchasesCoreSwift arm64 <803be7488ee438f18af2ce082bac75bd> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/PurchasesCoreSwift.framework/PurchasesCoreSwift 0x105018000 - 0x10501ffff another_flushbar arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/another_flushbar.framework/another_flushbar 0x105030000 - 0x10504bfff assets_audio_player arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/assets_audio_player.framework/assets_audio_player 0x105084000 - 0x10508bfff assets_audio_player_web arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/assets_audio_player_web.framework/assets_audio_player_web 0x10509c000 - 0x1050a3fff auto_orientation arm64 <9aef5e0220a33714ab25524f28530252> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/auto_orientation.framework/auto_orientation 0x1050b0000 - 0x1050b7fff device_info arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/device_info.framework/device_info 0x1050c4000 - 0x1050cbfff flutter_app_badger arm64 <7f1ef98453443905876afcdc8ab76ac7> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/flutter_app_badger.framework/flutter_app_badger 0x1050d8000 - 0x1050dffff flutter_device_locale arm64 <7a790be251f532e489c6aef2c6c80d04> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/flutter_device_locale.framework/flutter_device_locale 0x1050f0000 - 0x1050f7fff flutter_dynamic_icon arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/flutter_dynamic_icon.framework/flutter_dynamic_icon 0x105104000 - 0x10510ffff flutter_local_notifications arm64 <3457b324e36b32b993145cf5ec3f44fb> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/flutter_local_notifications.framework/flutter_local_notifications 0x105120000 - 0x105127fff flutter_native_timezone arm64 <812b416995f638bba93f3b6ca1f1f0a4> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/flutter_native_timezone.framework/flutter_native_timezone 0x105134000 - 0x10513bfff flutter_vibrate arm64 <0f753c65a56736b08a7b4e3502640df7> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/flutter_vibrate.framework/flutter_vibrate 0x10514c000 - 0x105173fff health_kit_reporter arm64 <8177d2388c593ea09964448c02b9ce7c> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/health_kit_reporter.framework/health_kit_reporter 0x1051b4000 - 0x1051bffff home_indicator arm64 <2424c50feb9a350ab90aac64c2e322ce> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/home_indicator.framework/home_indicator 0x1051d4000 - 0x1051dbfff hue_rotation arm64 <236674250e8a33b28701ca6bb558fda7> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/hue_rotation.framework/hue_rotation 0x1051ec000 - 0x1051f3fff launch_review arm64 <35af850ca6983f769d4cd9eff5acddb5> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/launch_review.framework/launch_review 0x105200000 - 0x10520bfff notification_permissions arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/notification_permissions.framework/notification_permissions 0x105228000 - 0x10522ffff package_info arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/package_info.framework/package_info 0x10523c000 - 0x105243fff path_provider arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/path_provider.framework/path_provider 0x105250000 - 0x10525bfff purchases_flutter arm64 <33eb54db374d36beafd4c066851a3c3d> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/purchases_flutter.framework/purchases_flutter 0x10526c000 - 0x105273fff shared_preferences arm64 <2df07a4d9b5439e385b953f7137721b9> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/shared_preferences.framework/shared_preferences 0x105280000 - 0x105287fff url_launcher arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/url_launcher.framework/url_launcher 0x105298000 - 0x1052a7fff video_player arm64 <18cf0d8657a63dc8b5b1b5eb90fd67d5> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/video_player.framework/video_player 0x1052c0000 - 0x1052c7fff wakelock arm64 <9ddfea1cbebf3d59a7f818b5c2e000a0> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/wakelock.framework/wakelock 0x1052d8000 - 0x105997fff Flutter arm64 /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/Flutter.framework/Flutter 0x107be0000 - 0x107bebfff libobjc-trampolines.dylib arm64 /usr/lib/libobjc-trampolines.dylib 0x107df4000 - 0x1086bbfff App arm64 <41465adfa7ee38648f282ddb954563c8> /var/containers/Bundle/Application/CB828791-9D0C-4C62-83BF-353CE05B48E3/Runner.app/Frameworks/App.framework/App 0x1ad8e5000 - 0x1ad963fff libdispatch.dylib arm64 <6c143c51288f3cd084dd17b9a0aaee62> /usr/lib/system/libdispatch.dylib 0x1ad964000 - 0x1ad99afff libdyld.dylib arm64 /usr/lib/system/libdyld.dylib 0x1ad99b000 - 0x1adbf2fff libicucore.A.dylib arm64 <9fc7dac3deed3a479abbe36867045ba5> /usr/lib/libicucore.A.dylib 0x1adbf3000 - 0x1adf9cfff CoreFoundation arm64 <96f8386dd88a3c89a323a17975c3317f> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 0x1adf9d000 - 0x1ae136fff CoreServices arm64 /System/Library/Frameworks/CoreServices.framework/CoreServices 0x1ae137000 - 0x1ae17ffff WirelessDiagnostics arm64 /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics 0x1ae180000 - 0x1ae1f8fff SystemConfiguration arm64 <75fec68015053f2e84dc4a0a8586c617> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration 0x1ae1f9000 - 0x1ae2e3fff CoreTelephony arm64 <1491284f13863425978d2f39e060af95> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony 0x1ae2e4000 - 0x1ae765fff CFNetwork arm64 /System/Library/Frameworks/CFNetwork.framework/CFNetwork 0x1ae766000 - 0x1aee2bfff libnetwork.dylib arm64 /usr/lib/libnetwork.dylib 0x1aee2c000 - 0x1aee9cfff Accounts arm64 /System/Library/Frameworks/Accounts.framework/Accounts 0x1aee9d000 - 0x1af137fff Foundation arm64 /System/Library/Frameworks/Foundation.framework/Foundation 0x1af138000 - 0x1af49bfff ImageIO arm64 <982bf9fe32a43e0b95d21a5c8d206947> /System/Library/Frameworks/ImageIO.framework/ImageIO 0x1af49c000 - 0x1af4b4fff libCGInterfaces.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib 0x1af4b5000 - 0x1afa43fff CoreGraphics arm64 <9c095d1529953f9daf186a3a3d13a1f2> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 0x1afa44000 - 0x1b0e0bfff UIKitCore arm64 <71b59f6219da3cff89e1dacf333bab0d> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore 0x1b0e0c000 - 0x1b0e29fff libAccessibility.dylib arm64 <7b14f8ae35623cc7926d086785c913ea> /usr/lib/libAccessibility.dylib 0x1b0e2a000 - 0x1b109dfff QuartzCore arm64 /System/Library/Frameworks/QuartzCore.framework/QuartzCore 0x1b109e000 - 0x1b1103fff BackBoardServices arm64 <4f98188591a0352b809337236d822a02> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices 0x1b1104000 - 0x1b118bfff TextInput arm64 <1a8e17692974328eb137a99894619a83> /System/Library/PrivateFrameworks/TextInput.framework/TextInput 0x1b118c000 - 0x1b11f3fff libusrtcp.dylib arm64 <38d49d34771036a6933f051f5fd93ef8> /usr/lib/libusrtcp.dylib 0x1b11f4000 - 0x1b1589fff AppleMediaServices arm64 <39ffde16f1543a68b2c4be56eca89663> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices 0x1b158a000 - 0x1b16edfff libswiftFoundation.dylib arm64 <191cea851b253208a4634707cf529728> /usr/lib/swift/libswiftFoundation.dylib 0x1b16ee000 - 0x1b1a9dfff libswiftCore.dylib arm64 <3e4b597efce53f3ea83095489114d8e4> /usr/lib/swift/libswiftCore.dylib 0x1b1a9e000 - 0x1b1ab2fff UIKitServices arm64 <6cfeb1e50b2232a8a45133d5027c8543> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices 0x1b1ab3000 - 0x1b1bfbfff Preferences arm64 <930c7b581c853df198797b670f87c45f> /System/Library/PrivateFrameworks/Preferences.framework/Preferences 0x1b1bfc000 - 0x1b1e0afff ContactsUI arm64 /System/Library/Frameworks/ContactsUI.framework/ContactsUI 0x1b1e0b000 - 0x1b1fc4fff CoreText arm64 <6e6f5e0cd9e1304b83482c0b4ab2a7af> /System/Library/Frameworks/CoreText.framework/CoreText 0x1b1fc5000 - 0x1b1fddfff ExtensionKit arm64 /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit 0x1b1ff2000 - 0x1b206ffff BaseBoard arm64 <7f0411a61fcc389aa498fbdbe078bbe3> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard 0x1b2070000 - 0x1b2285fff CoreDuet arm64 <0e709564f48b3d798ad7abbd403a1251> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet 0x1b2286000 - 0x1b23d1fff Contacts arm64 <738a964f2592342c8cf8ed3df85a7fd6> /System/Library/Frameworks/Contacts.framework/Contacts 0x1b23d2000 - 0x1b3836fff GeoServices arm64 /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices 0x1b3837000 - 0x1b38bcfff CoreLocation arm64 <480e95ff24123860bc54c9c4ede7bbf4> /System/Library/Frameworks/CoreLocation.framework/CoreLocation 0x1b38bd000 - 0x1b3a59fff CloudKit arm64 <5ee14a0a271b378cbc357efd5ef1a33b> /System/Library/Frameworks/CloudKit.framework/CloudKit 0x1b3a5a000 - 0x1b3dc2fff CoreData arm64 <512043667c483b36b1e02c95663aec71> /System/Library/Frameworks/CoreData.framework/CoreData 0x1b49ac000 - 0x1b49b6fff libswiftCoreGraphics.dylib arm64 /usr/lib/swift/libswiftCoreGraphics.dylib 0x1b49b7000 - 0x1b49f5fff AppSupport arm64 <17db41b85aba31299c64512406a5e5d2> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport 0x1b49f6000 - 0x1b4b13fff ManagedConfiguration arm64 <1b9df1125b5e3efcb19ca301d7d2e3ee> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration 0x1b4b14000 - 0x1b4b80fff IMFoundation arm64 <7f1639eb9c5837819ad1522da82ab6cd> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation 0x1b4b81000 - 0x1b4c83fff IDS arm64 <8ddeaeaa96da3c9b88ba4ca207e7ef54> /System/Library/PrivateFrameworks/IDS.framework/IDS 0x1b4c84000 - 0x1b4dc1fff Security arm64 <149f8d12822a31a198bf48ce690f678d> /System/Library/Frameworks/Security.framework/Security 0x1b4dc2000 - 0x1b51b9fff MediaPlayer arm64 /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer 0x1b51ba000 - 0x1b51d1fff AudioSession arm64 <3236a3742eae394a96a2237aaf3b5f3d> /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession 0x1b51d2000 - 0x1b534bfff AVFCore arm64 <8cdc508c3c8e336b9f29d32c4eedce43> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore 0x1b534c000 - 0x1b58b0fff Intents arm64 /System/Library/Frameworks/Intents.framework/Intents 0x1b58fd000 - 0x1b5bfafff CoreImage arm64 /System/Library/Frameworks/CoreImage.framework/CoreImage 0x1b5bfb000 - 0x1b5cb5fff ColorSync arm64 <037592c7bb1f32af921e472cf9a95b88> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync 0x1b5cb6000 - 0x1b5ceefff CoreVideo arm64 /System/Library/Frameworks/CoreVideo.framework/CoreVideo 0x1b5cef000 - 0x1b6410fff MediaToolbox arm64 <7f5ea89db4bc3f6daf02b27a41f5902d> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox 0x1b6411000 - 0x1b6504fff CoreMedia arm64 <7f6e05169d013c1d97abfac25c60b10b> /System/Library/Frameworks/CoreMedia.framework/CoreMedia 0x1b6505000 - 0x1b6770fff AudioToolbox arm64 <49e931593939360bb0310716e712c473> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox 0x1b6771000 - 0x1b67c0fff CoreHaptics arm64 /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics 0x1b67c1000 - 0x1b681dfff UserActivity arm64 <204eaf6b983f3b879576eddba86a425e> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity 0x1b681e000 - 0x1b691ffff UIFoundation arm64 <89449f94ec45399cb82200e854334e0b> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation 0x1b6920000 - 0x1b6945fff libsystem_info.dylib arm64 <3536d46d36cd3af4b92c67e4bdebd8c6> /usr/lib/system/libsystem_info.dylib 0x1b6946000 - 0x1b69c2fff libsystem_c.dylib arm64 /usr/lib/system/libsystem_c.dylib 0x1b69c3000 - 0x1b6a0bfff RunningBoardServices arm64 /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices 0x1b6a0c000 - 0x1b7942fff JavaScriptCore arm64 <0a413324bb1c3b0182117a3e55a9f115> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 0x1b7ed6000 - 0x1b7f5bfff ContactsFoundation arm64 /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation 0x1b7f5c000 - 0x1b8180fff HealthKit arm64 /System/Library/Frameworks/HealthKit.framework/HealthKit 0x1b8181000 - 0x1b81a2fff ProactiveEventTracker arm64 /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker 0x1b81a3000 - 0x1b81edfff Lexicon arm64 <6d531b4861bc332fb00b8a42e2778491> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon 0x1b81ee000 - 0x1b8256fff PersonalizationPortrait arm64 <8bb6361b8a5030f289ffaaf8c8cb2e7a> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait 0x1b8257000 - 0x1b82a3fff CoreDuetContext arm64 <8d8c5f76d56a3c5c9f433e44ec1fcad3> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext 0x1b82a4000 - 0x1b834afff IOKit arm64 /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x1b834b000 - 0x1b835afff DataMigration arm64 <9bef406302373341973658d5fe3338ff> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration 0x1b835b000 - 0x1b83b6fff SpringBoardServices arm64 /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices 0x1b83b7000 - 0x1b83c8fff ContextKit arm64 /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit 0x1b83c9000 - 0x1b8622fff CoreMotion arm64 /System/Library/Frameworks/CoreMotion.framework/CoreMotion 0x1b8623000 - 0x1b8759fff EventKit arm64 <184114113e0b34ada009e79f7a56ee66> /System/Library/Frameworks/EventKit.framework/EventKit 0x1b8c79000 - 0x1b8ee9fff MediaRemote arm64 <72424f62d23434bfaee4de96abc09861> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote 0x1b8eea000 - 0x1b9082fff CoreUtils arm64 <1430df995b78363e964565be13d50bbf> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils 0x1b9083000 - 0x1b9098fff FamilyCircle arm64 /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle 0x1b9099000 - 0x1b9105fff CoreSpotlight arm64 <9be37e0ee25136ee996bc6a6f6e835f0> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight 0x1b94dd000 - 0x1b9666fff AssistantServices arm64 <680eea804df4372490c73ae967765f83> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices 0x1b9667000 - 0x1b9728fff CoreUI arm64 <5d80f7fa7f2b39929905a3b22c641f29> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI 0x1b9729000 - 0x1b9776fff SafariSafeBrowsing arm64 /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing 0x1b9777000 - 0x1b9ea5fff WebKit arm64 <19789fd9109837b7b6399e4f0eb867d6> /System/Library/Frameworks/WebKit.framework/WebKit 0x1b9ea6000 - 0x1bc24efff WebCore arm64 /System/Library/PrivateFrameworks/WebCore.framework/WebCore 0x1bc24f000 - 0x1bc2acfff libMobileGestalt.dylib arm64 <448540b0eca03930b98b2d18101114d6> /usr/lib/libMobileGestalt.dylib 0x1bc2ad000 - 0x1bc2c8fff CommonUtilities arm64 <3ffd6ea3f0683eb49ab5ba7f761201bc> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities 0x1bc2c9000 - 0x1bc42efff IDSFoundation arm64 <9167012f8eb333858885825cc96089b8> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation 0x1bc42f000 - 0x1bc52cfff IMSharedUtilities arm64 <429bb5ecefd63e00bf9853c8eec2ea22> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities 0x1bc52d000 - 0x1bc5cdfff CoreSuggestions arm64 <16a233726a913a77a08e8c624335b5f2> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions 0x1bc5ce000 - 0x1bc668fff AddressBookLegacy arm64 /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy 0x1bc669000 - 0x1bc699fff UserNotifications arm64 <166b5573570d31148c448c2661204d60> /System/Library/Frameworks/UserNotifications.framework/UserNotifications 0x1bc69a000 - 0x1bc71bfff FrontBoardServices arm64 /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices 0x1bc71c000 - 0x1bc73efff libsystem_malloc.dylib arm64 <9f2d3d4683d9358f972c1cf61c073a31> /usr/lib/system/libsystem_malloc.dylib 0x1bc73f000 - 0x1bc9f8fff MapKit arm64 <8554fdfc7b2139608358e6978eeb1fe8> /System/Library/Frameworks/MapKit.framework/MapKit 0x1bc9f9000 - 0x1bd1c6fff VectorKit arm64 /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit 0x1bd1c7000 - 0x1bd250fff AuthKit arm64 <83a8244f36893898b41e628ad2b7eb9b> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit 0x1bd251000 - 0x1bd2dffff AppleAccount arm64 <4991d6835c1934fdb8c5289940f5e433> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount 0x1bd2e0000 - 0x1bd3e5fff AVFAudio arm64 /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio 0x1bd3e6000 - 0x1bd644fff AudioToolboxCore arm64 /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore 0x1bd674000 - 0x1bd90afff StoreServices arm64 /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices 0x1bd90b000 - 0x1bda81fff Sharing arm64 /System/Library/PrivateFrameworks/Sharing.framework/Sharing 0x1bda82000 - 0x1bdb21fff ShareSheet arm64 <75dca4c8a0643942b3ec6831a6b2f5d1> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet 0x1bdb22000 - 0x1bdc09fff CoreParsec arm64 /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec 0x1be61f000 - 0x1be66efff MobileBackup arm64 /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup 0x1be66f000 - 0x1be682fff MSUDataAccessor arm64 <5065749534bf3ea492338ecf94a05224> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor 0x1be683000 - 0x1be6a8fff MobileAsset arm64 <4628533bd0833a5aa0aee255160206ca> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset 0x1be6a9000 - 0x1be6b8fff libsystem_networkextension.dylib arm64 <0e55773557ba3611994ce782f3cbfe75> /usr/lib/system/libsystem_networkextension.dylib 0x1be6b9000 - 0x1be8f6fff NetworkExtension arm64 <4f673f38e23837c59b262a540cb429b9> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension 0x1be922000 - 0x1bece3fff CoreML arm64 /System/Library/Frameworks/CoreML.framework/CoreML 0x1bece4000 - 0x1bf50afff Espresso arm64 /System/Library/PrivateFrameworks/Espresso.framework/Espresso 0x1bf50b000 - 0x1bf602fff VideoToolbox arm64 /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox 0x1bf603000 - 0x1bf64cfff OnBoardingKit arm64 /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit 0x1bf64d000 - 0x1bf73ffff AccessibilityUtilities arm64 /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities 0x1bf740000 - 0x1bf74ffff AXCoreUtilities arm64 <7214d52ea34e36d995241b967c21193c> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities 0x1c058d000 - 0x1c06fcfff Montreal arm64 <1fbbf5869f3b30339f91ec37687085c6> /System/Library/PrivateFrameworks/Montreal.framework/Montreal 0x1c06fd000 - 0x1c0809fff LanguageModeling arm64 /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling 0x1c080a000 - 0x1c0812fff InternationalSupport arm64 /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport 0x1c0813000 - 0x1c0a4dfff iTunesCloud arm64 /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud 0x1c0a4e000 - 0x1c0a8afff libswiftUIKit.dylib arm64 <2673e0455c0f3253a3cdf6e7eda8f0c1> /usr/lib/swift/libswiftUIKit.dylib 0x1c0b98000 - 0x1c0c3afff CalendarDatabase arm64 <931174ff892a33498538d0c714d013ca> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase 0x1c0c84000 - 0x1c0d5afff LinkPresentation arm64 <363fbe9c7b333dedaab6f35f148948bf> /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation 0x1c0d5b000 - 0x1c0e4cfff Combine arm64 <2bbb065f4220393daf6991cc2525b429> /System/Library/Frameworks/Combine.framework/Combine 0x1c0ed3000 - 0x1c0ee4fff UniformTypeIdentifiers arm64 <11d2057d0a8a3164906da7165b64eb09> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers 0x1c0ee5000 - 0x1c0f61fff CloudDocs arm64 <03754964ee6a387991763abf66b9274a> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs 0x1c1151000 - 0x1c11c8fff EmailFoundation arm64 <14aeacc0cd003fcfa06f3f07ecc00407> /System/Library/PrivateFrameworks/EmailFoundation.framework/EmailFoundation 0x1c1444000 - 0x1c147efff MediaServices arm64 /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices 0x1c147f000 - 0x1c15e3fff SearchFoundation arm64 /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation 0x1c15e4000 - 0x1c163cfff WebBookmarks arm64 /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks 0x1c16b8000 - 0x1c16edfff libobjc.A.dylib arm64 <7cad222912fa3d6c82005306fb157fa4> /usr/lib/libobjc.A.dylib 0x1c16ee000 - 0x1c174dfff LoggingSupport arm64 /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport 0x1c174e000 - 0x1c17a7fff libc++.1.dylib arm64 <88496d66c6683f1797c5d0c91e8bee42> /usr/lib/libc++.1.dylib 0x1c17a8000 - 0x1c17c0fff libc++abi.dylib arm64 <464199d1cdfe3663bedfcbc1b5f19491> /usr/lib/libc++abi.dylib 0x1c17c1000 - 0x1c17fffff SetupAssistant arm64 <0480ee547f983807bc4e797bf4ae2d4f> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant 0x1c1800000 - 0x1c1819fff OctagonTrust arm64 /System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust 0x1c192b000 - 0x1c196bfff CoreAutoLayout arm64 <83a9b00eb095347aa9a2fd147deb1d75> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout 0x1c196c000 - 0x1c1ac4fff Network arm64 <2fb89d76ea383b43bcd1e0c7ee9b9012> /System/Library/Frameworks/Network.framework/Network 0x1c1ac5000 - 0x1c1af9fff MobileKeyBag arm64 /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag 0x1c1d1f000 - 0x1c1d32fff BaseBoardUI arm64 /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI 0x1c1d33000 - 0x1c1dcdfff libvDSP.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib 0x1c1dce000 - 0x1c1e00fff libAudioToolboxUtility.dylib arm64 /usr/lib/libAudioToolboxUtility.dylib 0x1c1fae000 - 0x1c2036fff CoreNLP arm64 /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP 0x1c2037000 - 0x1c2143fff FileProvider arm64 <0e4c8a5e6b793ecd988b46f9675d7ba3> /System/Library/Frameworks/FileProvider.framework/FileProvider 0x1c2144000 - 0x1c2154fff BiomeStorage arm64 <315daa46f3373050b0f32c4061916e58> /System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage 0x1c2155000 - 0x1c216bfff libswiftDispatch.dylib arm64 <20f2131ec1bf3d35bef381ba0707b206> /usr/lib/swift/libswiftDispatch.dylib 0x1c216c000 - 0x1c21a1fff DataDetectorsCore arm64 /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore 0x1c21a2000 - 0x1c222dfff Symbolication arm64 <80559f09b8bc395b97389dc8bbcbdf66> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication 0x1c222e000 - 0x1c224bfff CrashReporterSupport arm64 /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport 0x1c2287000 - 0x1c234ffff TelephonyUtilities arm64 <72f35fe502333796ab144d785a6b8e5d> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities 0x1c2386000 - 0x1c256afff MPSNeuralNetwork arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork 0x1c256b000 - 0x1c25befff MPSCore arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore 0x1c2710000 - 0x1c2778fff CalendarFoundation arm64 <2f3c007ae909399bba919b644cfada12> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation 0x1c27d7000 - 0x1c28c4fff NLP arm64 <61aa4f28e9263957a1e384ef71cbe8f3> /System/Library/PrivateFrameworks/NLP.framework/NLP 0x1c28c5000 - 0x1c28ecfff AppSupportUI arm64 /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI 0x1c28f5000 - 0x1c2948fff FTServices arm64 /System/Library/PrivateFrameworks/FTServices.framework/FTServices 0x1c2949000 - 0x1c29f5fff libboringssl.dylib arm64 <81c7039fffe330749922d677441da473> /usr/lib/libboringssl.dylib 0x1c29f6000 - 0x1c2a0cfff ProtocolBuffer arm64 <70cb1f0b63d53dff8f524029be5f3cef> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer 0x1c2a0d000 - 0x1c2b0efff AVKit arm64 <07733eded94a34a0b7558d226f578781> /System/Library/Frameworks/AVKit.framework/AVKit 0x1c2c72000 - 0x1c2c80fff AssertionServices arm64 /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices 0x1c2c81000 - 0x1c2ca8fff CloudServices arm64 <304d123c1f023d1f92cc8efa1cd89a3b> /System/Library/PrivateFrameworks/CloudServices.framework/CloudServices 0x1c2cfb000 - 0x1c2dd4fff Metal arm64 <4601d687b481344a8e913602165f9416> /System/Library/Frameworks/Metal.framework/Metal 0x1c2dd5000 - 0x1c2f08fff MediaExperience arm64 <17a2cd08f1193fd7ba66296393a2d795> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience 0x1c3306000 - 0x1c331cfff libsystem_trace.dylib arm64 <4ed5b6b480e9322784b590bc92570931> /usr/lib/system/libsystem_trace.dylib 0x1c334e000 - 0x1c33b0fff SafariCore arm64 /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore 0x1c33b1000 - 0x1c35d1fff SafariShared arm64 /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared 0x1c35d2000 - 0x1c3664fff AppStoreDaemon arm64 /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon 0x1c3ec7000 - 0x1c3f61fff SAObjects arm64 <8c96862b2d56333b8ef15cfef4d31b86> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects 0x1c3f62000 - 0x1c3fa5fff VoiceServices arm64 <464c85f25bc633d391757aafbfd677a5> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices 0x1c3fa6000 - 0x1c3faefff GraphicsServices arm64 /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 0x1c3faf000 - 0x1c4002fff DeviceManagement arm64 /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement 0x1c4003000 - 0x1c4165fff Translation arm64 <5ec7c666f2cc35c3acc7dce6e7a7911c> /System/Library/PrivateFrameworks/Translation.framework/Translation 0x1c4166000 - 0x1c417afff PowerLog arm64 <051bae09e30a3f5a8563ff6af965feac> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog 0x1c417b000 - 0x1c41a2fff DuetActivityScheduler arm64 <03ea7e4df5b73546be8267f8a77fcafe> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler 0x1c57e0000 - 0x1c5a71fff Vision arm64 <68f7329556253ff1887192f6c92fd8f4> /System/Library/Frameworks/Vision.framework/Vision 0x1c5acc000 - 0x1c5b36fff ProactiveSupport arm64 <4ed25a5a5436340e9cdbec550cbfcba2> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport 0x1c5b62000 - 0x1c5b7ffff ApplePushService arm64 /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService 0x1c5b80000 - 0x1c5ba7fff BoardServices arm64 /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices 0x1c5cf7000 - 0x1c5d26fff libncurses.5.4.dylib arm64 <7b5a407ecd4b34ffb14f40a1c0e54a29> /usr/lib/libncurses.5.4.dylib 0x1c5d27000 - 0x1c5d73fff OSAnalytics arm64 <92ee24de7cda31079c3aa4f12a8905d2> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics 0x1c5d74000 - 0x1c5dfafff CoreBluetooth arm64 /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth 0x1c5fc8000 - 0x1c600afff TemplateKit arm64 /System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit 0x1c600b000 - 0x1c603dfff MobileInstallation arm64 /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation 0x1c603e000 - 0x1c60ccfff libTelephonyUtilDynamic.dylib arm64 /usr/lib/libTelephonyUtilDynamic.dylib 0x1c60cd000 - 0x1c6134fff NanoRegistry arm64 /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry 0x1c6210000 - 0x1c622dfff CoreMaterial arm64 <6d3afe48a60d30979d0ebda261fc14c3> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial 0x1c629d000 - 0x1c641ffff libsqlite3.dylib arm64 /usr/lib/libsqlite3.dylib 0x1c6420000 - 0x1c64dcfff AVFCapture arm64 <412e1d611bbf3f32bea2136a6f81ac3b> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture 0x1c64dd000 - 0x1c6813fff CMCapture arm64 <2317a6de58293824a6905a4ddc14544c> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture 0x1c695e000 - 0x1c6bb4fff MobileSpotlightIndex arm64 <4e495e50e7943999aebefae87bd97748> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex 0x1c6bb5000 - 0x1c6c56fff Email arm64 <9ac2289471df3869958915cd4628c2a5> /System/Library/PrivateFrameworks/Email.framework/Email 0x1c6c74000 - 0x1c6cb8fff AccessibilityUIUtilities arm64 <725018150a7633648c0db1391d347c93> /System/Library/PrivateFrameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities 0x1c6cb9000 - 0x1c6e8afff EventKitUI arm64 <896613fdb16c3ac686e8151aafd9b2ab> /System/Library/Frameworks/EventKitUI.framework/EventKitUI 0x1c6fb3000 - 0x1c6fbdfff libsystem_notify.dylib arm64 <4dbd2e3e6bc43d1388d0e01ba0cc4e07> /usr/lib/system/libsystem_notify.dylib 0x1c6fbe000 - 0x1c7000fff CryptoTokenKit arm64 <7fb1f3772ef736199a7953dc76b4f2db> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit 0x1c7068000 - 0x1c70d7fff libcorecrypto.dylib arm64 <071f7a201cf6324783d7d4e309a64c16> /usr/lib/system/libcorecrypto.dylib 0x1c70d8000 - 0x1c70fafff UserManagement arm64 <227023a57a1e3727819a124ff58c5550> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement 0x1c71cb000 - 0x1c71e1fff libsystem_asl.dylib arm64 <441adb81097f31d6a85d380a72993d66> /usr/lib/system/libsystem_asl.dylib 0x1c71e2000 - 0x1c7204fff AppSSO arm64 <7ea67814dd7d3e5fae4120689637adc1> /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO 0x1c7205000 - 0x1c7221fff SharedWebCredentials arm64 <72cfccd25dee3846919505efdb7802ef> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials 0x1c7222000 - 0x1c73f5fff SafariServices arm64 <9e09a21987d53596a635bbc9084f1f9c> /System/Library/Frameworks/SafariServices.framework/SafariServices 0x1c744b000 - 0x1c7481fff DataAccessExpress arm64 /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress 0x1c7482000 - 0x1c74b8fff CoreServicesStore arm64 <5c605e0210b23854a58ec83ddc727f0b> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore 0x1c74b9000 - 0x1c74ddfff CoreAnalytics arm64 <04783a664f6b323b8c6b6a9572a1d987> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics 0x1c74de000 - 0x1c74e9fff SymptomAnalytics arm64 <0b2f7ddd1d003e85bc5faf757d962eda> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics 0x1c76c5000 - 0x1c76d4fff NanoPreferencesSync arm64 /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync 0x1c7e90000 - 0x1c7ebafff IconServices arm64 <26b0813866783ef2ae30560c6da6a54a> /System/Library/PrivateFrameworks/IconServices.framework/IconServices 0x1c88e9000 - 0x1c8b85fff vImage arm64 <142de5b0cd0f34a09e89ef6f20cf5245> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage 0x1c94bd000 - 0x1c973afff HealthUI arm64 <62065431792c3d77a8f6290e3cfc8a4b> /System/Library/PrivateFrameworks/HealthUI.framework/HealthUI 0x1c973b000 - 0x1c990ffff IMCore arm64 <9901bc83234e3285809adc968c78dafe> /System/Library/PrivateFrameworks/IMCore.framework/IMCore 0x1c99ff000 - 0x1c9a16fff IAP arm64 /System/Library/PrivateFrameworks/IAP.framework/IAP 0x1c9a17000 - 0x1c9a6cfff ktrace arm64 /System/Library/PrivateFrameworks/ktrace.framework/ktrace 0x1c9a6d000 - 0x1c9a6ffff libAXSafeCategoryBundle.dylib arm64 <56a6ee48618c38b2ad483ef898e9844b> /usr/lib/libAXSafeCategoryBundle.dylib 0x1c9d54000 - 0x1c9d61fff Celestial arm64 <093a9160a7443b7f85b1111d6da0f17b> /System/Library/PrivateFrameworks/Celestial.framework/Celestial 0x1c9e06000 - 0x1c9e4afff Pegasus arm64 <414fda45a341320397a943db73aa6655> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus 0x1c9e4b000 - 0x1c9fa9fff WebKitLegacy arm64 /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy 0x1ca018000 - 0x1ca089fff ClassKit arm64 <55df4d6a066536f59649ea0ccebb3043> /System/Library/Frameworks/ClassKit.framework/ClassKit 0x1ca08a000 - 0x1ca0cdfff StoreKit arm64 /System/Library/Frameworks/StoreKit.framework/StoreKit 0x1cadbe000 - 0x1cadc8fff IOMobileFramebuffer arm64 <674f742e890231f3b8999fac2c9eb8fa> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer 0x1cadc9000 - 0x1cae3bfff ScreenTimeCore arm64 /System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore 0x1cb057000 - 0x1cb31bfff MusicLibrary arm64 <28cd84ffce4e3f17964aca4e27c092f0> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary 0x1cb31c000 - 0x1cb380fff CallKit arm64 <02a29d7e8339392f8abc6a7c5a0a9300> /System/Library/Frameworks/CallKit.framework/CallKit 0x1cb3b9000 - 0x1cb41ffff AXRuntime arm64 /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime 0x1cb420000 - 0x1cb43efff PrototypeTools arm64 <3a69a98b09433d4e91d088941f9e80df> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools 0x1cb43f000 - 0x1cb46afff PersistentConnection arm64 <1e0eb769c58e3a90a11e40e25d9b10bd> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection 0x1cb53f000 - 0x1cb55dfff BiomeStreams arm64 /System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams 0x1cb578000 - 0x1cb81afff PencilKit arm64 <9759a4d7e3173c1090c7d3cf23c33f0e> /System/Library/Frameworks/PencilKit.framework/PencilKit 0x1cb8c0000 - 0x1cb8d0fff libswiftUniformTypeIdentifiers.dylib arm64 <93bbb74417fb393eba66eec0a56002a9> /usr/lib/swift/libswiftUniformTypeIdentifiers.dylib 0x1cb8d1000 - 0x1cba40fff CoreSpeech arm64 <7ca423ca352036b4b4d2636138299f80> /System/Library/PrivateFrameworks/CoreSpeech.framework/CoreSpeech 0x1cba41000 - 0x1cbb8ffff IMDPersistence arm64 <729ffdf7a1f83d168807429b0e1e5b78> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence 0x1cbdb9000 - 0x1cbe69fff SafariSharedUI arm64 /System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI 0x1cbe6a000 - 0x1cbe85fff TextToSpeech arm64 /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech 0x1cbe86000 - 0x1cbe9bfff AppSSOCore arm64 /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore 0x1cbea6000 - 0x1cbebcfff CoreFollowUp arm64 <04ebb43ad52937d2bb9f3bbbdcd46d09> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp 0x1cbebd000 - 0x1cbf30fff Rapport arm64 /System/Library/PrivateFrameworks/Rapport.framework/Rapport 0x1cc00d000 - 0x1cc01efff Categories arm64 /System/Library/PrivateFrameworks/Categories.framework/Categories 0x1cc2de000 - 0x1cc304fff LocationSupport arm64 <7f3675b6392d3b6c9db09fab85af482c> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport 0x1cc305000 - 0x1cc337fff iCalendar arm64 <23704cadf2cf3a059bbb73acdf1f45ee> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar 0x1cc362000 - 0x1cc464fff ConfigurationEngineModel arm64 /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel 0x1cc465000 - 0x1cc48efff CacheDelete arm64 <24d3e7be3e3e3ed8bd16d37029bfeca7> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete 0x1cc48f000 - 0x1cc508fff CVNLP arm64 <0d5c92da96fa3fa7aeb46c6a69442f64> /System/Library/PrivateFrameworks/CVNLP.framework/CVNLP 0x1cc654000 - 0x1cc656fff OSAServicesClient arm64 <512c5c46335a3ce0b52a234f35ae7508> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient 0x1cc657000 - 0x1cc659fff BiomeFoundation arm64 <7b8ff3165460397c9f730ea3b254fe4d> /System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation 0x1cc65a000 - 0x1cc6b2fff ProtectedCloudStorage arm64 /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage 0x1cc6b3000 - 0x1cc6e9fff C2 arm64 <1395b69c0d1832f78862894499ef4e0b> /System/Library/PrivateFrameworks/C2.framework/C2 0x1cc6ea000 - 0x1cc73dfff DifferentialPrivacy arm64 <04c1d0817b943534bd56db9128106928> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy 0x1cc905000 - 0x1cd0c0fff EmbeddedAcousticRecognition arm64 <770574d9a15837cea4dda3fbebdcec7b> /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition 0x1cd0c1000 - 0x1cd137fff SiriInstrumentation arm64 <6972829f29b33ba3ad9538e8df039802> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation 0x1cd138000 - 0x1cd179fff BiometricKit arm64 /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit 0x1cd1b9000 - 0x1cd268fff CoreSymbolication arm64 /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication 0x1cd2d6000 - 0x1cd381fff SpeakerRecognition arm64 /System/Library/PrivateFrameworks/SpeakerRecognition.framework/SpeakerRecognition 0x1cd999000 - 0x1cd99afff MessageSupport arm64 <8ce7c75377f63ed282f39b3f8193de1d> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport 0x1cd99b000 - 0x1cd9acfff IOSurface arm64 <19dd2ad445e03197a5c453b357f361a0> /System/Library/Frameworks/IOSurface.framework/IOSurface 0x1cd9ad000 - 0x1cda0cfff MobileWiFi arm64 <0cdbba6a54183a64b1ddd3386ff36394> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi 0x1cdd8a000 - 0x1cdda5fff DoNotDisturb arm64 <676fb76948b1352f867892a383569353> /System/Library/PrivateFrameworks/DoNotDisturb.framework/DoNotDisturb 0x1cdf21000 - 0x1cdf5afff libGLImage.dylib arm64 <4779770f46713ee382d69d7c5d164b2a> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib 0x1cdf5b000 - 0x1cdf62fff libsystem_symptoms.dylib arm64 /usr/lib/system/libsystem_symptoms.dylib 0x1cdfa6000 - 0x1ce553fff CoreAudio arm64 <2b937bb958703622b673129c6a328758> /System/Library/Frameworks/CoreAudio.framework/CoreAudio 0x1ce554000 - 0x1ce569fff ContactsDonation arm64 /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation 0x1ce56a000 - 0x1ce587fff IntentsCore arm64 /System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore 0x1ce7b1000 - 0x1ce8effff Navigation arm64 <5025a4f527353dc89b521b3883ecb485> /System/Library/PrivateFrameworks/Navigation.framework/Navigation 0x1ce8f0000 - 0x1ce90bfff SafariFoundation arm64 <37ce2d3befb93fb993d713d840ab48cd> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation 0x1cea81000 - 0x1cea94fff MaterialKit arm64 <879733754d693dc58c0b96b2c5ca142b> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit 0x1ceb95000 - 0x1ceba5fff CoreAUC arm64 /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC 0x1cf3a7000 - 0x1cf3b7fff SettingsFoundation arm64 /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation 0x1cfad3000 - 0x1cfd0ffff RawCamera arm64 <121a46205cb33103abece4a910c1c4e8> /System/Library/CoreServices/RawCamera.bundle/RawCamera 0x1cfd77000 - 0x1cfdd2fff ToneLibrary arm64 /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary 0x1d05d4000 - 0x1d05e1fff MediaSafetyNet arm64 <5e1283a090a93b2c9b725241edb0a184> /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet 0x1d05e2000 - 0x1d061dfff TimeSync arm64 <06a4692803fd334d8724eb703ded3189> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync 0x1d06ad000 - 0x1d06eefff ExposureNotification arm64 <12cf46b1a7e83d69b215d668082bdee9> /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification 0x1d0d3f000 - 0x1d0d48fff CoreTime arm64 <0b270e31fa83304d865905a299786bd2> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime 0x1d0d49000 - 0x1d0d4dfff AccessibilityUIShared arm64 <8f526784289134d0b43374ec5a9462fb> /System/Library/PrivateFrameworks/AccessibilityUIShared.framework/AccessibilityUIShared 0x1d16ac000 - 0x1d17a8fff TextRecognition arm64 <7fd65d9d8daf37878ae6fe2c678ad54c> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition 0x1d18bd000 - 0x1d18c6fff ContextKitExtraction arm64 <65a36747d1883db097a498084fae80d4> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction 0x1d1999000 - 0x1d199bfff libswiftObjectiveC.dylib arm64 <00cbb14d750f3112bd16c54e86476f19> /usr/lib/swift/libswiftObjectiveC.dylib 0x1d199c000 - 0x1d1bd7fff libmorphun.dylib arm64 <01697f2dd9ee3d209e0b11ad7732bbe1> /usr/lib/libmorphun.dylib 0x1d21d1000 - 0x1d2239fff EmailCore arm64 /System/Library/PrivateFrameworks/EmailCore.framework/EmailCore 0x1d2b03000 - 0x1d2b4dfff MIME arm64 /System/Library/PrivateFrameworks/MIME.framework/MIME 0x1d2e14000 - 0x1d2e29fff MailServices arm64 <767e88a398973749be3a33d7fac42b10> /System/Library/PrivateFrameworks/MailServices.framework/MailServices 0x1d2ea5000 - 0x1d2f26fff CoreDAV arm64 /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV 0x1d30b9000 - 0x1d30f3fff CalendarUIKit arm64 /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit 0x1d30f4000 - 0x1d3102fff MobileIcons arm64 <0778bf9d5e7b332cae1e3d866496a3eb> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons 0x1d34cd000 - 0x1d359dfff ProofReader arm64 /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader 0x1d46c8000 - 0x1d471efff AccessibilitySharedSupport arm64 <78d7122bef603b66afc3ef6b54a69b4b> /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/AccessibilitySharedSupport 0x1d471f000 - 0x1d4729fff MallocStackLogging arm64 /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging 0x1d494b000 - 0x1d4995fff MetadataUtilities arm64 <172cef994fb73c89b57d8bab29a610fa> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities 0x1d504c000 - 0x1d50a8fff CoreLocationProtobuf arm64 /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf 0x1d52ad000 - 0x1d52dffff Bom arm64 <9e9b29dd79a733f1ab5663355d0dd7cb> /System/Library/PrivateFrameworks/Bom.framework/Bom 0x1d5312000 - 0x1d5318fff PushKit arm64 /System/Library/Frameworks/PushKit.framework/PushKit 0x1d550e000 - 0x1d559ffff Quagga arm64 <4a818fb4609b3a0c8a9014795e2ef939> /System/Library/PrivateFrameworks/Quagga.framework/Quagga 0x1d55a0000 - 0x1d55a7fff StudyLog arm64 <88bbb526884e38ef9150c0f75715e153> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog 0x1d64d7000 - 0x1d6516fff NaturalLanguage arm64 <8d5ff13ac0d03e119c16ce91baab11c5> /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage 0x1d6ae6000 - 0x1d6af0fff AudioDataAnalysis arm64 <090fd2ffe18c36ca96a7fcd1daf1d7dd> /System/Library/PrivateFrameworks/AudioDataAnalysis.framework/AudioDataAnalysis 0x1d7683000 - 0x1d7691fff libAXSpeechManager.dylib arm64 /usr/lib/libAXSpeechManager.dylib 0x1d7ccf000 - 0x1d7e0bfff CoreHandwriting arm64 <2b761d912b433c31b47a7a3713696012> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting 0x1d852a000 - 0x1d8535fff AppleIDAuthSupport arm64 <8696435ca89a3d94913a03532eaf6c89> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport 0x1d8544000 - 0x1d855bfff LocalAuthentication arm64 /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication 0x1d85d4000 - 0x1d85dafff IOAccelerator arm64 <7417a10429143cc083f07dad2bc9929f> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator 0x1d89ee000 - 0x1d8a82fff iTunesStore arm64 <7e492f9c96d83b17becf7619681c28f7> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore 0x1d8e26000 - 0x1d8e56fff libsystem_kernel.dylib arm64 <8bcb6ff951623657a2e25ce5704353e6> /usr/lib/system/libsystem_kernel.dylib 0x1d907f000 - 0x1d9186fff ResponseKit arm64 /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit 0x1d9187000 - 0x1d91bffff EmojiFoundation arm64 <6c0f0b16f7923f6ba81637672aed1ca9> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation 0x1d97a1000 - 0x1d97adfff FontServices arm64 <7ff3f43b6d8b3739ba7dad86534c6c2c> /System/Library/PrivateFrameworks/FontServices.framework/FontServices 0x1d9940000 - 0x1d994bfff MediaAccessibility arm64 /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility 0x1d998c000 - 0x1d9f58fff SiriTTS arm64 /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS 0x1d9f59000 - 0x1d9f67fff SetupAssistantSupport arm64 <19c4ab3d4cad36a598645d90253a72be> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport 0x1da062000 - 0x1da092fff VirtualGarage arm64 <095f15c8dbed3f118f1ccd544c3d01d0> /System/Library/PrivateFrameworks/VirtualGarage.framework/VirtualGarage 0x1da093000 - 0x1da0b7fff NetAppsUtilities arm64 <91bc366763bd3b7ea7056111123f057b> /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities 0x1da0b8000 - 0x1da11afff Osprey arm64 <8977e644a99a3ac58057d12b5be8c35e> /System/Library/PrivateFrameworks/Osprey.framework/Osprey 0x1db548000 - 0x1db554fff libdscsym.dylib arm64 /usr/lib/libdscsym.dylib 0x1db555000 - 0x1db566fff HangTracer arm64 <69cd54c3144d3d34a837c8dd74ca20bf> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer 0x1db715000 - 0x1db7cdfff SampleAnalysis arm64 <19bf827b119f3a19a70cf64f6a6285a8> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis 0x1db7ce000 - 0x1db7fbfff PlugInKit arm64 /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit 0x1db89c000 - 0x1db89dfff libSystem.B.dylib arm64 <5f81896adca13ef7999f6c5da89a750b> /usr/lib/libSystem.B.dylib 0x1dbb84000 - 0x1dbb8ffff MobileActivation arm64 <660147f1a8053472863c0aa6cb764e0d> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation 0x1dbb90000 - 0x1dbbe7fff CalendarDaemon arm64 /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon 0x1dbcde000 - 0x1dbd4cfff libarchive.2.dylib arm64 /usr/lib/libarchive.2.dylib 0x1dbd4d000 - 0x1dbd70fff libtailspin.dylib arm64 /usr/lib/libtailspin.dylib 0x1dbd71000 - 0x1dc198fff libBNNS.dylib arm64 <95844d422c5539bc8ca5dea0178e2100> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib 0x1dc199000 - 0x1dc1dafff SharedUtils arm64 /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils 0x1dc476000 - 0x1dc47bfff libsysdiagnose.dylib arm64 /usr/lib/libsysdiagnose.dylib 0x1dc7b4000 - 0x1dc7b4fff AVFoundation arm64 <67d1fb0445533fd0980d831c4de638e8> /System/Library/Frameworks/AVFoundation.framework/AVFoundation 0x1dc7b5000 - 0x1dc7b5fff Accelerate arm64 <60178837735a31f880eeb8a049e4730a> /System/Library/Frameworks/Accelerate.framework/Accelerate 0x1dc7b6000 - 0x1dc865fff libBLAS.dylib arm64 <6351ac13ba543fb4ac478d731180c0ad> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib 0x1dc866000 - 0x1dcb78fff libLAPACK.dylib arm64 <10efc7a2a6a03c34be8b1f4137d12819> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib 0x1dcb79000 - 0x1dcb8dfff libLinearAlgebra.dylib arm64 <06cd159549673047a3721b75d3ed6c52> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib 0x1dcb8e000 - 0x1dcb92fff libQuadrature.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib 0x1dcb93000 - 0x1dcbf4fff libSparse.dylib arm64 <6d545c698fd3302e980e304a1e73aaef> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib 0x1dcbf5000 - 0x1dcc06fff libSparseBLAS.dylib arm64 <13adad32d56d373cbd4ece6bb55d00f0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib 0x1dcc07000 - 0x1dcc60fff libvMisc.dylib arm64 <32b05781cc82371497410cb41e680a62> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib 0x1dcc61000 - 0x1dcc61fff vecLib arm64 <945de1225f413f06a334ff9591421b61> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib 0x1dcc62000 - 0x1dcc65fff Accessibility arm64 <38f6c0f97e3e340f89fa5c8fb1b6db14> /System/Library/Frameworks/Accessibility.framework/Accessibility 0x1dcdbc000 - 0x1dcdd7fff AuthenticationServices arm64 <8907e239d3453c979bb78536f978adf0> /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices 0x1dcec0000 - 0x1dcf2afff CoreMIDI arm64 /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI 0x1dd45e000 - 0x1dd475fff ExternalAccessory arm64 <9b27bc2bccbb3ecebbc5f3f3b7bf319f> /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory 0x1dd489000 - 0x1dd4b1fff GLKit arm64 <9aec6cd1139a3ca1874298642c275b6c> /System/Library/Frameworks/GLKit.framework/GLKit 0x1dd4b2000 - 0x1dd4dffff GSS arm64 /System/Library/Frameworks/GSS.framework/GSS 0x1dd5e6000 - 0x1dd5effff HealthKitUI arm64 <35f57622113c3b4d86964d1ee36ef5d6> /System/Library/Frameworks/HealthKitUI.framework/HealthKitUI 0x1dd63a000 - 0x1dd786fff MLCompute arm64 <13864808285b3e3896b0347fdaf26b37> /System/Library/Frameworks/MLCompute.framework/MLCompute 0x1dd7ac000 - 0x1dd7c4fff MetalKit arm64 /System/Library/Frameworks/MetalKit.framework/MetalKit 0x1dd7c5000 - 0x1dd84afff MPSImage arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage 0x1dd84b000 - 0x1dd871fff MPSMatrix arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix 0x1dd872000 - 0x1dd8abfff MPSNDArray arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray 0x1dd8ac000 - 0x1dd8f4fff MPSRayIntersector arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector 0x1dd8f5000 - 0x1dd8f5fff MetalPerformanceShaders arm64 <582f018bbac2349196b8b077b982659e> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders 0x1ddc77000 - 0x1ddc77fff MobileCoreServices arm64 <16765062b1b837c39863bb02b45c4e3e> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 0x1ddc78000 - 0x1de6eefff ModelIO arm64 <3bbe60c56c2032539c300b862312c72f> /System/Library/Frameworks/ModelIO.framework/ModelIO 0x1de861000 - 0x1de869fff OpenGLES arm64 <5326684fcd5232c28a966977cd135135> /System/Library/Frameworks/OpenGLES.framework/OpenGLES 0x1de86a000 - 0x1de86bfff libCVMSPluginSupport.dylib arm64 <2384104277183d2b8251544a46f43f8e> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib 0x1de86c000 - 0x1de872fff libCoreFSCache.dylib arm64 <4e60c875e32a30c9885b72fe928c5fab> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib 0x1de873000 - 0x1de878fff libCoreVMClient.dylib arm64 <98fdfbe45afe3237b22405228808f43f> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib 0x1de879000 - 0x1de881fff libGFXShared.dylib arm64 <8a6a2d80da50330fa63f67d68dc622d1> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib 0x1dea2e000 - 0x1deaeffff PDFKit arm64 <9283908dce323d73a5018ae6640b1f66> /System/Library/Frameworks/PDFKit.framework/PDFKit 0x1deafe000 - 0x1deb39fff QuickLookThumbnailing arm64 <459f92b21d3239e4a9022fb937dc4ae7> /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing 0x1ded9e000 - 0x1df1a9fff SceneKit arm64 /System/Library/Frameworks/SceneKit.framework/SceneKit 0x1df1b1000 - 0x1df2f7fff SoundAnalysis arm64 <9239558fbceb3f72944edeaa4f922734> /System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis 0x1df2f8000 - 0x1df307fff Speech arm64 /System/Library/Frameworks/Speech.framework/Speech 0x1df429000 - 0x1df429fff UIKit arm64 <3e146dbd73e13658b9c003aa901ef264> /System/Library/Frameworks/UIKit.framework/UIKit 0x1df432000 - 0x1df4f7fff VideoSubscriberAccount arm64 <7ec86be052043fc88f4ad4673d67bc15> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount 0x1df4f8000 - 0x1e00cefff libfaceCore.dylib arm64 <0993a8c5b4053c5cb0b567bdb947ab71> /System/Library/Frameworks/Vision.framework/libfaceCore.dylib 0x1e0606000 - 0x1e0609fff AFKUser arm64 <40ff20ad5b4436b084c3d7a74b92489c> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser 0x1e06c9000 - 0x1e0948fff ANECompiler arm64 /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler 0x1e0949000 - 0x1e095cfff ANEServices arm64 /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices 0x1e0961000 - 0x1e0a1cfff APFS arm64 /System/Library/PrivateFrameworks/APFS.framework/APFS 0x1e0a1d000 - 0x1e0a23fff ASEProcessing arm64 <98ad33ec5bad3cac9e4fe5b61a344e40> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing 0x1e0b7b000 - 0x1e0b80fff AccessibilityUI arm64 <32073f844e843482a5160cff521957cc> /System/Library/PrivateFrameworks/AccessibilityUI.framework/AccessibilityUI 0x1e115f000 - 0x1e1180fff ActivityRingsUI arm64 <6642acf824a9300f8f00e2c21005251e> /System/Library/PrivateFrameworks/ActivityRingsUI.framework/ActivityRingsUI 0x1e1200000 - 0x1e1205fff AggregateDictionary arm64 /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary 0x1e138c000 - 0x1e1465fff AirPlaySync arm64 <38a294a758de3842ae756cc04e33167f> /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync 0x1e156c000 - 0x1e1587fff AlgosScoreFramework arm64 <5f2e416dbd0132d6b7eb235f052f3995> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework 0x1e16ac000 - 0x1e16cdfff AppConduit arm64 <2ae1c874bca0356d9f59d263cfd08f2a> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit 0x1e17a1000 - 0x1e17abfff AppStoreOverlays arm64 <42c180430aa2359da4c234e1162219a3> /System/Library/PrivateFrameworks/AppStoreOverlays.framework/AppStoreOverlays 0x1e2843000 - 0x1e2852fff AppleFSCompression arm64 /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression 0x1e285f000 - 0x1e286cfff AppleIDSSOAuthentication arm64 /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication 0x1e286d000 - 0x1e28b0fff AppleJPEG arm64 /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG 0x1e292b000 - 0x1e293ffff AppleNeuralEngine arm64 <7dcb107df2dc3f26947a257ecc06a456> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine 0x1e2949000 - 0x1e296cfff AppleSauce arm64 /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce 0x1e2b17000 - 0x1e2b73fff AuthKitUI arm64 <1c4428a8a169316485dcdff008d6dccf> /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI 0x1e2c02000 - 0x1e2c1afff BiomePubSub arm64 <1edcd3067f443157a8d8d9869c4198b8> /System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub 0x1e2eb8000 - 0x1e2ec7fff BluetoothManager arm64 <28c370babaa736f68763a1f6a8c74561> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager 0x1e2f5e000 - 0x1e2f6efff BrailleTranslation arm64 /System/Library/PrivateFrameworks/BrailleTranslation.framework/BrailleTranslation 0x1e2f73000 - 0x1e2f9afff BridgePreferences arm64 /System/Library/PrivateFrameworks/BridgePreferences.framework/BridgePreferences 0x1e314f000 - 0x1e3159fff CMCaptureCore arm64 <6e44f9041e1d326eb39e2399cf7401f5> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore 0x1e3177000 - 0x1e3186fff CPMS arm64 <903d104151f93a67865d23fb300266d8> /System/Library/PrivateFrameworks/CPMS.framework/CPMS 0x1e3187000 - 0x1e3196fff CTCarrierSpace arm64 <8fac58b7cb1c37db98f2ac75c110818c> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace 0x1e349a000 - 0x1e34a5fff CaptiveNetwork arm64 <717de3cfa0283b4784876339eb29d84f> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork 0x1e35c0000 - 0x1e35fafff Catalyst arm64 <8863ed5366dc3e9c8f75f587652f797d> /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst 0x1e361f000 - 0x1e3640fff CellularPlanManager arm64 <295ce6b1a82835b1a4df93d1d3f89de1> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager 0x1e3659000 - 0x1e3661fff CertUI arm64 <1b230c696d3e30edb12a6e4f7691cfa6> /System/Library/PrivateFrameworks/CertUI.framework/CertUI 0x1e366a000 - 0x1e36b8fff ChunkingLibrary arm64 /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary 0x1e3a94000 - 0x1e3a9bfff CommonAuth arm64 /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth 0x1e3a9c000 - 0x1e3aa0fff CommunicationsFilter arm64 <0743486e7f583e268a21dcd36007a936> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter 0x1e3b70000 - 0x1e3b73fff ConstantClasses arm64 /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses 0x1e3bc0000 - 0x1e3c34fff ContactsUICore arm64 <48033b39139f355a89f9e592f4c53613> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore 0x1e3daf000 - 0x1e3ea2fff CoreBrightness arm64 <722b9c9b574b3fc0adca749e709e32b6> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness 0x1e3f0c000 - 0x1e3f1bfff CoreDuetDaemonProtocol arm64 <2ad75ccc611c37e1a71f2c5c9bc9ab8d> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol 0x1e3f1e000 - 0x1e3f20fff CoreDuetDebugLogging arm64 /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging 0x1e3f2f000 - 0x1e3f41fff CoreEmoji arm64 <356fb95a0e333624816762b3e9190e42> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji 0x1e453f000 - 0x1e4543fff CoreOptimization arm64 /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization 0x1e4544000 - 0x1e45fdfff CorePDF arm64 <8ad62aefaf0a36759c8a680d3e77410e> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF 0x1e45fe000 - 0x1e4606fff CorePhoneNumbers arm64 <2ae550632e0b324ca87a3452078312a5> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers 0x1e4607000 - 0x1e465bfff CorePrediction arm64 <13b15dde23ec3e53bbd260f0e7fc24e6> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction 0x1e4f5b000 - 0x1e4f65fff CoreRecents arm64 <2393725b18a832cbab3401e818078e0b> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents 0x1e4f66000 - 0x1e4fccfff CoreRecognition arm64 /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition 0x1e4fcd000 - 0x1e4fe5fff CoreSDB arm64 /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB 0x1e4fe6000 - 0x1e500efff CoreSVG arm64 <352e37d71b7e3608abf8a63de7a179ea> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG 0x1e51c0000 - 0x1e51c4fff DAAPKit arm64 /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit 0x1e5206000 - 0x1e5242fff DataDetectorsNaturalLanguage arm64 /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage 0x1e52a5000 - 0x1e52cefff DeviceIdentity arm64 <4dd8f2f77e983423bf03fed559915187> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity 0x1e52d5000 - 0x1e52d6fff DiagnosticLogCollection arm64 /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection 0x1e53f6000 - 0x1e542bfff DistributedEvaluation arm64 /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation 0x1e554c000 - 0x1e5586fff DocumentManager arm64 /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager 0x1e5587000 - 0x1e55a5fff DocumentManagerCore arm64 /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore 0x1e5628000 - 0x1e562afff DragUI arm64 /System/Library/PrivateFrameworks/DragUI.framework/DragUI 0x1e5659000 - 0x1e5689fff EAP8021X arm64 /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X 0x1e56a0000 - 0x1e56aafff EmailAddressing arm64 <246bfac1c45a398f8a9d54cd7e9dce4b> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing 0x1e56b8000 - 0x1e56ccfff Engram arm64 <6c054400a4223dbbb3df45f5402d770c> /System/Library/PrivateFrameworks/Engram.framework/Engram 0x1e5805000 - 0x1e580cfff ExtensionFoundation arm64 /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation 0x1e5985000 - 0x1e598dfff FSEvents arm64 <3035207619b63b81bf107ac96daeeac8> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents 0x1e598e000 - 0x1e59adfff FTAWD arm64 <4e328b62a2653a75b05d152a72297b1e> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD 0x1e59ae000 - 0x1e59b1fff FTClientServices arm64 /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices 0x1e59b2000 - 0x1e5dc4fff FaceCore arm64 /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore 0x1e5dcd000 - 0x1e5dd2fff FeatureFlagsSupport arm64 <6ed3cc7ef6f83c658dec14b8107e6e20> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport 0x1e5dd3000 - 0x1e5ddbfff FeedbackLogger arm64 <9d0ca49ee90e304fb4491aa42f51a4c5> /System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger 0x1e5f66000 - 0x1e60a2fff libFontParser.dylib arm64 <3951547e768b3a8181a41c226a7b4228> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x1e60a3000 - 0x1e60abfff libGSFont.dylib arm64 /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib 0x1e60ac000 - 0x1e60e9fff libGSFontCache.dylib arm64 /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib 0x1e614e000 - 0x1e615bfff libhvf.dylib arm64 <4fbb8c9204583d73ab934fcea5d44ef1> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x1e6181000 - 0x1e6198fff Futhark arm64 /System/Library/PrivateFrameworks/Futhark.framework/Futhark 0x1e6ce7000 - 0x1e6ce7fff libmetal_timestamp.dylib arm64 <6e000fb9b47b39d383f29cf8f1abe1c0> /System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libmetal_timestamp.dylib 0x1e6dc5000 - 0x1e6de3fff GenerationalStorage arm64 <915df83d6d3231c195e2566b41f6a681> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage 0x1e6de4000 - 0x1e6df1fff GraphVisualizer arm64 /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer 0x1e6e1d000 - 0x1e6e28fff HID arm64 <6f8cc4382d16348ab729376b170c7434> /System/Library/PrivateFrameworks/HID.framework/HID 0x1e7073000 - 0x1e70e3fff Heimdal arm64 /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal 0x1e73b4000 - 0x1e742bfff HomeSharing arm64 /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing 0x1e7485000 - 0x1e748afff IDSKVStore arm64 /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore 0x1e7787000 - 0x1e77a5fff IOGPU arm64 /System/Library/PrivateFrameworks/IOGPU.framework/IOGPU 0x1e77a7000 - 0x1e77b0fff IOKitten arm64 <901160534f77338c8d18ecd00a55c0f8> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten 0x1e77b1000 - 0x1e77b3fff IOSurfaceAccelerator arm64 <81c39848598d38c5a2f5e52fbccb4557> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator 0x1e77dc000 - 0x1e77e3fff IdleTimerServices arm64 <165b4860d4bb3ca692faa1ecfca5bd1a> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices 0x1e77eb000 - 0x1e77f0fff IncomingCallFilter arm64 /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter 0x1e78af000 - 0x1e78bbfff IntentsFoundation arm64 <567018357f4a38038f920692a5852f6d> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation 0x1e78d5000 - 0x1e78d8fff InternationalTextSearch arm64 <97ee8b5293e33f9aad5605340bbd0c01> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch 0x1e78d9000 - 0x1e78f5fff IntlPreferences arm64 <6fd6fa8828343b55874118b2a72b7c25> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences 0x1e7b57000 - 0x1e7b5dfff LinguisticData arm64 <63bbbb6b8f6b33fd9af619d13252b68c> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData 0x1e7bab000 - 0x1e7be3fff LocalAuthenticationPrivateUI arm64 <21baaa69a5d136dba232f963eaeda599> /System/Library/PrivateFrameworks/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI 0x1e7d9d000 - 0x1e7d9dfff Marco arm64 /System/Library/PrivateFrameworks/Marco.framework/Marco 0x1e804b000 - 0x1e8362fff MediaLibraryCore arm64 <8a78f14b3ff239dcb585dcd929447c70> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore 0x1e8363000 - 0x1e83f2fff MediaPlatform arm64 <577fb24d4b23368ba68596390a05f068> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform 0x1e87d5000 - 0x1e889dfff MetalTools arm64 <3bcf10f8221436329d7b811ed2c14dc6> /System/Library/PrivateFrameworks/MetalTools.framework/MetalTools 0x1e88bf000 - 0x1e8912fff MetricsKit arm64 <25e52e2a9c5f320590a5ce011c31efdc> /System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit 0x1e8923000 - 0x1e8937fff MobileBluetooth arm64 <02727f7b147c31d2a3cbe92d3ae8c23c> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth 0x1e89b8000 - 0x1e89befff MobileSystemServices arm64 <45fbdb46c3013736868bda7ad880ba81> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices 0x1e8cfb000 - 0x1e8d02fff NanoResourceGrabber arm64 <86b5df101c6d3062805d59dabed72edb> /System/Library/PrivateFrameworks/NanoResourceGrabber.framework/NanoResourceGrabber 0x1e8d51000 - 0x1e8d57fff Netrb arm64 <38d0d52af1db3f0883e114b058a27c6b> /System/Library/PrivateFrameworks/Netrb.framework/Netrb 0x1e8e13000 - 0x1e8e2cfff NetworkStatistics arm64 <7b96311a0a413c18a9d0ac8f1bfbe620> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics 0x1e8f03000 - 0x1e8f43fff OTSVG arm64 /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG 0x1e94aa000 - 0x1e94fbfff PBBridgeSupport arm64 /System/Library/PrivateFrameworks/PBBridgeSupport.framework/PBBridgeSupport 0x1e9545000 - 0x1e9547fff ParsecSubscriptionServiceSupport arm64 /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport 0x1e954c000 - 0x1e9574fff Pasteboard arm64 /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard 0x1e95a3000 - 0x1e95aefff PersonaKit arm64 <8a8776dd077a3a3aa7dda3063eab20af> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit 0x1e95af000 - 0x1e95bbfff PersonaUI arm64 <4528fe54f0b6380abfb42570f21eb9b4> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI 0x1e95dd000 - 0x1e95ddfff PhoneNumbers arm64 <8dfbbfb847b13a96a46823a6c38a7cc4> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers 0x1e97de000 - 0x1e9829fff PhysicsKit arm64 <90c5d7b123b23a8f9a27300b87cf052e> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit 0x1e98dd000 - 0x1e98e8fff PointerUIServices arm64 <02e507c817d73c2db238289c458e8a87> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices 0x1ead52000 - 0x1ead5cfff RTCReporting arm64 <12481ea8b79b33a5a6370d5c9c382d0f> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting 0x1eb087000 - 0x1eb098fff RemoteTextInput arm64 <84434810c4003beeab06cdd45c8af743> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput 0x1eb099000 - 0x1eb0fefff RemoteUI arm64 <34c2171e0e6f365196b111cd71d1abb6> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI 0x1eb134000 - 0x1eb138fff RevealCore arm64 /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore 0x1eb14e000 - 0x1eb4c7fff SDAPI arm64 <35dd168c093d3e3c9a08f8c5c225449d> /System/Library/PrivateFrameworks/SDAPI.framework/SDAPI 0x1eb635000 - 0x1eb668fff ScreenReaderCore arm64 <60c8f46bd2c534f3b84ce37437ba5b16> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore 0x1eb669000 - 0x1eb6adfff ScreenReaderOutput arm64 <70c21a05268b32a28aa8219a5aa559be> /System/Library/PrivateFrameworks/ScreenReaderOutput.framework/ScreenReaderOutput 0x1eba00000 - 0x1eba09fff SignpostCollection arm64 <0a023421a6303b4692e82ef725d973e1> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection 0x1eba0a000 - 0x1eba0afff SignpostMetrics arm64 <5626fd879bbd3a27bd1431756df49022> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics 0x1eba0c000 - 0x1eba4afff SignpostSupport arm64 <59737dca790d39c3b937e89f6a5f42e1> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport 0x1ec404000 - 0x1ec404fff SoftLinking arm64 <2a4d987221d13057a2e4287595be79b5> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking 0x1ec8ec000 - 0x1ec929fff StreamingZip arm64 <13c93a9e09243bd8b8807469faa3c20c> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip 0x1ec931000 - 0x1ec93bfff SymptomDiagnosticReporter arm64 <6859cb557cf933129cf3dfdec4d19599> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter 0x1ec96b000 - 0x1ec986fff SymptomPresentationFeed arm64 <28ca3c5776e43bf3b75d26461fac73cb> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed 0x1ec9c2000 - 0x1ec9d1fff TCC arm64 <0dccb80e90a03a5a8e27e3a94d384545> /System/Library/PrivateFrameworks/TCC.framework/TCC 0x1ed284000 - 0x1ed336fff TextureIO arm64 <0b45abd4bcde339db79f709b0ead166b> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO 0x1ed550000 - 0x1ed557fff URLFormatting arm64 <2d14f0975dee398a92019787068a518a> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting 0x1edb31000 - 0x1edb5afff UsageTracking arm64 <9df0c0d2fa193d6cab6fd9d12cb8ac4f> /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking 0x1edd96000 - 0x1ee49bfff VFX arm64 <3833165c4ca831dd99fec0a20a0acc7f> /System/Library/PrivateFrameworks/VFX.framework/VFX 0x1ee5d6000 - 0x1ee60ffff VoiceOverServices arm64 <00283602c7cf34b9be4356799584ab93> /System/Library/PrivateFrameworks/VoiceOverServices.framework/VoiceOverServices 0x1ee619000 - 0x1ee6dbfff VoiceTrigger arm64 <08526d6239333ccebaa225ae47258315> /System/Library/PrivateFrameworks/VoiceTrigger.framework/VoiceTrigger 0x1ee79d000 - 0x1ee79efff WatchdogClient arm64 <8f7265fa627630129dbc2258e6064e89> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient 0x1eea66000 - 0x1ef18efff libwebrtc.dylib arm64 <98b406210b053d298a1bd67a97e53ef9> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib 0x1ef206000 - 0x1ef21bfff WebUI arm64 <91ef21072e7c3096854e540d6348d726> /System/Library/PrivateFrameworks/WebUI.framework/WebUI 0x1ef720000 - 0x1ef723fff XCTTargetBootstrap arm64 <9630df1fcd0333bebf03e95ee1af8cfc> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap 0x1ef795000 - 0x1ef79bfff ZoomServices arm64 <5ab1d656ceb43ca0b9ae5d5c3de86f77> /System/Library/PrivateFrameworks/ZoomServices.framework/ZoomServices 0x1ef7a0000 - 0x1ef7bffff caulk arm64 <58754027c4f33abead7c694d5cb14ebb> /System/Library/PrivateFrameworks/caulk.framework/caulk 0x1f1bf5000 - 0x1f1bfafff kperf arm64 <7be3c364a1a83c34a855c63918c59839> /System/Library/PrivateFrameworks/kperf.framework/kperf 0x1f1bfb000 - 0x1f1c03fff kperfdata arm64 /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata 0x1f1c04000 - 0x1f1c1afff libEDR arm64 <442ac43fa109339081ab71544584457f> /System/Library/PrivateFrameworks/libEDR.framework/libEDR 0x1f1c36000 - 0x1f1c46fff perfdata arm64 <690a2b8c78af3705b7ca68c3c883d610> /System/Library/PrivateFrameworks/perfdata.framework/perfdata 0x1f1c47000 - 0x1f1c75fff vCard arm64 /System/Library/PrivateFrameworks/vCard.framework/vCard 0x1f2575000 - 0x1f25aefff libAWDSupport.dylib arm64 <37773b7bbaa936669e25e456e5781ed7> /usr/lib/libAWDSupport.dylib 0x1f25af000 - 0x1f295ffff libAWDSupportFramework.dylib arm64 /usr/lib/libAWDSupportFramework.dylib 0x1f2ad9000 - 0x1f2ae8fff libAudioStatistics.dylib arm64 <29a8fba51ce232c5884d9aabd91302b1> /usr/lib/libAudioStatistics.dylib 0x1f2c83000 - 0x1f2cb5fff libCRFSuite.dylib arm64 /usr/lib/libCRFSuite.dylib 0x1f2cb6000 - 0x1f2cb7fff libCTGreenTeaLogger.dylib arm64 /usr/lib/libCTGreenTeaLogger.dylib 0x1f2cb8000 - 0x1f2cc2fff libChineseTokenizer.dylib arm64 <3e25430cea9335efab2adecfa0249934> /usr/lib/libChineseTokenizer.dylib 0x1f2f60000 - 0x1f2f67fff libIOReport.dylib arm64 <7dec7a86fbb839239337b720344a867a> /usr/lib/libIOReport.dylib 0x1f2fdd000 - 0x1f2fe4fff libMatch.1.dylib arm64 /usr/lib/libMatch.1.dylib 0x1f30f8000 - 0x1f30fdfff libThaiTokenizer.dylib arm64 <280a277bf76a33f2973fc2a521eabd5f> /usr/lib/libThaiTokenizer.dylib 0x1f3366000 - 0x1f3368fff libapp_launch_measurement.dylib arm64 /usr/lib/libapp_launch_measurement.dylib 0x1f3369000 - 0x1f337ffff libapple_nghttp2.dylib arm64 <741cbe1e00f93a20b845d77885621920> /usr/lib/libapple_nghttp2.dylib 0x1f3380000 - 0x1f3411fff libate.dylib arm64 <3e667c68c59c33b9b12817fd3a0b45bf> /usr/lib/libate.dylib 0x1f34a1000 - 0x1f34b1fff libbsm.0.dylib arm64 <62262c68bf203584b2ea3889b8647e16> /usr/lib/libbsm.0.dylib 0x1f34b2000 - 0x1f34befff libbz2.1.0.dylib arm64 /usr/lib/libbz2.1.0.dylib 0x1f34bf000 - 0x1f34bffff libcharset.1.dylib arm64 <72b0c36f725f38fea3579a515aaf64b9> /usr/lib/libcharset.1.dylib 0x1f34c0000 - 0x1f34d1fff libcmph.dylib arm64 <32b4ccadf15b39d0bff16f84dcee363e> /usr/lib/libcmph.dylib 0x1f34d2000 - 0x1f34e9fff libcompression.dylib arm64 <36dd56ca87a33b8bbc2e9ee086e82284> /usr/lib/libcompression.dylib 0x1f34ea000 - 0x1f34fffff libcoretls.dylib arm64 <31987a4e4ec23c89952efad70a0d71d5> /usr/lib/libcoretls.dylib 0x1f3500000 - 0x1f3501fff libcoretls_cfhelpers.dylib arm64 <56fa9fe8ebb83d17872877e4c5cd0848> /usr/lib/libcoretls_cfhelpers.dylib 0x1f3525000 - 0x1f352bfff libcupolicy.dylib arm64 <44a7794b5640370085ab8dff10715a49> /usr/lib/libcupolicy.dylib 0x1f352c000 - 0x1f3533fff libdns_services.dylib arm64 <8d3832488b4333b492251a634982e109> /usr/lib/libdns_services.dylib 0x1f3534000 - 0x1f3550fff libedit.3.dylib arm64 <810d15ff7e4232ac9f2d001edf7f05b2> /usr/lib/libedit.3.dylib 0x1f3551000 - 0x1f3551fff libenergytrace.dylib arm64 /usr/lib/libenergytrace.dylib 0x1f3552000 - 0x1f3569fff libexpat.1.dylib arm64 /usr/lib/libexpat.1.dylib 0x1f3593000 - 0x1f3597fff libgermantok.dylib arm64 /usr/lib/libgermantok.dylib 0x1f3598000 - 0x1f359dfff libheimdal-asn1.dylib arm64 /usr/lib/libheimdal-asn1.dylib 0x1f359e000 - 0x1f368ffff libiconv.2.dylib arm64 <6bf1c6e1e4b93cc3928eaa07c4ecdfc5> /usr/lib/libiconv.2.dylib 0x1f36ad000 - 0x1f36aefff liblangid.dylib arm64 <982686583ed13ebaa2cc14345035abe9> /usr/lib/liblangid.dylib 0x1f36af000 - 0x1f36bafff liblockdown.dylib arm64 /usr/lib/liblockdown.dylib 0x1f36bb000 - 0x1f36d3fff liblzma.5.dylib arm64 <60e6e4ad8b823583b81e7e39df26637f> /usr/lib/liblzma.5.dylib 0x1f3701000 - 0x1f3754fff libmecab.dylib arm64 /usr/lib/libmecab.dylib 0x1f3755000 - 0x1f397dfff libmecabra.dylib arm64 <978c6339009a3983a56ae4c7d3bd548d> /usr/lib/libmecabra.dylib 0x1f397e000 - 0x1f3990fff libmis.dylib arm64 /usr/lib/libmis.dylib 0x1f3991000 - 0x1f39a6fff libnetworkextension.dylib arm64 /usr/lib/libnetworkextension.dylib 0x1f3d47000 - 0x1f3d7afff libpcap.A.dylib arm64 <0d7a2422cdb838ce9604933d6ced3742> /usr/lib/libpcap.A.dylib 0x1f3d7b000 - 0x1f3d88fff libperfcheck.dylib arm64 <1222639db2d836c4a797cc0c88aebed8> /usr/lib/libperfcheck.dylib 0x1f3d90000 - 0x1f3da1fff libprequelite.dylib arm64 <50e53775ae203c69948abfffb5f0aac1> /usr/lib/libprequelite.dylib 0x1f3da2000 - 0x1f3db3fff libprotobuf-lite.dylib arm64 /usr/lib/libprotobuf-lite.dylib 0x1f3db4000 - 0x1f3e12fff libprotobuf.dylib arm64 /usr/lib/libprotobuf.dylib 0x1f3e13000 - 0x1f3e70fff libquic.dylib arm64 <201f3424ec74361380b4c719d47129e1> /usr/lib/libquic.dylib 0x1f3e71000 - 0x1f3e88fff libresolv.9.dylib arm64 /usr/lib/libresolv.9.dylib 0x1f3e89000 - 0x1f3e8bfff libsandbox.1.dylib arm64 /usr/lib/libsandbox.1.dylib 0x1f3ed3000 - 0x1f3ed6fff libutil.dylib arm64 /usr/lib/libutil.dylib 0x1f3ed7000 - 0x1f3fbcfff libxml2.2.dylib arm64 <3102a95fbfd13d2292ed7d4f31ce994f> /usr/lib/libxml2.2.dylib 0x1f3fc1000 - 0x1f3fe9fff libxslt.1.dylib arm64 /usr/lib/libxslt.1.dylib 0x1f3fea000 - 0x1f3ffbfff libz.1.dylib arm64 /usr/lib/libz.1.dylib 0x1f4030000 - 0x1f4032fff liblog_network.dylib arm64 <8f97d345acb03af288187787229c7baa> /usr/lib/log/liblog_network.dylib 0x1f403b000 - 0x1f4041fff libswiftAVFoundation.dylib arm64 <5bdb1a02e2913843ae91a6f0b948c771> /usr/lib/swift/libswiftAVFoundation.dylib 0x1f4042000 - 0x1f40a1fff libswiftAccelerate.dylib arm64 <75527fe17c343879871304d0771c36ef> /usr/lib/swift/libswiftAccelerate.dylib 0x1f40c8000 - 0x1f40d0fff libswiftCoreAudio.dylib arm64 <648cc75001c836d6980a7d55484d42f9> /usr/lib/swift/libswiftCoreAudio.dylib 0x1f40d6000 - 0x1f40d6fff libswiftCoreFoundation.dylib arm64 /usr/lib/swift/libswiftCoreFoundation.dylib 0x1f40d7000 - 0x1f40d7fff libswiftCoreImage.dylib arm64 <5466e6e1f120300a8d065580082f3d94> /usr/lib/swift/libswiftCoreImage.dylib 0x1f40d8000 - 0x1f40dafff libswiftCoreLocation.dylib arm64 /usr/lib/swift/libswiftCoreLocation.dylib 0x1f40db000 - 0x1f40e4fff libswiftCoreMIDI.dylib arm64 <246ef786b76e32da95775fca5cb3fe0a> /usr/lib/swift/libswiftCoreMIDI.dylib 0x1f40e9000 - 0x1f411ffff libswiftCoreMedia.dylib arm64 <2fc328075ce237dcbce80621f7b1173d> /usr/lib/swift/libswiftCoreMedia.dylib 0x1f412c000 - 0x1f4135fff libswiftDarwin.dylib arm64 /usr/lib/swift/libswiftDarwin.dylib 0x1f4136000 - 0x1f4136fff libswiftGLKit.dylib arm64 <4a7c297ee75b3c07a92d419cd29b6801> /usr/lib/swift/libswiftGLKit.dylib 0x1f4139000 - 0x1f413afff libswiftHealthKit.dylib arm64 /usr/lib/swift/libswiftHealthKit.dylib 0x1f4150000 - 0x1f4153fff libswiftMediaPlayer.dylib arm64 /usr/lib/swift/libswiftMediaPlayer.dylib 0x1f4154000 - 0x1f4158fff libswiftMetal.dylib arm64 <0accef9d9db43419a3594acd299f222e> /usr/lib/swift/libswiftMetal.dylib 0x1f4159000 - 0x1f415afff libswiftMetalKit.dylib arm64 <35d111808dbd3e4d829979ddb0da0afc> /usr/lib/swift/libswiftMetalKit.dylib 0x1f415d000 - 0x1f415ffff libswiftModelIO.dylib arm64 <2ccc57e645a936829d63a126aa851390> /usr/lib/swift/libswiftModelIO.dylib 0x1f41c3000 - 0x1f41c4fff libswiftQuartzCore.dylib arm64 <21337e58483c3606b7038a1fc6d4f1d4> /usr/lib/swift/libswiftQuartzCore.dylib 0x1f41c5000 - 0x1f41c8fff libswiftSceneKit.dylib arm64 /usr/lib/swift/libswiftSceneKit.dylib 0x1f4203000 - 0x1f4214fff libswiftos.dylib arm64 <15a5bbc42f273006b82723532ee3031f> /usr/lib/swift/libswiftos.dylib 0x1f4215000 - 0x1f4227fff libswiftsimd.dylib arm64 /usr/lib/swift/libswiftsimd.dylib 0x1f4228000 - 0x1f422dfff libcache.dylib arm64 <93f46de334c83b548e87b685e63149e7> /usr/lib/system/libcache.dylib 0x1f422e000 - 0x1f423afff libcommonCrypto.dylib arm64 <163c756fa4413bb7b2ca067463d98526> /usr/lib/system/libcommonCrypto.dylib 0x1f423b000 - 0x1f423ffff libcompiler_rt.dylib arm64 <6749df438089311b939a87f9ca479efd> /usr/lib/system/libcompiler_rt.dylib 0x1f4240000 - 0x1f4248fff libcopyfile.dylib arm64 <5ea5d77aebc930459a3ccf1838e73c6b> /usr/lib/system/libcopyfile.dylib 0x1f4326000 - 0x1f4326fff liblaunch.dylib arm64 /usr/lib/system/liblaunch.dylib 0x1f4327000 - 0x1f432cfff libmacho.dylib arm64 <863174fc64663104aca38d1d4a82d075> /usr/lib/system/libmacho.dylib 0x1f432d000 - 0x1f432ffff libremovefile.dylib arm64 /usr/lib/system/libremovefile.dylib 0x1f4330000 - 0x1f4331fff libsystem_blocks.dylib arm64 /usr/lib/system/libsystem_blocks.dylib 0x1f4332000 - 0x1f4334fff libsystem_collections.dylib arm64 <828126f3e6583da2aceac728678588de> /usr/lib/system/libsystem_collections.dylib 0x1f4335000 - 0x1f4339fff libsystem_configuration.dylib arm64 <27db1d5d607530bf888edca2c13e80ef> /usr/lib/system/libsystem_configuration.dylib 0x1f433a000 - 0x1f434cfff libsystem_containermanager.dylib arm64 /usr/lib/system/libsystem_containermanager.dylib 0x1f434d000 - 0x1f434efff libsystem_coreservices.dylib arm64 /usr/lib/system/libsystem_coreservices.dylib 0x1f434f000 - 0x1f4358fff libsystem_darwin.dylib arm64 /usr/lib/system/libsystem_darwin.dylib 0x1f4359000 - 0x1f4361fff libsystem_dnssd.dylib arm64 /usr/lib/system/libsystem_dnssd.dylib 0x1f4362000 - 0x1f4364fff libsystem_featureflags.dylib arm64 <1e7cd17eb5283b85bf4a27e1aa8dfa3e> /usr/lib/system/libsystem_featureflags.dylib 0x1f4365000 - 0x1f4392fff libsystem_m.dylib arm64 /usr/lib/system/libsystem_m.dylib 0x1f4393000 - 0x1f439dfff libsystem_platform.dylib arm64 /usr/lib/system/libsystem_platform.dylib 0x1f439e000 - 0x1f439efff libsystem_product_info_filter.dylib arm64 <61b5d8563fb33fe9b30540a45f659732> /usr/lib/system/libsystem_product_info_filter.dylib 0x1f439f000 - 0x1f43affff libsystem_pthread.dylib arm64 <93c7f0dc89f13162a1196fc88028d027> /usr/lib/system/libsystem_pthread.dylib 0x1f43b0000 - 0x1f43b3fff libsystem_sandbox.dylib arm64 <176b1087aaad36258e7ffc497673706c> /usr/lib/system/libsystem_sandbox.dylib 0x1f43b4000 - 0x1f43bdfff libunwind.dylib arm64 /usr/lib/system/libunwind.dylib 0x1f43be000 - 0x1f43f0fff libxpc.dylib arm64 /usr/lib/system/libxpc.dylib 0x1f4495000 - 0x1f44adfff AccessibilitySettingsLoader arm64 /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader 0x1f5249000 - 0x1f5348fff AGXMetalA10 arm64 /System/Library/Extensions/AGXMetalA10.bundle/AGXMetalA10 0x1f583e000 - 0x1f5850fff SpotlightLinguistics arm64 <9a6c941378f83d30bd70e008cc721a6c> /System/Library/PrivateFrameworks/SpotlightLinguistics.framework/SpotlightLinguistics EOF ```
Crash report 2 ``` Incident Identifier: 07003AE9-9A60-4B44-9ACA-FDE0E1B258E5 Hardware Model: iPhone12,1 Process: Runner [4792] Path: /private/var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Runner Identifier: com.achimsapps.breathe Version: 1609 (3.4.0) AppStoreTools: 12D4d AppVariant: 1:iPhone12,1:13 Code Type: ARM-64 (Native) Role: Non UI Parent Process: launchd [1] Coalition: com.achimsapps.breathe [1104] Date/Time: 2021-02-09 00:29:18.4208 -0500 Launch Time: 2021-02-09 00:18:45.5488 -0500 OS Version: iPhone OS 14.4 (18D52) Release Type: User Baseband Version: 2.03.04 Report Version: 104 Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Triggered by Thread: 14 Last Exception Backtrace: 0 CoreFoundation 0x19a5a986c __exceptionPreprocess + 220 (NSException.m:199) 1 libobjc.A.dylib 0x1af5c4c50 objc_exception_throw + 60 (objc-exception.mm:565) 2 CoreFoundation 0x19a4af000 +[NSException raise:format:arguments:] + 100 (NSException.m:146) 3 Foundation 0x19b84391c -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 132 (NSException.m:231) 4 Flutter 0x10534482c -[FlutterStandardMethodCodec encodeErrorEnvelope:] + 196 (FlutterStandardCodec.mm:110) 5 Flutter 0x1053417c8 __45-[FlutterMethodChannel setMethodCallHandler:]_block_invoke_2 + 136 (FlutterChannels.mm:0) 6 health_kit_reporter 0x104c3acbc thunk for @escaping @callee_unowned @convention(block) (@unowned Swift.AnyObject?) -> () + 92 (:0) 7 health_kit_reporter 0x104c49c2c closure #1 in SwiftHealthKitReporterPlugin.requestAuthorization(reporter:arguments:result:) + 320 8 health_kit_reporter 0x104c54a14 partial apply for closure #1 in SwiftHealthKitReporterPlugin.requestAuthorization(reporter:arguments:result:) + 72 (:0) 9 HealthKitReporter 0x1047a475c thunk for @escaping @callee_guaranteed (@unowned Bool, @guaranteed Error?) -> () + 56 (:0) 10 HealthKit 0x1a5210378 __84-[HKHealthStore requestAuthorizationToShareTypes:readTypes:shouldPrompt:completion:]_block_invoke + 376 (HKHealthStore.m:688) 11 libdispatch.dylib 0x19a19c24c _dispatch_call_block_and_release + 32 (init.c:1454) 12 libdispatch.dylib 0x19a19ddb0 _dispatch_client_callout + 20 (object.m:559) 13 libdispatch.dylib 0x19a1a510c _dispatch_lane_serial_drain + 580 (inline_internal.h:2548) 14 libdispatch.dylib 0x19a1a5c90 _dispatch_lane_invoke + 460 (queue.c:3862) 15 libdispatch.dylib 0x19a1afd78 _dispatch_workloop_worker_thread + 708 (queue.c:6601) 16 libsystem_pthread.dylib 0x1e6059814 _pthread_wqthread + 276 (pthread.c:2211) 17 libsystem_pthread.dylib 0x1e606076c start_wqthread + 8 Thread 0 name: Thread 0: 0 libobjc.A.dylib 0x00000001af5d6174 lookUpImpOrForward + 152 (lock_private.h:716) 1 libobjc.A.dylib 0x00000001af5c0524 _objc_msgSend_uncached + 68 2 libobjc.A.dylib 0x00000001af5c0524 _objc_msgSend_uncached + 68 3 AVFCore 0x00000001a20db790 __avplayeritem_fpItemNotificationCallback_block_invoke + 348 (AVPlayerItem.m:9333) 4 libdispatch.dylib 0x000000019a19c24c _dispatch_call_block_and_release + 32 (init.c:1454) 5 libdispatch.dylib 0x000000019a19ddb0 _dispatch_client_callout + 20 (object.m:559) 6 libdispatch.dylib 0x000000019a1ab7ac _dispatch_main_queue_callback_4CF + 836 (inline_internal.h:2548) 7 CoreFoundation 0x000000019a52511c __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 16 (CFRunLoop.c:1790) 8 CoreFoundation 0x000000019a51f120 __CFRunLoopRun + 2508 (CFRunLoop.c:3118) 9 CoreFoundation 0x000000019a51e21c CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242) 10 GraphicsServices 0x00000001b20ea784 GSEventRunModal + 164 (GSEvent.c:2259) 11 UIKitCore 0x000000019cf5eee8 -[UIApplication _run] + 1072 (UIApplication.m:3253) 12 UIKitCore 0x000000019cf6475c UIApplicationMain + 168 (UIApplication.m:4707) 13 Runner 0x000000010471dc6c main + 64 (AppDelegate.swift:5) 14 libdyld.dylib 0x000000019a1de6b0 start + 4 Thread 1 name: Thread 1: 0 libsystem_kernel.dylib 0x00000001c84da2d0 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001c84d9660 mach_msg + 76 (mach_msg.c:103) 2 CoreFoundation 0x000000019a524c30 __CFRunLoopServiceMachPort + 380 (CFRunLoop.c:2641) 3 CoreFoundation 0x000000019a51ec14 __CFRunLoopRun + 1216 (CFRunLoop.c:2974) 4 CoreFoundation 0x000000019a51e21c CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242) 5 Foundation 0x000000019b7cddf0 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 232 (NSRunLoop.m:374) 6 Foundation 0x000000019b7cdcbc -[NSRunLoop(NSRunLoop) runUntilDate:] + 92 (NSRunLoop.m:421) 7 UIKitCore 0x000000019d012c48 -[UIEventFetcher threadMain] + 516 (UIEventFetcher.m:838) 8 Foundation 0x000000019b93fa34 __NSThread__start__ + 864 (NSThread.m:724) 9 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 10 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 2 name: Thread 2: 0 libsystem_kernel.dylib 0x00000001c84da2d0 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001c84d9660 mach_msg + 76 (mach_msg.c:103) 2 CoreFoundation 0x000000019a524c30 __CFRunLoopServiceMachPort + 380 (CFRunLoop.c:2641) 3 CoreFoundation 0x000000019a51ec14 __CFRunLoopRun + 1216 (CFRunLoop.c:2974) 4 CoreFoundation 0x000000019a51e21c CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242) 5 Flutter 0x0000000105082a0c fml::MessageLoopDarwin::Run() + 88 (message_loop_darwin.mm:46) 6 Flutter 0x0000000105082410 fml::MessageLoopImpl::DoRun() + 28 (message_loop_impl.cc:96) 7 Flutter 0x0000000105082410 fml::MessageLoop::Run() + 32 (message_loop.cc:49) 8 Flutter 0x0000000105082410 fml::Thread::Thread(std::__1::basic_string, std::__1::allocator > const&)::$_0::operator()() const + 144 (thread.cc:35) 9 Flutter 0x0000000105082410 decltype(std::__1::forward, std::__1::allocator > const&)::$_0>(fp)()) std::__1::__invoke >, fml::Thread::Thread(std::__1::basic_string >, fml::Thread::Thread(std::__1::basic_string, std::__1::allocator > const&)::$_0::operator()() const + 144 (thread.cc:35) 9 Flutter 0x0000000105082410 decltype(std::__1::forward, std::__1::allocator > const&)::$_0>(fp)()) std::__1::__invoke >, fml::Thread::Thread(std::__1::basic_string >, fml::Thread::Thread(std::__1::basic_string, std::__1::allocator > const&)::$_0::operator()() const + 144 (thread.cc:35) 9 Flutter 0x0000000105082410 decltype(std::__1::forward, std::__1::allocator > const&)::$_0>(fp)()) std::__1::__invoke >, fml::Thread::Thread(std::__1::basic_string >, fml::Thread::Thread(std::__1::basic_string&) + 28 (__threading_support:390) 3 Flutter 0x000000010507db18 void std::__1::condition_variable::wait(std::__1::unique_lock&, fml::ConcurrentMessageLoop::WorkerMain()::$_1) + 40 (__mutex_base:374) 4 Flutter 0x000000010507db18 fml::ConcurrentMessageLoop::WorkerMain() + 80 (concurrent_message_loop.cc:80) 5 Flutter 0x000000010507db18 fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 184 (concurrent_message_loop.cc:26) 6 Flutter 0x000000010507db18 decltype(std::__1::forward(fp)()) std::__1::__invoke(fm... + 184 (type_traits:4425) 7 Flutter 0x000000010507db18 void std::__1::__thread_execute >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned lon... + 184 (thread:341) 8 Flutter 0x000000010507db18 void* std::__1::__thread_proxy >, fml::ConcurrentMessageLoop::ConcurrentMessageLo... + 256 (thread:351) 9 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 10 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 6 name: Thread 6: 0 libsystem_kernel.dylib 0x00000001c84fe1ac __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001e605b468 _pthread_cond_wait + 1192 (pthread_cond.c:636) 2 libc++.1.dylib 0x00000001af665328 std::__1::condition_variable::wait(std::__1::unique_lock&) + 28 (__threading_support:390) 3 Flutter 0x000000010507db18 void std::__1::condition_variable::wait(std::__1::unique_lock&, fml::ConcurrentMessageLoop::WorkerMain()::$_1) + 40 (__mutex_base:374) 4 Flutter 0x000000010507db18 fml::ConcurrentMessageLoop::WorkerMain() + 80 (concurrent_message_loop.cc:80) 5 Flutter 0x000000010507db18 fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 184 (concurrent_message_loop.cc:26) 6 Flutter 0x000000010507db18 decltype(std::__1::forward(fp)()) std::__1::__invoke(fm... + 184 (type_traits:4425) 7 Flutter 0x000000010507db18 void std::__1::__thread_execute >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned lon... + 184 (thread:341) 8 Flutter 0x000000010507db18 void* std::__1::__thread_proxy >, fml::ConcurrentMessageLoop::ConcurrentMessageLo... + 256 (thread:351) 9 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 10 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 7 name: Thread 7: 0 libsystem_kernel.dylib 0x00000001c84fe1ac __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001e605b468 _pthread_cond_wait + 1192 (pthread_cond.c:636) 2 libc++.1.dylib 0x00000001af665328 std::__1::condition_variable::wait(std::__1::unique_lock&) + 28 (__threading_support:390) 3 Flutter 0x000000010507db18 void std::__1::condition_variable::wait(std::__1::unique_lock&, fml::ConcurrentMessageLoop::WorkerMain()::$_1) + 40 (__mutex_base:374) 4 Flutter 0x000000010507db18 fml::ConcurrentMessageLoop::WorkerMain() + 80 (concurrent_message_loop.cc:80) 5 Flutter 0x000000010507db18 fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 184 (concurrent_message_loop.cc:26) 6 Flutter 0x000000010507db18 decltype(std::__1::forward(fp)()) std::__1::__invoke(fm... + 184 (type_traits:4425) 7 Flutter 0x000000010507db18 void std::__1::__thread_execute >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned lon... + 184 (thread:341) 8 Flutter 0x000000010507db18 void* std::__1::__thread_proxy >, fml::ConcurrentMessageLoop::ConcurrentMessageLo... + 256 (thread:351) 9 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 10 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 8 name: Thread 8: 0 libsystem_kernel.dylib 0x00000001c84fe1ac __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001e605b468 _pthread_cond_wait + 1192 (pthread_cond.c:636) 2 libc++.1.dylib 0x00000001af665328 std::__1::condition_variable::wait(std::__1::unique_lock&) + 28 (__threading_support:390) 3 Flutter 0x000000010507db18 void std::__1::condition_variable::wait(std::__1::unique_lock&, fml::ConcurrentMessageLoop::WorkerMain()::$_1) + 40 (__mutex_base:374) 4 Flutter 0x000000010507db18 fml::ConcurrentMessageLoop::WorkerMain() + 80 (concurrent_message_loop.cc:80) 5 Flutter 0x000000010507db18 fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 184 (concurrent_message_loop.cc:26) 6 Flutter 0x000000010507db18 decltype(std::__1::forward(fp)()) std::__1::__invoke(fm... + 184 (type_traits:4425) 7 Flutter 0x000000010507db18 void std::__1::__thread_execute >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned lon... + 184 (thread:341) 8 Flutter 0x000000010507db18 void* std::__1::__thread_proxy >, fml::ConcurrentMessageLoop::ConcurrentMessageLo... + 256 (thread:351) 9 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 10 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 9 name: Thread 9: 0 libsystem_kernel.dylib 0x00000001c84fe1ac __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001e605b468 _pthread_cond_wait + 1192 (pthread_cond.c:636) 2 libc++.1.dylib 0x00000001af665328 std::__1::condition_variable::wait(std::__1::unique_lock&) + 28 (__threading_support:390) 3 Flutter 0x000000010507db18 void std::__1::condition_variable::wait(std::__1::unique_lock&, fml::ConcurrentMessageLoop::WorkerMain()::$_1) + 40 (__mutex_base:374) 4 Flutter 0x000000010507db18 fml::ConcurrentMessageLoop::WorkerMain() + 80 (concurrent_message_loop.cc:80) 5 Flutter 0x000000010507db18 fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 184 (concurrent_message_loop.cc:26) 6 Flutter 0x000000010507db18 decltype(std::__1::forward(fp)()) std::__1::__invoke(fm... + 184 (type_traits:4425) 7 Flutter 0x000000010507db18 void std::__1::__thread_execute >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned lon... + 184 (thread:341) 8 Flutter 0x000000010507db18 void* std::__1::__thread_proxy >, fml::ConcurrentMessageLoop::ConcurrentMessageLo... + 256 (thread:351) 9 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 10 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 10 name: Thread 10: 0 libsystem_kernel.dylib 0x00000001c84fe1ac __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001e605b468 _pthread_cond_wait + 1192 (pthread_cond.c:636) 2 libc++.1.dylib 0x00000001af665328 std::__1::condition_variable::wait(std::__1::unique_lock&) + 28 (__threading_support:390) 3 Flutter 0x000000010507db18 void std::__1::condition_variable::wait(std::__1::unique_lock&, fml::ConcurrentMessageLoop::WorkerMain()::$_1) + 40 (__mutex_base:374) 4 Flutter 0x000000010507db18 fml::ConcurrentMessageLoop::WorkerMain() + 80 (concurrent_message_loop.cc:80) 5 Flutter 0x000000010507db18 fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0::operator()() const + 184 (concurrent_message_loop.cc:26) 6 Flutter 0x000000010507db18 decltype(std::__1::forward(fp)()) std::__1::__invoke(fm... + 184 (type_traits:4425) 7 Flutter 0x000000010507db18 void std::__1::__thread_execute >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned lon... + 184 (thread:341) 8 Flutter 0x000000010507db18 void* std::__1::__thread_proxy >, fml::ConcurrentMessageLoop::ConcurrentMessageLo... + 256 (thread:351) 9 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 10 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 11 name: Thread 11: 0 libsystem_kernel.dylib 0x00000001c8500230 kevent + 8 1 Flutter 0x0000000105191950 dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long) + 360 (eventhandler_macos.cc:451) 2 Flutter 0x00000001051be5d0 dart::bin::ThreadStart(void*) + 48 (thread_macos.cc:87) 3 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 4 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 12 name: Thread 12: 0 libsystem_kernel.dylib 0x00000001c84da2d0 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001c84d9660 mach_msg + 76 (mach_msg.c:103) 2 CoreFoundation 0x000000019a524c30 __CFRunLoopServiceMachPort + 380 (CFRunLoop.c:2641) 3 CoreFoundation 0x000000019a51ec14 __CFRunLoopRun + 1216 (CFRunLoop.c:2974) 4 CoreFoundation 0x000000019a51e21c CFRunLoopRunSpecific + 600 (CFRunLoop.c:3242) 5 AudioSession 0x00000001a20670c4 GenericRunLoopThread::Entry(void*) + 164 (GenericRunLoopThread.h:91) 6 AudioSession 0x00000001a206925c CAPThread::Entry(CAPThread*) + 92 (CAPThread.cpp:321) 7 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 8 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 13: 0 libsystem_kernel.dylib 0x00000001c84da324 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x000000019a19e398 _dispatch_sema4_timedwait + 68 (lock.c:154) 2 libdispatch.dylib 0x000000019a19e9a8 _dispatch_semaphore_wait_slow + 76 (semaphore.c:116) 3 libdispatch.dylib 0x000000019a1ae738 _dispatch_worker_thread + 308 (queue.c:6877) 4 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 5 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 14 name: Thread 14 Crashed: 0 libsystem_kernel.dylib 0x00000001c84fe414 __pthread_kill + 8 1 libsystem_pthread.dylib 0x00000001e6058b50 pthread_kill + 272 (pthread.c:1392) 2 libsystem_c.dylib 0x00000001a39d7b74 abort + 104 (abort.c:110) 3 libc++abi.dylib 0x00000001af6cacf8 abort_message + 132 (abort_message.cpp:76) 4 libc++abi.dylib 0x00000001af6bbe4c demangling_terminate_handler() + 308 (cxa_default_handlers.cpp:67) 5 libobjc.A.dylib 0x00000001af5c4f64 _objc_terminate() + 144 (objc-exception.mm:701) 6 libc++abi.dylib 0x00000001af6ca0e0 std::__terminate(void (*)()) + 20 (cxa_handlers.cpp:59) 7 libc++abi.dylib 0x00000001af6ca06c std::terminate() + 44 (cxa_handlers.cpp:88) 8 libdispatch.dylib 0x000000019a19ddc4 _dispatch_client_callout + 40 (object.m:562) 9 libdispatch.dylib 0x000000019a1a510c _dispatch_lane_serial_drain + 580 (inline_internal.h:2548) 10 libdispatch.dylib 0x000000019a1a5c90 _dispatch_lane_invoke + 460 (queue.c:3862) 11 libdispatch.dylib 0x000000019a1afd78 _dispatch_workloop_worker_thread + 708 (queue.c:6601) 12 libsystem_pthread.dylib 0x00000001e6059814 _pthread_wqthread + 276 (pthread.c:2211) 13 libsystem_pthread.dylib 0x00000001e606076c start_wqthread + 8 Thread 15: 0 libsystem_kernel.dylib 0x00000001c84da324 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x000000019a19e398 _dispatch_sema4_timedwait + 68 (lock.c:154) 2 libdispatch.dylib 0x000000019a19e9a8 _dispatch_semaphore_wait_slow + 76 (semaphore.c:116) 3 libdispatch.dylib 0x000000019a1ae738 _dispatch_worker_thread + 308 (queue.c:6877) 4 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 5 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 16: 0 libsystem_pthread.dylib 0x00000001e6060764 start_wqthread + 0 Thread 17: 0 libsystem_pthread.dylib 0x00000001e6060764 start_wqthread + 0 Thread 18: 0 libsystem_kernel.dylib 0x00000001c84da324 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x000000019a19e398 _dispatch_sema4_timedwait + 68 (lock.c:154) 2 libdispatch.dylib 0x000000019a19e9a8 _dispatch_semaphore_wait_slow + 76 (semaphore.c:116) 3 libdispatch.dylib 0x000000019a1ae738 _dispatch_worker_thread + 308 (queue.c:6877) 4 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 5 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 19: 0 libsystem_kernel.dylib 0x00000001c84da324 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x000000019a19e398 _dispatch_sema4_timedwait + 68 (lock.c:154) 2 libdispatch.dylib 0x000000019a19e9a8 _dispatch_semaphore_wait_slow + 76 (semaphore.c:116) 3 libdispatch.dylib 0x000000019a1ae738 _dispatch_worker_thread + 308 (queue.c:6877) 4 libsystem_pthread.dylib 0x00000001e6057cb0 _pthread_start + 320 (pthread.c:881) 5 libsystem_pthread.dylib 0x00000001e6060778 thread_start + 8 Thread 20: 0 libsystem_pthread.dylib 0x00000001e6060764 start_wqthread + 0 Thread 14 crashed with ARM Thread State (64-bit): x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000 x4: 0x000000016c251e90 x5: 0x000000016c252440 x6: 0x000000000000006e x7: 0x0000000000001b00 x8: 0x00000000000005b9 x9: 0xa3562839b236930f x10: 0x0000000000000002 x11: 0x0000000000000003 x12: 0x0000000000000000 x13: 0x0000000000000001 x14: 0x0000000000000010 x15: 0x000000000000004f x16: 0x0000000000000148 x17: 0x000000016c253000 x18: 0x0000000000000000 x19: 0x0000000000000006 x20: 0x000000000001428f x21: 0x000000016c2530e0 x22: 0x00000001fd3f4300 x23: 0x0000000000000000 x24: 0x0000000000000114 x25: 0x000000016c2530e0 x26: 0x0000000281b52a80 x27: 0x000000010881d038 x28: 0x0000000000000000 fp: 0x000000016c2523a0 lr: 0x00000001e6058b50 sp: 0x000000016c252380 pc: 0x00000001c84fe414 cpsr: 0x40000000 esr: 0x56000080 Address size fault Binary Images: 0x104718000 - 0x10471ffff Runner arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Runner 0x10477c000 - 0x1047dffff HealthKitReporter arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/HealthKitReporter.framework/HealthKitReporter 0x1048fc000 - 0x10492bfff Purchases arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/Purchases.framework/Purchases 0x104980000 - 0x1049effff dyld arm64e <1f4d7499ee603c5d9d542cd29e4e537c> /usr/lib/dyld 0x104a70000 - 0x104a93fff PurchasesCoreSwift arm64 <803be7488ee438f18af2ce082bac75bd> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/PurchasesCoreSwift.framework/PurchasesCoreSwift 0x104ad8000 - 0x104ae7fff PurchasesHybridCommon arm64 <1fe2e87a652e342ead74154dcd327ecd> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/PurchasesHybridCommon.framework/PurchasesHybridCommon 0x104b00000 - 0x104b07fff another_flushbar arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/another_flushbar.framework/another_flushbar 0x104b18000 - 0x104b33fff assets_audio_player arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/assets_audio_player.framework/assets_audio_player 0x104b6c000 - 0x104b73fff assets_audio_player_web arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/assets_audio_player_web.framework/assets_audio_player_web 0x104b84000 - 0x104b8bfff auto_orientation arm64 <9aef5e0220a33714ab25524f28530252> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/auto_orientation.framework/auto_orientation 0x104b98000 - 0x104b9ffff device_info arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/device_info.framework/device_info 0x104bac000 - 0x104bb3fff flutter_app_badger arm64 <7f1ef98453443905876afcdc8ab76ac7> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/flutter_app_badger.framework/flutter_app_badger 0x104bc0000 - 0x104bc7fff flutter_device_locale arm64 <7a790be251f532e489c6aef2c6c80d04> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/flutter_device_locale.framework/flutter_device_locale 0x104bd8000 - 0x104bdffff flutter_dynamic_icon arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/flutter_dynamic_icon.framework/flutter_dynamic_icon 0x104bec000 - 0x104bf7fff flutter_local_notifications arm64 <3457b324e36b32b993145cf5ec3f44fb> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/flutter_local_notifications.framework/flutter_local_notifications 0x104c08000 - 0x104c0ffff flutter_native_timezone arm64 <812b416995f638bba93f3b6ca1f1f0a4> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/flutter_native_timezone.framework/flutter_native_timezone 0x104c1c000 - 0x104c23fff flutter_vibrate arm64 <0f753c65a56736b08a7b4e3502640df7> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/flutter_vibrate.framework/flutter_vibrate 0x104c34000 - 0x104c5bfff health_kit_reporter arm64 <8177d2388c593ea09964448c02b9ce7c> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/health_kit_reporter.framework/health_kit_reporter 0x104c9c000 - 0x104ca7fff home_indicator arm64 <2424c50feb9a350ab90aac64c2e322ce> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/home_indicator.framework/home_indicator 0x104cbc000 - 0x104cc3fff hue_rotation arm64 <236674250e8a33b28701ca6bb558fda7> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/hue_rotation.framework/hue_rotation 0x104cd4000 - 0x104cdbfff launch_review arm64 <35af850ca6983f769d4cd9eff5acddb5> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/launch_review.framework/launch_review 0x104ce8000 - 0x104cf3fff notification_permissions arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/notification_permissions.framework/notification_permissions 0x104d10000 - 0x104d17fff package_info arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/package_info.framework/package_info 0x104d24000 - 0x104d2bfff path_provider arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/path_provider.framework/path_provider 0x104d38000 - 0x104d43fff purchases_flutter arm64 <33eb54db374d36beafd4c066851a3c3d> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/purchases_flutter.framework/purchases_flutter 0x104d54000 - 0x104d5bfff shared_preferences arm64 <2df07a4d9b5439e385b953f7137721b9> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/shared_preferences.framework/shared_preferences 0x104d68000 - 0x104d6ffff url_launcher arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/url_launcher.framework/url_launcher 0x104d80000 - 0x104d8ffff video_player arm64 <18cf0d8657a63dc8b5b1b5eb90fd67d5> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/video_player.framework/video_player 0x104da8000 - 0x104daffff wakelock arm64 <9ddfea1cbebf3d59a7f818b5c2e000a0> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/wakelock.framework/wakelock 0x104dc0000 - 0x10547ffff Flutter arm64 /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/Flutter.framework/Flutter 0x105a50000 - 0x105a5bfff libobjc-trampolines.dylib arm64e <0be796322ebd3748ac5506ab8b4fc60d> /usr/lib/libobjc-trampolines.dylib 0x10c000000 - 0x10c8c7fff App arm64 <41465adfa7ee38648f282ddb954563c8> /var/containers/Bundle/Application/B25DA8F2-9197-434A-9973-ACE0948D4A7F/Runner.app/Frameworks/App.framework/App 0x19a19a000 - 0x19a1dcfff libdispatch.dylib arm64e /usr/lib/system/libdispatch.dylib 0x19a1dd000 - 0x19a217fff libdyld.dylib arm64e <21b19919133438bcb233896e929945e0> /usr/lib/system/libdyld.dylib 0x19a218000 - 0x19a483fff libicucore.A.dylib arm64e /usr/lib/libicucore.A.dylib 0x19a484000 - 0x19a83dfff CoreFoundation arm64e <727f2644eb4e3d57bc2ee6803ba92366> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 0x19a83e000 - 0x19a9e9fff CoreServices arm64e /System/Library/Frameworks/CoreServices.framework/CoreServices 0x19a9ea000 - 0x19aa32fff WirelessDiagnostics arm64e <6b8356e76aae3c4e94213e796c6d7912> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics 0x19aa33000 - 0x19aaaffff SystemConfiguration arm64e <97ad4485538f3f389fcdb3fb4df441c3> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration 0x19aab0000 - 0x19aba7fff CoreTelephony arm64e <810c9ed7d97438e19ca18fac779bab84> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony 0x19aba8000 - 0x19b03ffff CFNetwork arm64e <0ebb3119a8ce35da96245b5528802fc8> /System/Library/Frameworks/CFNetwork.framework/CFNetwork 0x19b040000 - 0x19b74dfff libnetwork.dylib arm64e <39506b46189e3e828f32ab8326fcc2c7> /usr/lib/libnetwork.dylib 0x19b74e000 - 0x19b7c4fff Accounts arm64e <8cc93a19e5983eeb8afb506477688616> /System/Library/Frameworks/Accounts.framework/Accounts 0x19b7c5000 - 0x19ba80fff Foundation arm64e <7698bf3e0cf631c085e9562714f01276> /System/Library/Frameworks/Foundation.framework/Foundation 0x19ba81000 - 0x19bde3fff ImageIO arm64e <9fc48c6739e1399bb4ad52db3b37f607> /System/Library/Frameworks/ImageIO.framework/ImageIO 0x19bde4000 - 0x19bdfcfff libCGInterfaces.dylib arm64e /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib 0x19bdfd000 - 0x19c395fff CoreGraphics arm64e /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 0x19c396000 - 0x19d843fff UIKitCore arm64e <8518eae3832b3ff09fa59dbe3041f26c> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore 0x19d844000 - 0x19d866fff libAccessibility.dylib arm64e /usr/lib/libAccessibility.dylib 0x19d867000 - 0x19daedfff QuartzCore arm64e <8510f13908243686a9aa3e198539a021> /System/Library/Frameworks/QuartzCore.framework/QuartzCore 0x19daee000 - 0x19db59fff BackBoardServices arm64e <7f77d33c3c1f3cca979ae1332798a25f> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices 0x19db5a000 - 0x19dbe7fff TextInput arm64e <61a52060d5843d1ca4f1864b5fb5617c> /System/Library/PrivateFrameworks/TextInput.framework/TextInput 0x19dbe8000 - 0x19dc50fff libusrtcp.dylib arm64e <3c51b0d5a05c36828f52bf8b7320852a> /usr/lib/libusrtcp.dylib 0x19dc51000 - 0x19e01ffff AppleMediaServices arm64e /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices 0x19e020000 - 0x19e19cfff libswiftFoundation.dylib arm64e /usr/lib/swift/libswiftFoundation.dylib 0x19e19d000 - 0x19e5cefff libswiftCore.dylib arm64e /usr/lib/swift/libswiftCore.dylib 0x19e5cf000 - 0x19e5e7fff UIKitServices arm64e <513a8906528a35739a45c91ea1817430> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices 0x19e5e8000 - 0x19e741fff Preferences arm64e /System/Library/PrivateFrameworks/Preferences.framework/Preferences 0x19e742000 - 0x19e969fff ContactsUI arm64e <27576b968fb33ee08ae4009687396b75> /System/Library/Frameworks/ContactsUI.framework/ContactsUI 0x19e96a000 - 0x19eb21fff CoreText arm64e <58b7adf717bf3fb093fd084cb70cba54> /System/Library/Frameworks/CoreText.framework/CoreText 0x19eb22000 - 0x19eb3cfff ExtensionKit arm64e /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit 0x19eb52000 - 0x19ebd6fff BaseBoard arm64e /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard 0x19ebd7000 - 0x19ee02fff CoreDuet arm64e /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet 0x19ee03000 - 0x19ef65fff Contacts arm64e <387594fd3d2c321183e16487cc92d086> /System/Library/Frameworks/Contacts.framework/Contacts 0x19ef66000 - 0x1a04bbfff GeoServices arm64e /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices 0x1a04bc000 - 0x1a0551fff CoreLocation arm64e <27c07cfbfe903a308300038163f75a62> /System/Library/Frameworks/CoreLocation.framework/CoreLocation 0x1a0552000 - 0x1a0704fff CloudKit arm64e <91285302d0043991af90fe2b0f3727d0> /System/Library/Frameworks/CloudKit.framework/CloudKit 0x1a0705000 - 0x1a0a83fff CoreData arm64e /System/Library/Frameworks/CoreData.framework/CoreData 0x1a17f0000 - 0x1a17fafff libswiftCoreGraphics.dylib arm64e <05d0f019b7a430f5b754bd60ea5b8559> /usr/lib/swift/libswiftCoreGraphics.dylib 0x1a17fb000 - 0x1a183afff AppSupport arm64e /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport 0x1a183b000 - 0x1a1964fff ManagedConfiguration arm64e <73f74ef2dd093981b1d0834e9906ea6e> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration 0x1a1965000 - 0x1a19d6fff IMFoundation arm64e <07b9b450b39930cca73871bd618fea4b> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation 0x1a19d7000 - 0x1a1ae7fff IDS arm64e /System/Library/PrivateFrameworks/IDS.framework/IDS 0x1a1ae8000 - 0x1a1c35fff Security arm64e <248431aabfe8399dad0ea942783d0e4b> /System/Library/Frameworks/Security.framework/Security 0x1a1c36000 - 0x1a2059fff MediaPlayer arm64e /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer 0x1a205a000 - 0x1a2072fff AudioSession arm64e /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession 0x1a2073000 - 0x1a2213fff AVFCore arm64e <0294540d081033fdbad051943cb01d86> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore 0x1a2214000 - 0x1a27c0fff Intents arm64e <397b9f43ab043a72bc5ca59dfddd48fa> /System/Library/Frameworks/Intents.framework/Intents 0x1a2810000 - 0x1a2b29fff CoreImage arm64e /System/Library/Frameworks/CoreImage.framework/CoreImage 0x1a2b2a000 - 0x1a2be7fff ColorSync arm64e /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync 0x1a2be8000 - 0x1a2c23fff CoreVideo arm64e /System/Library/Frameworks/CoreVideo.framework/CoreVideo 0x1a2c24000 - 0x1a3410fff MediaToolbox arm64e <334f787e71c73676b9136c5f2a3436dc> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox 0x1a3411000 - 0x1a3511fff CoreMedia arm64e <063231877fe13d2d9c430fdad845e776> /System/Library/Frameworks/CoreMedia.framework/CoreMedia 0x1a3512000 - 0x1a377dfff AudioToolbox arm64e <62b836837f2237f89cd6aed24461df2c> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox 0x1a377e000 - 0x1a37cefff CoreHaptics arm64e /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics 0x1a37cf000 - 0x1a382ffff UserActivity arm64e <29d76b1b44fe376187de4059cf824d9e> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity 0x1a3830000 - 0x1a393afff UIFoundation arm64e <9b241bd011ab38c2a1ac19f09ec6e1b1> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation 0x1a393b000 - 0x1a3960fff libsystem_info.dylib arm64e <4141392213e530b7907d6662a1eab27e> /usr/lib/system/libsystem_info.dylib 0x1a3961000 - 0x1a39dffff libsystem_c.dylib arm64e <961a8fb0de8a3567b4375d99cd549fae> /usr/lib/system/libsystem_c.dylib 0x1a39e0000 - 0x1a3a2bfff RunningBoardServices arm64e <697a1a06cadc3e7fa852a474d80108cb> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices 0x1a3a2c000 - 0x1a4b66fff JavaScriptCore arm64e <1b9a9eccfde13d02abe735d29542d02a> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 0x1a5138000 - 0x1a51c9fff ContactsFoundation arm64e <34d587d357cc331889693ed5a7fa99a8> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation 0x1a51ca000 - 0x1a5418fff HealthKit arm64e /System/Library/Frameworks/HealthKit.framework/HealthKit 0x1a5419000 - 0x1a543cfff ProactiveEventTracker arm64e /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker 0x1a543d000 - 0x1a5487fff Lexicon arm64e <0056c7867b0c3bf38f9aae60c44beb0e> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon 0x1a5488000 - 0x1a54f5fff PersonalizationPortrait arm64e /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait 0x1a54f6000 - 0x1a5546fff CoreDuetContext arm64e <6c4bdd0f96c1332584aa8536f7849456> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext 0x1a5547000 - 0x1a55f2fff IOKit arm64e <92c9b0a3c0473a55b17b4c81f6b4f054> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x1a55f3000 - 0x1a5603fff DataMigration arm64e <051256fd02fd3d5381c55bef2910a0af> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration 0x1a5604000 - 0x1a5661fff SpringBoardServices arm64e /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices 0x1a5662000 - 0x1a5674fff ContextKit arm64e <628c4e5157e93d208e565b3760e93ca8> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit 0x1a5675000 - 0x1a58e8fff CoreMotion arm64e /System/Library/Frameworks/CoreMotion.framework/CoreMotion 0x1a58e9000 - 0x1a5a2efff EventKit arm64e <374caf4729133e16933429279ffba9ca> /System/Library/Frameworks/EventKit.framework/EventKit 0x1a5f8a000 - 0x1a6228fff MediaRemote arm64e <6506f7f32da538a9ae8083629db3d55b> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote 0x1a6229000 - 0x1a63d1fff CoreUtils arm64e /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils 0x1a63d2000 - 0x1a63e8fff FamilyCircle arm64e /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle 0x1a63e9000 - 0x1a6459fff CoreSpotlight arm64e <22dc7b9c417e35459569bcc9bb02cadb> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight 0x1a6875000 - 0x1a6a26fff AssistantServices arm64e /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices 0x1a6a27000 - 0x1a6aedfff CoreUI arm64e /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI 0x1a6aee000 - 0x1a6b39fff SafariSafeBrowsing arm64e <108e9e600c8339b6821710ada22d8046> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing 0x1a6b3a000 - 0x1a7533fff WebKit arm64e <5a020775d4b539fb927c219d24e9ed43> /System/Library/Frameworks/WebKit.framework/WebKit 0x1a7534000 - 0x1a9e9bfff WebCore arm64e /System/Library/PrivateFrameworks/WebCore.framework/WebCore 0x1a9e9c000 - 0x1a9efbfff libMobileGestalt.dylib arm64e <48e77331a983378c8eb4b7cc854f4a89> /usr/lib/libMobileGestalt.dylib 0x1a9efc000 - 0x1a9f18fff CommonUtilities arm64e <58bd77e1ead836a181a6f1f736d9bec1> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities 0x1a9f19000 - 0x1aa087fff IDSFoundation arm64e <4cd55ce403cf353c8fc9c4fd458dd071> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation 0x1aa088000 - 0x1aa18cfff IMSharedUtilities arm64e <0949bc0051dc3a1d8a691b38be77ef1b> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities 0x1aa18d000 - 0x1aa237fff CoreSuggestions arm64e /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions 0x1aa238000 - 0x1aa2d5fff AddressBookLegacy arm64e <6df18e10743231e890292b8a5c5fadf1> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy 0x1aa2d6000 - 0x1aa309fff UserNotifications arm64e /System/Library/Frameworks/UserNotifications.framework/UserNotifications 0x1aa30a000 - 0x1aa396fff FrontBoardServices arm64e /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices 0x1aa397000 - 0x1aa3bafff libsystem_malloc.dylib arm64e /usr/lib/system/libsystem_malloc.dylib 0x1aa3bb000 - 0x1aa696fff MapKit arm64e <3108aac5d11938e09aaff67868010ade> /System/Library/Frameworks/MapKit.framework/MapKit 0x1aa697000 - 0x1aae68fff VectorKit arm64e <90f634e3fc2e3fe69b2666dda5d95c79> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit 0x1aae69000 - 0x1aaefbfff AuthKit arm64e <2be58b7a584e3226b5551de2b35f61a6> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit 0x1aaefc000 - 0x1aaf8ffff AppleAccount arm64e /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount 0x1aaf90000 - 0x1ab092fff AVFAudio arm64e /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio 0x1ab093000 - 0x1ab2fefff AudioToolboxCore arm64e /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore 0x1ab333000 - 0x1ab607fff StoreServices arm64e <9af8512ca5953487bb3886d2d745c84a> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices 0x1ab608000 - 0x1ab791fff Sharing arm64e <75601c205057351bb1ed9396c7d5ac2b> /System/Library/PrivateFrameworks/Sharing.framework/Sharing 0x1ab792000 - 0x1ab839fff ShareSheet arm64e <5c25c6ab8f5535958e684ab408e3aec9> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet 0x1ab83a000 - 0x1ab929fff CoreParsec arm64e /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec 0x1ac3ba000 - 0x1ac40bfff MobileBackup arm64e <7370a46dfbb33cdf90900f10f4d1b481> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup 0x1ac40c000 - 0x1ac420fff MSUDataAccessor arm64e <9140891644fe38208059c1cae5afb001> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor 0x1ac421000 - 0x1ac447fff MobileAsset arm64e /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset 0x1ac448000 - 0x1ac457fff libsystem_networkextension.dylib arm64e <72e9b04cefb3311398130faa22fd28af> /usr/lib/system/libsystem_networkextension.dylib 0x1ac458000 - 0x1ac6a9fff NetworkExtension arm64e <7f3e9729ca2e39ada585c363f6a7a9dc> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension 0x1ac6e1000 - 0x1acaadfff CoreML arm64e /System/Library/Frameworks/CoreML.framework/CoreML 0x1acaae000 - 0x1ad233fff Espresso arm64e /System/Library/PrivateFrameworks/Espresso.framework/Espresso 0x1ad234000 - 0x1ad331fff VideoToolbox arm64e /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox 0x1ad332000 - 0x1ad37efff OnBoardingKit arm64e <8f99950c3c9430e792f6f1283c1fe2de> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit 0x1ad47d000 - 0x1ad48efff AXCoreUtilities arm64e <85b866951b613087b7b25211a67e69ae> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities 0x1ae384000 - 0x1ae4fafff Montreal arm64e /System/Library/PrivateFrameworks/Montreal.framework/Montreal 0x1ae4fb000 - 0x1ae610fff LanguageModeling arm64e /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling 0x1ae611000 - 0x1ae619fff InternationalSupport arm64e <05ea5f19fb0b33a5b9f3ceea6808df34> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport 0x1ae61a000 - 0x1ae86dfff iTunesCloud arm64e <6ee9c0bdef7834cf8a10a759a67a9ec6> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud 0x1ae86e000 - 0x1ae8b0fff libswiftUIKit.dylib arm64e <6918464affe03199b2614026e35cd5cf> /usr/lib/swift/libswiftUIKit.dylib 0x1ae9cb000 - 0x1aea74fff CalendarDatabase arm64e <583e4c36c98f31a29e9bfc4ab998029f> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase 0x1aeac5000 - 0x1aeba5fff LinkPresentation arm64e /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation 0x1aeba6000 - 0x1aeccafff Combine arm64e <15b9213c595936be871f3f582776b8c4> /System/Library/Frameworks/Combine.framework/Combine 0x1aed59000 - 0x1aed6afff UniformTypeIdentifiers arm64e <15720249377a3189b5acde89ce28022a> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers 0x1aed6b000 - 0x1aededfff CloudDocs arm64e <5c79358501373d9abc186d693fa39c67> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs 0x1aefee000 - 0x1af06dfff EmailFoundation arm64e <0b1034ac3a6a333e80f736573f593b0e> /System/Library/PrivateFrameworks/EmailFoundation.framework/EmailFoundation 0x1af30f000 - 0x1af34dfff MediaServices arm64e <415230c3259e36d78f62e8f1a9ce73e5> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices 0x1af34e000 - 0x1af4e0fff SearchFoundation arm64e <48cef8a1fb9f35419debe221493a2d08> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation 0x1af4e1000 - 0x1af53cfff WebBookmarks arm64e /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks 0x1af5be000 - 0x1af5f4fff libobjc.A.dylib arm64e /usr/lib/libobjc.A.dylib 0x1af5f5000 - 0x1af657fff LoggingSupport arm64e <0877d599d2bd33008d700d1f8abca399> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport 0x1af658000 - 0x1af6b6fff libc++.1.dylib arm64e <4a0b48d835483ad794c55e54ab10b6fa> /usr/lib/libc++.1.dylib 0x1af6b7000 - 0x1af6d0fff libc++abi.dylib arm64e <2c28dce19a893752bcfc907e99183a63> /usr/lib/libc++abi.dylib 0x1af6d1000 - 0x1af713fff SetupAssistant arm64e /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant 0x1af714000 - 0x1af72efff OctagonTrust arm64e <2d16a2c8cf9f3fafab49ac4651023814> /System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust 0x1af860000 - 0x1af8a3fff CoreAutoLayout arm64e <942d516f2be635879821a450f305f686> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout 0x1af8a4000 - 0x1afa02fff Network arm64e <9d7e4a86670f3742b6c188f150e74705> /System/Library/Frameworks/Network.framework/Network 0x1afa03000 - 0x1afa39fff MobileKeyBag arm64e /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag 0x1afc7d000 - 0x1afc91fff BaseBoardUI arm64e <7e55d9022dc833f28d3849f639a75367> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI 0x1afc92000 - 0x1afd44fff libvDSP.dylib arm64e <981103e3468c336db8c5a574394ff73e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib 0x1afd45000 - 0x1afd78fff libAudioToolboxUtility.dylib arm64e /usr/lib/libAudioToolboxUtility.dylib 0x1aff56000 - 0x1affe2fff CoreNLP arm64e /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP 0x1affe3000 - 0x1b00fdfff FileProvider arm64e /System/Library/Frameworks/FileProvider.framework/FileProvider 0x1b00fe000 - 0x1b010efff BiomeStorage arm64e <509921cb2fa5390596301daff9c71805> /System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage 0x1b010f000 - 0x1b0127fff libswiftDispatch.dylib arm64e /usr/lib/swift/libswiftDispatch.dylib 0x1b0128000 - 0x1b015efff DataDetectorsCore arm64e /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore 0x1b015f000 - 0x1b01effff Symbolication arm64e /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication 0x1b01f0000 - 0x1b020dfff CrashReporterSupport arm64e <3f0cb4bfb6f3385db83720e08fba9808> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport 0x1b026d000 - 0x1b033ffff TelephonyUtilities arm64e /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities 0x1b0379000 - 0x1b0567fff MPSNeuralNetwork arm64e <333d91ab35473c47a5edf7be06a3deae> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork 0x1b0568000 - 0x1b05befff MPSCore arm64e /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore 0x1b071c000 - 0x1b0789fff CalendarFoundation arm64e <8e19bc8376fc3ea2840bc8f09e08649c> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation 0x1b07ed000 - 0x1b08d9fff NLP arm64e /System/Library/PrivateFrameworks/NLP.framework/NLP 0x1b08da000 - 0x1b0902fff AppSupportUI arm64e <011c4ba7c2093f3f8b97723ebf5360b3> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI 0x1b090c000 - 0x1b0961fff FTServices arm64e <98551da414093f84a430ffed2219c046> /System/Library/PrivateFrameworks/FTServices.framework/FTServices 0x1b0962000 - 0x1b0a12fff libboringssl.dylib arm64e <278fa4ca745a31748b391d9458456c8c> /usr/lib/libboringssl.dylib 0x1b0a13000 - 0x1b0a2afff ProtocolBuffer arm64e /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer 0x1b0a2b000 - 0x1b0b38fff AVKit arm64e <5ef8c42722333fbbbfe902dda8002e0f> /System/Library/Frameworks/AVKit.framework/AVKit 0x1b0cac000 - 0x1b0cbbfff AssertionServices arm64e <6c4a8e5fe94534898cc33f75e1215b11> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices 0x1b0cbc000 - 0x1b0ce5fff CloudServices arm64e <3da5db7d44f8346bab10a1ca4ee427a2> /System/Library/PrivateFrameworks/CloudServices.framework/CloudServices 0x1b0d38000 - 0x1b0e18fff Metal arm64e /System/Library/Frameworks/Metal.framework/Metal 0x1b0e19000 - 0x1b0f6dfff MediaExperience arm64e <4cae8c9c6156321788986d02541aaf56> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience 0x1b137b000 - 0x1b1391fff libsystem_trace.dylib arm64e <3520924c65a7351dadbea07268a9bca7> /usr/lib/system/libsystem_trace.dylib 0x1b1392000 - 0x1b13c3fff CoreServicesInternal arm64e <5770501d3ece333d98d56da4d48fd9a5> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal 0x1b13c4000 - 0x1b142cfff SafariCore arm64e <1947992bedc1357e8fcd0e689843aab4> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore 0x1b142d000 - 0x1b166afff SafariShared arm64e <0500ffac5b0835ddac6a0fafbbd99f7a> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared 0x1b166b000 - 0x1b170bfff AppStoreDaemon arm64e /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon 0x1b1ffc000 - 0x1b209ffff SAObjects arm64e <0e51de0329ee3389a4880eee96514db6> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects 0x1b20a0000 - 0x1b20e6fff VoiceServices arm64e /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices 0x1b20e7000 - 0x1b20effff GraphicsServices arm64e <1959c615fa0830de8461884a5bbc8037> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 0x1b20f0000 - 0x1b2146fff DeviceManagement arm64e /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement 0x1b2147000 - 0x1b22c4fff Translation arm64e /System/Library/PrivateFrameworks/Translation.framework/Translation 0x1b22c5000 - 0x1b22dafff PowerLog arm64e /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog 0x1b22db000 - 0x1b2304fff DuetActivityScheduler arm64e <6052f6a592943092afe626b8be3e70ed> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler 0x1b3c12000 - 0x1b3ebefff Vision arm64e /System/Library/Frameworks/Vision.framework/Vision 0x1b3f1c000 - 0x1b3f8afff ProactiveSupport arm64e <7e62581a0bba374c8ce4c8478f407c4b> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport 0x1b3fb8000 - 0x1b3fd7fff ApplePushService arm64e /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService 0x1b3fd8000 - 0x1b4001fff BoardServices arm64e <66c745c0795a341aa2c9b01043957b83> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices 0x1b4170000 - 0x1b41a0fff libncurses.5.4.dylib arm64e /usr/lib/libncurses.5.4.dylib 0x1b41a1000 - 0x1b41f0fff OSAnalytics arm64e /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics 0x1b41f1000 - 0x1b4250fff CoreBluetooth arm64e <07157e457e543ae4ad87685503c2db42> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth 0x1b443b000 - 0x1b4480fff TemplateKit arm64e <6b482aed10ac36148dade82298354632> /System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit 0x1b4481000 - 0x1b44b6fff MobileInstallation arm64e <35568a91b3b536acbdefa885f098b7d0> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation 0x1b44b7000 - 0x1b4545fff libTelephonyUtilDynamic.dylib arm64e /usr/lib/libTelephonyUtilDynamic.dylib 0x1b4546000 - 0x1b45b5fff NanoRegistry arm64e <0485700048f43d22b3423d2a7d8d7c16> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry 0x1b469a000 - 0x1b46b8fff CoreMaterial arm64e <58b98f6de8df3813bb3416c568c45f9c> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial 0x1b472f000 - 0x1b48b8fff libsqlite3.dylib arm64e <2963f7ee43003bb69529587d5302a657> /usr/lib/libsqlite3.dylib 0x1b48b9000 - 0x1b497ffff AVFCapture arm64e <69a24b6680d23b65a9a90ccf8fec7e69> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture 0x1b4980000 - 0x1b4ce2fff CMCapture arm64e <771999efb9ed3182a75311c8d38c44e4> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture 0x1b4e41000 - 0x1b50a1fff MobileSpotlightIndex arm64e <585d247349ed39baac6a3765a35afb53> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex 0x1b50a2000 - 0x1b514bfff Email arm64e /System/Library/PrivateFrameworks/Email.framework/Email 0x1b51b2000 - 0x1b5397fff EventKitUI arm64e <60a30e6e93623df5a241c3e6da6b5508> /System/Library/Frameworks/EventKitUI.framework/EventKitUI 0x1b54e2000 - 0x1b54ecfff libsystem_notify.dylib arm64e /usr/lib/system/libsystem_notify.dylib 0x1b54ed000 - 0x1b5532fff CryptoTokenKit arm64e /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit 0x1b55a0000 - 0x1b5614fff libcorecrypto.dylib arm64e <7282f135d28937129081a2b32fdb3622> /usr/lib/system/libcorecrypto.dylib 0x1b5615000 - 0x1b5639fff UserManagement arm64e <01f1ad278171339aa98d91876ef213d0> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement 0x1b5716000 - 0x1b572cfff libsystem_asl.dylib arm64e <6861da31b33a393eadeaa36da03ba670> /usr/lib/system/libsystem_asl.dylib 0x1b572d000 - 0x1b5751fff AppSSO arm64e <3bd803adc971360994552489d7c1f2ee> /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO 0x1b5752000 - 0x1b5770fff SharedWebCredentials arm64e <2f34145f4fc138d9b1cfb52889c3a4f7> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials 0x1b5771000 - 0x1b595ffff SafariServices arm64e <8830e735af0b32318eab74460755c2c5> /System/Library/Frameworks/SafariServices.framework/SafariServices 0x1b59b6000 - 0x1b59eefff DataAccessExpress arm64e /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress 0x1b59ef000 - 0x1b5a26fff CoreServicesStore arm64e <7f13794ebc913959a201e01a396aa228> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore 0x1b5a27000 - 0x1b5a4cfff CoreAnalytics arm64e <0e3b705972c939ad9a5ca9b487f5c475> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics 0x1b5a4d000 - 0x1b5a58fff SymptomAnalytics arm64e <99e19311b5263984a27fd8976a1d70d3> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics 0x1b5c4b000 - 0x1b5c5bfff NanoPreferencesSync arm64e <04761bb803ce3b63aeec6a61cc549b85> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync 0x1b6492000 - 0x1b64befff IconServices arm64e /System/Library/PrivateFrameworks/IconServices.framework/IconServices 0x1b6f96000 - 0x1b725dfff vImage arm64e <235be66e7bb831bba92d486371ffc572> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage 0x1b7ca9000 - 0x1b7f62fff HealthUI arm64e <6dcaa884ed233ebf9e9e4de2a48db350> /System/Library/PrivateFrameworks/HealthUI.framework/HealthUI 0x1b7f63000 - 0x1b8148fff IMCore arm64e <055d5603e96a3b369ff63d81e4f0a4a9> /System/Library/PrivateFrameworks/IMCore.framework/IMCore 0x1b8243000 - 0x1b825afff IAP arm64e <82584a03eeef37229f239e9c035e9a44> /System/Library/PrivateFrameworks/IAP.framework/IAP 0x1b825b000 - 0x1b82b4fff ktrace arm64e <0fd4ace25e6c3e0ca5e18b2aa5f4457f> /System/Library/PrivateFrameworks/ktrace.framework/ktrace 0x1b85d2000 - 0x1b85e0fff Celestial arm64e <1637b47d575e35c19f0a61f21530746b> /System/Library/PrivateFrameworks/Celestial.framework/Celestial 0x1b868e000 - 0x1b86d7fff Pegasus arm64e /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus 0x1b86d8000 - 0x1b8860fff WebKitLegacy arm64e /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy 0x1b88d4000 - 0x1b894bfff ClassKit arm64e /System/Library/Frameworks/ClassKit.framework/ClassKit 0x1b894c000 - 0x1b8993fff StoreKit arm64e /System/Library/Frameworks/StoreKit.framework/StoreKit 0x1b98f2000 - 0x1b98fcfff IOMobileFramebuffer arm64e <75b827a40b7e31278af975faf62e320b> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer 0x1b98fd000 - 0x1b9974fff ScreenTimeCore arm64e <89bcfd8aa4a73465b8b0d344ecf27ce1> /System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore 0x1b9bac000 - 0x1b9e7bfff MusicLibrary arm64e <6d49922ed936305ea408c0fd4b58a0cc> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary 0x1b9e7c000 - 0x1b9ee6fff CallKit arm64e <40172deb9a033fdbb2f9c19402e18198> /System/Library/Frameworks/CallKit.framework/CallKit 0x1b9f91000 - 0x1b9fb1fff PrototypeTools arm64e /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools 0x1b9fb2000 - 0x1b9fdffff PersistentConnection arm64e <2c14c002f3ea300f8b45706af2444601> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection 0x1ba0c9000 - 0x1ba0eefff BiomeStreams arm64e <481c6bacabb734d5880c954cf3b38dfd> /System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams 0x1ba10b000 - 0x1ba3c9fff PencilKit arm64e <2ac11145139332a985805ff6843ec804> /System/Library/Frameworks/PencilKit.framework/PencilKit 0x1ba477000 - 0x1ba488fff libswiftUniformTypeIdentifiers.dylib arm64e <155016f0aa3c3ac5ad37d01cb29d95d8> /usr/lib/swift/libswiftUniformTypeIdentifiers.dylib 0x1ba489000 - 0x1ba60afff CoreSpeech arm64e /System/Library/PrivateFrameworks/CoreSpeech.framework/CoreSpeech 0x1ba60b000 - 0x1ba763fff IMDPersistence arm64e <78a339820494334a937a395a73d2b3da> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence 0x1ba9ca000 - 0x1baa89fff SafariSharedUI arm64e /System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI 0x1baaa7000 - 0x1baabdfff AppSSOCore arm64e /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore 0x1baac9000 - 0x1baae0fff CoreFollowUp arm64e /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp 0x1baae1000 - 0x1bab5bfff Rapport arm64e <389c3d98cdc83416bc1fcc79d99002f8> /System/Library/PrivateFrameworks/Rapport.framework/Rapport 0x1bac3f000 - 0x1bac51fff Categories arm64e <618e0818748638f099cdb24427079637> /System/Library/PrivateFrameworks/Categories.framework/Categories 0x1baf25000 - 0x1baf4cfff LocationSupport arm64e <0c0eb39ec3583a85bf0d32b53ba29782> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport 0x1baf4d000 - 0x1baf81fff iCalendar arm64e /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar 0x1baf82000 - 0x1bafadfff CoreAccessories arm64e /System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories 0x1bafae000 - 0x1bb0bdfff ConfigurationEngineModel arm64e /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel 0x1bb0be000 - 0x1bb0e9fff CacheDelete arm64e /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete 0x1bb0ea000 - 0x1bb167fff CVNLP arm64e <727497213d273a66a6dc46581dc96c91> /System/Library/PrivateFrameworks/CVNLP.framework/CVNLP 0x1bb2bf000 - 0x1bb2c1fff OSAServicesClient arm64e /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient 0x1bb2c2000 - 0x1bb2c4fff BiomeFoundation arm64e <6c66263730cd3192aae1a31698bd5142> /System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation 0x1bb2c5000 - 0x1bb31ffff ProtectedCloudStorage arm64e <18d26651ea76381fad99579a036da0e3> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage 0x1bb320000 - 0x1bb358fff C2 arm64e /System/Library/PrivateFrameworks/C2.framework/C2 0x1bb359000 - 0x1bb3b0fff DifferentialPrivacy arm64e <9029531fb2c63b538599b62afeca027f> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy 0x1bb59b000 - 0x1bbd8bfff EmbeddedAcousticRecognition arm64e <87b23d23e7f635aab52add8885df2059> /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition 0x1bbd8c000 - 0x1bbe0bfff SiriInstrumentation arm64e <1a459674e7bd3c6ab8069cd93a56d034> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation 0x1bbe0c000 - 0x1bbe50fff BiometricKit arm64e <84245e1657b93e089d937cc9a3c8e83d> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit 0x1bbe98000 - 0x1bbf4dfff CoreSymbolication arm64e <4a497d5f199b3a17b912d711e97154d7> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication 0x1bbfc5000 - 0x1bc076fff SpeakerRecognition arm64e <7f90e1de9a14316b8b4a5ff98a85e04a> /System/Library/PrivateFrameworks/SpeakerRecognition.framework/SpeakerRecognition 0x1bc733000 - 0x1bc734fff MessageSupport arm64e <938263fad72f312b9a87dca903f42045> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport 0x1bc735000 - 0x1bc747fff IOSurface arm64e <2bb4143452ee3bd7822950b3840218b6> /System/Library/Frameworks/IOSurface.framework/IOSurface 0x1bc748000 - 0x1bc7aafff MobileWiFi arm64e /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi 0x1bcbf2000 - 0x1bcc0efff DoNotDisturb arm64e <380f1decd1d63a1d964b35b8c9fc4687> /System/Library/PrivateFrameworks/DoNotDisturb.framework/DoNotDisturb 0x1bcd9e000 - 0x1bcdd9fff libGLImage.dylib arm64e <5e1452bc1b723ea9bbee08acd20195f3> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib 0x1bcdda000 - 0x1bcde1fff libsystem_symptoms.dylib arm64e /usr/lib/system/libsystem_symptoms.dylib 0x1bce29000 - 0x1bd38afff CoreAudio arm64e <35f706386c053b64b34f60e273b2a83c> /System/Library/Frameworks/CoreAudio.framework/CoreAudio 0x1bd38b000 - 0x1bd3a2fff ContactsDonation arm64e <22b66b8201cd399b93ec0fa441c1efd3> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation 0x1bd3a3000 - 0x1bd3c2fff IntentsCore arm64e /System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore 0x1bd60a000 - 0x1bd757fff Navigation arm64e <4094fc3895f73557bab0521c707b1f67> /System/Library/PrivateFrameworks/Navigation.framework/Navigation 0x1bd758000 - 0x1bd775fff SafariFoundation arm64e /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation 0x1bd8fc000 - 0x1bd910fff MaterialKit arm64e <81b41c96b2b632519b4bca173398c2b8> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit 0x1bda98000 - 0x1bdaa8fff CoreAUC arm64e /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC 0x1be2df000 - 0x1be2f0fff SettingsFoundation arm64e <811cb2e1f0d53fc1af2a1a3f71eb1db7> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation 0x1bea5f000 - 0x1bec84fff RawCamera arm64e <9a42969f13af3707af77a973d8dab18d> /System/Library/CoreServices/RawCamera.bundle/RawCamera 0x1becf2000 - 0x1bed52fff ToneLibrary arm64e /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary 0x1bf5b6000 - 0x1bf5c3fff MediaSafetyNet arm64e <54121c6dbfb9370ca7134c3d2139a992> /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet 0x1bf5c4000 - 0x1bf601fff TimeSync arm64e <79da117bf4763bb3901a21e4ae54c148> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync 0x1bf69a000 - 0x1bf6e0fff ExposureNotification arm64e /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification 0x1bfd6d000 - 0x1bfd76fff CoreTime arm64e /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime 0x1c0751000 - 0x1c0851fff TextRecognition arm64e <761aa9ba87a73e5e8c6016cc93a4b6f9> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition 0x1c0967000 - 0x1c0970fff ContextKitExtraction arm64e <3b1d92e5f4ac37e8887e97798a3bee96> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction 0x1c0a4e000 - 0x1c0a50fff libswiftObjectiveC.dylib arm64e <6d0b9153875939f48ebfc48dfdc4d77c> /usr/lib/swift/libswiftObjectiveC.dylib 0x1c0a51000 - 0x1c0c9bfff libmorphun.dylib arm64e /usr/lib/libmorphun.dylib 0x1c12db000 - 0x1c1346fff EmailCore arm64e /System/Library/PrivateFrameworks/EmailCore.framework/EmailCore 0x1c1ca1000 - 0x1c1cedfff MIME arm64e <5bd9753ec1ec390db9a5c5a52b03b14f> /System/Library/PrivateFrameworks/MIME.framework/MIME 0x1c1fd7000 - 0x1c1fedfff MailServices arm64e /System/Library/PrivateFrameworks/MailServices.framework/MailServices 0x1c2071000 - 0x1c20f5fff CoreDAV arm64e <16c1d77ae3ca3dfb93bc7e4b3968c7e3> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV 0x1c22a0000 - 0x1c22dcfff CalendarUIKit arm64e /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit 0x1c22dd000 - 0x1c22ecfff MobileIcons arm64e /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons 0x1c26db000 - 0x1c27aefff ProofReader arm64e /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader 0x1c3a1e000 - 0x1c3a28fff MallocStackLogging arm64e <66bfc8d3c6f335519ce3f213ab98480e> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging 0x1c3c65000 - 0x1c3cb0fff MetadataUtilities arm64e /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities 0x1c4403000 - 0x1c4462fff CoreLocationProtobuf arm64e <29e0b3b8c4d133e1a16975c207af057f> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf 0x1c4677000 - 0x1c46a9fff Bom arm64e <68852959ebe03756837b46f2c1f767ec> /System/Library/PrivateFrameworks/Bom.framework/Bom 0x1c46df000 - 0x1c46e6fff PushKit arm64e /System/Library/Frameworks/PushKit.framework/PushKit 0x1c48ed000 - 0x1c497dfff Quagga arm64e /System/Library/PrivateFrameworks/Quagga.framework/Quagga 0x1c497e000 - 0x1c4986fff StudyLog arm64e <15e63b6cec933fa882889d0cefd8a9ef> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog 0x1c5993000 - 0x1c59d4fff NaturalLanguage arm64e /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage 0x1c5fbd000 - 0x1c5fc8fff AudioDataAnalysis arm64e /System/Library/PrivateFrameworks/AudioDataAnalysis.framework/AudioDataAnalysis 0x1c72b7000 - 0x1c73f9fff CoreHandwriting arm64e /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting 0x1c7beb000 - 0x1c7bf6fff AppleIDAuthSupport arm64e /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport 0x1c7c06000 - 0x1c7c1ffff LocalAuthentication arm64e /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication 0x1c7c20000 - 0x1c7c26fff IOAccelerator arm64e /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator 0x1c8060000 - 0x1c810efff iTunesStore arm64e <015778fe0114317f9baf8a316844b5ca> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore 0x1c84d6000 - 0x1c8507fff libsystem_kernel.dylib arm64e /usr/lib/system/libsystem_kernel.dylib 0x1c874b000 - 0x1c8855fff ResponseKit arm64e /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit 0x1c8856000 - 0x1c8890fff EmojiFoundation arm64e <36217836d7bc3bac9d094e51f9a01358> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation 0x1c8ed8000 - 0x1c8ee5fff FontServices arm64e /System/Library/PrivateFrameworks/FontServices.framework/FontServices 0x1c909b000 - 0x1c90a7fff MediaAccessibility arm64e /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility 0x1c90ea000 - 0x1c96a6fff SiriTTS arm64e /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS 0x1c96a7000 - 0x1c96b5fff SetupAssistantSupport arm64e <4fe091f2a2e23e78bdd243577f8fffbd> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport 0x1c97ba000 - 0x1c97ecfff VirtualGarage arm64e <137b37f353293180ab19b2b8c92dea5f> /System/Library/PrivateFrameworks/VirtualGarage.framework/VirtualGarage 0x1c97ed000 - 0x1c9813fff NetAppsUtilities arm64e /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities 0x1c9814000 - 0x1c9876fff Osprey arm64e <8e97fc58b34632fbbeadf6f00b54a06e> /System/Library/PrivateFrameworks/Osprey.framework/Osprey 0x1caa4b000 - 0x1caa5bfff libdscsym.dylib arm64e <1fc227cb8893384b8453555702030bb5> /usr/lib/libdscsym.dylib 0x1caa5c000 - 0x1caa6dfff HangTracer arm64e <148caf8207a83d1a87b0a476cc755f35> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer 0x1cac2b000 - 0x1cace9fff SampleAnalysis arm64e <38e052d99e2032ce84bfa5e7d96c12aa> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis 0x1cacea000 - 0x1cad1afff PlugInKit arm64e <1b06f4b4a9c33af8875c49f515e38d78> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit 0x1cadca000 - 0x1cadcbfff libSystem.B.dylib arm64e <7d42c8382a04372e9fccdc7a95ef88f4> /usr/lib/libSystem.B.dylib 0x1cb0e2000 - 0x1cb0eefff MobileActivation arm64e <8b7d8a2e5934388c93ed41de5cb99df4> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation 0x1cb0ef000 - 0x1cb147fff CalendarDaemon arm64e <85e7dc5c98123be4acf83e8b6da0e6d8> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon 0x1cb23f000 - 0x1cb2affff libarchive.2.dylib arm64e /usr/lib/libarchive.2.dylib 0x1cb2b0000 - 0x1cb2d4fff libtailspin.dylib arm64e <98055fb0cc033819bc074fb958f6e656> /usr/lib/libtailspin.dylib 0x1cb2d5000 - 0x1cb78afff libBNNS.dylib arm64e <13ec7750493a31bcad11234e3950686d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib 0x1cb78b000 - 0x1cb7cefff SharedUtils arm64e /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils 0x1cba82000 - 0x1cba87fff libsysdiagnose.dylib arm64e /usr/lib/libsysdiagnose.dylib 0x1cbdeb000 - 0x1cbdebfff AVFoundation arm64e <1dcd460171643d2ca077cc511181b1ec> /System/Library/Frameworks/AVFoundation.framework/AVFoundation 0x1cbdec000 - 0x1cbdecfff Accelerate arm64e /System/Library/Frameworks/Accelerate.framework/Accelerate 0x1cbded000 - 0x1cc047fff libBLAS.dylib arm64e /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib 0x1cc048000 - 0x1cc4f2fff libLAPACK.dylib arm64e <6eea1e2a662630508a2e8b690016e7e0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib 0x1cc4f3000 - 0x1cc507fff libLinearAlgebra.dylib arm64e <64203c23bfb735adb6823d4fd877c7d6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib 0x1cc508000 - 0x1cc50cfff libQuadrature.dylib arm64e /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib 0x1cc50d000 - 0x1cc56ffff libSparse.dylib arm64e <7244ae07ad933247aa101be5ba810cd7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib 0x1cc570000 - 0x1cc581fff libSparseBLAS.dylib arm64e <2351d0bc0e6b33068c41c4e1be339920> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib 0x1cc582000 - 0x1cc5dafff libvMisc.dylib arm64e /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib 0x1cc5db000 - 0x1cc5dbfff vecLib arm64e <6cec3ecd6c1a3f2f97ae525ff2046274> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib 0x1cc73f000 - 0x1cc75cfff AuthenticationServices arm64e <29b89dd77ab73b48955614ca22e43b19> /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices 0x1cc855000 - 0x1cc8befff CoreMIDI arm64e <9411ca7963a431d7835a511ff2e3fcd3> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI 0x1ccdf3000 - 0x1cce0afff ExternalAccessory arm64e /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory 0x1cce1f000 - 0x1cce48fff GLKit arm64e /System/Library/Frameworks/GLKit.framework/GLKit 0x1cce49000 - 0x1cce76fff GSS arm64e <8d83196aebda3a6e97b9345053fe33e7> /System/Library/Frameworks/GSS.framework/GSS 0x1ccf8b000 - 0x1ccf94fff HealthKitUI arm64e <7c40a31e11023945afe66ad5b8112cf7> /System/Library/Frameworks/HealthKitUI.framework/HealthKitUI 0x1ccfe3000 - 0x1cd136fff MLCompute arm64e <238c5cacb32d3a82b319be8226d72517> /System/Library/Frameworks/MLCompute.framework/MLCompute 0x1cd15f000 - 0x1cd178fff MetalKit arm64e /System/Library/Frameworks/MetalKit.framework/MetalKit 0x1cd179000 - 0x1cd1fffff MPSImage arm64e /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage 0x1cd200000 - 0x1cd226fff MPSMatrix arm64e <19c8ce40ea28340eb5e61151589d9a5b> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix 0x1cd227000 - 0x1cd265fff MPSNDArray arm64e <33d53f36a2aa3e39a9cb6f7ac2723edc> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray 0x1cd266000 - 0x1cd2aefff MPSRayIntersector arm64e <826f7ecb42153845b6c81434e31d05b8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector 0x1cd2af000 - 0x1cd2affff MetalPerformanceShaders arm64e /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders 0x1cd64c000 - 0x1cd64cfff MobileCoreServices arm64e <013cab54d0ec301a82151c17a2a44899> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 0x1cd64d000 - 0x1ce0ccfff ModelIO arm64e <83f129a77c5f327c821057dce70da9c6> /System/Library/Frameworks/ModelIO.framework/ModelIO 0x1ce24a000 - 0x1ce252fff OpenGLES arm64e /System/Library/Frameworks/OpenGLES.framework/OpenGLES 0x1ce253000 - 0x1ce254fff libCVMSPluginSupport.dylib arm64e <1ca789cb22ac36e1858b241da4c8dcb7> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib 0x1ce255000 - 0x1ce25bfff libCoreFSCache.dylib arm64e <2411f21fea7c3656a0990c3ae36e88e8> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib 0x1ce25c000 - 0x1ce261fff libCoreVMClient.dylib arm64e <04bd5aee36673163b188185a5d4f02a3> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib 0x1ce262000 - 0x1ce26bfff libGFXShared.dylib arm64e <59b568645cb53655a427478652ed8e27> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib 0x1ce426000 - 0x1ce4edfff PDFKit arm64e <333f6e509f53397e9ad43cd0c255e123> /System/Library/Frameworks/PDFKit.framework/PDFKit 0x1ce4fd000 - 0x1ce53bfff QuickLookThumbnailing arm64e /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing 0x1ce7d8000 - 0x1cec06fff SceneKit arm64e /System/Library/Frameworks/SceneKit.framework/SceneKit 0x1cec0e000 - 0x1ced5bfff SoundAnalysis arm64e /System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis 0x1ced5c000 - 0x1ced6bfff Speech arm64e /System/Library/Frameworks/Speech.framework/Speech 0x1cee8f000 - 0x1cee8ffff UIKit arm64e /System/Library/Frameworks/UIKit.framework/UIKit 0x1cee99000 - 0x1cef62fff VideoSubscriberAccount arm64e <130a847f2a033dfb9eb7379e87aff600> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount 0x1cef63000 - 0x1cfb3afff libfaceCore.dylib arm64e <72ffb50f61c039f6b0a146ac8aa07e8d> /System/Library/Frameworks/Vision.framework/libfaceCore.dylib 0x1d00a2000 - 0x1d00a5fff AFKUser arm64e <3f4d68e133773dd2ba45c82c59125f30> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser 0x1d016a000 - 0x1d03f1fff ANECompiler arm64e /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler 0x1d03f2000 - 0x1d0406fff ANEServices arm64e <892263bf8972321bafd567ad02a18d1b> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices 0x1d040b000 - 0x1d04c9fff APFS arm64e <7edafa643f783bd2a5e33a4a561da182> /System/Library/PrivateFrameworks/APFS.framework/APFS 0x1d04ca000 - 0x1d04d0fff ASEProcessing arm64e /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing 0x1d0c57000 - 0x1d0c81fff ActivityRingsUI arm64e /System/Library/PrivateFrameworks/ActivityRingsUI.framework/ActivityRingsUI 0x1d0d04000 - 0x1d0d09fff AggregateDictionary arm64e /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary 0x1d0e97000 - 0x1d0f70fff AirPlaySync arm64e /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync 0x1d107c000 - 0x1d1098fff AlgosScoreFramework arm64e <5c7187b493873ec2aaec38217477c23e> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework 0x1d11ca000 - 0x1d135afff AppC3D arm64e /System/Library/PrivateFrameworks/AppC3D.framework/AppC3D 0x1d135b000 - 0x1d137efff AppConduit arm64e <215852febc063104af8826a31fa23dd9> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit 0x1d1487000 - 0x1d1491fff AppStoreOverlays arm64e <20e6772d94883f80b841d350afa59d55> /System/Library/PrivateFrameworks/AppStoreOverlays.framework/AppStoreOverlays 0x1d27a2000 - 0x1d27b1fff AppleFSCompression arm64e <34598412dc53349892b4f249fa996350> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression 0x1d27be000 - 0x1d27e2fff AppleIDSSOAuthentication arm64e /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication 0x1d27e3000 - 0x1d2828fff AppleJPEG arm64e <5fa8e99c227f39879149a9fa5275b651> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG 0x1d28b5000 - 0x1d28cafff AppleNeuralEngine arm64e /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine 0x1d28d4000 - 0x1d28f8fff AppleSauce arm64e <5c480b789dfb3fe5ba264691c1f88a8d> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce 0x1d2ab2000 - 0x1d2b12fff AuthKitUI arm64e /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI 0x1d2ba3000 - 0x1d2bbcfff BiomePubSub arm64e <14da5dc31c9f3e5dade4c9ee99c6413a> /System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub 0x1d2eaf000 - 0x1d2ebefff BluetoothManager arm64e <42fc1b4fd49831b58684b707a38436da> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager 0x1d2f73000 - 0x1d2f9cfff BridgePreferences arm64e /System/Library/PrivateFrameworks/BridgePreferences.framework/BridgePreferences 0x1d316b000 - 0x1d3175fff CMCaptureCore arm64e <203549efeb873319bfec7749818fb59b> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore 0x1d3190000 - 0x1d319ffff CPMS arm64e <2a9d048276f339afa95beb6ab9557604> /System/Library/PrivateFrameworks/CPMS.framework/CPMS 0x1d31a0000 - 0x1d31b0fff CTCarrierSpace arm64e /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace 0x1d34c6000 - 0x1d34d1fff CaptiveNetwork arm64e <438ae3c09d773cd6b3fc8172b7e68a28> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork 0x1d35fb000 - 0x1d3638fff Catalyst arm64e /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst 0x1d365e000 - 0x1d3683fff CellularPlanManager arm64e <064d6e44e233300da8d4a9b1a6ac0961> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager 0x1d369c000 - 0x1d36a4fff CertUI arm64e /System/Library/PrivateFrameworks/CertUI.framework/CertUI 0x1d36ad000 - 0x1d36fdfff ChunkingLibrary arm64e /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary 0x1d3b28000 - 0x1d3b2ffff CommonAuth arm64e /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth 0x1d3b30000 - 0x1d3b34fff CommunicationsFilter arm64e <1677964867c036c1b4e8f835fd1203bc> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter 0x1d3c0a000 - 0x1d3c0dfff ConstantClasses arm64e /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses 0x1d3c5f000 - 0x1d3cdcfff ContactsUICore arm64e /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore 0x1d3e62000 - 0x1d3f59fff CoreBrightness arm64e <8779d983de8d39a898b05f1357369de9> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness 0x1d3fc7000 - 0x1d3fd6fff CoreDuetDaemonProtocol arm64e /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol 0x1d3fd9000 - 0x1d3fdbfff CoreDuetDebugLogging arm64e <08c1ced4b6d23b6a9206feae90d408a3> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging 0x1d3fea000 - 0x1d3ffcfff CoreEmoji arm64e <64bb59468c9d3706b0c84f94eda95fa6> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji 0x1d462d000 - 0x1d4631fff CoreOptimization arm64e /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization 0x1d4632000 - 0x1d46effff CorePDF arm64e <2bb11630a5f03c5dbcfd9166e66dfaab> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF 0x1d46f0000 - 0x1d46f8fff CorePhoneNumbers arm64e /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers 0x1d46f9000 - 0x1d4750fff CorePrediction arm64e /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction 0x1d5092000 - 0x1d509dfff CoreRecents arm64e /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents 0x1d509e000 - 0x1d510afff CoreRecognition arm64e <9352ef7f95f3324590ce294cf764a1d4> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition 0x1d510b000 - 0x1d5123fff CoreSDB arm64e /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB 0x1d5124000 - 0x1d514efff CoreSVG arm64e <012037e7a6183373b8097fa32264a57e> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG 0x1d5325000 - 0x1d5329fff DAAPKit arm64e /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit 0x1d536b000 - 0x1d53a9fff DataDetectorsNaturalLanguage arm64e /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage 0x1d5407000 - 0x1d5431fff DeviceIdentity arm64e <63ef4b0617b138e19c4d4416228b78c4> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity 0x1d5438000 - 0x1d5439fff DiagnosticLogCollection arm64e <33d0c11b21723186acf4ccf9bd179ba1> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection 0x1d5565000 - 0x1d559cfff DistributedEvaluation arm64e /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation 0x1d56c7000 - 0x1d5703fff DocumentManager arm64e /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager 0x1d5704000 - 0x1d5724fff DocumentManagerCore arm64e <8081d2b7b5643eb3bc63c7f910bca3c6> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore 0x1d57af000 - 0x1d57b1fff DragUI arm64e <886c83486d80388ca9ae580581ff1e3d> /System/Library/PrivateFrameworks/DragUI.framework/DragUI 0x1d57e1000 - 0x1d5812fff EAP8021X arm64e <930411b09df032d98d485232739c903e> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X 0x1d5829000 - 0x1d5833fff EmailAddressing arm64e <427678e5aede3077b3f0cc64e97f0fee> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing 0x1d5842000 - 0x1d5857fff Engram arm64e <23de13adf86432c29fe535af865666b0> /System/Library/PrivateFrameworks/Engram.framework/Engram 0x1d5998000 - 0x1d599ffff ExtensionFoundation arm64e /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation 0x1d5b33000 - 0x1d5b3bfff FSEvents arm64e <5b7482d4ab2730748e4209d88f096493> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents 0x1d5b3c000 - 0x1d5b5bfff FTAWD arm64e <33e67a3224fe3b039ea235ac08990494> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD 0x1d5b5c000 - 0x1d5b5ffff FTClientServices arm64e <1a6648eae12f3ecd9b6eeb02bbf78fe1> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices 0x1d5b60000 - 0x1d5f74fff FaceCore arm64e /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore 0x1d5f7d000 - 0x1d5f82fff FeatureFlagsSupport arm64e <6a50b1c3c520398b8c9a5ffb1d326e75> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport 0x1d5f83000 - 0x1d5f8dfff FeedbackLogger arm64e /System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger 0x1d612e000 - 0x1d6270fff libFontParser.dylib arm64e /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x1d6271000 - 0x1d6279fff libGSFont.dylib arm64e /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib 0x1d627a000 - 0x1d62b7fff libGSFontCache.dylib arm64e <8971ad0fd4d53bc59dc550cf1f2b5eeb> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib 0x1d631d000 - 0x1d632afff libhvf.dylib arm64e /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x1d6352000 - 0x1d636afff Futhark arm64e /System/Library/PrivateFrameworks/Futhark.framework/Futhark 0x1d6f09000 - 0x1d6f09fff libmetal_timestamp.dylib arm64e /System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libmetal_timestamp.dylib 0x1d6fec000 - 0x1d700bfff GenerationalStorage arm64e <7fd0e4a64ec0376094fa7fc92b8c6ae3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage 0x1d700c000 - 0x1d7019fff GraphVisualizer arm64e /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer 0x1d7046000 - 0x1d7052fff HID arm64e <997e4d59f29c3718ae5900013b2f93c5> /System/Library/PrivateFrameworks/HID.framework/HID 0x1d72e8000 - 0x1d735afff Heimdal arm64e <72d2db5a8b9f37c89e0484cf25e1eeaf> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal 0x1d76f1000 - 0x1d7768fff HomeSharing arm64e /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing 0x1d77c2000 - 0x1d77c8fff IDSKVStore arm64e /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore 0x1d7ad6000 - 0x1d7af5fff IOGPU arm64e <3d3aed8398f9389ba41bec7a5ea77a83> /System/Library/PrivateFrameworks/IOGPU.framework/IOGPU 0x1d7af7000 - 0x1d7b00fff IOKitten arm64e <9ad896dbcfe8393cb7a210b951d9089c> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten 0x1d7b01000 - 0x1d7b03fff IOSurfaceAccelerator arm64e /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator 0x1d7b2e000 - 0x1d7b35fff IdleTimerServices arm64e <7c3d6a90eef83db9b955f7bb61ead2f8> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices 0x1d7b3e000 - 0x1d7b44fff IncomingCallFilter arm64e <60ccbc2a7e3b3a77a0b7931b08f6f729> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter 0x1d7c0a000 - 0x1d7c17fff IntentsFoundation arm64e <20d10bef741433eda59cc0307c653aeb> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation 0x1d7c32000 - 0x1d7c34fff InternationalTextSearch arm64e <649157ff631a31c8807722a1352f0e07> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch 0x1d7c35000 - 0x1d7c52fff IntlPreferences arm64e /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences 0x1d7ecb000 - 0x1d7ed2fff LinguisticData arm64e <312c5d7f90d3320f8aeb09937d161525> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData 0x1d7f25000 - 0x1d7f5efff LocalAuthenticationPrivateUI arm64e /System/Library/PrivateFrameworks/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI 0x1d8124000 - 0x1d8124fff Marco arm64e /System/Library/PrivateFrameworks/Marco.framework/Marco 0x1d8435000 - 0x1d8705fff MediaLibraryCore arm64e <48bff21ece913e6bb6976e753487e23d> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore 0x1d8706000 - 0x1d8793fff MediaPlatform arm64e <255aa9ef15f938789f6a77ccc7c0cad0> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform 0x1d8b9a000 - 0x1d8c6cfff MetalTools arm64e /System/Library/PrivateFrameworks/MetalTools.framework/MetalTools 0x1d8c8e000 - 0x1d8cebfff MetricsKit arm64e <9b10f898328d393490650ef80281158d> /System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit 0x1d8cfd000 - 0x1d8d11fff MobileBluetooth arm64e /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth 0x1d8d94000 - 0x1d8d9afff MobileSystemServices arm64e <6ba8ebc692dd38d180f292d4269cd1f1> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices 0x1d90fc000 - 0x1d9103fff NanoResourceGrabber arm64e <95eae51ce28e38dda08bf60ee7a24be4> /System/Library/PrivateFrameworks/NanoResourceGrabber.framework/NanoResourceGrabber 0x1d9153000 - 0x1d9159fff Netrb arm64e <260396c402443b028b7448f550e02c17> /System/Library/PrivateFrameworks/Netrb.framework/Netrb 0x1d921a000 - 0x1d9234fff NetworkStatistics arm64e <617ea04ac1db345aab671fdb52aa7b17> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics 0x1d9312000 - 0x1d9353fff OTSVG arm64e <00d86fb69cf635faab22b8b6fa7cda34> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG 0x1d9902000 - 0x1d9956fff PBBridgeSupport arm64e <0184ccef05f53bb5854a012a92fd2515> /System/Library/PrivateFrameworks/PBBridgeSupport.framework/PBBridgeSupport 0x1d99a1000 - 0x1d99a3fff ParsecSubscriptionServiceSupport arm64e /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport 0x1d99a8000 - 0x1d99d4fff Pasteboard arm64e /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard 0x1d9a06000 - 0x1d9a12fff PersonaKit arm64e <3b65e0756d4a3c9183bb04ba1e0e2949> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit 0x1d9a13000 - 0x1d9a20fff PersonaUI arm64e <21d21ae7be723fd88d12cb4c88f33adf> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI 0x1d9a59000 - 0x1d9a59fff PhoneNumbers arm64e /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers 0x1d9c6a000 - 0x1d9cb6fff PhysicsKit arm64e /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit 0x1d9d77000 - 0x1d9d82fff PointerUIServices arm64e /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices 0x1db275000 - 0x1db280fff RTCReporting arm64e <127230431d943bd1aefc3713879938f2> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting 0x1db5cf000 - 0x1db5e1fff RemoteTextInput arm64e <4957abae6a4e3edd953919ce547c19d7> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput 0x1db5e2000 - 0x1db64bfff RemoteUI arm64e /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI 0x1db684000 - 0x1db688fff RevealCore arm64e <44dd2868d96c3cbfabf4d6ad1ba5ef49> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore 0x1db69f000 - 0x1dba2bfff SDAPI arm64e <3d6201e6f64f3b289ca37a65320bdae2> /System/Library/PrivateFrameworks/SDAPI.framework/SDAPI 0x1dd14e000 - 0x1dd158fff SignpostCollection arm64e <0e1a2eef68dd3fe5aeaa1d3759c46362> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection 0x1dd159000 - 0x1dd159fff SignpostMetrics arm64e <81374dd6fb9c3fb8b64db78fc1ddd1bc> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics 0x1dd15b000 - 0x1dd19cfff SignpostSupport arm64e <62f534a6875435c5b919c1ff754031a8> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport 0x1ddccd000 - 0x1ddccdfff SoftLinking arm64e <2039e1311e783ef6b012310bc4de4222> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking 0x1de1ce000 - 0x1de20cfff StreamingZip arm64e <2aeb745662cf308d9074f0a44f0680fd> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip 0x1de214000 - 0x1de21efff SymptomDiagnosticReporter arm64e <77f539309c7931b389d6e7d4f9203187> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter 0x1de250000 - 0x1de26cfff SymptomPresentationFeed arm64e /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed 0x1de2ac000 - 0x1de2bcfff TCC arm64e <5eb3e57592fe366093d4ee98625696e1> /System/Library/PrivateFrameworks/TCC.framework/TCC 0x1debc3000 - 0x1dec77fff TextureIO arm64e <39b83f8ef7013ac99b77e9994ec66025> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO 0x1deea5000 - 0x1deeacfff URLFormatting arm64e <359aa25a10a2333290b93cb58f491102> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting 0x1df4a2000 - 0x1df4ccfff UsageTracking arm64e <6036e5b0b4d33b0ca2079be2310b1ca7> /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking 0x1df715000 - 0x1dfe7ffff VFX arm64e /System/Library/PrivateFrameworks/VFX.framework/VFX 0x1e000b000 - 0x1e00d4fff VoiceTrigger arm64e <0fe2b5552dea36dea38bf4b1b4ac657b> /System/Library/PrivateFrameworks/VoiceTrigger.framework/VoiceTrigger 0x1e019b000 - 0x1e019cfff WatchdogClient arm64e /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient 0x1e0481000 - 0x1e0bbdfff libwebrtc.dylib arm64e /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib 0x1e0c3e000 - 0x1e0c55fff WebUI arm64e <2f061bfbca66355793de12d51b45799c> /System/Library/PrivateFrameworks/WebUI.framework/WebUI 0x1e1199000 - 0x1e119cfff XCTTargetBootstrap arm64e <81e7f051ea293b32aa8db6b31043c1b1> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap 0x1e1222000 - 0x1e1241fff caulk arm64e /System/Library/PrivateFrameworks/caulk.framework/caulk 0x1e37b6000 - 0x1e37bbfff kperf arm64e <00833ee7334a357397d803fc54a7e96a> /System/Library/PrivateFrameworks/kperf.framework/kperf 0x1e37bc000 - 0x1e37c4fff kperfdata arm64e <5fd952a747393327b7a964c9c3bfa46d> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata 0x1e37c5000 - 0x1e37dbfff libEDR arm64e <36804b020c1c3bab8fed5f225920287a> /System/Library/PrivateFrameworks/libEDR.framework/libEDR 0x1e37f4000 - 0x1e3805fff perfdata arm64e /System/Library/PrivateFrameworks/perfdata.framework/perfdata 0x1e3806000 - 0x1e3837fff vCard arm64e /System/Library/PrivateFrameworks/vCard.framework/vCard 0x1e4166000 - 0x1e41a2fff libAWDSupport.dylib arm64e /usr/lib/libAWDSupport.dylib 0x1e41a3000 - 0x1e455efff libAWDSupportFramework.dylib arm64e <71246919933032508b91042ce99281ce> /usr/lib/libAWDSupportFramework.dylib 0x1e46e1000 - 0x1e46f0fff libAudioStatistics.dylib arm64e /usr/lib/libAudioStatistics.dylib 0x1e4896000 - 0x1e48c9fff libCRFSuite.dylib arm64e <2ae9058b25ce31468ab4f02615f16d47> /usr/lib/libCRFSuite.dylib 0x1e48ca000 - 0x1e48cbfff libCTGreenTeaLogger.dylib arm64e <216ec5a25c553a51abc186cfb4a0b607> /usr/lib/libCTGreenTeaLogger.dylib 0x1e48cc000 - 0x1e48d6fff libChineseTokenizer.dylib arm64e /usr/lib/libChineseTokenizer.dylib 0x1e4b8d000 - 0x1e4b94fff libIOReport.dylib arm64e <4da98ad919f939e4b6d7db4d956aba56> /usr/lib/libIOReport.dylib 0x1e4c10000 - 0x1e4c17fff libMatch.1.dylib arm64e <4e79655369f33fbf9e66c74da713576d> /usr/lib/libMatch.1.dylib 0x1e4d34000 - 0x1e4d35fff libThaiTokenizer.dylib arm64e <79a2d59378b13e2d868fc11ab23b4d6c> /usr/lib/libThaiTokenizer.dylib 0x1e4fab000 - 0x1e4fadfff libapp_launch_measurement.dylib arm64e /usr/lib/libapp_launch_measurement.dylib 0x1e4fae000 - 0x1e4fc4fff libapple_nghttp2.dylib arm64e /usr/lib/libapple_nghttp2.dylib 0x1e4fc5000 - 0x1e5056fff libate.dylib arm64e <191d61e4155c3b16a602d59611c1653e> /usr/lib/libate.dylib 0x1e50e8000 - 0x1e50f8fff libbsm.0.dylib arm64e <67259e0c8b2a3ff3a21be629e0f686ac> /usr/lib/libbsm.0.dylib 0x1e50f9000 - 0x1e5105fff libbz2.1.0.dylib arm64e <1ece9cb83cd633c79f28a480997339dc> /usr/lib/libbz2.1.0.dylib 0x1e5106000 - 0x1e5106fff libcharset.1.dylib arm64e /usr/lib/libcharset.1.dylib 0x1e5107000 - 0x1e5118fff libcmph.dylib arm64e /usr/lib/libcmph.dylib 0x1e5119000 - 0x1e5130fff libcompression.dylib arm64e <0f27f2f9302f37978c084cd6cec38432> /usr/lib/libcompression.dylib 0x1e5131000 - 0x1e5147fff libcoretls.dylib arm64e <82b845672c153d149c2e5f7d52829fcc> /usr/lib/libcoretls.dylib 0x1e5148000 - 0x1e5149fff libcoretls_cfhelpers.dylib arm64e <2fc084f0e6cb38ccb3441c80ad1393d7> /usr/lib/libcoretls_cfhelpers.dylib 0x1e516d000 - 0x1e5174fff libcupolicy.dylib arm64e <7b39fce102fa3f45892ffdb80f422f4f> /usr/lib/libcupolicy.dylib 0x1e5175000 - 0x1e517cfff libdns_services.dylib arm64e <4cac384f00653034afbbcf8288b0bfd1> /usr/lib/libdns_services.dylib 0x1e517d000 - 0x1e519afff libedit.3.dylib arm64e /usr/lib/libedit.3.dylib 0x1e519b000 - 0x1e519bfff libenergytrace.dylib arm64e /usr/lib/libenergytrace.dylib 0x1e519c000 - 0x1e51b5fff libexpat.1.dylib arm64e /usr/lib/libexpat.1.dylib 0x1e51df000 - 0x1e51e3fff libgermantok.dylib arm64e <585ec8a40b0e32e88dba53f35a07c70f> /usr/lib/libgermantok.dylib 0x1e51e4000 - 0x1e51e9fff libheimdal-asn1.dylib arm64e /usr/lib/libheimdal-asn1.dylib 0x1e51ea000 - 0x1e52dffff libiconv.2.dylib arm64e <03e7a7e4dde835508741edd69270af5f> /usr/lib/libiconv.2.dylib 0x1e52fe000 - 0x1e52fffff liblangid.dylib arm64e <1255de5ea4983685bb6973604d732267> /usr/lib/liblangid.dylib 0x1e5300000 - 0x1e530bfff liblockdown.dylib arm64e <23c07c0fc5093e37bfd7a0e276ea3d98> /usr/lib/liblockdown.dylib 0x1e530c000 - 0x1e5324fff liblzma.5.dylib arm64e <9046f47632bb38bba83c47f76e71d306> /usr/lib/liblzma.5.dylib 0x1e5353000 - 0x1e53a8fff libmecab.dylib arm64e <1248e78f670a3e80a0dd39837cf782d7> /usr/lib/libmecab.dylib 0x1e53a9000 - 0x1e55e0fff libmecabra.dylib arm64e /usr/lib/libmecabra.dylib 0x1e55e1000 - 0x1e55f4fff libmis.dylib arm64e /usr/lib/libmis.dylib 0x1e55f5000 - 0x1e560afff libnetworkextension.dylib arm64e /usr/lib/libnetworkextension.dylib 0x1e59b5000 - 0x1e59effff libpcap.A.dylib arm64e <989fc8a318983af69064be81e007c38d> /usr/lib/libpcap.A.dylib 0x1e59f0000 - 0x1e59fefff libperfcheck.dylib arm64e /usr/lib/libperfcheck.dylib 0x1e5a06000 - 0x1e5a18fff libprequelite.dylib arm64e <1849a2dc033a3aaa8d60fcf4b10b499c> /usr/lib/libprequelite.dylib 0x1e5a19000 - 0x1e5a2bfff libprotobuf-lite.dylib arm64e <53f0e1389e0530bc9131dd569d28ecad> /usr/lib/libprotobuf-lite.dylib 0x1e5a2c000 - 0x1e5a8efff libprotobuf.dylib arm64e /usr/lib/libprotobuf.dylib 0x1e5aef000 - 0x1e5b07fff libresolv.9.dylib arm64e <51b76938e8c13d458dd30429749fef91> /usr/lib/libresolv.9.dylib 0x1e5b08000 - 0x1e5b0afff libsandbox.1.dylib arm64e <09633f29d77035d9893f2a49dde7ca48> /usr/lib/libsandbox.1.dylib 0x1e5b54000 - 0x1e5b57fff libutil.dylib arm64e /usr/lib/libutil.dylib 0x1e5b58000 - 0x1e5c43fff libxml2.2.dylib arm64e <55df15ddfd323d458d67b61f9d0f9463> /usr/lib/libxml2.2.dylib 0x1e5c48000 - 0x1e5c71fff libxslt.1.dylib arm64e <6e2a5981e8ff37888498d7fd33116bfd> /usr/lib/libxslt.1.dylib 0x1e5c72000 - 0x1e5c83fff libz.1.dylib arm64e <9e35153333503f8bb9b567ec5881c5ef> /usr/lib/libz.1.dylib 0x1e5cc8000 - 0x1e5ccffff libswiftAVFoundation.dylib arm64e <357ce744bac53e1981c234c8c88c391a> /usr/lib/swift/libswiftAVFoundation.dylib 0x1e5cd0000 - 0x1e5d3dfff libswiftAccelerate.dylib arm64e <9638d42dd2b137ea861668d47a86870d> /usr/lib/swift/libswiftAccelerate.dylib 0x1e5d68000 - 0x1e5d70fff libswiftCoreAudio.dylib arm64e <78e58bf78d5534518c05a0e700f82207> /usr/lib/swift/libswiftCoreAudio.dylib 0x1e5d76000 - 0x1e5d76fff libswiftCoreFoundation.dylib arm64e <8eb23177992d3ae683a427f98761d366> /usr/lib/swift/libswiftCoreFoundation.dylib 0x1e5d77000 - 0x1e5d77fff libswiftCoreImage.dylib arm64e <2c10a28b00333e82b2cb5dae5ee94b14> /usr/lib/swift/libswiftCoreImage.dylib 0x1e5d78000 - 0x1e5d7afff libswiftCoreLocation.dylib arm64e /usr/lib/swift/libswiftCoreLocation.dylib 0x1e5d7b000 - 0x1e5d84fff libswiftCoreMIDI.dylib arm64e /usr/lib/swift/libswiftCoreMIDI.dylib 0x1e5d89000 - 0x1e5dc3fff libswiftCoreMedia.dylib arm64e <73bc3d9ed67b37a08967474be3a185b8> /usr/lib/swift/libswiftCoreMedia.dylib 0x1e5dd0000 - 0x1e5dd9fff libswiftDarwin.dylib arm64e <53a5784711cb3c77a42392362dfa2dbb> /usr/lib/swift/libswiftDarwin.dylib 0x1e5dda000 - 0x1e5ddafff libswiftGLKit.dylib arm64e <68078e9b10b13ea38b16292c7c02b13e> /usr/lib/swift/libswiftGLKit.dylib 0x1e5ddd000 - 0x1e5ddefff libswiftHealthKit.dylib arm64e <90a1413db22f30f1b2ce7ad2910d544b> /usr/lib/swift/libswiftHealthKit.dylib 0x1e5df4000 - 0x1e5df7fff libswiftMediaPlayer.dylib arm64e /usr/lib/swift/libswiftMediaPlayer.dylib 0x1e5df8000 - 0x1e5dfcfff libswiftMetal.dylib arm64e /usr/lib/swift/libswiftMetal.dylib 0x1e5dfd000 - 0x1e5dfefff libswiftMetalKit.dylib arm64e /usr/lib/swift/libswiftMetalKit.dylib 0x1e5e01000 - 0x1e5e03fff libswiftModelIO.dylib arm64e /usr/lib/swift/libswiftModelIO.dylib 0x1e5e70000 - 0x1e5e71fff libswiftQuartzCore.dylib arm64e /usr/lib/swift/libswiftQuartzCore.dylib 0x1e5e72000 - 0x1e5e75fff libswiftSceneKit.dylib arm64e <229966f34ab63bbc81693a3745c7891c> /usr/lib/swift/libswiftSceneKit.dylib 0x1e5eb2000 - 0x1e5ec4fff libswiftos.dylib arm64e /usr/lib/swift/libswiftos.dylib 0x1e5ec5000 - 0x1e5ed8fff libswiftsimd.dylib arm64e <161b6c40fcf13f8cb348d82a3f7e620b> /usr/lib/swift/libswiftsimd.dylib 0x1e5ed9000 - 0x1e5edefff libcache.dylib arm64e <7567dfaa324e306aa66fc2dda88b033b> /usr/lib/system/libcache.dylib 0x1e5edf000 - 0x1e5eecfff libcommonCrypto.dylib arm64e <25abfbdfed4431f7a628bd742e231f31> /usr/lib/system/libcommonCrypto.dylib 0x1e5eed000 - 0x1e5ef0fff libcompiler_rt.dylib arm64e /usr/lib/system/libcompiler_rt.dylib 0x1e5ef1000 - 0x1e5ef9fff libcopyfile.dylib arm64e /usr/lib/system/libcopyfile.dylib 0x1e5fe1000 - 0x1e5fe1fff liblaunch.dylib arm64e <2484228087bc30c68b69739b80187b10> /usr/lib/system/liblaunch.dylib 0x1e5fe2000 - 0x1e5fe7fff libmacho.dylib arm64e <4228e603576133778acefc84d49a4d2f> /usr/lib/system/libmacho.dylib 0x1e5fe8000 - 0x1e5feafff libremovefile.dylib arm64e <904853f042653abe93730a3ecdf39678> /usr/lib/system/libremovefile.dylib 0x1e5feb000 - 0x1e5fecfff libsystem_blocks.dylib arm64e /usr/lib/system/libsystem_blocks.dylib 0x1e5fed000 - 0x1e5feffff libsystem_collections.dylib arm64e /usr/lib/system/libsystem_collections.dylib 0x1e5ff0000 - 0x1e5ff4fff libsystem_configuration.dylib arm64e <230a7783b6ac3c7fba6991bdfa91823d> /usr/lib/system/libsystem_configuration.dylib 0x1e5ff5000 - 0x1e6007fff libsystem_containermanager.dylib arm64e <01ba22f7abce3319860fb76d10a0d6d9> /usr/lib/system/libsystem_containermanager.dylib 0x1e6008000 - 0x1e6009fff libsystem_coreservices.dylib arm64e /usr/lib/system/libsystem_coreservices.dylib 0x1e600a000 - 0x1e6013fff libsystem_darwin.dylib arm64e <63485fa6fe9235b783a00554e0194eba> /usr/lib/system/libsystem_darwin.dylib 0x1e6014000 - 0x1e601cfff libsystem_dnssd.dylib arm64e <591126c3ffdb3df8afb3cb5f5c3e79a0> /usr/lib/system/libsystem_dnssd.dylib 0x1e601d000 - 0x1e601ffff libsystem_featureflags.dylib arm64e /usr/lib/system/libsystem_featureflags.dylib 0x1e6020000 - 0x1e604dfff libsystem_m.dylib arm64e /usr/lib/system/libsystem_m.dylib 0x1e604e000 - 0x1e6054fff libsystem_platform.dylib arm64e <88fa2f54074d32c49f4879eb67e67b7b> /usr/lib/system/libsystem_platform.dylib 0x1e6055000 - 0x1e6055fff libsystem_product_info_filter.dylib arm64e <563ac8a6230f305bbada77870fec6204> /usr/lib/system/libsystem_product_info_filter.dylib 0x1e6056000 - 0x1e6061fff libsystem_pthread.dylib arm64e /usr/lib/system/libsystem_pthread.dylib 0x1e6062000 - 0x1e6065fff libsystem_sandbox.dylib arm64e /usr/lib/system/libsystem_sandbox.dylib 0x1e6066000 - 0x1e6070fff libunwind.dylib arm64e /usr/lib/system/libunwind.dylib 0x1e6071000 - 0x1e60a7fff libxpc.dylib arm64e /usr/lib/system/libxpc.dylib 0x1e741e000 - 0x1e7738fff AGXMetalA13 arm64e /System/Library/Extensions/AGXMetalA13.bundle/AGXMetalA13 0x1e84aa000 - 0x1e84bcfff SpotlightLinguistics arm64e <2c2506e0b4133cd5a272174205658e8c> /System/Library/PrivateFrameworks/SpotlightLinguistics.framework/SpotlightLinguistics EOF ```
kvs-coder commented 3 years ago

Hi @nohli

I will publish a fix version soon. Apparantely I was a able to get some crashes when I tried to pass null UUID for different types but still it has nothing to do with authorization. I investigated that this UUID parameter is actually redundant and set automatically only when something is saved inside HealthKit, I am removing it. Hope the fix will help

nohli commented 3 years ago

@VictorKachalov that's good! 🎉

The issue above is probably about requestAuthorization, right? - Could you replicate it, too?

For now, I have removed this package from my app (there were more than 1.000 crashes), so I can wait...

FYI Also opened a question on Stack Overflow: https://stackoverflow.com/questions/66255585/how-to-debug-this-xcode-stacktrace

Who knows, maybe there could also just be a problem with Flutter Platform Channels in the beta, so once it is published as stable, more people report a crash and it gets fixed.

kvs-coder commented 3 years ago

Hi @nohli

Please check the new 1.1.0 version of the package. Most of changes are done in the native reporter

nohli commented 3 years ago

Cool progress! 🎉

Did you change anything regarding requestAuthorization or platform channels (maybe also in the cocoapods package)?

nohli commented 3 years ago

FYI it doesn't compile:

1

If I set the deployment target for health_kit_reporter to iOS 12, this error is shown:

2

kvs-coder commented 3 years ago

Please run in iOS folder

pod update

In order to update the original healthkitreporter CocoaPod, it should be version 1.4.0

nohli commented 3 years ago

This is interesting. I did pod install --repo-update, but it installed 1.3.3 (even downgraded after I ran pod update). pod update worked, thanks!

But did anything change regarding the crash in requestAuthorization? I'm not sure if I should test this again in production yet.

kvs-coder commented 3 years ago

I investigated this thing, I never receive crashes. No idea honestly, so no changes in that direction.

kvs-coder commented 3 years ago

Hi @nohli ,

do you experience it still? Maybe it is a kind of general Flutter issue?

Maybe it is fixed in Flutter 2. Can only predict... What's new in Flutter 2

nohli commented 3 years ago

Hi! :)

I've been using flutter beta, which was pretty close to the new 2.0.0, so honestly I don't know.

After three updates and crashes in every production version, I disabled health kit. The TestFlight users are using health kit though, they also report that there are no issues, but it affects ~1 in 20 devices, so probably only another test in production will generate crash reports.

My plan is to wait for the first flutter stable hotfixes (since now a lot of developers will use it, publish apps with it and report issues), then publish a new app release and see :) So in about two weeks there is more information regarding this issue.

nohli commented 3 years ago

The null safe version gave an error when passing null for uuid - maybe it was because of this?

FYI I am going to push an update today where users can opt-in to health kit reporting, so there will definitely be less crash reports, but hopefully none - will keep you updated :)

Thanks for migrating no nnbd 🚀

Edit: Not seeing any more crashes and closing. Thanks for your support.