Giter Site home page Giter Site logo

britannio / in_app_review Goto Github PK

View Code? Open in Web Editor NEW
302.0 4.0 77.0 1.24 MB

A Flutter plugin for showing the In-App Review/System Rating pop up on Android, IOS, and MacOS. It makes it easy for users to rate your app.

Java 15.65% Ruby 6.92% Swift 4.27% Objective-C 5.35% Dart 25.22% CMake 15.22% C++ 25.95% C 1.12% Kotlin 0.21% Makefile 0.09%
flutter-plugin flutter

in_app_review's Introduction

in_app_review

tests pub package In-App Review Android Demo In-App Review iOS Demo

Description

A Flutter plugin that lets you show a review pop up where users can leave a review for your app without needing to close your app. Alternatively, you can open your store listing via a deep link.

It uses the In-App Review API on Android and the SKStoreReviewController on iOS/MacOS.

Usage

requestReview()

The following code triggers the In-App Review prompt. This should not be used frequently as the underlying API's enforce strict quotas on this feature to provide a great user experience.

import 'package:in_app_review/in_app_review.dart';

final InAppReview inAppReview = InAppReview.instance;

if (await inAppReview.isAvailable()) {
    inAppReview.requestReview();
}

Do

  • Use this after a user has experienced your app for long enough to provide useful feedback, e.g., after the completion of a game level or after a few days.
  • Use this sparingly otherwise no pop up will appear.

Avoid

  • Triggering this via a button in your app as it will only work when the quota enforced by the underlying API has not been exceeded. (Android)
  • Interrupting the user if they are mid way through a task.

Testing requestReview() on Android isn't as simple as running your app via the emulator or a physical device. See Testing for more info.


openStoreListing()

The following code opens the Google Play Store on Android, the App Store with a review screen on iOS & MacOS and the Microsoft Store on Windows. Use this if you want to permanently provide a button or other call-to-action to let users leave a review as it isn't restricted by a quota.

import 'package:in_app_review/in_app_review.dart';

final InAppReview inAppReview = InAppReview.instance;

inAppReview.openStoreListing(appStoreId: '...', microsoftStoreId: '...');

appStoreId is only required on iOS and MacOS and can be found in App Store Connect under General > App Information > Apple ID.

microsoftStoreId is only required on Windows.

Guidelines

https://developer.apple.com/design/human-interface-guidelines/ios/system-capabilities/ratings-and-reviews/

https://developer.android.com/guide/playcore/in-app-review#when-to-request https://developer.android.com/guide/playcore/in-app-review#design-guidelines

Since there is a quota on how many times the pop up can be shown, you should not trigger requestReview() via a button or other call-to-action option. Instead, you can reliably redirect users to your store listing via openStoreListing().

Testing (read carefully)

Android

You must upload your app to the Play Store to test requestReview(). The recommended approach is to build an app bundle and upload it via internal app sharing.

Real reviews can only be created when requestReview() is used from the production track. The submit button is disabled on other tracks and in internal app sharing to emphasize this.

If you get stuck here as many developers have, please refer to the troubleshooting table found below or the complete official instructions.

Troubleshooting table
Issue Solution
Your app is not published yet in the Play Store. Your app doesn't have to be published to test, but your app's applicationID must be available at least in the internal testing track.
The user account can't review the app. Your app must be in the user's Google Play library. To add your app to the user's library, download your app from the Play Store using that user's account.
The primary account is not selected in the Play Store. When multiple accounts are available in the device, ensure that the primary account is the one selected in the Play Store.
The user account is protected (for example, with enterprise accounts). Use a Gmail account instead.
The user has already reviewed the app. Delete the review directly from Play Store.
The quota has been reached. Use an internal test track or internal app sharing.
There is an issue with the Google Play Store or Google Play Services on the device. This commonly occurs when the Play Store was sideloaded onto the device. Use a different device that has a valid version of the Play Store and Google Play Services.

iOS

requestReview() can be tested via the iOS simulator or on a physical device. Note that requestReview() will do nothing when testing via TestFlight as documented.

Similarly to Android, real reviews can only created when requestReview() is used in production. The submit button is disabled when testing locally to emphasize this.

openStoreListing() can only be tested with a physical device as the iOS simulator does not have the App Store installed.

MacOS

This plugin can be tested by running your MacOS application locally.

Cross Platform Compatibility

Function Android iOS MacOS Windows
isAvailable()
requestReview()
openStoreListing()

Requirements

Android

Requires Android 5 Lollipop(API 21) or higher and the Google Play Store must be installed.

iOS

Requires iOS version 10.3

MacOS

Requires MacOS version 10.14

Issues & pull requests are more than welcome!

in_app_review's People

Contributors

asaarnak avatar brian-kayfitz avatar britannio avatar chadyuu avatar wendler avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

in_app_review's Issues

Could not resolve org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50.

I try to build Android app, but I got following error:
`A problem occurred configuring project ':in_app_review'.

Could not resolve all artifacts for configuration ':in_app_review:classpath'.
Could not resolve org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50.
Required by:
project :in_app_review > com.android.tools.build:gradle:3.5.4
project :in_app_review > com.android.tools.build:gradle:3.5.4 > com.android.tools.build:builder:3.5.4
project :in_app_review > com.android.tools.build:gradle:3.5.4 > com.android.tools.lint:lint-gradle-api:26.5.4
project :in_app_review > com.android.tools.build:gradle:3.5.4 > com.android.tools.build:gradle-api:3.5.4
project :in_app_review > com.android.tools.build:gradle:3.5.4 > androidx.databinding:databinding-compiler-common:3.5.4
project :in_app_review > com.android.tools.build:gradle:3.5.4 > com.android.tools.build:builder:3.5.4 > com.android.tools:sdk-common:26.5.4
project :in_app_review > com.android.tools.build:gradle:3.5.4 > com.android.tools.build:builder:3.5.4 > com.android.tools:common:26.5.4
project :in_app_review > com.android.tools.build:gradle:3.5.4 > com.android.tools.build:builder:3.5.4 > com.android.tools.build:manifest-merger:26.5.4
project :in_app_review > com.android.tools.build:gradle:3.5.4 > com.android.tools.build:builder:3.5.4 > com.android.tools.analytics-library:tracker:26.5.4
project :in_app_review > com.android.tools.build:gradle:3.5.4 > com.android.tools.build:builder:3.5.4 > com.android.tools:sdklib:26.5.4 > com.android.tools:repository:26.5.4
project :in_app_review > com.android.tools.build:gradle:3.5.4 > com.android.tools.build:builder:3.5.4 > com.android.tools:sdk-common:26.5.4 > com.android.tools.analytics-library:shared:26.5.4
> Could not resolve org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50.
> Could not get resource 'https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.50/kotlin-stdlib-jdk8-1.3.50.pom'.
> Could not HEAD 'https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.50/kotlin-stdlib-jdk8-1.3.50.pom'.
> sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: validity check failed`

Anyone knows what is wrong?

How do you capture the #of stars

Hello,
Thanks for the plugin.. How can you capture the # of stars from the inApp review dialog when the user press the submit button..

Non fatal issue detected with Crashlytics

I get this error on the firebase craslytics console:
This error occurs not very often.

PlatformException(no-scene, In-App Review could not find active scene, null, null)

Non-fatal Exception: FlutterError
0 ??? 0x0 StandardMethodCodec.decodeEnvelope + 597 (message_codecs.dart:597)
1 ??? 0x0 MethodChannel._invokeMethod + 158 (platform_channel.dart:158)

Version: 2.0.2

Calling requestReview not working on Android in production

It is working as expected when the app is shared using internal app sharing, but if I download the production release from the play store the review prompt is never shown. Logcat is showing this:

I InAppReviewPlugin: requestReview: called
I InAppReviewPlugin: launchReviewFlow: called
E ActivityTaskManager: intent received is not valid or null
I ActivityTaskManager: START u0 {cmp=com.offtherecord.otr_mobile_app/com.google.android.play.core.common.PlayCoreDialogWrapperActivity (has extras)} from uid 10467
E Parcel  : Class not found when unmarshalling: com.google.android.play.core.review.d
E Parcel  : java.lang.ClassNotFoundException: com.google.android.play.core.review.d
E Parcel  : 	at java.lang.Class.classForName(Native Method)
E Parcel  : 	at java.lang.Class.forName(Class.java:454)
E Parcel  : 	at android.os.Parcel.readParcelableCreator(Parcel.java:3031)
E Parcel  : 	at android.os.Parcel.readParcelable(Parcel.java:2981)
E Parcel  : 	at android.os.Parcel.readValue(Parcel.java:2883)
E Parcel  : 	at android.os.Parcel.readArrayMapInternal(Parcel.java:3261)
E Parcel  : 	at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:292)
E Parcel  : 	at android.os.BaseBundle.unparcel(BaseBundle.java:236)
E Parcel  : 	at android.os.BaseBundle.getString(BaseBundle.java:1160)
E Parcel  : 	at android.content.Intent.getStringExtra(Intent.java:8552)
E Parcel  : 	at com.android.server.wm.ActivityStarter.startActivity(ActivityStarter.java:847)
E Parcel  : 	at com.android.server.wm.ActivityStarter.startActivity(ActivityStarter.java:732)
E Parcel  : 	at com.android.server.wm.ActivityStarter.startActivityMayWait(ActivityStarter.java:2072)
E Parcel  : 	at com.android.server.wm.ActivityStarter.execute(ActivityStarter.java:646)
E Parcel  : 	at com.android.server.wm.ActivityTaskManagerService.startActivityAsUser(ActivityTaskManagerService.java:1717)
E Parcel  : 	at com.android.server.wm.ActivityTaskManagerService.startActivityAsUser(ActivityTaskManagerService.java:1613)
E Parcel  : 	at com.android.server.wm.ActivityTaskManagerService.startActivity(ActivityTaskManagerService.java:1566)
E Parcel  : 	at android.app.IActivityTaskManager$Stub.onTransact(IActivityTaskManager.java:1746)
E Parcel  : 	at android.os.Binder.execTransactInternal(Binder.java:1056)
E Parcel  : 	at android.os.Binder.execTransact(Binder.java:1029)
E Parcel  : Caused by: java.lang.ClassNotFoundException: com.google.android.play.core.review.d
E Parcel  : 	... 20 more
W Bundle  : Failed to parse Bundle, but defusing quietly
W Bundle  : android.os.BadParcelableException: ClassNotFoundException when unmarshalling: com.google.android.play.core.review.d
W Bundle  : 	at android.os.Parcel.readParcelableCreator(Parcel.java:3059)
W Bundle  : 	at android.os.Parcel.readParcelable(Parcel.java:2981)
W Bundle  : 	at android.os.Parcel.readValue(Parcel.java:2883)
W Bundle  : 	at android.os.Parcel.readArrayMapInternal(Parcel.java:3261)
W Bundle  : 	at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:292)
W Bundle  : 	at android.os.BaseBundle.unparcel(BaseBundle.java:236)
W Bundle  : 	at android.os.BaseBundle.getString(BaseBundle.java:1160)
W Bundle  : 	at android.content.Intent.getStringExtra(Intent.java:8552)
W Bundle  : 	at com.android.server.wm.ActivityStarter.startActivity(ActivityStarter.java:847)
W Bundle  : 	at com.android.server.wm.ActivityStarter.startActivity(ActivityStarter.java:732)
W Bundle  : 	at com.android.server.wm.ActivityStarter.startActivityMayWait(ActivityStarter.java:2072)
W Bundle  : 	at com.android.server.wm.ActivityStarter.execute(ActivityStarter.java:646)
W Bundle  : 	at com.android.server.wm.ActivityTaskManagerService.startActivityAsUser(ActivityTaskManagerService.java:1717)
W Bundle  : 	at com.android.server.wm.ActivityTaskManagerService.startActivityAsUser(ActivityTaskManagerService.java:1613)
W Bundle  : 	at com.android.server.wm.ActivityTaskManagerService.startActivity(ActivityTaskManagerService.java:1566)
W Bundle  : 	at android.app.IActivityTaskManager$Stub.onTransact(IActivityTaskManager.java:1746)
W Bundle  : 	at android.os.Binder.execTransactInternal(Binder.java:1056)
W Bundle  : 	at android.os.Binder.execTransact(Binder.java:1029)

Edit sorry should add flutter -v output

Flutter (Channel stable, 1.22.5, on macOS 11.0.1 20B29 darwin-x64, locale en-US)
    • Flutter version 1.22.5
    • Framework revision 7891006299 (4 weeks ago), 2020-12-10 11:54:40 -0800
    • Engine revision ae90085a84
    • Dart version 2.10.4

[Android] requestReview() works on Internal App Sharing, but not working after publish to Play Store.

  final InAppReview inAppReview = InAppReview.instance;

  void promptReview() async {
    if (await inAppReview.isAvailable()) {
      inAppReview.requestReview();
    } else {
      inAppReview.openStoreListing(appStoreId: '1515666116');
    }
  }

Identical code base.
tested on 2 android phones: ZTE blade A7 on android 9, Galaxy A71 on Android 10.

Internal App Sharing link:
https://play.google.com/apps/test/RQRc_UnRrcU/ahAEJTaaTqODQmaAEYe8lWQ3z5P4kfxlxT5Pp5c2nJcvgqVWP0vOzTnbkbpBfSKzwn0h2s-muB8il3tnxyrjFf4DTp

Play Store link:
https://play.google.com/store/apps/details?id=org.unitsconversion.unitconverter

requestReview doesn't work on IOS

requestReview doesn't work on IOS after released in TestFlight, but version run locally on physical device works fine and show pop-up with stars.

Error after following usage instructions

Hello, firstly, thanks for such a promising widget.

I just ran it following the usage instructions and I got this error, message of which I don't fully understand.
Could you guide me a bit on what is the meaning and how and I solve it?

Thanks!

I/PlayCore(14598): UID: [10631]  PID: [14598] ReviewService : requestInAppReview (com.my.app)
I/PlayCore(14598): UID: [10631]  PID: [14598] ReviewService : Initiate binding to the service.
I/PlayCore(14598): UID: [10631]  PID: [14598] ReviewService : ServiceConnectionImpl.onServiceConnected(ComponentInfo{com.android.vending/com.google.android.finsky.inappreviewservice.InAppReviewService})
I/PlayCore(14598): UID: [10631]  PID: [14598] ReviewService : linkToDeath
I/PlayCore(14598): UID: [10631]  PID: [14598] OnRequestInstallCallback : onGetLaunchReviewFlowInfo
I/PlayCore(14598): UID: [10631]  PID: [14598] ReviewService : Unbind from service.
W/ActivityThread(14598): handleWindowVisibility: no activity for token android.os.BinderProxy@e59e2c

OpenURL warning

I am getting this warning in Xcode :'openURL:' is deprecated: first deprecated in iOS 10.0

System Review Popup is not being displayed.

System Review Pop up is not being displayed.
I have wrote following code inside initState() function.

    WidgetsBinding.instance.addPostFrameCallback((_) async{
      if (await _inAppReview.isAvailable()) {
        print("WidgetsBinding Available");
        _inAppReview.requestReview();
      }
    });

Following is my debug log

I/PlayCore( 2860): UID: [10042]  PID: [2860] ReviewService : requestInAppReview (com.shantiwebsolution.bollywood_quiz)
I/PlayCore( 2860): UID: [10042]  PID: [2860] ReviewService : Initiate binding to the service.
I/PlayCore( 2860): UID: [10042]  PID: [2860] ReviewService : ServiceConnectionImpl.onServiceConnected(ComponentInfo{com.android.vending/com.google.android.finsky.inappreviewservice.InAppReviewService})
I/PlayCore( 2860): UID: [10042]  PID: [2860] ReviewService : linkToDeath
I/PlayCore( 2860): UID: [10042]  PID: [2860] OnRequestInstallCallback : onGetLaunchReviewFlowInfo
I/PlayCore( 2860): UID: [10042]  PID: [2860] ReviewService : Unbind from service.
I/flutter ( 2860): WidgetsBinding Available
I/Timeline( 2860): Timeline: Activity_launch_request id:com.shantiwebsolution.bollywood_quiz time:74560055
I/PlayCore( 2860): UID: [10042]  PID: [2860] AppUpdateService : requestUpdateInfo(com.shantiwebsolution.bollywood_quiz)
I/PlayCore( 2860): UID: [10042]  PID: [2860] AppUpdateService : Initiate binding to the service.
D/ViewRootImpl( 2860): #1 mView = com.android.internal.policy.PhoneWindow$DecorView{2cc92c1 I.E...... R.....I. 0,0-0,0}
D/mali_winsys( 2860): new_window_surface returns 0x3000,  [1x1]-format:1
I/PlayCore( 2860): UID: [10042]  PID: [2860] AppUpdateService : ServiceConnectionImpl.onServiceConnected(ComponentInfo{com.android.vending/com.google.android.finsky.installservice.DevTriggeredUpdateService})
D/ViewRootImpl( 2860): MSG_RESIZED_REPORT: ci=Rect(0, 0 - 0, 0) vi=Rect(0, 0 - 0, 0) or=1
I/PlayCore( 2860): UID: [10042]  PID: [2860] AppUpdateService : linkToDeath
I/Timeline( 2860): Timeline: Activity_idle id: android.os.BinderProxy@f049bbc time:74560188
I/PlayCore( 2860): UID: [10042]  PID: [2860] OnRequestInstallCallback : onRequestInfo
I/PlayCore( 2860): UID: [10042]  PID: [2860] AppUpdateService : Unbind from service.
I/PlayCore( 2860): UID: [10042]  PID: [2860] AppUpdateService : requestUpdateInfo(com.shantiwebsolution.bollywood_quiz)
I/PlayCore( 2860): UID: [10042]  PID: [2860] AppUpdateService : Initiate binding to the service.
I/PlayCore( 2860): UID: [10042]  PID: [2860] AppUpdateService : ServiceConnectionImpl.onServiceConnected(ComponentInfo{com.android.vending/com.google.android.finsky.installservice.DevTriggeredUpdateService})
I/PlayCore( 2860): UID: [10042]  PID: [2860] AppUpdateService : linkToDeath
I/Timeline( 2860): Timeline: Activity_idle id: android.os.BinderProxy@3df8d69 time:74560426
D/ViewRootImpl( 2860): #3 mView = null
I/PlayCore( 2860): UID: [10042]  PID: [2860] OnRequestInstallCallback : onRequestInfo
I/PlayCore( 2860): UID: [10042]  PID: [2860] AppUpdateService : Unbind from service.

Limit reached callback

According to https://developer.android.com/guide/playcore/in-app-review#quotas

To provide a great user experience, Google Play enforces a quota on how often a user can be shown the review dialog. Because of this, calling a launchReviewFlow method might not always display a dialog. For example, you should not have a call-to-action option (such as a button) to trigger a review as a user might have already hit their quota and the flow won’t be shown, presenting a broken experience to the user.

So is there any callback if quota has been reached?
For example, if review card cannot be opened, it open Google Play App listing instead.

Android In-App Review not working in Emulator and Real Device

Hi Team,

This is my code, on button click

Code

                final InAppReview inAppReview = InAppReview.instance;

                if (await inAppReview.isAvailable()) {
                  inAppReview.requestReview();
                } else {
                  inAppReview.openStoreListing();
                }

Logs

I/InAppReviewPlugin( 1428): onComplete: Successfully requested review flow
I/flutter ( 1428): true
I/InAppReviewPlugin( 1428): isAvailable: called
I/InAppReviewPlugin( 1428): isAvailable: playStoreInstalled: true
I/InAppReviewPlugin( 1428): isAvailable:lollipopOrLater: true
I/InAppReviewPlugin( 1428): isAvailable: The Play Store is available and Android 5 or later is being used
I/InAppReviewPlugin( 1428): cacheReviewInfo: called
I/PlayCore( 1428): UID: [10351]  PID: [1428] ReviewService : requestInAppReview (io.epix.warranty_manager)
I/InAppReviewPlugin( 1428): cacheReviewInfo: Requesting review flow
I/PlayCore( 1428): UID: [10351]  PID: [1428] ReviewService : Initiate binding to the service.
I/PlayCore( 1428): UID: [10351]  PID: [1428] ReviewService : ServiceConnectionImpl.onServiceConnected(ComponentInfo{com.android.vending/com.google.android.finsky.inappreviewservice.InAppReviewService})
I/PlayCore( 1428): UID: [10351]  PID: [1428] ReviewService : linkToDeath
I/PlayCore( 1428): UID: [10351]  PID: [1428] OnRequestInstallCallback : onGetLaunchReviewFlowInfo

Unhandled Exception: MissingPluginException(No implementation found for method openStoreListing on channel dev.britannio.in_app_review

Hi, I'm facing an issue that there is no implementation for the method openStoreListing.
I expected to open Google Play on Android. Do you have any idea what happened?

The package version

in_app_review: ^1.0.3

Code

final InAppReview inAppReview = InAppReview.instance;
inAppReview.openStoreListing();

Logs

E/flutter ( 1050): [ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: MissingPluginException(No implementation found for method openStoreListing on channel dev.britannio.in_app_review)
E/flutter ( 1050): #0      MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:157:7)
E/flutter ( 1050): <asynchronous suspension>
E/flutter ( 1050): #1      MethodChannel.invokeMethod (package:flutter/src/services/platform_channel.dart:332:12)
E/flutter ( 1050): #2      MethodChannelInAppReview.openStoreListing (package:in_app_review_platform_interface/method_channel_in_app_review.dart:42:22)
E/flutter ( 1050): #3      InAppReview.openStoreListing (package:in_app_review/in_app_review.dart:45:36)
E/flutter ( 1050): #4      _DebugBottomSheetState._inAppReviewDialog.<anonymous closure> (package:xxxxx/presentation/widget/debug/debug_bottom_sheet.dart:222:25)
E/flutter ( 1050): <asynchronous suspension>
E/flutter ( 1050): #5      _DebugBottomSheetState._inAppReviewDialog.<anonymous closure> (package:xxxxx/presentation/widget/debug/debug_bottom_sheet.dart)
E/flutter ( 1050): #6      _InkResponseState._handleTap (package:flutter/src/material/ink_well.dart:993:19)
E/flutter ( 1050): #7      _InkResponseState.build.<anonymous closure> (package:flutter/src/material/ink_well.dart:1111:38)
E/flutter ( 1050): #8      GestureRecognizer.invokeCallback (package:flutter/src/gestures/recognizer.dart:183:24)
E/flutter ( 1050): #9      TapGestureRecognizer.handleTapUp (package:flutter/src/gestures/tap.dart:598:11)
E/flutter ( 1050): #10     BaseTapGestureRecognizer._checkUp (package:flutter/src/gestures/tap.dart:287:5)
E/flutter ( 1050): #11     BaseTapGestureRecognizer.acceptGesture (package:flutter/src/gestures/tap.dart:259:7)
E/flutter ( 1050): #12     GestureArenaManager.sweep (package:flutter/src/gestures/arena.dart:157:27)
E/flutter ( 1050): #13     GestureBinding.handleEvent (package:flutter/src/gestures/binding.dart:362:20)
E/flutter ( 1050): #14     GestureBinding.dispatchEvent (package:flutter/src/gestures/binding.dart:338:22)
E/flutter ( 1050): #15     RendererBinding.dispatchEvent (package:flutter/src/rendering/binding.dart:267:11)
E/flutter ( 1050): #16     GestureBinding._handlePointerEvent (package:flutter/src/gestures/binding.dart:295:7)
E/flutter ( 1050): #17     GestureBinding._flushPointerEventQueue (package:flutter/src/gestures/binding.dart:240:7)
E/flutter ( 1050): #18     GestureBinding._handlePointerDataPacket (package:flutter/src/gestures/binding.dart:213:7)
E/flutter ( 1050): #19     _rootRunUnary (dart:async/zone.dart:1206:13)
E/flutter ( 1050): #20     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
E/flutter ( 1050): #21     _CustomZone.runUnaryGuarded (dart:async/zone.dart:1005:7)
E/flutter ( 1050): #22     _invoke1 (dart:ui/hooks.dart:265:10)
E/flutter ( 1050): #23     _dispatchPointerDataPacket (dart:ui/hooks.dart:174:5)

Flutter doctor

[✓] Flutter (Channel stable, 1.22.4, on Mac OS X 10.15.4 19E287 darwin-x64, locale zh-Hant-TW)
    • Flutter version 1.22.4 at /Users/evanfang/flutter
    • Framework revision 1aafb3a8b9 (3 weeks ago), 2020-11-13 09:59:28 -0800
    • Engine revision 2c956a31c0
    • Dart version 2.10.4

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

[✓] Xcode - develop for iOS and macOS (Xcode 11.7)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 11.7, Build version 11E801a
    • CocoaPods version 1.9.1

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

[✓] Connected device (1 available)
    • SM G970F (mobile) • xxxxxx • android-arm64 • Android 9 (API 28)

iOS SKStoreReviewController.requestReview(in: scene) Issue

Encountered an issue in when building for iOS:
SKStoreReviewController.requestReview(in: scene)

Error message:

    /Users/XXXXX/.pub-cache/hosted/pub.dartlang.org/in_app_review-2.0.1/ios/Classes/SwiftInAppReviewPlugin.swift:26:63: error: argument passed to call that takes no arguments
                        SKStoreReviewController.requestReview(in: scene)
                                                                  ^~~~~

My solution was to manually go into /Users/XXXXX/.pub-cache/hosted/pub.dartlang.org/in_app_review-2.0.1/ios/Classes/ and edit the file and remove "in: scene".

I have target delopyment set to 10.3.

Is there a better work around for this?

Calling requestReview() not working in android

I have a published app on the play store and i'm trying to use this package to make the request review but it doesn't work at all.

I started to try to use it on the internal test and it didn't work

If i change the requestReview by openStoreListing the app works fine and the page of the is app is shown normally...

I've tried on the the emulator and on real devices but in none of then it works.
This is the link of the app: https://play.google.com/store/apps/details?id=com.memory_game.by.reiko
I'm using the same app bundle of the published version.

The code requesting the review:

if (await _inAppReview.isAvailable() &&
        Theme.of(context).platform == TargetPlatform.android) {
      await _inAppReview.requestReview().onError(
            (error, stackTrace) =>
                print('Error when requesting the rate-my-app. $error'),
          );
    } else
      return Future.delayed(Duration.zero);

Below is the stack that it shows when i call the API.


I/InAppReviewPlugin(11896): onMethodCall: isAvailable
I/InAppReviewPlugin(11896): isAvailable: called
I/InAppReviewPlugin(11896): noContextOrActivity: called
I/InAppReviewPlugin(11896): isAvailable: playStoreInstalled: true
I/InAppReviewPlugin(11896): isAvailable: lollipopOrLater: true
I/InAppReviewPlugin(11896): isAvailable: The Play Store is available and Android 5 or later is being used
I/InAppReviewPlugin(11896): cacheReviewInfo: called
I/InAppReviewPlugin(11896): noContextOrActivity: called
I/PlayCore(11896): UID: [10160]  PID: [11896] ReviewService : requestInAppReview (com.memory_game.by.reiko)
I/InAppReviewPlugin(11896): cacheReviewInfo: Requesting review flow
I/PlayCore(11896): UID: [10160]  PID: [11896] ReviewService : Initiate binding to the service.
I/PlayCore(11896): UID: [10160]  PID: [11896] ReviewService : ServiceConnectionImpl.onServiceConnected(ComponentInfo{com.android.vending/com.google.android.finsky.inappreviewservice.InAppReviewService})
I/PlayCore(11896): UID: [10160]  PID: [11896] ReviewService : linkToDeath
I/PlayCore(11896): UID: [10160]  PID: [11896] OnRequestInstallCallback : onGetLaunchReviewFlowInfo
I/InAppReviewPlugin(11896): onComplete: Successfully requested review flow
I/PlayCore(11896): UID: [10160]  PID: [11896] ReviewService : Unbind from service.
I/InAppReviewPlugin(11896): onMethodCall: requestReview
I/InAppReviewPlugin(11896): requestReview: called
I/InAppReviewPlugin(11896): noContextOrActivity: called
I/InAppReviewPlugin(11896): launchReviewFlow: called
I/InAppReviewPlugin(11896): noContextOrActivity: called
W/JavaBinder(11896): BinderProxy is being destroyed but the application did not call unlinkToDeath to unlink all of its death recipients beforehand.  Releasing leaked death recipient: com.google.android.play.core.internal.ai
I/BpBinder(11896): onLastStrongRef automatically unlinking death recipients: <uncached descriptor>
W/JavaBinder(11896): BinderProxy is being destroyed but the application did not call unlinkToDeath to unlink all of its death recipients beforehand.  Releasing leaked death recipient: com.google.android.play.core.internal.ai
I/BpBinder(11896): onLastStrongRef automatically unlinking death recipients: <uncached descriptor>

I tried using the latest normal version: ^2.0.2 and the null-safety: ^2.0.1-dev. But the result is the same.

Flutter 2.2.0-10.2.pre • channel beta • https://github.com/flutter/flutter.git
Framework • revision b5017bf8de (8 days ago) • 2021-04-28 17:09:53 -0700
Engine • revision 91ed51e05c
Tools • Dart 2.13.0 (build 2.13.0-211.13.beta)

If i missed some important info just tell me and i bring to you.

Compilation warning

When you compile an app with this package it shows:

Note: C:\flutter\.pub-cache\hosted\pub.dartlang.org\in_app_review-0.2.0+3\android\src\main\java\dev\britannio\in_app_review\InAppReviewPlugin.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.

It is not an error, just a warning, is it possible to fix this?

requestReview only successful on emulator

I think I'm experiencing the opposite problem to other people:

I can get the review dialog to appear when I'm running a debug version in the emulator.

The same debug version does not open the review dialog on my phone (Samsung Galaxy 9+).
(the isAvailable() function returns true on the phone)

I have published a release version on an internal test track and tried to download and run this. Same result: no review dialog is showing up.

I have never submitted any review, so quota limits should not be the issue here.

How do I open the review in the play store

Hello,
What is the key pair to open the review on the Android store.

here the description in the API all --> inAppReview.openStoreListing(appStoreId: '...', microsoftStoreId: '...');

my appStoreId for apple and android are different

Thanks

Cannot get the system dialog to show

Hello,
Thanks for plugin and sorry if you answered a similar question before..

I install the plugin and added the logic

final InAppReview inAppReview = InAppReview.instance;
if (await inAppReview.isAvailable()) {
inAppReview.requestReview();
}

I hook up my Phone to my mac and ran it on my device from VSCode. I see the popup dialog asking me to rate but the submit button is disable.

However, if I build, deploy to TestFlight and download to my device then the nothing happens.. no dialog popup.

is this the normal behavior? If so, how can I get my QA to test it

Thanks for your help

Doesn't work on MI POCO F1 phone

I/PlayCore(10388): UID: [10621]  PID: [10388] ReviewService : requestInAppReview (com.queuewe.ngq)
I/PlayCore(10388): UID: [10621]  PID: [10388] ReviewService : Initiate binding to the service.
I/PlayCore(10388): UID: [10621]  PID: [10388] ReviewService : ServiceConnectionImpl.onServiceConnected(ComponentInfo{com.android.vending/com.google.android.finsky.inappreviewservice.InAppReviewService})
I/PlayCore(10388): UID: [10621]  PID: [10388] ReviewService : linkToDeath
I/PlayCore(10388): UID: [10621]  PID: [10388] OnRequestInstallCallback : onGetLaunchReviewFlowInfo
I/PlayCore(10388): UID: [10621]  PID: [10388] ReviewService : Unbind from service.
I/Timeline(10388): Timeline: Activity_launch_request time:30802086
W/ActivityThread(10388): handleWindowVisibility: no activity for token android.os.BinderProxy@b8ced1e

Used this-

onPressed: () async => (await _inAppReview.isAvailable())
                         ? await _inAppReview.requestReview()
                         : await _inAppReview.openStoreListing(),

Dialog actions callback

Can we have a call back when the user interacts with the review dialog. This will help to determine if the user cancelled or dismissed the dialog so that we can effectively call it at a later point in time.

Android when done reviewed, press RequestReview again not show popup Review again it quiet.

Hello sir, Can we know our reviewed rating is already or not?
I got nothing to happen when I already rated. And I want to show the user he is already rated or show popup Review dialog again.

This is my code.

Future<void> _requestReview() async {
    if (await _inAppReview.isAvailable()) {
      await _inAppReview.requestReview();
    } else {
      await _inAppReview.openStoreListing(appStoreId: _appStoreId);
    }
  }

Prefilled Stars

Hello,

I am looking for a design, in which the user comes to the rating screen. There I show a rating bar, where if let says the number of stars is less than 4 then he is directed to contact us screen else in-app review prompt is shown to the user with stars already prefilled and he just needs to add a comment now (if any).

Is there any method to achieve this?

Thanks and Regards
Ajinkya Taranekar

Allow to use custom Package IDs for Android

Hey! Thanks for this plugin.

In our app we have three type of builds: dev, stage and prod. For each of them we have different package names: app.dev, app.stage and just app.

Using this plugin it's not possible to test it: we have those prefixes for dev and stage builds, but the app is published w/o them.

Would be great if we had an option to pass the package ID to the plugin.

Thanks!

Method: "await _inAppReview.requestReview ();" - does not work

I am using app evaluation package:
in_app_review: ^ 2.0.0-nullsafety

void didChangeDependencies() {
    try {
      _inAppReview.isAvailable().then(
            (bool isAvailable) => setState(
              () => _isAvailable = isAvailable,
            ),
          );
    } catch (e) {
      setState(() => _isAvailable = false);
    }

    super.didChangeDependencies();
  }

I get such a terrible error log !!! (((

I/InAppReviewPlugin( 8791): isAvailable: called
I/InAppReviewPlugin( 8791): isAvailable: playStoreInstalled: true
I/InAppReviewPlugin( 8791): isAvailable:lollipopOrLater: true
I/InAppReviewPlugin( 8791): isAvailable: The Play Store is available and Android 5 or later is being used
I/InAppReviewPlugin( 8791): cacheReviewInfo: called
I/PlayCore( 8791): UID: [10937]  PID: [8791] ReviewService : requestInAppReview (radio.radiogram)
I/InAppReviewPlugin( 8791): cacheReviewInfo: Requesting review flow
I/PlayCore( 8791): UID: [10937]  PID: [8791] ReviewService : Initiate binding to the service.
I/PlayCore( 8791): UID: [10937]  PID: [8791] ReviewService : ServiceConnectionImpl.onServiceConnected(ComponentInfo{com.android.vending/com.google.android.finsky.inappreviewservice.InAppReviewService})
I/PlayCore( 8791): UID: [10937]  PID: [8791] ReviewService : linkToDeath
I/PlayCore( 8791): UID: [10937]  PID: [8791] OnRequestInstallCallback : onGetLaunchReviewFlowInfo
I/PlayCore( 8791): UID: [10937]  PID: [8791] ReviewService : Unbind from service.
I/InAppReviewPlugin( 8791): onComplete: Successfully requested review flow
W/JavaBinder( 8791): BinderProxy is being destroyed but the application did not call unlinkToDeath to unlink all of its death recipients beforehand.  Releasing leaked death recipient: com.google.android.play.core.internal.ai

Calling requestReview(); not working in android internal app sharing

I have up to internal testing, but it work when i call requestReview(), promt review never shown.

I InAppReviewPlugin: requestReview: called
I InAppReviewPlugin: launchReviewFlow: called
E ActivityTaskManager: intent received is not valid or null
I ActivityTaskManager: START u0 {cmp=com.offtherecord.otr_mobile_app/com.google.android.play.core.common.PlayCoreDialogWrapperActivity (has extras)} from uid 10467
E Parcel  : Class not found when unmarshalling: com.google.android.play.core.review.d
E Parcel  : java.lang.ClassNotFoundException: com.google.android.play.core.review.d
E Parcel  : 	at java.lang.Class.classForName(Native Method)
E Parcel  : 	at java.lang.Class.forName(Class.java:454)
E Parcel  : 	at android.os.Parcel.readParcelableCreator(Parcel.java:3031)
E Parcel  : 	at android.os.Parcel.readParcelable(Parcel.java:2981)
E Parcel  : 	at android.os.Parcel.readValue(Parcel.java:2883)
E Parcel  : 	at android.os.Parcel.readArrayMapInternal(Parcel.java:3261)
E Parcel  : 	at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:292)
E Parcel  : 	at android.os.BaseBundle.unparcel(BaseBundle.java:236)
E Parcel  : 	at android.os.BaseBundle.getString(BaseBundle.java:1160)
E Parcel  : 	at android.content.Intent.getStringExtra(Intent.java:8552)
E Parcel  : 	at com.android.server.wm.ActivityStarter.startActivity(ActivityStarter.java:847)
E Parcel  : 	at com.android.server.wm.ActivityStarter.startActivity(ActivityStarter.java:732)
E Parcel  : 	at com.android.server.wm.ActivityStarter.startActivityMayWait(ActivityStarter.java:2072)
E Parcel  : 	at com.android.server.wm.ActivityStarter.execute(ActivityStarter.java:646)
E Parcel  : 	at com.android.server.wm.ActivityTaskManagerService.startActivityAsUser(ActivityTaskManagerService.java:1717)
E Parcel  : 	at com.android.server.wm.ActivityTaskManagerService.startActivityAsUser(ActivityTaskManagerService.java:1613)
E Parcel  : 	at com.android.server.wm.ActivityTaskManagerService.startActivity(ActivityTaskManagerService.java:1566)
E Parcel  : 	at android.app.IActivityTaskManager$Stub.onTransact(IActivityTaskManager.java:1746)
E Parcel  : 	at android.os.Binder.execTransactInternal(Binder.java:1056)
E Parcel  : 	at android.os.Binder.execTransact(Binder.java:1029)
E Parcel  : Caused by: java.lang.ClassNotFoundException: com.google.android.play.core.review.d
E Parcel  : 	... 20 more
W Bundle  : Failed to parse Bundle, but defusing quietly
W Bundle  : android.os.BadParcelableException: ClassNotFoundException when unmarshalling: com.google.android.play.core.review.d
W Bundle  : 	at android.os.Parcel.readParcelableCreator(Parcel.java:3059)
W Bundle  : 	at android.os.Parcel.readParcelable(Parcel.java:2981)
W Bundle  : 	at android.os.Parcel.readValue(Parcel.java:2883)
W Bundle  : 	at android.os.Parcel.readArrayMapInternal(Parcel.java:3261)
W Bundle  : 	at android.os.BaseBundle.initializeFromParcelLocked(BaseBundle.java:292)
W Bundle  : 	at android.os.BaseBundle.unparcel(BaseBundle.java:236)
W Bundle  : 	at android.os.BaseBundle.getString(BaseBundle.java:1160)
W Bundle  : 	at android.content.Intent.getStringExtra(Intent.java:8552)
W Bundle  : 	at com.android.server.wm.ActivityStarter.startActivity(ActivityStarter.java:847)
W Bundle  : 	at com.android.server.wm.ActivityStarter.startActivity(ActivityStarter.java:732)
W Bundle  : 	at com.android.server.wm.ActivityStarter.startActivityMayWait(ActivityStarter.java:2072)
W Bundle  : 	at com.android.server.wm.ActivityStarter.execute(ActivityStarter.java:646)
W Bundle  : 	at com.android.server.wm.ActivityTaskManagerService.startActivityAsUser(ActivityTaskManagerService.java:1717)
W Bundle  : 	at com.android.server.wm.ActivityTaskManagerService.startActivityAsUser(ActivityTaskManagerService.java:1613)
W Bundle  : 	at com.android.server.wm.ActivityTaskManagerService.startActivity(ActivityTaskManagerService.java:1566)
W Bundle  : 	at android.app.IActivityTaskManager$Stub.onTransact(IActivityTaskManager.java:1746)
W Bundle  : 	at android.os.Binder.execTransactInternal(Binder.java:1056)
W Bundle  : 	at android.os.Binder.execTransact(Binder.java:1029)

Edit sorry should add flutter -v output

[✓] Flutter (Channel stable, 1.22.3, on Mac OS X 10.15.7 19H2, locale en-US)
    • Flutter version 1.22.3 at /Users/macbook/Documents/development/flutter
    • Framework revision 8874f21e79 (2 months ago), 2020-10-29 14:14:35 -0700
    • Engine revision a1440ca392
    • Dart version 2.10.3

Failed to build apk

Hey, I am unable to build apk and getting below error message-

command used- flutter build apk --target-platform=android-arm64 --no-tree-shake-icons or flutter build apk --split-per-abi --no-tree-shake-icons

version- in_app_review: ^1.0.3

FAILURE: Build failed with an exception.                                
                                                                        
* What went wrong:                                                      
A problem was found with the configuration of task ':in_app_review:compileReleaseJavaWithJavac'.
> File '/home/yash/Programming/flutter/appName/build/in_app_review/intermediates/annotation_processor_list/release/annotationProcessors.json' specified for property 'processorListFile' does not exist.
                                                                        
* Try:                                                                  
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
                                                                        
* Get more help at https://help.gradle.org                              
                                                                        
BUILD FAILED in 1m 18s  

Return Value for Reviews

Hello,

Can we get the return value (no of stars) in integer for the review submitted from requestReview() method?

Thanks & Regards

Review Dialog not in foreground, Bottom Navigation Bar is flashing

Hi,

I'm using in_app_review in my app, and it seems to be working theoretically on Android - the log output is correct, but there is no review dialog visible, similar as in #5

The review dialog was never shown, the app is not reviewed by the current account. I have other, native android apps, where it is working without any problems on this emulator device with this account.

The interesting thing I noticed was that the android bottom navigation bar flashed, exactly when the review dialog should have been opened. So it seemed that the dialog has been opened, but it is somehow in the background of the flutter activity or hidden. After a few times the flashing stopped and after waiting a bit it reappears. So I assume the quota was hit then.
Has anybody experienced something similar or has suggestions?

Emulator: Pixel 3 API 29, the app is published on the Play Store

Log:

I/InAppReviewPlugin(17120): isAvailable: called
I/InAppReviewPlugin(17120): isAvailable: playStoreInstalled: true
I/InAppReviewPlugin(17120): isAvailable:lollipopOrLater: true
I/InAppReviewPlugin(17120): isAvailable: The Play Store is available and Android 5 or later is being used
I/InAppReviewPlugin(17120): cacheReviewInfo: called
I/PlayCore(17120): UID: [10149]  PID: [17120] ReviewService : requestInAppReview (XXX)
I/InAppReviewPlugin(17120): cacheReviewInfo: Requesting review flow
I/PlayCore(17120): UID: [10149]  PID: [17120] ReviewService : Initiate binding to the service.
V/FA      (17120): Connecting to remote service
I/PlayCore(17120): UID: [10149]  PID: [17120] ReviewService : ServiceConnectionImpl.onServiceConnected(ComponentInfo{com.android.vending/com.google.android.finsky.inappreviewservice.InAppReviewService})
I/PlayCore(17120): UID: [10149]  PID: [17120] ReviewService : linkToDeath
V/FA      (17120): Connection attempt already in progress
V/FA      (17120): Connection attempt already in progress
D/FA      (17120): Connected to remote service
V/FA      (17120): Processing queued up service tasks: 3
I/PlayCore(17120): UID: [10149]  PID: [17120] OnRequestInstallCallback : onGetLaunchReviewFlowInfo
I/InAppReviewPlugin(17120): onComplete: Successfully requested review flow
I/PlayCore(17120): UID: [10149]  PID: [17120] ReviewService : Unbind from service.
W/JavaBinder(17120): BinderProxy is being destroyed but the application did not call unlinkToDeath to unlink all of its death recipients beforehand.  Releasing leaked death recipient: com.google.android.play.core.internal.ai
I/InAppReviewPlugin(17120): requestReview: called
I/InAppReviewPlugin(17120): launchReviewFlow: called
W/ActivityThread(17120): handleWindowVisibility: no activity for token android.os.BinderProxy@146cff

Flashing:

out

On iOS it is working fine.

Thanks!

I don't know this is now in my app

This is my code

InAppReview inAppReview = InAppReview.instance; if (await inAppReview.isAvailable()) { inAppReview.requestReview(); // inAppReview.openStoreListing(appStoreId: 'bandaApp'); }

This is run time Error

I/FIAM.Headless(19981): went foreground
I/FIAM.Display(19981): Binding to activity: MainActivity
I/FIAM.Headless(19981): Setting display event component
V/PhoneWindow(19981): DecorView setVisiblity: visibility = 0, Parent = android.view.ViewRootImpl@31d2ec, this = DecorView@202e6b5[MainActivity]
E/Parcel  (19981): Reading a NULL string not supported here.
I/OplusFeedbackInfo(19981): [sendFPSInfo:L330] mInputBufCnt = 0 fps, mOutputBufCnt = 0 fps, mRenderFrameCnt = 0 fps
I/OplusFeedbackInfo(19981): [sendFPSInfo:L330] mInputBufCnt = 0 fps, mOutputBufCnt = 0 fps, mRenderFrameCnt = 0 fps
I/OplusFeedbackInfo(19981): [sendFPSInfo:L330] mInputBufCnt = 0 fps, mOutputBufCnt = 0 fps, mRenderFrameCnt = 0 fps
I/OplusFeedbackInfo(19981): [sendFPSInfo:L330] mInputBufCnt = 0 fps, mOutputBufCnt = 0 fps, mRenderFrameCnt = 0 fps
D/ViewRootImpl(19981): enqueueInputEventMotionEvent { action=ACTION_DOWN, actionButton=0, id[0]=0, x[0]=932.0, y[0]=2137.75, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=368526737, downTime=368526737, deviceId=-1, source=0x1002, displayId=0 }
D/ViewRootImpl[MainActivity](19981): processMotionEvent MotionEvent { action=ACTION_DOWN, actionButton=0, id[0]=0, x[0]=932.0, y[0]=2137.75, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=368526737, downTime=368526737, deviceId=-1, source=0x1002, displayId=0 }
D/ViewRootImpl[MainActivity](19981): dispatchPointerEvent handled=true, event=MotionEvent { action=ACTION_DOWN, actionButton=0, id[0]=0, x[0]=932.0, y[0]=2137.75, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=368526737, downTime=368526737, deviceId=-1, source=0x1002, displayId=0 }
D/ViewRootImpl[MainActivity](19981): processMotionEvent MotionEvent { action=ACTION_UP, actionButton=0, id[0]=0, x[0]=932.0, y[0]=2137.75, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=368526829, downTime=368526737, deviceId=-1, source=0x1002, displayId=0 }
D/ViewRootImpl[MainActivity](19981): dispatchPointerEvent handled=true, event=MotionEvent { action=ACTION_UP, actionButton=0, id[0]=0, x[0]=932.0, y[0]=2137.75, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=368526829, downTime=368526737, deviceId=-1, source=0x1002, displayId=0 }
I/InAppReviewPlugin(19981): onMethodCall: isAvailable
I/InAppReviewPlugin(19981): isAvailable: called
I/InAppReviewPlugin(19981): noContextOrActivity: called
I/InAppReviewPlugin(19981): isAvailable: playStoreInstalled: true
I/InAppReviewPlugin(19981): isAvailable: lollipopOrLater: true
I/InAppReviewPlugin(19981): isAvailable: The Play Store is available and Android 5 or later is being used
I/InAppReviewPlugin(19981): cacheReviewInfo: called
I/InAppReviewPlugin(19981): noContextOrActivity: called
I/PlayCore(19981): UID: [10433]  PID: [19981] ReviewService : requestInAppReview (banda.app)
I/InAppReviewPlugin(19981): cacheReviewInfo: Requesting review flow
I/PlayCore(19981): UID: [10433]  PID: [19981] ReviewService : Initiate binding to the service.
I/PlayCore(19981): UID: [10433]  PID: [19981] ReviewService : ServiceConnectionImpl.onServiceConnected(ComponentInfo{com.android.vending/com.google.android.finsky.inappreviewservice.InAppReviewService})
I/PlayCore(19981): UID: [10433]  PID: [19981] ReviewService : linkToDeath
I/PlayCore(19981): UID: [10433]  PID: [19981] ReviewService : Unbind from service.
I/PlayCore(19981): UID: [10433]  PID: [19981] OnRequestInstallCallback : onGetLaunchReviewFlowInfo
I/InAppReviewPlugin(19981): onComplete: Successfully requested review flow
I/InAppReviewPlugin(19981): onMethodCall: requestReview
I/InAppReviewPlugin(19981): requestReview: called
I/InAppReviewPlugin(19981): noContextOrActivity: called
I/InAppReviewPlugin(19981): launchReviewFlow: called
I/InAppReviewPlugin(19981): noContextOrActivity: called
E/Parcel  (19981): Reading a NULL string not supported here.

I don't how can I solve this Error.

getting Error on requestReview

i am following the usage instructions and I got this error and i don't understand the error message My app is already uploaded to the Play store

can You Tell me what was the problem and how solve it !

I/PlayCore(23998): UID: [10324] PID: [23998] ReviewService : requestInAppReview (com.app.prothink) I/PlayCore(23998): UID: [10324] PID: [23998] ReviewService : Initiate binding to the service. I/PlayCore(23998): UID: [10324] PID: [23998] ReviewService : ServiceConnectionImpl.onServiceConnected(ComponentInfo{com.android.vending/com.google.android.finsky.inappreviewservice.InAppReviewService}) I/PlayCore(23998): UID: [10324] PID: [23998] ReviewService : linkToDeath I/PlayCore(23998): UID: [10324] PID: [23998] OnRequestInstallCallback : onGetLaunchReviewFlowInfo I/PlayCore(23998): UID: [10324] PID: [23998] ReviewService : Unbind from service. I/Timeline(23998): Timeline: Activity_launch_request time:704941986 W/ActivityThread(23998): handleWindowVisibility: no activity for token android.os.BinderProxy@bf08d94

SnapStore support

Thank you for this plugin!
However I am wondering it there are plans to support the snapstore on Linux?
I am interested in it because it is the way detailed in the flutter docs.

Fallback to openStoreListing if the requestReview does not work

There should be a parameter to set the fallback to open store listing if the requestReview function does not work because of the quota enforced by the underlying API.

Or the requestReview function should return a boolean value instead of void so that we can know if the requestReview was a success or not and can call openStoreListing in case the requestReview was unsuccessful.

Open store listing to update the app

I understand this package is made to implement quick review for flutter app.

It would be extra handful to allow the user to visit app page as well (not to place review, only app page visit).

In my case to let the user update the app.

Could you consider this as feature request?

pub get return errors, pub get failed

There is some conflict i think.

Because in_app_review >=2.0.1 depends on in_app_review_platform_interface ^2.0.2 which depends on url_launcher ^6.0.0, in_app_review >=2.0.1 requires url_launcher ^6.0.0.
And because youtube_player_iframe 1.2.0+2 depends on url_launcher ^5.7.10 and no versions of youtube_player_iframe match >1.2.0+2 <2.0.0, in_app_review >=2.0.1 is incompatible with youtube_player_iframe ^1.2.0+2.

Does not open in my app

flutter version: 2.5.2
dart version: 2.14.3
plugin version: 2.0.3

It works perfectly when I installed it in shared mode, but in production it won't open even though it's the same code,

as it just didn't work in production i don't have logs :/

Dialogue not showing up in android physical device.

final InAppReview inAppReview = InAppReview.instance;
                if (await inAppReview.isAvailable()) {
                  inAppReview.requestReview();
                }

This is the code snippet I used and it works fine in the ios simulator but when I try it on an android physical device, I don't get any dialogue.

This is the console output

I/InAppReviewPlugin( 6821): onMethodCall: isAvailable
I/InAppReviewPlugin( 6821): isAvailable: called
I/InAppReviewPlugin( 6821): noContextOrActivity: called
I/InAppReviewPlugin( 6821): isAvailable: playStoreInstalled: true
I/InAppReviewPlugin( 6821): isAvailable: lollipopOrLater: true
I/InAppReviewPlugin( 6821): isAvailable: The Play Store is available and Android 5 or later is being used
I/InAppReviewPlugin( 6821): cacheReviewInfo: called
I/InAppReviewPlugin( 6821): noContextOrActivity: called
I/PlayCore( 6821): UID: [10558]  PID: [6821] ReviewService : requestInAppReview (com.hustlecreatives.penalty_kick_freelance)
I/InAppReviewPlugin( 6821): cacheReviewInfo: Requesting review flow
I/PlayCore( 6821): UID: [10558]  PID: [6821] ReviewService : Initiate binding to the service.
I/PlayCore( 6821): UID: [10558]  PID: [6821] ReviewService : ServiceConnectionImpl.onServiceConnected(ComponentInfo{com.android.vending/com.google.android.finsky.inappreviewservice.InAppReviewService})
I/PlayCore( 6821): UID: [10558]  PID: [6821] ReviewService : linkToDeath
I/PlayCore( 6821): UID: [10558]  PID: [6821] OnRequestInstallCallback : onGetLaunchReviewFlowInfo
I/InAppReviewPlugin( 6821): onComplete: Successfully requested review flow
I/PlayCore( 6821): UID: [10558]  PID: [6821] ReviewService : Unbind from service.
I/InAppReviewPlugin( 6821): onMethodCall: requestReview
I/InAppReviewPlugin( 6821): requestReview: called
I/InAppReviewPlugin( 6821): noContextOrActivity: called
I/InAppReviewPlugin( 6821): launchReviewFlow: called
I/InAppReviewPlugin( 6821): noContextOrActivity: called
W/ActivityThread( 6821): handleWindowVisibility: no activity for token android.os.BinderProxy@d0d4ace
I/OPFD_Manager( 6821): Follow AOSP false
I/OPFD_Manager( 6821): Same ViewRoot Cfg. Ignore...
I/OPFD_Manager( 6821): Follow AOSP false
I/OPFD_Manager( 6821): Same ViewRoot Cfg. Ignore...
V/ViewRootImpl( 6821): The specified message queue synchronization  barrier token has not been posted or has already been removed
W/Choreographer( 6821): Already have a pending vsync event.  There should only be one at a time.
W/JavaBinder( 6821): BinderProxy is being destroyed but the application did not call unlinkToDeath to unlink all of its death recipients beforehand.  Releasing leaked death recipient: com.google.android.play.core.internal.ai
I/OPFD_Manager( 6821): Follow AOSP false
I/OPFD_Manager( 6821): Same ViewRoot Cfg. Ignore...

Submit button for Android disabled on Internal App Sharing

Hey, just wanted to check real quick. I have the app review up and running and when trying to leave a review to test, I see the submit button is disabled? Is this something you have come across and if so do you have any instructions? Does it only become enabled for public reviews?

crash in StoreKitUIService (EXC_CRASH (SIGABRT)

Sometimes I will get a crash when presenting the native in app rating dialog in iOS using requestReview. Why is this occuring?

Crash log:

Process:               StoreKitUIService [57822]
Path:                  /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/Applications/StoreKitUIService.app/StoreKitUIService
Identifier:            StoreKitUIService
Version:               1.0 (1)
Code Type:             X86-64 (Native)
Parent Process:        launchd_sim [48037]
Responsible:           SimulatorTrampoline [742]
User ID:               501

Date/Time:             2021-09-17 10:09:12.687 -0700
OS Version:            macOS 11.2.3 (20D91)
Report Version:        12
Bridge OS Version:     3.0 (14Y908)
Anonymous UUID:        46508DB2-7EEF-509A-FCF2-92EAEA115EF3

Sleep/Wake UUID:       0FD2F116-3BD4-4A00-B14E-794E4A5A4A12

Time Awake Since Boot: 100000 seconds
Time Since Wake:       10000000 seconds

System Integrity Protection: enabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Application Specific Information:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSXPCEncoder _checkObject:]: This coder only encodes objects that adopt NSSecureCoding (object is of class '__NSCFType').'
terminating with uncaught exception of type NSException
abort() called
CoreSimulator 732.18.6 - Device: iPhone 12 Pro Max (D7025E2E-B8F2-4334-B91B-43CF74694E4A) - Runtime: iOS 14.4 (18D46) - DeviceType: iPhone 12 Pro Max

Application Specific Backtrace 1:
0   CoreFoundation                      0x00007fff20421af6 __exceptionPreprocess + 242
1   libobjc.A.dylib                     0x00007fff20177e78 objc_exception_throw + 48
2   Foundation                          0x00007fff20933f3c -[NSXPCEncoder _checkObject:] + 294
3   Foundation                          0x00007fff209342fb -[NSXPCEncoder _encodeUnkeyedObject:] + 49
4   Foundation                          0x00007fff2093480c -[NSXPCEncoder _encodeArrayOfObjects:forKey:] + 209
5   Foundation                          0x00007fff20934166 -[NSXPCEncoder _encodeObject:] + 449
6   Foundation                          0x00007fff2093480c -[NSXPCEncoder _encodeArrayOfObjects:forKey:] + 209
7   Foundation                          0x00007fff20765f27 -[NSDictionary(NSDictionary) encodeWithCoder:] + 732
8   Foundation                          0x00007fff20934166 -[NSXPCEncoder _encodeObject:] + 449
9   Foundation                          0x00007fff2076e30c -[NSError encodeWithCoder:] + 201
10  Foundation                          0x00007fff20934166 -[NSXPCEncoder _encodeObject:] + 449
11  Foundation                          0x00007fff207a9a35 _NSXPCSerializationAddInvocationArgumentsArray + 261
12  Foundation                          0x00007fff209344f7 -[NSXPCEncoder _encodeInvocation:isReply:into:] + 246
13  Foundation                          0x00007fff2092abe9 -[NSXPCConnection _sendInvocation:orArguments:count:methodSignature:selector:withProxy:] + 1810
14  Foundation                          0x00007fff2092a4c8 -[NSXPCConnection _sendInvocation:withProxy:] + 94
15  CoreFoundation                      0x00007fff20425d61 ___forwarding___ + 764
16  CoreFoundation                      0x00007fff20428068 _CF_forwarding_prep_0 + 120
17  CoreFoundation                      0x00007fff204282fc __invoking___ + 140
18  CoreFoundation                      0x00007fff204257b6 -[NSInvocation invoke] + 303
19  CoreFoundation                      0x00007fff20425a47 -[NSInvocation invokeWithTarget:] + 70
20  UIKitCore                           0x00007fff24ab984d -[_UIQueueingProxy forwardInvocation:] + 368
21  CoreFoundation                      0x00007fff20425dc0 ___forwarding___ + 859
22  CoreFoundation                      0x00007fff20428068 _CF_forwarding_prep_0 + 120
23  StoreKitUIService                   0x0000000104c0b9a6 StoreKitUIService + 22950
24  StoreKitUIService                   0x0000000104c0ad48 StoreKitUIService + 19784
25  StoreKitUI                          0x00007fff34805e3e -[SKUIConfigurationPreloader finishPreloadingConfiguration:error:] + 271
26  Foundation                          0x00007fff207f6918 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
27  Foundation                          0x00007fff207f6810 -[NSBlockOperation main] + 98
28  Foundation                          0x00007fff207f982e __NSOPERATION_IS_INVOKING_MAIN__ + 17
29  Foundation                          0x00007fff207f5a35 -[NSOperation start] + 785
30  Foundation                          0x00007fff207fa1b3 __NSOPERATIONQUEUE_IS_STARTING_AN_OPERATION__ + 17
31  Foundation                          0x00007fff207f9cc6 __NSOQSchedule_f + 182
32  libdispatch.dylib                   0x00007fff201136a1 _dispatch_block_async_invoke2 + 83
33  libdispatch.dylib                   0x00007fff20106508 _dispatch_client_callout + 8
34  libdispatch.dylib                   0x00007fff20112ff7 _dispatch_main_queue_callback_4CF + 1045
35  CoreFoundation                      0x00007fff2038fdbb __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
36  CoreFoundation                      0x00007fff2038a63e __CFRunLoopRun + 2685
37  CoreFoundation                      0x00007fff203896d6 CFRunLoopRunSpecific + 567
38  GraphicsServices                    0x00007fff2c257db3 GSEventRunModal + 139
39  UIKitCore                           0x00007fff24696cf7 -[UIApplication _run] + 912
40  UIKitCore                           0x00007fff2469bba8 UIApplicationMain + 101
41  StoreKitUIService                   0x0000000104c08c18 StoreKitUIService + 11288
42  libdyld.dylib                       0x00007fff2025a3e9 start + 1
43  ???                                 0x0000000000000001 0x0 + 1

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	0x00007fff61131462 __pthread_kill + 10
1   libsystem_pthread.dylib       	0x00007fff6116a610 pthread_kill + 263
2   libsystem_c.dylib             	0x00007fff200fab94 abort + 120
3   libc++abi.dylib               	0x00007fff20253818 abort_message + 231
4   libc++abi.dylib               	0x00007fff20244e7d demangling_terminate_handler() + 266
5   libobjc.A.dylib               	0x00007fff201780d1 _objc_terminate() + 96
6   libc++abi.dylib               	0x00007fff20252c47 std::__terminate(void (*)()) + 8
7   libc++abi.dylib               	0x00007fff20252be9 std::terminate() + 41
8   libdispatch.dylib             	0x00007fff2010651c _dispatch_client_callout + 28
9   libdispatch.dylib             	0x00007fff20112ff7 _dispatch_main_queue_callback_4CF + 1045
10  com.apple.CoreFoundation      	0x00007fff2038fdbb __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
11  com.apple.CoreFoundation      	0x00007fff2038a63e __CFRunLoopRun + 2685
12  com.apple.CoreFoundation      	0x00007fff203896d6 CFRunLoopRunSpecific + 567
13  com.apple.GraphicsServices    	0x00007fff2c257db3 GSEventRunModal + 139
14  com.apple.UIKitCore           	0x00007fff24696cf7 -[UIApplication _run] + 912
15  com.apple.UIKitCore           	0x00007fff2469bba8 UIApplicationMain + 101
16  com.apple.ios.StoreKitUIService	0x0000000104c08c18 0x104c06000 + 11288
17  libdyld.dylib                 	0x00007fff2025a3e9 start + 1

Thread 1:: AVAudioSession Notify Thread
0   libsystem_kernel.dylib        	0x00007fff6112ae7e mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff6112b1f0 mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff2038f9bc __CFRunLoopServiceMachPort + 316
3   com.apple.CoreFoundation      	0x00007fff2038a0c5 __CFRunLoopRun + 1284
4   com.apple.CoreFoundation      	0x00007fff203896d6 CFRunLoopRunSpecific + 567
5   com.apple.audio.AudioSession  	0x00007fff59593c18 GenericRunLoopThread::Entry(void*) + 166
6   com.apple.audio.AudioSession  	0x00007fff5959585b CAPThread::Entry(CAPThread*) + 77
7   libsystem_pthread.dylib       	0x00007fff6116a950 _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff6116647b thread_start + 15

Thread 2:: AMCP Logging Spool
0   libsystem_kernel.dylib        	0x00007fff6112aeba semaphore_wait_trap + 10
1   com.apple.audio.caulk         	0x00007fff46de2ad2 caulk::mach::semaphore::wait_or_error() + 16
2   com.apple.audio.caulk         	0x00007fff46dd85a6 caulk::semaphore::timed_wait(double) + 110
3   com.apple.audio.caulk         	0x00007fff46ddcdf4 caulk::concurrent::details::worker_thread::run() + 30
4   com.apple.audio.caulk         	0x00007fff46ddcf50 void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*> > >(void*) + 45
5   libsystem_pthread.dylib       	0x00007fff6116a950 _pthread_start + 224
6   libsystem_pthread.dylib       	0x00007fff6116647b thread_start + 15

Thread 3:: com.apple.uikit.eventfetch-thread
0   libsystem_kernel.dylib        	0x00007fff6112ae7e mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff6112b1f0 mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff2038f9bc __CFRunLoopServiceMachPort + 316
3   com.apple.CoreFoundation      	0x00007fff2038a0c5 __CFRunLoopRun + 1284
4   com.apple.CoreFoundation      	0x00007fff203896d6 CFRunLoopRunSpecific + 567
5   com.apple.Foundation          	0x00007fff208307b9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 209
6   com.apple.Foundation          	0x00007fff20830a28 -[NSRunLoop(NSRunLoop) runUntilDate:] + 72
7   com.apple.UIKitCore           	0x00007fff2474e075 -[UIEventFetcher threadMain] + 464
8   com.apple.Foundation          	0x00007fff20858e68 __NSThread__start__ + 1042
9   libsystem_pthread.dylib       	0x00007fff6116a950 _pthread_start + 224
10  libsystem_pthread.dylib       	0x00007fff6116647b thread_start + 15

Thread 4:
0   libsystem_pthread.dylib       	0x00007fff61166458 start_wqthread + 0

Thread 5:
0   libsystem_pthread.dylib       	0x00007fff61166458 start_wqthread + 0

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

Thread 7:
0   libsystem_pthread.dylib       	0x00007fff61166458 start_wqthread + 0

Thread 8:
0   libsystem_pthread.dylib       	0x00007fff61166458 start_wqthread + 0

Thread 9:
0   libsystem_pthread.dylib       	0x00007fff61166458 start_wqthread + 0

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x000000010f25fe00  rcx: 0x00007ffeeaff6e28  rdx: 0x0000000000000000
  rdi: 0x0000000000000307  rsi: 0x0000000000000006  rbp: 0x00007ffeeaff6e50  rsp: 0x00007ffeeaff6e28
   r8: 0x00007ffeeaff6cf0   r9: 0x00007ffeeaff6ec0  r10: 0x000000010f25fe00  r11: 0x0000000000000246
  r12: 0x0000000000000307  r13: 0x0000003000000008  r14: 0x0000000000000006  r15: 0x0000000000000016
  rip: 0x00007fff61131462  rfl: 0x0000000000000246  cr2: 0x00007fff200fab1c
  
Logical CPU:     0
Error Code:      0x02000148
Trap Number:     133

Thread 0 instruction stream not available.

Thread 0 last branch register state not available.


Binary Images:
       0x104c06000 -        0x104c35fff  com.apple.ios.StoreKitUIService (1.0 - 1) <992F3B08-8E94-3E2E-B017-7EA19E08D5A5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/Applications/StoreKitUIService.app/StoreKitUIService
       0x104c5a000 -        0x104cb2fff +dyld_sim (828.5) <F69E1BD4-331D-3EFD-97B5-ECE3294C7FE7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim
       0x106cca000 -        0x106cd6fff +libobjc-trampolines.dylib (818.1) <92FD7DF6-A48E-3A2B-B571-2F781F525EED> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc-trampolines.dylib
       0x10f188000 -        0x10f223fff  dyld (832.7.3) <0D4EA85F-7E30-338B-9215-314A5A5539B6> /usr/lib/dyld
    0x7fff20035000 -     0x7fff2004afff +libsystem_trace.dylib (1277.80.2) <457CDC70-9044-3B95-9909-0B2E8931309B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_trace.dylib
    0x7fff2004b000 -     0x7fff2007dfff +libxpc.dylib (2038.80.3) <26B6416F-496E-32F6-AC9D-FFCD86331B43> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libxpc.dylib
    0x7fff2007e000 -     0x7fff2007ffff +libsystem_blocks.dylib (78) <4E249A31-40E0-3B80-8A07-D83E3ECDA85C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_blocks.dylib
    0x7fff20080000 -     0x7fff20102fff +libsystem_c.dylib (1439.40.11) <FC28ADCA-7122-38BC-ACE4-F089A58323F1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_c.dylib
    0x7fff20103000 -     0x7fff20146fff +libdispatch.dylib (1271.40.12) <81D9C4A5-38BF-33B4-A44C-D93FDFF11738> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdispatch.dylib
    0x7fff20147000 -     0x7fff20171fff +libsystem_malloc.dylib (317.40.8) <02DA5B7D-F471-3B5C-B4CC-CF32D9E7C240> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_malloc.dylib
    0x7fff20172000 -     0x7fff201a3fff +libobjc.A.dylib (818.1) <17806FEF-135F-3AEB-88AD-233EF5C784B5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc.A.dylib
    0x7fff201a4000 -     0x7fff20242fff +libcorecrypto.dylib (1000.80.5) <808EC1F0-29E1-3100-9B0C-41F13889C89E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcorecrypto.dylib
    0x7fff20243000 -     0x7fff20258fff +libc++abi.dylib (904.4) <5E4CE849-E791-3EAF-B638-8128E98FA1F9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++abi.dylib
    0x7fff20259000 -     0x7fff2028ffff +libdyld.dylib (828.5) <B1C08128-9D5F-318A-904B-B17BAF875EA1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdyld.dylib
    0x7fff20290000 -     0x7fff20297fff +libsystem_darwin.dylib (1439.40.11) <DD199ABA-4319-3B6E-9AC1-C68EAE4A3E23> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_darwin.dylib
    0x7fff20298000 -     0x7fff202eafff +libc++.1.dylib (904.4) <0C4DA596-4822-3400-BBFF-9819985F8D3C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++.1.dylib
    0x7fff202eb000 -     0x7fff2030ffff +libsystem_info.dylib (542.40.3) <38C4A56B-ABE3-3063-B8F8-E1E9AAB77FB0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_info.dylib
    0x7fff20310000 -     0x7fff206abfff  com.apple.CoreFoundation (6.9 - 1774.101) <45C611A5-D3D1-3DBB-8B5B-E7F128E9FE65> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
    0x7fff206ac000 -     0x7fff2071bfff  com.apple.SystemConfiguration (1.20 - 1.20) <BD156C04-7C12-3752-A877-6959E415E737> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
    0x7fff2071c000 -     0x7fff209c0fff  com.apple.Foundation (6.9 - 1774.101) <8A33D5D2-8E8B-3292-9F90-2D45CFC87696> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Foundation.framework/Foundation
    0x7fff209c1000 -     0x7fff209effff +libCRFSuite.dylib (50) <582A599D-EF20-3F59-9000-8C103E386F1A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libCRFSuite.dylib
    0x7fff209f0000 -     0x7fff20b89fff  com.apple.CoreServices (839 - 839) <B8E822D5-C093-351C-B81E-9C72BA1C080A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreServices.framework/CoreServices
    0x7fff20b8a000 -     0x7fff20bf8fff +libSparse.dylib (106) <7A31FB0D-6212-3C10-987B-311360319663> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
    0x7fff20bf9000 -     0x7fff20f78fff  com.apple.ImageIO (3.3.0 - 2130.3.4) <14532403-DFC0-3D99-A9C7-6A7A636C9203> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ImageIO.framework/ImageIO
    0x7fff20f79000 -     0x7fff20f7bfff  com.apple.ConstantClasses (1.0 - 1) <21A747D3-CE28-35E3-8EE6-B81AE9ADFC7B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
    0x7fff20f7c000 -     0x7fff2114bfff  com.apple.CoreText (677.3.0.3 - 677.3.0.3) <F05B32F8-E113-35C1-A5B9-460385EBC3DD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreText.framework/CoreText
    0x7fff2114c000 -     0x7fff21280fff  com.apple.Security (10.0 - 59754.80.3) <57513651-8047-3BAF-AFD9-23415C08450D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Security.framework/Security
    0x7fff21281000 -     0x7fff21304fff  com.apple.framework.IOKit (2.0.2 - 1845.80.4) <7426CC61-E557-36E3-97C6-1EC367ADC3B2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff21305000 -     0x7fff2132afff +libMobileGestalt.dylib (978.80.1) <418E8CAA-E2E7-3EB3-9EF6-ED27F0E55FE9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libMobileGestalt.dylib
    0x7fff2132b000 -     0x7fff21388fff +libprotobuf.dylib (3919) <2A7A49CC-8DE1-38A5-8E5F-BF8AB12A3176> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprotobuf.dylib
    0x7fff21389000 -     0x7fff21399fff +libprotobuf-lite.dylib (3919) <CCB43A42-0C0B-39D0-9F53-27EB2C12DEE7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprotobuf-lite.dylib
    0x7fff2139a000 -     0x7fff215f5fff +libicucore.A.dylib (66109) <25C2FC7F-F55C-3031-B068-4180E19CF6E3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libicucore.A.dylib
    0x7fff215f6000 -     0x7fff21625fff  com.apple.CoreServicesInternal (474.3 - 474.3) <ED975274-D24B-3C5C-BB3C-CE20792A014B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
    0x7fff21626000 -     0x7fff21668fff  com.apple.awd (1.0 - 950) <86AB0F0A-E660-3E9A-B1AE-02DC40D77758> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
    0x7fff21669000 -     0x7fff2169bfff +libAWDSupport.dylib (950) <B4F5B685-7E47-3122-8D0F-4A7C7097CE2A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAWDSupport.dylib
    0x7fff2169c000 -     0x7fff21759fff  com.apple.audio.CoreAudio (5.0 - 5.0) <C35D512D-AA19-3B8F-AA92-3B3418381D8A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreAudio.framework/CoreAudio
    0x7fff2175a000 -     0x7fff21aa3fff  com.apple.CoreImage (14.4.0 - 1130.1) <28C257EE-3AA7-3188-BE52-200662343B98> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreImage.framework/CoreImage
    0x7fff21aa4000 -     0x7fff21b92fff  com.apple.LanguageModeling (1.0 - 247.1) <40A4608B-2F21-32E1-B609-8262E5AB215F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
    0x7fff21b93000 -     0x7fff21be0fff  com.apple.Lexicon-framework (1.0 - 86.1) <D78CC167-1745-3D8D-A7A2-5D3B2CE64D32> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
    0x7fff21be1000 -     0x7fff21d78fff +libsqlite3.dylib (321.1) <7E54F3F7-85B6-37B0-BC6E-BBC1D4E138BF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libsqlite3.dylib
    0x7fff21d79000 -     0x7fff21d84fff +libsystem_notify.dylib (279.40.4) <32EC8D22-2F3A-3A87-B0C6-3541E33375D0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_notify.dylib
    0x7fff21d85000 -     0x7fff21f72fff  com.apple.CoreDuet (1.0 - 1) <B04CA811-6422-3B1C-B688-AEEF0AE7B781> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
    0x7fff21f73000 -     0x7fff22105fff  com.apple.Montreal (1.0 - 142) <A7DE6101-6A9C-3086-B3B9-7EA99EBDC19D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Montreal.framework/Montreal
    0x7fff22106000 -     0x7fff221f8fff  com.apple.NLP (1.0 - 210) <B114AA2E-44D6-3679-B13D-AFF66240B499> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/NLP.framework/NLP
    0x7fff221f9000 -     0x7fff22219fff  com.apple.CellularPlanManager (1.0 - 8183.1) <C34FE558-11F0-34A1-A3DE-57AF020E7329> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
    0x7fff2221a000 -     0x7fff22256fff  com.apple.AppSupport (1.0.0 - 29) <D59C0E5A-7772-3385-B0BC-E594CB51FD9E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
    0x7fff22257000 -     0x7fff227cafff +libnetwork.dylib (2288.80.2) <85F315EC-92A4-3DFE-A7B5-BA772576814C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libnetwork.dylib
    0x7fff227cb000 -     0x7fff228eafff  com.apple.managedconfiguration (1.0 - 1.0) <881FA048-FFE6-3128-BBF4-59F829A6269A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
    0x7fff228eb000 -     0x7fff22923fff  com.apple.CSStore (1116.3.7 - 1116.3.7) <160D1942-58BA-3784-B97A-AC32351E4D92> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
    0x7fff22924000 -     0x7fff2293dfff  com.apple.UserManagement (1.0 - 1) <26C4F8F0-A232-3F7C-A3E4-2A040FD3A0A5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
    0x7fff2293e000 -     0x7fff22ce0fff  com.apple.CoreML (1.0 - 1) <19595821-4679-3ADF-B654-67BF6BE847E1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreML.framework/CoreML
    0x7fff22ce1000 -     0x7fff22cf7fff  com.apple.ProtocolBuffer (1 - 285.33.11.29.1) <95BC8E12-A21F-3606-AE40-AF0728C2202D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
    0x7fff22cf8000 -     0x7fff22d0efff  com.apple.commonutilities (8.0 - 900) <80D9F019-2E8B-3427-A729-D0DCD139BCB6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
    0x7fff22d0f000 -     0x7fff22d56fff  com.apple.RunningBoardServices (1.0 - 505.80.1) <FA27344B-027C-37AA-8065-2ACCC97FA954> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
    0x7fff22d57000 -     0x7fff22dd5fff  com.apple.BaseBoard (526 - 526) <70AE64A5-2891-3D25-A165-0E04159E65D8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
    0x7fff22dd6000 -     0x7fff233effff  com.apple.siri.tts.SiriTTS (1 - 1) <644183E6-07A6-325F-9947-2A9CB512C36E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
    0x7fff233f0000 -     0x7fff23478fff  com.apple.corelocation (2420.12.16 - 2420.12.16) <91A28FF2-A113-3067-B618-6FE343965DBB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreLocation.framework/CoreLocation
    0x7fff23482000 -     0x7fff234f3fff  com.apple.Accounts (113 - 113) <74E1E867-7B00-3ACB-A339-8E8A8C324D3C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accounts.framework/Accounts
    0x7fff234f4000 -     0x7fff23512fff  com.apple.SharedWebCredentials (928.1 - 928.1) <C9C2FEBF-4859-388E-9A1B-744BBE8851E5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
    0x7fff23513000 -     0x7fff23989fff  com.apple.CFNetwork (1220.1 - 1220.1) <C5384B45-5DAF-315D-B984-9E30E9AF4B3A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CFNetwork.framework/CFNetwork
    0x7fff2398a000 -     0x7fff23a9efff  com.apple.UIFoundation (1.0 - 727.2) <55EE67EC-28F1-3979-86D0-34369229353C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
    0x7fff23a9f000 -     0x7fff24f6cfff  com.apple.UIKitCore (1.0 - 4006) <823D8723-4310-3D2B-8C9E-0D40D5683F22> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
    0x7fff24f6d000 -     0x7fff24f7bfff  com.apple.AssertionServices (1.0 - 505.80.1) <3F887A0E-6DB9-32B2-94D1-806152163EBA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
    0x7fff24f7c000 -     0x7fff25066fff  com.apple.CoreTelephony (113 - 8183.1) <00629B42-27E9-365B-AFC7-5E9D9B0512E0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
    0x7fff25067000 -     0x7fff2506bfff  com.apple.AggregateDictionary (1.0 - 1) <918837D7-2362-3A4F-A7DC-684D73168490> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
    0x7fff2506c000 -     0x7fff25082fff +libsystem_asl.dylib (385) <7EBF5DE1-E543-3DF7-9EF3-1E451F6208CC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_asl.dylib
    0x7fff25083000 -     0x7fff25100fff  com.apple.CloudDocs (1.0 - 725) <80412D94-214D-3B62-A34F-A4BB57695B10> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
    0x7fff25101000 -     0x7fff25497fff +CoreData (1044.3) <D705C63B-1A3A-3199-9EA2-00AC0B9CB1A8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreData.framework/CoreData
    0x7fff257a7000 -     0x7fff257cffff  com.apple.BoardServices (1.0 - 526) <D5E8CF52-0997-353B-90D2-794EF315C5E8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
    0x7fff257d0000 -     0x7fff25889fff +libboringssl.dylib (351.40.2) <73239324-C639-3908-9BA1-3A5B9F78B8AC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libboringssl.dylib
    0x7fff2588a000 -     0x7fff258abfff  com.apple.analyticsd (1.0 - 1) <50FA337E-725E-3477-A9DC-97ECF98CE39C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
    0x7fff258ac000 -     0x7fff25a49fff  com.apple.cloudkit.CloudKit (970 - 970) <5845DB03-8062-3884-804D-99C37A62B0D4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CloudKit.framework/CloudKit
    0x7fff25a4a000 -     0x7fff25a9efff  com.apple.SpringBoardServices (1.0 - 1.0) <CB545679-E2D8-3962-BAC0-E1B50B6B9060> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
    0x7fff25a9f000 -     0x7fff25b1cfff  com.apple.FrontBoardServices (702.3.3 - 702.3.3) <9C12BFEB-EEC6-3CAD-8E2D-A3C4820B89C5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
    0x7fff25b1d000 -     0x7fff25bb9fff  com.apple.Network (1.0 - 1) <F616ED09-316F-3087-90C8-FA2463712A58> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Network.framework/Network
    0x7fff25bba000 -     0x7fff25c1dfff +libusrtcp.dylib (2288.80.2) <3F5E5FAC-F093-32F7-85C7-048C166C5B6A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libusrtcp.dylib
    0x7fff25c1e000 -     0x7fff27115fff  com.apple.GeoServices (1.0 - 1757.33.11.29.3) <6E52DFFA-375D-35CF-988A-5DA1040DC4BF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
    0x7fff27116000 -     0x7fff27124fff  com.apple.TCC (1.0 - 1) <AB7D0ADA-28F0-3A72-8E6B-E94D76D4C131> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TCC.framework/TCC
    0x7fff27125000 -     0x7fff27183fff  com.apple.imfoundation (10.0 - 1000) <4E3523C6-B84B-39CB-868D-2C1B7D65AE65> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
    0x7fff27184000 -     0x7fff27318fff  com.apple.CoreUtils (6.5 - 650.5) <B1211B7D-D6EE-3229-AE5E-D4221A685E41> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
    0x7fff27319000 -     0x7fff273d8fff  com.apple.imsharedutilities (10.0 - 1000) <C4401255-A3B9-3030-87C7-18558B8725AE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
    0x7fff27403000 -     0x7fff27412fff +libsystem_containermanager.dylib (318.80.2) <43B08607-1D78-32C5-A95D-B081F1C5CF2B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_containermanager.dylib
    0x7fff27413000 -     0x7fff27531fff  com.apple.AppleAccount (1.0 - 1.0) <CAA9B961-7C5E-3374-80CF-F5836121A033> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
    0x7fff27532000 -     0x7fff2754efff  com.apple.aps.framework (4.0 - 4.0) <E388681B-2FC2-3CEE-8DC2-638173647C7D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
    0x7fff2754f000 -     0x7fff2764dfff  com.apple.ids (10.0 - 1000) <DCAE8A5A-E6FB-3963-88AB-D65CFAC5E6E8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IDS.framework/IDS
    0x7fff2764e000 -     0x7fff277adfff  com.apple.idsfoundation (10.0 - 1000) <78FF7BCA-09CC-328A-B059-46BE5037B501> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
    0x7fff277ae000 -     0x7fff277affff +libCTGreenTeaLogger.dylib (8183.1) <CED5C874-2631-302A-BCE5-F0BD4577EF27> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libCTGreenTeaLogger.dylib
    0x7fff27814000 -     0x7fff2793bfff  com.apple.CoreMedia (1.0 - 2765.6) <A22D51E2-62AE-38DD-A50F-A0A25F1F54D9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreMedia.framework/CoreMedia
    0x7fff2793c000 -     0x7fff27952fff  com.apple.UIKitServices (1.0 - 1) <FED41C0B-E6FB-38BF-A0AD-EA7AD39854A5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
    0x7fff27953000 -     0x7fff279b5fff  com.apple.BackBoardServices (1.0 - 1.0) <5B895ABD-0534-39EC-A489-BE7CBBC862E9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
    0x7fff279b6000 -     0x7fff27c1dfff  com.apple.QuartzCore (1.11 - 926.6) <C9231CA6-7962-3C23-A1BC-2016F370FD34> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/QuartzCore.framework/QuartzCore
    0x7fff27c1e000 -     0x7fff27cdcfff  com.apple.ColorSync (4.13.0 - 3473.3.1) <00165251-91EE-3B45-BB0D-1B41264BD35B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
    0x7fff27cdd000 -     0x7fff28339fff  com.apple.CoreGraphics (2.0 - 1463.3.2) <0D96EB2E-7C85-3CFE-83AA-9215ADA0EC83> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
    0x7fff2833a000 -     0x7fff28481fff  com.apple.contacts (1.0 - 3498.2) <9FE2A158-368C-306B-9CE4-6C3A0FD06B74> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Contacts.framework/Contacts
    0x7fff28482000 -     0x7fff284b1fff  com.apple.UserNotifications (1.0 - 348.2) <DAC3C0C4-A25A-3EBF-8CBD-1E15F795EC1C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UserNotifications.framework/UserNotifications
    0x7fff284b2000 -     0x7fff284d6fff  com.apple.locationsupport (2420.12.16 - 2420.12.16) <1A385EF3-0412-3182-ACD9-2E40350D6E11> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
    0x7fff284d7000 -     0x7fff2862bfff  com.apple.Sharing (1579 - 1579) <48E06F02-F1E8-32D9-B5D4-50D8DE06CD88> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Sharing.framework/Sharing
    0x7fff2862c000 -     0x7fff29031fff  com.apple.WebKit (8610 - 8610.4.3.0.1) <DB1091B3-FBF2-3DD3-9DF7-5D3151D58FF1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/WebKit.framework/WebKit
    0x7fff29032000 -     0x7fff2b9a2fff  com.apple.WebCore (8610 - 8610.4.3.0.1) <93098CFE-01D8-3CBA-9C9C-6C6FA8000947> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebCore.framework/WebCore
    0x7fff2b9a3000 -     0x7fff2b9bdfff +libAccessibility.dylib (2885.15.8) <5C8BBCA9-EDFB-3010-834C-C56090BD01F5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAccessibility.dylib
    0x7fff2b9be000 -     0x7fff2b9ccfff  com.apple.accessibility.AXCoreUtilities (1.0 - 1) <1CFC1EF3-2F95-3A5F-A524-7B3FE7DF5E57> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
    0x7fff2b9cd000 -     0x7fff2ba50fff  com.apple.AddressBook.ContactsFoundation (8.0 - 1151) <9B7B1DA1-72D9-371F-BAF8-387820CC0188> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
    0x7fff2ba51000 -     0x7fff2ba5dfff  com.apple.IOSurface (289.4 - 289.4) <F442EED1-48C4-3604-8257-AC5288E2F82C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/IOSurface.framework/IOSurface
    0x7fff2ba5e000 -     0x7fff2c253fff  com.apple.MediaToolbox (1.0 - 2765.6) <95E27667-5718-3ADE-86C7-045FA62E7FEE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
    0x7fff2c254000 -     0x7fff2c25cfff  com.apple.GraphicsServices (1.0 - 1.0) <FF479705-38FD-3013-A7EC-F40059CA4DE2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
    0x7fff2c348000 -     0x7fff2c348fff  com.apple.avfoundation (2.0 - 2005.2) <9DD44F3D-8FB7-36C3-894B-4138DB245514> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVFoundation.framework/AVFoundation
    0x7fff2c349000 -     0x7fff2c395fff  com.apple.OnBoardingKit (1.0 - 1) <10A2BC47-9D00-3421-A87A-F20542634AE3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
    0x7fff2c396000 -     0x7fff2c3bafff  com.apple.MobileAssets (1.0 - 659.60.1) <1891A647-ACC2-3F02-90CB-E03538DC0867> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
    0x7fff2c3bb000 -     0x7fff2c3c3fff +libGSFont.dylib (84.3.0.1) <23A89AAC-D5DC-3AC0-9C7F-91389434DFC0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
    0x7fff2c3c4000 -     0x7fff2c3d0fff  com.apple.FontServices (1.0 - 1) <A63E5E7F-7034-3B98-9DBB-82553FABE245> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/FontServices
    0x7fff2c3d1000 -     0x7fff2c515fff +libFontParser.dylib (305.3.0.1) <02ED39F3-5A49-3771-A81C-8C39C46254A7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff2c58a000 -     0x7fff2c717fff  com.apple.SearchFoundation (1.0 - 386.3.2) <9961B83B-101F-3EA6-A784-FD89FA3739C1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
    0x7fff2c718000 -     0x7fff2c828fff  com.apple.preferences-framework (1 - 5060.4) <F281A361-0421-303D-B018-248A979D0F56> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Preferences.framework/Preferences
    0x7fff2cf07000 -     0x7fff2d894fff  com.apple.vImage (8.1 - 544.2) <FC6AF1B1-2693-3204-855D-D569E2151C85> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
    0x7fff2d895000 -     0x7fff2d9c7fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <AE3DEEF3-AC9B-3FC2-9549-67FB2E10465A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
    0x7fff2d9c8000 -     0x7fff2d9fafff +libAudioToolboxUtility.dylib (1180.24) <66653D37-65EE-3FFB-AA5E-A8A13239B1DE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAudioToolboxUtility.dylib
    0x7fff2d9fb000 -     0x7fff2dc04fff  com.apple.ContactsUI (1.0.0 - 1109.1.2) <5EF6E0BF-A2A1-337B-80C1-1900F05B6393> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ContactsUI.framework/ContactsUI
    0x7fff2decd000 -     0x7fff2df6efff  com.apple.ShareSheet (1579 - 1579) <9090C3BC-CA3B-3555-8296-3695157F8595> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
    0x7fff2df6f000 -     0x7fff2df82fff  com.apple.BaseBoardUI (526 - 526) <58D90B6D-ACEB-330C-8222-A73C87E10F25> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
    0x7fff2df83000 -     0x7fff2e056fff  com.apple.PDFKit (1.0 - 950.20.2) <B3D9FD50-65F6-3BC5-AA41-57D6C759A38A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/PDFKit.framework/PDFKit
    0x7fff2e057000 -     0x7fff2e0c9fff  com.apple.FrontBoard (702.3.3 - 702.3.3) <117D63F9-87DB-3D86-AA99-8B52D3EFAD2A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FrontBoard.framework/FrontBoard
    0x7fff2e0ca000 -     0x7fff2e105fff  com.apple.DocumentManager (1.0 - 200.4.1) <7CFDCA14-3463-317E-9B3B-58FE4CED8CF7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
    0x7fff2e106000 -     0x7fff2e346fff +libmecabra.dylib (929.1.1) <C1058C52-29AF-320D-A505-C98C8CE9DCAA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libmecabra.dylib
    0x7fff2e347000 -     0x7fff2e3c7fff  com.apple.AuthKit (1.0 - 1) <C0630311-F950-313A-BC93-D9A4414F343F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
    0x7fff2e3c8000 -     0x7fff2e930fff  com.apple.Intents (1.0 - 1) <63FDBD29-0245-341A-8507-06CEC9994777> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Intents.framework/Intents
    0x7fff2e931000 -     0x7fff2e94efff +libCGInterfaces.dylib (544.2) <F0AA342B-22EA-3D69-9193-80ABE28D68B8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
    0x7fff2e94f000 -     0x7fff2ead8fff  com.apple.WebKitLegacy (8610 - 8610.4.3.0.1) <79BFB760-78A1-3D6D-B507-D99EA0BC8B4C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
    0x7fff2ead9000 -     0x7fff2eb60fff  com.apple.TextInput (1.0 - 1.0) <BC9DBC3B-6A45-3E51-9B6A-3F8EE693F709> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextInput.framework/TextInput
    0x7fff2ebf1000 -     0x7fff2ebf4fff  com.apple.dt.XCTTargetBootstrap (1.0 - 17155) <5A99D4A4-29DA-3F3C-9313-5EEF3F090F54> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
    0x7fff2ebf5000 -     0x7fff2ecbcfff  com.apple.CorePDF (5.0 - 529) <B58BE553-FAA8-3286-BBB5-89B056F75144> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
    0x7fff2ecbd000 -     0x7fff2f07afff  com.apple.MediaPlayer (1.0 - 1.0) <43FEB353-A2EE-3115-A723-C41BF85157F7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
    0x7fff2f07b000 -     0x7fff2f230fff  com.apple.AppleMediaServices (1.0 - 1) <F1E40CF4-8BCF-314E-BA2F-300BC3EAA3B5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
    0x7fff2f231000 -     0x7fff2f25bfff  com.apple.CacheDelete (1.0 - 1) <44754BD7-A9B3-3E4F-B7CD-C1E00C1ED961> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
    0x7fff2f25c000 -     0x7fff2f403fff  com.apple.coremotion (2420.12.16 - 2420.12.16) <589EA18C-4DC5-3818-BBF5-ECB929309586> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreMotion.framework/CoreMotion
    0x7fff2f404000 -     0x7fff2f4f4fff  com.apple.audio.AVFAudio (1.0 - 477.10) <892B484D-29F1-3133-B792-3E5B54819BCF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
    0x7fff2f4f5000 -     0x7fff2f766fff  com.apple.RawCamera.bundle (9.10.0 - 1430.1) <F75FFB79-0E15-347A-9C48-B8E1A41518D0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/CoreServices/RawCamera.bundle/RawCamera
    0x7fff2f767000 -     0x7fff2f82ffff  com.apple.CoreUI (1.0 - 690) <A6A60DA3-D0EB-3D5F-8A96-B1405858324A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
    0x7fff2f830000 -     0x7fff2f85afff  com.apple.AppSupportUI (1.0 - 37) <6311BEB3-3824-3464-A3FB-A4DBAAB18B24> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
    0x7fff2f85b000 -     0x7fff2f88afff  com.apple.CoreVideo (1.8 - 408.5) <6982F9BF-269C-37D5-8989-022E7D69F0AC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreVideo.framework/CoreVideo
    0x7fff2f88b000 -     0x7fff2fae2fff  com.apple.audio.AudioToolboxCore (1.0 - 1180.24) <D070B822-5447-3979-8379-2BD1ABD93B9A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
    0x7fff2fae3000 -     0x7fff2fb30fff  com.apple.coreduetcontext (1.0 - 1) <FB63758B-9026-3515-91ED-A1858D75DCBE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
    0x7fff2fb31000 -     0x7fff2fb5ffff  com.apple.SetupAssistant (1.0 - 1) <B2EAFDE6-BB0D-331B-A9E1-D4B331C09F73> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
    0x7fff2fb60000 -     0x7fff2fc28fff  com.apple.TelephonyUtilities (1.0 - 1.0) <A5735CE4-C460-3A0D-894C-3265973E5A5D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
    0x7fff2fc29000 -     0x7fff2fc56fff  com.apple.pluginkit.framework (1.0 - 1) <A5428B76-C9A8-3BA3-9585-E5C3AF7949A4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
    0x7fff3003a000 -     0x7fff301c1fff  com.apple.AssistantServices (1.0 - 1) <33F498D5-7E41-35D5-BD05-41931460B4A9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
    0x7fff301c2000 -     0x7fff3022dfff  com.apple.proactive.support.ProactiveSupport (1.0 - 294.4) <E5B11105-1927-33BF-8B40-6285C0822F09> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
    0x7fff3022e000 -     0x7fff30500fff  com.apple.MapKit (1.0 - 1.0) <2BABB97E-3D28-39F9-9532-6BA30751FEEB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MapKit.framework/MapKit
    0x7fff30501000 -     0x7fff3051ffff  com.apple.PrototypeTools (1.0 - 1) <FE0BD5CD-B215-33F5-912B-E5C98D874C6B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
    0x7fff30520000 -     0x7fff30522fff  com.apple.MediaExperience (1.0 - 1) <9DB9F5A2-EE6F-33EF-9342-800CB93B2980> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
    0x7fff30523000 -     0x7fff30531fff  com.apple.Celestial (1.0 - 2765.6) <25975E34-0D56-3162-AFE4-E6740DECB5A2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Celestial.framework/Celestial
    0x7fff30532000 -     0x7fff30595fff  com.apple.CallKit (1.0 - 1) <719BDF8E-D458-36D5-83DB-5AB2F19DB456> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CallKit.framework/CallKit
    0x7fff30596000 -     0x7fff30779fff  com.apple.eventkitui (1.0 - 1.0) <39484831-64E6-30F4-ACF3-6ECAC15E7CCE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/EventKitUI.framework/EventKitUI
    0x7fff3077a000 -     0x7fff31053fff  com.apple.VectorKit (1.0 - 1721.33.11.29.2) <9B3B54EB-FF7C-37FE-8F59-A280EFEAE6D4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
    0x7fff31054000 -     0x7fff3115ffff  com.apple.AVKit (1.0 - 762.1.4) <40CEB8BC-597A-3347-9328-9E6E2A02D288> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVKit.framework/AVKit
    0x7fff31160000 -     0x7fff311a6fff  com.apple.Pegasus (1.0 - 203) <E39E7D94-99CA-3269-BFBE-2AB612BA1409> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
    0x7fff311a7000 -     0x7fff311a9fff +libapp_launch_measurement.dylib (14) <A4ADDED8-6F77-390B-969A-F395555D4050> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libapp_launch_measurement.dylib
    0x7fff311cc000 -     0x7fff31236fff  com.apple.CoreSpotlight (1.0 - 2150.7.5) <739E8CC1-3C3C-38FE-A23B-CC1C9A373BF2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
    0x7fff31237000 -     0x7fff312cefff  com.apple.AddressBookLegacy (1.0 - 30) <CF43AFC6-DC49-33DB-986D-17065B712F66> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
    0x7fff312cf000 -     0x7fff312e0fff  com.apple.MobileBluetooth (1.0 - 1.0) <361BDAD2-F142-32EB-B30C-93AE11555ABC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
    0x7fff312e1000 -     0x7fff313bdfff  com.apple.LinkPresentation (146 - 146.8) <809E7E68-509A-36C8-A39F-803C61535934> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
    0x7fff313be000 -     0x7fff31400fff  com.apple.StoreKit (1.0 - 1) <A21CD326-4E5D-3B76-9FE7-A4B68F20257C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/StoreKit.framework/StoreKit
    0x7fff31401000 -     0x7fff31404fff +libsystem_configuration.dylib (1109.60.2) <3E775779-41F9-3462-9503-C4D6FEE88ABA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_configuration.dylib
    0x7fff31405000 -     0x7fff31470fff  com.apple.RemoteUI (1.0 - 1) <D428C40E-05CB-31DA-A6D3-3C02D622712A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
    0x7fff31471000 -     0x7fff314cdfff  com.apple.AuthKitUI (1.0 - 1) <52B2F914-FF8D-34F5-AA13-E8C6177C7D58> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
    0x7fff3157a000 -     0x7fff315f5fff  com.apple.CoreNLP (1.0 - 245.1) <B4FD1BEC-81E6-345F-A039-8DE370DDE682> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
    0x7fff315f6000 -     0x7fff315f7fff +liblangid.dylib (136.1) <DC00DAE9-50F6-374B-A6C0-2101BB9E6716> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/liblangid.dylib
    0x7fff315f8000 -     0x7fff32899fff  com.apple.JavaScriptCore (8610 - 8610.4.3.0.1) <C99F141C-4082-36BC-8051-3D88FCAC8E44> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
    0x7fff3289a000 -     0x7fff328e0fff +libTelephonyUtilDynamic.dylib (5347.1) <6F8AB1DC-CFCE-351F-92D9-672ABB8DFA90> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libTelephonyUtilDynamic.dylib
    0x7fff328f7000 -     0x7fff32adffff  com.apple.storeservices (1) <4E6FFB83-9D6D-30E2-9B1C-A9F9DC09605A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
    0x7fff32ae0000 -     0x7fff32cb3fff  com.apple.SafariServices (14.0.3 - 604.1) <DBE551C7-8BB0-36C1-B2B8-417541FF60D0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/SafariServices.framework/SafariServices
    0x7fff32ec2000 -     0x7fff32edffff  com.apple.CoreMaterial (1.0 - 1) <C2A49B1F-73B2-3DB5-B7A1-3DD47A4F6CA5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
    0x7fff32ee0000 -     0x7fff32fc2fff +libxml2.2.dylib (34.9) <315637EC-DCEA-3A00-A52C-FD11FCAB7229> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libxml2.2.dylib
    0x7fff34457000 -     0x7fff3448efff  com.apple.spotlight.metadata.utilities (1.0 - 2150.7.5) <8BC170DA-A6A8-3323-91DF-C867461F0402> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
    0x7fff3448f000 -     0x7fff344e8fff  com.apple.UserActivity (435 - 435) <ACD751F2-7A9E-3700-A835-72F2B5F33E31> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
    0x7fff34691000 -     0x7fff3479afff  com.apple.ITMLKit (1.0 - 1) <980A042F-18F4-3565-A0CD-F27E05E4231E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ITMLKit.framework/ITMLKit
    0x7fff3479b000 -     0x7fff34ba4fff  com.apple.ios.StoreKitUI (1.0 - 1) <531179E6-871A-3DBA-A528-82FD5ADF9DE6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StoreKitUI.framework/StoreKitUI
    0x7fff34bce000 -     0x7fff34d3cfff  com.apple.iTunesStoreUI (1) <8DD48B95-54FE-3925-A9BF-B7C0312C42BD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/iTunesStoreUI.framework/iTunesStoreUI
    0x7fff34e90000 -     0x7fff350edfff  com.apple.NetworkExtension (1.0 - 1) <05763E69-9248-3090-8ABE-9FF962F8CCA5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
    0x7fff350ee000 -     0x7fff35124fff  com.apple.datadetectorscore (8.0 - 674) <C4035F4D-B171-3901-B1A9-659DBD0E86EB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
    0x7fff35125000 -     0x7fff3518cfff  com.apple.CalendarFoundation (8.0 - 1351.2.1) <D6354A25-76C2-3356-8E97-C29E40556E89> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
    0x7fff3518d000 -     0x7fff352cdfff  com.apple.eventkit (1.0.0 - 1.0) <6E20C9A0-E5E9-3B32-80A1-FB328D32C29A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/EventKit.framework/EventKit
    0x7fff352ce000 -     0x7fff35309fff  com.apple.MediaServices (1.0 - 1) <D8F8B7BC-1ECC-3967-8FBD-87985A1279CC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
    0x7fff35439000 -     0x7fff35709fff  com.apple.PencilKit (1.0 - 1) <420424B5-7B6B-3873-A62E-C275960DCA40> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/PencilKit.framework/PencilKit
    0x7fff35897000 -     0x7fff358a0fff  com.apple.BiometricKit2 (1.0 - 1) <45DF4168-FE0A-3E1E-9926-5CE8B8AEA2F2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
    0x7fff358a1000 -     0x7fff358c5fff  com.apple.persistentconnection (1.0 - 1.0) <DFCF7515-ED69-3A23-B48F-06E07B886621> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
    0x7fff358c6000 -     0x7fff3591efff  com.apple.CalendarDaemon (1.0 - 965.2) <A80B2009-BB58-3DE1-AB23-7678F31D3993> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
    0x7fff3591f000 -     0x7fff359bffff  com.apple.CalendarDatabase (1.0 - 1031) <F6CE3FE2-8EF2-336B-A1E7-BD5856288355> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
    0x7fff359c0000 -     0x7fff35c15fff  com.apple.MediaRemote (1.0 - 1) <9833536D-55A9-3E00-9C86-BBBBAF1C307D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
    0x7fff35c16000 -     0x7fff35c1efff  com.apple.CorePhoneNumbers (1.0 - 1) <4517866E-F92F-3393-B42B-DAFB22252D7D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
    0x7fff35c34000 -     0x7fff35ceefff  com.apple.SpringBoardFoundation (1.0 - 1) <4AEFC318-3051-38D1-B85A-F598C6635F00> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SpringBoardFoundation.framework/SpringBoardFoundation
    0x7fff35d39000 -     0x7fff35d5ffff  com.apple.CoreSVG (1.0 - 149) <775CDDD8-F644-3F06-A249-E51D9C829D54> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
    0x7fff35d60000 -     0x7fff35d81fff  com.apple.proactive.support.ProactiveEventTracker (1.0 - 294.4) <728A7C4E-437F-3C17-87F9-AE7598F27111> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
    0x7fff35d8e000 -     0x7fff35e2cfff  com.apple.CoreSuggestions (1.0 - 1115.505.1) <21D6B496-D056-388E-9BD6-F0F9AD395E3B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
    0x7fff35e2d000 -     0x7fff35f9ffff  com.apple.imcore (10.0 - 1000) <FE0A1F65-9004-3446-A625-1DAE5C65F24C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IMCore.framework/IMCore
    0x7fff35fa0000 -     0x7fff35ff0fff  com.apple.DeviceManagement (1.0 - 40.20) <6893163E-6AF5-31A5-939F-397D05A8CFA1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
    0x7fff35ff1000 -     0x7fff3621ffff  com.apple.HealthKit (1.0 - 1) <636C717D-D52C-3B21-8CA5-2A42297640A1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/HealthKit.framework/HealthKit
    0x7fff36220000 -     0x7fff36a67fff  com.apple.private.EmbeddedAcousticRecognition (1.0 - 1) <085A37AE-D5C0-3BFD-ACA4-66D6A8394304> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition
    0x7fff36a68000 -     0x7fff36a77fff  com.apple.BluetoothManager (1.0 - 1) <98FF502E-7362-3D8F-9B02-E6946A89594D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
    0x7fff36a78000 -     0x7fff36ad4fff  com.apple.CoreBluetooth (1.0 - 1) <9A9F4EDB-808D-359F-B2CB-CFCF4EFF59C1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
    0x7fff36ad5000 -     0x7fff36ad8fff +libsystem_sandbox.dylib (1441.60.4) <3ECAE2FE-F674-37BA-B8B1-735145689046> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sandbox.dylib
    0x7fff36ad9000 -     0x7fff36b4dfff  com.apple.SpringBoardUIServices (1.0 - 1) <B3FFF8C0-4959-3A1B-A330-CF6C8BC31A77> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SpringBoardUIServices.framework/SpringBoardUIServices
    0x7fff36b4e000 -     0x7fff36b85fff  com.apple.TelephonyUI (1.0 - 1.0) <02DE2036-D235-33D7-A340-2C7B4EC85567> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TelephonyUI.framework/TelephonyUI
    0x7fff36bd2000 -     0x7fff36c24fff  com.apple.TextInputUI (1.0) <426E6881-B98A-3D65-865B-7DEFF8CF983D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
    0x7fff36c33000 -     0x7fff36c44fff  com.apple.contextkit.ContextKit (1.0 - 1) <E5168710-B565-3703-86F8-2EA0EBDFD4DD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
    0x7fff36c7d000 -     0x7fff36cf4fff  com.apple.Rapport (2.3.0 - 230.1) <B474A605-1DB9-37DF-AAF6-AA8230039A9F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Rapport.framework/Rapport
    0x7fff36d40000 -     0x7fff36d82fff  com.apple.MobileInstallation (2.0 - 1.0) <276F680A-7423-3FCA-8A43-452268720EF4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
    0x7fff36d83000 -     0x7fff36e4efff  com.apple.Metal (244.40.1 - 244.40.1) <9D54321E-37DD-3428-84CF-CBBDDE4EEE32> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Metal.framework/Metal
    0x7fff36e4f000 -     0x7fff36e59fff  com.apple.MediaAccessibility (1.0 - 130) <4D4A9C7E-20F4-3545-8A66-34EEACBAA159> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
    0x7fff36e6f000 -     0x7fff36e76fff +libsystem_dnssd.dylib (1310.80.1) <7D9553F5-6E05-3B1F-A05E-90ECAFBB70E6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_dnssd.dylib
    0x7fff36e77000 -     0x7fff36e7dfff  com.apple.PushKit (1.0 - 1) <571A35D4-F32F-36EA-A041-A5364F322AFD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/PushKit.framework/PushKit
    0x7fff36e7e000 -     0x7fff36f87fff  com.apple.FileProvider (268.21 - 268.21) <AE8BEC6B-2C83-3822-B8E0-E30F520418C1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/FileProvider.framework/FileProvider
    0x7fff36f88000 -     0x7fff36f8cfff  com.apple.LinguisticData (1.0 - 399) <5056D217-8A7C-3EB8-A279-FC4C1088D790> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
    0x7fff36f8d000 -     0x7fff36f9cfff  com.apple.CoreSDB (10.0 - 1000) <DC5EECFE-F739-3F20-B938-79AFE3A71F7D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
    0x7fff36f9d000 -     0x7fff36faefff  com.apple.framework.ctcategories (1.0 - 5.26) <C4AADF30-6253-3D9A-AE59-46C4D1A2FFB1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Categories.framework/Categories
    0x7fff36fca000 -     0x7fff370f6fff  com.apple.VideoToolbox (1.0 - 2765.6) <734D5A40-EC53-3E30-A5F5-430A3631F454> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
    0x7fff37565000 -     0x7fff37566fff  com.apple.MessageSupport (1.0 - 3654.60.0.1.22) <EEC04C95-C37F-3C74-BEF0-7181AA6517AA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
    0x7fff37567000 -     0x7fff375cffff  com.apple.proactive.PersonalizationPortrait (1.0 - 1115.505.1) <27FCD681-EFD5-365F-8212-727F11354006> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait
    0x7fff375d0000 -     0x7fff37665fff  com.apple.AppStoreDaemon (1.0 - 1) <99E11466-DAFD-367E-8905-B272FB2ACC76> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
    0x7fff3771b000 -     0x7fff37751fff  com.apple.dataaccess.dataaccessexpress.framework (1.0 - 1.0) <A17A3DCA-8D9D-36A4-A8BD-AC9B62F0C7AF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
    0x7fff37752000 -     0x7fff377c6fff  com.apple.EmailFoundation (11.0 - 3654.60.0.1.22) <8C46F4CF-CBD1-3847-B8D1-1EA077AD7AEA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/EmailFoundation.framework/EmailFoundation
    0x7fff377c7000 -     0x7fff377dcfff  com.apple.CoreFollowUp (1.0 - 1) <5FA342B5-7338-3F1E-A7F3-B88F89151701> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
    0x7fff377dd000 -     0x7fff377f2fff  com.apple.FamilyCircle (1.0 - 1) <32711860-B125-319A-8135-2444C759F1B9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
    0x7fff377f3000 -     0x7fff37809fff +libcoretls.dylib (169) <9574DCE5-FAC1-371C-A3E6-27135542BD2A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcoretls.dylib
    0x7fff37822000 -     0x7fff37945fff +libate.dylib (3.0.4) <0EAC980E-7AEF-31DB-AAE0-1706E75B7ACA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libate.dylib
    0x7fff38d0e000 -     0x7fff38d37fff  com.apple.Pasteboard (1.0 - 1000) <5EBC2FB3-3751-33ED-8701-41792CA1A66F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
    0x7fff38d38000 -     0x7fff38d7efff  com.apple.facetimeservices (10.0 - 1000) <07011FC8-504F-3DAB-8BCC-186469BB2A25> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FTServices.framework/FTServices
    0x7fff38e4b000 -     0x7fff38e5dfff  com.apple.MaterialKit (1.0 - 1) <83D50F8A-F9BC-30D5-AE05-A1C274A92A0B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
    0x7fff38e5e000 -     0x7fff38efefff  com.apple.SAObjects (1.0 - 1) <E6B48714-C1B9-3FEA-BCAA-FE8D263A9F5F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
    0x7fff38eff000 -     0x7fff38f09fff  com.apple.corerecents (1.0 - 1) <E5F1515E-3967-3D0B-B343-2B4F48CA5CBE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
    0x7fff38f0a000 -     0x7fff38f54fff  com.apple.MIME (2.0 - 3654.60.0.1.22) <C68DCA7E-A404-3207-BA5F-B8BE2575D801> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MIME.framework/MIME
    0x7fff38fb4000 -     0x7fff38fc3fff  com.apple.datamigration (1.0 - 1.0) <C18F589B-588D-36AA-9809-CEB4A31419CB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
    0x7fff38ff9000 -     0x7fff39062fff  com.apple.EmailCore (11.0 - 3654.60.0.1.22) <464D2A8C-23A1-3E6B-93E9-6EC66A2C3BB2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/EmailCore.framework/EmailCore
    0x7fff39063000 -     0x7fff3908efff  com.apple.IconServices (440.23 - 440.23) <81D3BE94-E37F-3E55-BA12-E75DBB531111> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IconServices.framework/IconServices
    0x7fff3908f000 -     0x7fff3922ffff  com.apple.iTunesCloud (1.0 - 1) <7D0EB895-B257-3360-A3D4-E8EB9DFD34F0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
    0x7fff39230000 -     0x7fff39470fff  com.apple.MusicLibrary (1.0.0 - 18) <876D8BBD-B894-3B61-B3C3-71A553B3524C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
    0x7fff39471000 -     0x7fff39483fff +libprequelite.dylib (103) <C282F4A5-1F11-33DA-A268-220D7747CA3A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprequelite.dylib
    0x7fff394c5000 -     0x7fff394cafff  com.apple.idskvstore (10.0 - 1000) <92101531-2382-315C-B98F-3B07766E6AB6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore
    0x7fff394cb000 -     0x7fff394ddfff  com.apple.CoreEmoji (1.0 - 128.1) <7169B416-1ED6-3007-8FAA-BEA60ACD0ABA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
    0x7fff394de000 -     0x7fff3957efff  com.apple.Email (11.0 - 3654.60.0.1.22) <E7D28372-4C01-347F-B5BA-366BC4017E6A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Email.framework/Email
    0x7fff3957f000 -     0x7fff395effff  com.apple.ClassKit (1.2 - 146.3.3) <6900837E-4654-3622-AA51-10BC877B99B7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ClassKit.framework/ClassKit
    0x7fff3960a000 -     0x7fff39614fff  com.apple.RTCReporting (11.75.2 - 11.75.2) <9B19343C-875E-3E0B-BB19-8B871FD3E24B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
    0x7fff3975e000 -     0x7fff39772fff  com.apple.IAP (1.0 - 1.0.0) <CB20079F-A809-3E76-B0AB-B33FD2200DD1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IAP.framework/IAP
    0x7fff3985c000 -     0x7fff39863fff  com.apple.CoreTime (284.0.1) <9ED17459-0032-38F0-960F-AFE752804F62> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
    0x7fff398fe000 -     0x7fff39a0bfff  com.apple.IMDPersistence (10.0 - 1000) <19997A8A-FA76-3971-8A22-332E08CC4CC8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
    0x7fff39b0d000 -     0x7fff39b43fff  com.apple.siri.DistributedEvaluation (1.0 - 36) <12258E63-CF46-3990-B4F2-3BFA65D0EB38> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation
    0x7fff39e84000 -     0x7fff39edefff  com.apple.ToneLibrary (1.0 - 1) <3AF4EEB4-6286-3ADC-B28B-A7EDF28B250D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
    0x7fff3a22e000 -     0x7fff3a24bfff  com.apple.AppConduit (1.0 - 1) <2DB9DA24-BB2E-3BCD-8303-87BE2DFE6C34> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
    0x7fff3a24c000 -     0x7fff3a269fff  com.apple.IntlPreferences (1.0 - 330) <8DF231E7-BF85-3976-95AA-D39C424A6D54> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
    0x7fff3a6cb000 -     0x7fff3a6ccfff  com.apple.corebrightness (1.0 - 1) <94A66615-5E61-37A5-8E12-D18DFEE764DF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
    0x7fff3a7a6000 -     0x7fff3a7cafff  com.apple.NetAppsUtilities (1.0 - 1) <84418E54-094F-371D-AFDE-E2F840048F93> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities
    0x7fff3a8eb000 -     0x7fff3af7afff +libBNNS.dylib (288.80.1) <2F567477-1BE5-3A8A-AF42-57EFFCD28FB1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
    0x7fff3b002000 -     0x7fff3b080fff  com.apple.itunesstore (1) <A50577F1-B778-3B74-BC8E-C684E530845C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
    0x7fff3b081000 -     0x7fff3b096fff  com.apple.ExternalAccessory (1.0.0 - 1.0) <98FFE7A2-32E2-396B-8DCF-5996F0A0E41E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
    0x7fff3bb77000 -     0x7fff3bbd6fff  com.apple.Safari.Core (610 - 610.4.3.0.1) <8F1A910C-5F35-3478-BED6-287ADB2A1094> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
    0x7fff3bbd7000 -     0x7fff3bc4bfff  com.apple.ScreenTimeCore (3.0 - 495) <188AE5FC-36FE-3708-9EFB-C823A2304C55> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore
    0x7fff3c34d000 -     0x7fff3c363fff  com.apple.LocalAuthentication (1.0 - 827.80.7) <60F8E6A1-1ADB-3EB6-902D-29190CD6981B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
    0x7fff3c364000 -     0x7fff3c368fff  com.apple.communicationsfilter (10.0 - 1000) <97D4B5A4-A12A-338C-9EA8-B935EB980363> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
    0x7fff3c391000 -     0x7fff3c393fff  com.apple.CaptiveNetworkSupport (13.0 - 1) <B71B2AD5-260E-39B3-A900-D118D9360ECE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
    0x7fff3c394000 -     0x7fff3c394fff  com.apple.AdSupport (1.0 - 1) <A8DF0CA2-FE90-3AB3-A032-201148EF5D9D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AdSupport.framework/AdSupport
    0x7fff3c501000 -     0x7fff3c698fff +libBLAS.dylib (1336.40.1) <376939E1-9BE8-3B49-846B-DEE1C92B9437> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
    0x7fff3c699000 -     0x7fff3c6a8fff  com.apple.coretelephony.CTCarrierSpace (1.0 - 1) <A8235213-AD66-30A0-9798-296B5EE93D51> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
    0x7fff3d040000 -     0x7fff3d12cfff  com.apple.siri.parsec.CoreParsec (1.0 - 386.3.2) <740E916A-BD4E-3989-8B20-E6D84DBC76AE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
    0x7fff3d17a000 -     0x7fff3d1b5fff  com.apple.CalendarUIKit (1.0 - 1008) <8531B05A-BD5A-335F-9680-E34EB89B72AF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit
    0x7fff3d1d6000 -     0x7fff3d1ebfff  com.apple.contacts.donation (1.0 - 1079) <DACE0DCD-465D-38AD-9841-E0468DE36E08> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
    0x7fff3d266000 -     0x7fff3d272fff  com.apple.mobileicons.framework (1.0 - 372.0) <2F24FA64-43A5-315A-B83B-446CEB9C0648> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
    0x7fff3d273000 -     0x7fff3d37dfff  com.apple.ResponseKit (1.0 - 164.1) <27BD0EDE-C23E-302F-9C88-68D314B587A9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
    0x7fff3d3e1000 -     0x7fff3d3fafff  com.apple.MetalKit (147.1 - 147.1) <F3BF7EF2-359C-3F0B-94F8-869B359BD220> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalKit.framework/MetalKit
    0x7fff3d3fb000 -     0x7fff3d442fff  com.apple.TemplateKit (1.0 - 1) <B2E2CAD3-5141-3627-892B-A4C62FBD07BD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit
    0x7fff3d498000 -     0x7fff3d56bfff  com.apple.ProofReader (2.4 - 526.2) <8DE77289-81EE-38A3-9A7D-5EED90734426> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
    0x7fff3d5be000 -     0x7fff3d5c8fff  com.apple.EmailAddressing (11.0 - 3654.60.0.1.22) <F819DFA8-F544-30F2-8611-246944155766> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
    0x7fff3d5c9000 -     0x7fff3d5defff  com.apple.MailServices (1.0 - 3654.60.0.1.22) <DD814C72-2D0F-30F8-9545-C6C3B0A4FA18> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MailServices.framework/MailServices
    0x7fff3d5df000 -     0x7fff3d68bfff  com.apple.CoreSymbolication (12.2 - 64541.4) <CBB1153E-510E-3D75-96C1-3A4F5433C160> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
    0x7fff3d68c000 -     0x7fff3d692fff  com.apple.ist.IdleTimerServices (1.0 - 1) <47A6F6A5-99B6-3D55-989F-4AC14E12CF96> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
    0x7fff3d81b000 -     0x7fff3d89efff  com.apple.VideoSubscriberAccount.VideoSubscriberAccountFramework (1.0 - 364.30.1) <02CB6A88-340C-372A-9E6D-37B736C2F2A9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
    0x7fff3d8b3000 -     0x7fff3d8b6fff  com.apple.ftclientservices (10.0 - 1000) <7DA4737B-FB9B-34EF-9325-87DD6CFE8061> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
    0x7fff3d8b7000 -     0x7fff3d929fff  com.apple.Contacts.ContactsUICore (1.0 - 3418) <08F6CE45-3E80-3AA2-A51B-EB54FAB91259> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
    0x7fff3e031000 -     0x7fff3e079fff  com.apple.ProtectedCloudStorage (1.0 - 1) <30EF549F-8D9F-3F9E-A14D-EA3F6B13C518> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
    0x7fff3e160000 -     0x7fff3e16bfff  com.apple.opengles (18.0.31 - 18.0.31) <20BD9AF7-FBD6-3F82-BB16-8AB3044DD3E7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/OpenGLES
    0x7fff3e2f3000 -     0x7fff3e2fcfff +libGFXShared.dylib (18.0.31) <34521172-0992-3E47-8A44-F12257F22636> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
    0x7fff3e2fd000 -     0x7fff3e32efff  com.apple.CoreAuthentication.SharedUtils (1.0 - 827.80.7) <F18E98CF-659E-355F-B3E7-95309E40B498> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
    0x7fff3eecd000 -     0x7fff3ef0dfff  com.apple.StreamingZip (1.0 - 1) <61126B21-958C-3A48-92B7-5EB3DDEF1066> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
    0x7fff3fda0000 -     0x7fff3ffcffff  com.apple.Safari.Shared (610 - 610.4.3.0.1) <DB130002-B5B1-3830-9800-5A5E6879BBA4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
    0x7fff3fffc000 -     0x7fff3fffefff  com.apple.InternationalTextSearch (1.0 - 1) <9328BBCC-A006-3FA5-9ACD-6A76147F2654> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
    0x7fff40ab1000 -     0x7fff40ab4fff  com.apple.incomingcallfilter (10.0 - 1000) <C2EC883C-D8EC-36C0-B93D-B7B0DDD94583> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
    0x7fff41101000 -     0x7fff41106fff +libgermantok.dylib (24) <2C5B3078-B288-325D-BE07-E5B2C3F3733D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libgermantok.dylib
    0x7fff41107000 -     0x7fff41161fff +libmecab.dylib (929.1.1) <6D8630E9-DD41-3B16-B2ED-C9BE63B239D0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libmecab.dylib
    0x7fff41162000 -     0x7fff4119bfff  com.apple.Catalyst (1.0 - 7) <7B26CA6D-5A80-3B75-A560-B4DA5226D615> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
    0x7fff412ba000 -     0x7fff412f1fff  com.apple.EmojiFoundation (1.0 - 1) <A50A5396-BF16-31B2-A532-43F74831B6E7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
    0x7fff4132e000 -     0x7fff41371fff  com.apple.voiceservices (1.0.0 - 1.0) <2785F05C-80D6-327D-9B0B-4AA47FAF716C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
    0x7fff41372000 -     0x7fff414affff  com.apple.Navigation (1.0 - 1) <F9893948-C7B0-3320-A025-1832CF9DB533> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Navigation.framework/Navigation
    0x7fff41798000 -     0x7fff417a6fff  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <DA2F6F72-53CA-385C-A0B5-424F478BAC18> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
    0x7fff417a7000 -     0x7fff417a7fff  com.apple.ftawd (8.0 - 900) <20587E1A-C556-3C5D-88E5-D8DC35BC9EBE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
    0x7fff43948000 -     0x7fff439b9fff +libarchive.2.dylib (83.40.4) <434A842D-C339-3F23-B060-132821136626> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libarchive.2.dylib
    0x7fff439ba000 -     0x7fff439f0fff  com.apple.C2 (1.3 - 569) <8CC6F0A8-EA81-30A0-99AC-3BB6CDABE0FC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/C2.framework/C2
    0x7fff439f1000 -     0x7fff43a31fff  com.apple.NaturalLanguage (1.0 - 84) <7CCCAFA1-A4CD-3908-A85D-1C0C5A1F11AA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
    0x7fff43ac8000 -     0x7fff43ac9fff +libsystem_coreservices.dylib (125.2) <AB1242D5-6146-3360-80FD-966FE68750E7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_coreservices.dylib
    0x7fff43ade000 -     0x7fff43b37fff  com.apple.WebBookmarks (1.0 - 1.0) <51917D82-FF77-333B-9863-E31F65C85104> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
    0x7fff43cf8000 -     0x7fff43d01fff +libcopyfile.dylib (173.40.2) <1EDC98D3-FECD-3B9C-A597-8BCBAB5769D4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcopyfile.dylib
    0x7fff43d02000 -     0x7fff43d2efff  com.apple.UsageTracking (3.0 - 145) <F593A479-212D-3223-B608-1BD3AF5D2DAF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking
    0x7fff44188000 -     0x7fff44191fff  com.apple.AppleIDSSOAuthentication (1.0 - 1) <FA603D61-1B52-34D1-87EE-1A45C921CD51> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
    0x7fff44192000 -     0x7fff4419ffff  com.apple.settingsandcoreapps.SettingsFoundation (1.0 - 1014) <728F27FA-9643-38A7-A7B3-3C265F1AC1ED> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
    0x7fff446ff000 -     0x7fff44749fff  com.apple.ChunkingLibrary (334 - 334) <34EB9831-FB75-387B-8C41-9FA54F686884> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
    0x7fff4474d000 -     0x7fff44751fff  com.apple.DAAPKit (1.0 - 1) <287A91B7-1396-32BC-810A-7A02292178DB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
    0x7fff448ca000 -     0x7fff448ccfff  com.apple.CoreDuetDebugLogging (1.0 - 1) <ECD132D2-1DB5-39D8-BBDE-5527F1CFF8DC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
    0x7fff45ab6000 -     0x7fff45e5dfff  com.apple.SDAPI (1.0 - 1) <6469E098-4E64-3FF6-9633-94B2B5C4ECBD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SDAPI.framework/SDAPI
    0x7fff45e62000 -     0x7fff45e68fff  com.apple.URLFormatting (146 - 146.8) <DF74BF3C-A6AB-3449-BFC7-722294FB0443> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
    0x7fff45f6d000 -     0x7fff461e4fff  com.apple.mobilespotlight.index (10.7.0 - 2150.7.5) <20FC2145-DE14-3784-8D22-F936012A0CF4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
    0x7fff46580000 -     0x7fff46598fff  com.apple.SecurityFoundation (1.0 - 1) <651AD0CC-5BE9-3E82-82A6-E4B6B08BF59C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SecurityFoundation.framework/SecurityFoundation
    0x7fff46616000 -     0x7fff46672fff  com.apple.CoreLocationProtobuf (1 - 1) <7A45C33F-89D0-3105-9DB9-6F8B7EDCCEDF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
    0x7fff466c6000 -     0x7fff4675afff  com.apple.Quagga (85 - 85) <313B7C4A-77EA-339A-80F2-F469DFFCAAB4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Quagga.framework/Quagga
    0x7fff4699f000 -     0x7fff469a7fff  com.apple.ProgressUI (1.0 - 1) <7B4FE395-C415-3242-A19F-5894EACE9BC8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProgressUI.framework/ProgressUI
    0x7fff46d12000 -     0x7fff46d20fff +libperfcheck.dylib (41) <62310AE8-F69E-389C-BA03-B993670DEFC1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libperfcheck.dylib
    0x7fff46d21000 -     0x7fff46d2dfff +libAudioStatistics.dylib (25.3) <C39BFB5C-4BDF-3A55-925D-4A2F3175201B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAudioStatistics.dylib
    0x7fff46dcd000 -     0x7fff46de9fff  com.apple.audio.caulk (1.0 - 70) <3E2ACD32-BA5A-3F85-AFCD-1638FAC6344E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/caulk.framework/caulk
    0x7fff46e26000 -     0x7fff46e29fff  com.apple.MobileSystemServices (1.0 - 1) <9A43C617-6E1A-38B2-A058-5C04869CBAAB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
    0x7fff46eb0000 -     0x7fff46ed7fff  com.apple.CloudServices (1.0 - 460.80.1) <D79AD12B-435C-3827-8368-1AFE0C992AA0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CloudServices.framework/CloudServices
    0x7fff46ed8000 -     0x7fff46fb3fff  com.apple.AirPlaySync (1.0 - 2765.6) <0B6FFC54-9400-30F6-AA96-F42DC94B0E27> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync
    0x7fff47776000 -     0x7fff477b3fff +libGLImage.dylib (18.0.31) <52A086A7-E428-35D1-91E5-4C50D179CCB5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
    0x7fff477b4000 -     0x7fff478c6fff  com.apple.CoreSpeech (1.0 - 3002.1) <C775DE23-315E-38C8-9BC3-0E5B05C49A05> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSpeech.framework/CoreSpeech
    0x7fff47a7e000 -     0x7fff47a90fff +libSparseBLAS.dylib (1336.40.1) <0996A6FE-79CE-3BB9-BC2D-9B7A669E1B4A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
    0x7fff47a91000 -     0x7fff47aa5fff  com.apple.Engram (1.0 - 1) <CC56E3AD-1D52-321F-8435-60903FFD4D35> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Engram.framework/Engram
    0x7fff47b2f000 -     0x7fff47b70fff  com.apple.DataDetectorsNaturalLanguage (1.0 - 159.1) <6F8F464A-A3C0-3636-9105-313C7693CB73> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
    0x7fff47e6d000 -     0x7fff47e75fff  com.apple.CoreServices.FSEvents (1290.40.2 - 1290.40.2) <D98468EA-81E0-32B9-8704-E96720594D23> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
    0x7fff47e76000 -     0x7fff47f00fff  com.apple.coredav (1.0.1 - 1075) <7926287F-3BF0-3686-8874-9CBA2A1EC9B9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
    0x7fff486bd000 -     0x7fff486cdfff  com.apple.RemoteTextInput (1.0 - 1) <0F53E765-85CF-34F1-A633-385CC6222072> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
    0x7fff486d4000 -     0x7fff48708fff  com.apple.iCalendar (7.0 - 1008) <6AADFC7F-DE4B-3AE3-ADB1-4F16436E3736> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
    0x7fff48730000 -     0x7fff48746fff +libLinearAlgebra.dylib (1336.40.1) <C8C3B782-7BB5-3CAC-8013-62CCB32FACF3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
    0x7fff48772000 -     0x7fff48774fff  com.apple.hsaauthenticationserver (8.0 - 900) <CBC1A485-18DB-33DF-883A-1D47E85A12DF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/HSAAuthentication.framework/HSAAuthentication
    0x7fff487a5000 -     0x7fff488a6fff  com.apple.ConfigurationEngineModel (1.0 - 40.20) <25A32AB1-68D2-34E3-81CD-DCC2FC947CF5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
    0x7fff488a7000 -     0x7fff488affff  com.apple.CertUI (1.0 - 1) <F6274C9A-A8B4-3219-9FA3-42453EB5C94E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CertUI.framework/CertUI
    0x7fff4985f000 -     0x7fff498b0fff  com.apple.PhysicsKit (1.0 - 1) <2F8F03F7-BFC5-39DC-8796-1C75E89F2CA6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
    0x7fff498b1000 -     0x7fff49902fff  com.apple.CorePrediction (1.0 - 1) <0289CB41-60FB-3E98-9684-C7EE18F7207D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
    0x7fff49d61000 -     0x7fff49daafff  com.apple.Safari.SafeBrowsing (16610 - 16610.4.3.0.1) <15B96A31-6967-31EF-8389-8901E30DDFF8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
    0x7fff4a1a2000 -     0x7fff4a1cdfff  com.apple.HomeSharing (1.0 - 1) <9DD2998E-5DEF-3ADB-A94A-A6D719384638> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
    0x7fff4a266000 -     0x7fff4a284fff  com.apple.GenerationalStorage (2.0 - 322) <E1CD33A1-84E2-3480-88E0-0CF83C45D811> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
    0x7fff4a2dc000 -     0x7fff4a2e7fff  com.apple.PersonaKit (1.0 - 1) <2D96A9EA-E93E-3066-B2F8-4D47E794DA5A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
    0x7fff4a2e8000 -     0x7fff4a2f5fff  com.apple.PersonaUI (1.0 - 1) <EE7F4FA8-03B7-3B5D-AC01-F733DF2C393B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
    0x7fff4a497000 -     0x7fff4a4a6fff  com.apple.Speech (1.0 - 1) <BC1599F5-CBB9-390A-85EF-5CDD6A86CB05> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Speech.framework/Speech
    0x7fff4a9b9000 -     0x7fff4a9cffff  com.apple.WebUI (1.0 - 1.0) <5B38976F-01F5-3373-83B4-DCB33FA4C3AD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebUI.framework/WebUI
    0x7fff4a9d0000 -     0x7fff4a9ebfff  com.apple.SafariFoundation (610 - 610.4.3.0.1) <8FDA6503-9726-3443-89ED-3E10E70C79BC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
    0x7fff4aa3a000 -     0x7fff4abb8fff +libvDSP.dylib (760.40.6) <6EA663E0-0487-3123-BE34-4ADBC9697E24> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
    0x7fff4abb9000 -     0x7fff4abe6fff  com.apple.contacts.vCard (1.0 - 3498.2) <9E9819E1-2827-3406-A4B5-1BDF82FBD490> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/vCard.framework/vCard
    0x7fff4abe7000 -     0x7fff4abf4fff  com.apple.IntentsFoundation (1.0 - 1) <9987912C-F16F-3BFF-AA19-B2D61A2CA9EC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
    0x7fff4ad9d000 -     0x7fff4ad9ffff  com.apple.ParsecSubscriptionServiceSupport (1.0 - 977) <AF3DA8B7-F45B-3618-9C5A-92F29E8DDDD5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
    0x7fff4ada0000 -     0x7fff4ae2afff  com.apple.MediaPlatform (1.0 - 1) <B3BB01C1-8B46-3852-926E-5CA5E0305FFB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
    0x7fff4ae2b000 -     0x7fff4b180fff  com.apple.MediaLibraryCore (1.0 - 4018.300.42) <9CA45399-22EE-38DC-9C32-C5E66C2C3B51> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
    0x7fff4b1af000 -     0x7fff4b1ccfff  com.apple.InAppMessages (1.0 - 1) <0DF07BE2-AAB5-3EC6-A77C-8C684EA0B178> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InAppMessages.framework/InAppMessages
    0x7fff4b45a000 -     0x7fff4b45afff  com.apple.Accelerate (1.11 - Accelerate 1.11) <2F324FB2-C056-3196-B054-3CA1E6BA5951> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Accelerate
    0x7fff4b45b000 -     0x7fff4b807fff +libLAPACK.dylib (1336.40.1) <AEFAE456-3E74-32DC-9A2A-C12D0A0DFE66> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
    0x7fff4b808000 -     0x7fff4b80dfff +libQuadrature.dylib (7) <D6C81C75-6524-3249-98EB-C984C7AA1C59> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
    0x7fff4b80e000 -     0x7fff4b958fff +libvMisc.dylib (760.40.6) <4C05B415-D678-32ED-B323-5FA3BCA96BDF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
    0x7fff4b959000 -     0x7fff4b959fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <F737550F-5977-30E2-A52F-0AA8DFD6298F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
    0x7fff4b962000 -     0x7fff4b97dfff  com.apple.AuthenticationServices (12.0 - 1.0) <5B304F8E-7261-3D46-B343-7A09B8E43F80> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
    0x7fff4bbfd000 -     0x7fff4bc2afff  com.apple.GSS (4.0 - 2.0) <ABBFF83D-F5BA-3A9C-8152-1A06283CE309> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/GSS.framework/GSS
    0x7fff4bc3d000 -     0x7fff4bc94fff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <BA86418F-FF9B-3E10-B1AB-AD37C722C29E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
    0x7fff4bc95000 -     0x7fff4bd24fff  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <6889382A-6D9D-34B1-AB85-8F449F59DB75> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
    0x7fff4bd25000 -     0x7fff4bd51fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <FFD212B7-9FD0-3597-9722-C5BC4621774E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
    0x7fff4bd52000 -     0x7fff4bd8ffff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <6FF4B0B7-54E1-31A8-A547-2A5E1B573E5C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
    0x7fff4bd90000 -     0x7fff4bfacfff  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <08402508-40E5-31B1-B7C9-26246520D519> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
    0x7fff4bfad000 -     0x7fff4bffafff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <0334BFBC-C530-3434-B770-40392E5C5038> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
    0x7fff4bffb000 -     0x7fff4bffbfff  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <3A6103A1-4256-3445-A528-083D037A16FA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
    0x7fff4c00f000 -     0x7fff4c00ffff  com.apple.MobileCoreServices (1116.3.7 - 1116.3.7) <BB956540-F196-3B5E-A520-5E8600CC0DEA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
    0x7fff4c01a000 -     0x7fff4c01cfff +libCVMSPluginSupport.dylib (18.0.31) <43C5F972-A657-3468-91DA-A8A192BC6FD2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
    0x7fff4c01d000 -     0x7fff4c023fff +libCoreFSCache.dylib (177.22) <5E5B78E0-137B-3143-93E4-C5E7300E28EF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
    0x7fff4c024000 -     0x7fff4c02cfff +libCoreVMClient.dylib (177.22) <8FC12432-E3A2-3D4F-BBA0-5F863300FEFC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
    0x7fff4c0a2000 -     0x7fff4c0dcfff  com.apple.QuickLookThumbnailing (1.0 - 135) <DB804F0C-49DD-307D-BEF5-9990EF74780E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
    0x7fff4c464000 -     0x7fff4c464fff  com.apple.UIKit (1.0 - 4006) <93328993-07EE-30C1-9086-6BABA9C06369> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UIKit.framework/UIKit
    0x7fff4cbe1000 -     0x7fff4cbecfff  com.apple.AppleIDAuthSupport (1.0 - 1) <E68E948B-E086-37BE-97FE-993569977E35> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
    0x7fff4cbed000 -     0x7fff4cc36fff  com.apple.AppleJPEG (1.0 - 1) <43C886CF-BE4B-32C4-82A7-6430F5CEE734> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
    0x7fff4cc45000 -     0x7fff4ccb4fff  com.apple.AppleMediaServicesUI (1.0 - 1) <D54E950F-27F8-3135-A017-F4BC56491E51> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleMediaServicesUI.framework/AppleMediaServicesUI
    0x7fff4ccba000 -     0x7fff4ccdefff  com.apple.applesauce (1.0 - 16.26) <0131F55B-8056-35D0-A944-502A515FA80C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
    0x7fff4cdd0000 -     0x7fff4ce02fff  com.apple.bom (14.0 - 233) <9749D784-8FA9-3B67-8360-52E091D0B3E1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Bom.framework/Bom
    0x7fff4d7a5000 -     0x7fff4d7acfff  com.apple.CommonAuth (4.0 - 2.0) <740C5909-4398-3842-8D7B-7E93AA41E361> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
    0x7fff4da7f000 -     0x7fff4dbfbfff  com.apple.CoreHandwriting (161 - 1.2) <F31A0649-F392-3050-A005-1DB9229DE42A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
    0x7fff4dc06000 -     0x7fff4dc0afff  com.apple.CoreOptimization (1.0 - 1) <5871DA91-5F2F-3205-828F-EB159E49CF35> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
    0x7fff4de0d000 -     0x7fff4de2bfff  com.apple.DocumentManagerCore (1.0 - 200.4.1) <E6C4735C-4045-3F48-BD07-37EC553D3CD6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
    0x7fff4deb1000 -     0x7fff4deb3fff  com.apple.DragUI (1.0 - 1) <74418F1D-3B8D-31C9-8D11-0C6F3AC5CEBB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DragUI.framework/DragUI
    0x7fff4deeb000 -     0x7fff4e585fff  com.apple.vision.EspressoFramework (1.0 - 256.2.2) <3670D500-FB1E-3259-A669-49A0CDB4BC41> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Espresso.framework/Espresso
    0x7fff4e8bb000 -     0x7fff4ecd3fff  com.apple.vision.FaceCore (4.1.2 - 4.1.2) <AC9097EB-B26F-307B-823F-032336D22847> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
    0x7fff4ed12000 -     0x7fff4ed18fff  com.apple.FeatureFlagsSupport (1.0 - 28.60.1) <77BAAFE7-DEEF-35B6-A72F-5D02D80CB279> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport
    0x7fff4edb8000 -     0x7fff4edf5fff +libGSFontCache.dylib (192.9.2.0.2) <2163C063-B42C-36E8-802B-1E37465A5C42> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
    0x7fff4ee59000 -     0x7fff4ee69fff +libhvf.dylib (305.3.0.1) <3BAAFCBA-E22F-391F-8F9F-905EAC9F15B1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff4feaf000 -     0x7fff4febdfff  com.apple.GraphVisualizer (1.0 - 210.1) <3397BB73-0B39-303A-811F-1AB7306D9FB9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
    0x7fff50773000 -     0x7fff507e2fff  com.apple.Heimdal (4.0 - 2.0) <07E5ABCA-2F9A-329B-AEA8-7637F6E90586> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
    0x7fff50dd2000 -     0x7fff50decfff  com.apple.IntentsCore (1.0 - 1) <7603AD9B-FA08-385F-9DBD-D3C8CE1AFF4B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore
    0x7fff50df6000 -     0x7fff50dfefff  com.apple.InternationalSupport (1.0 - 60) <0E07A022-018E-3233-A7E4-88CF140AA21A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
    0x7fff50fac000 -     0x7fff50fcbfff  com.apple.LocalAuthenticationPrivateUI (1.0 - 1) <35F9E556-3E96-36B8-9DAA-7076C9470241> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI
    0x7fff5101c000 -     0x7fff5101cfff  com.apple.marco (10.0 - 1000) <E186205E-B33B-34E8-A5E0-594335B6BBB8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Marco.framework/Marco
    0x7fff51079000 -     0x7fff51125fff  com.apple.gpusw.MetalTools (1.0 - 1) <01E10A67-2F4E-391F-A90D-747BCB103D8A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MetalTools.framework/MetalTools
    0x7fff5114c000 -     0x7fff511a5fff  com.apple.amp-ae-eng.MetricsKit (2.6.9 - 1) <A6654BDD-3474-3328-83DA-09012A7ED29D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit
    0x7fff51468000 -     0x7fff514b1fff  com.apple.OTSVG (1.0 - 677.3.0.3) <C6405380-D132-3E61-ABDC-DB5963499660> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
    0x7fff51a31000 -     0x7fff51a46fff  com.apple.Osprey (1.0 - 1) <6F4AAA3B-2633-3589-9461-B96A92406EF9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Osprey.framework/Osprey
    0x7fff51abb000 -     0x7fff51abbfff  com.apple.PhoneNumbers (1.0 - 1) <CDE05C57-F07A-3E6E-B3C1-643A24CD1E13> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
    0x7fff520f5000 -     0x7fff52101fff  com.apple.PrototypeToolsUI (1.0 - 1) <E122EE58-A754-3AF4-AE76-D0C15BB5E8B0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PrototypeToolsUI.framework/PrototypeToolsUI
    0x7fff52246000 -     0x7fff5224afff  com.apple.RevealCore (1.0 - 17) <03F22175-A1C0-3659-8247-DE94FBBB94EC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
    0x7fff5238f000 -     0x7fff52409fff  com.apple.siri.SiriInstrumentation (1.0 - 1) <2B15DD91-246B-3978-8AA5-0C817032C9DB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
    0x7fff5282e000 -     0x7fff52857fff  com.apple.TestFlightCore (1.0 - I) <9E1BA353-111F-34C6-8386-E8AE59A7AF46> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TestFlightCore.framework/TestFlightCore
    0x7fff52993000 -     0x7fff52a63fff  com.apple.TextureIO (3.10.9 - 3.10.9) <79307AA4-373B-312E-817E-487F398AE19C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
    0x7fff53b5c000 -     0x7fff54473fff +libwebrtc.dylib (7610.4.3.0.1) <80562B05-B5A1-32D0-AD32-DEF564C27CCA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
    0x7fff54474000 -     0x7fff544e6fff  com.apple.WebInspector (16610 - 16610.4.3.0.1) <213674F9-C791-3370-8852-14033D600A71> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebInspector.framework/WebInspector
    0x7fff54545000 -     0x7fff54551fff  com.apple.perfdata (1.0 - 67.40.1) <868821C7-783A-34B7-9726-20D9E797188C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/perfdata.framework/perfdata
    0x7fff54606000 -     0x7fff5470cfff +libAWDSupportFramework.dylib (3919) <19D7EE97-F59A-3379-9DD4-759E44A2E69A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAWDSupportFramework.dylib
    0x7fff54725000 -     0x7fff5472dfff +libChineseTokenizer.dylib (37) <5A2B8EB5-F373-384C-85F0-DF609E039303> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libChineseTokenizer.dylib
    0x7fff5495d000 -     0x7fff5495efff +libSystem.B.dylib (1292.60.1) <9A456253-4C60-3010-8EC8-2F08AE02FA8B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libSystem.B.dylib
    0x7fff5495f000 -     0x7fff54960fff +libThaiTokenizer.dylib (3) <BEFA9023-D2F3-3E0D-A130-1565519D5382> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libThaiTokenizer.dylib
    0x7fff54961000 -     0x7fff54978fff +libapple_nghttp2.dylib (1.41) <2FFF4B9D-6BA9-3C76-85E2-B2233B90F50A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libapple_nghttp2.dylib
    0x7fff54979000 -     0x7fff54989fff +libbsm.0.dylib (68.40.1) <D4F4975C-D5DD-3C23-8715-F16C86E44021> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libbsm.0.dylib
    0x7fff5498a000 -     0x7fff54996fff +libbz2.1.0.dylib (44) <8C0D058B-230D-3966-8029-79C080AF4C5F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libbz2.1.0.dylib
    0x7fff54997000 -     0x7fff54997fff +libcharset.1.dylib (59) <76910C8F-3D08-3B2C-AE29-DF726DB297B4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcharset.1.dylib
    0x7fff54998000 -     0x7fff549a8fff +libcmph.dylib (8) <F90EB707-1BA1-36B2-B03B-B3A2E33BB534> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcmph.dylib
    0x7fff549a9000 -     0x7fff549c0fff +libcompression.dylib (96.40.6) <ECC756A6-4E30-35D4-9BA5-68D9AF78933C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcompression.dylib
    0x7fff549c1000 -     0x7fff549c2fff +libcoretls_cfhelpers.dylib (169) <8FE5FE7E-E1D7-3121-9945-119A05366D3F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcoretls_cfhelpers.dylib
    0x7fff549c3000 -     0x7fff549c8fff +libcupolicy.dylib (8183.1) <7856B48D-726D-3994-81B7-ED6AD1505B1F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcupolicy.dylib
    0x7fff549c9000 -     0x7fff549e6fff +libedit.3.dylib (55) <A01CA3F1-1399-3E46-8688-D3DFB52F8A71> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libedit.3.dylib
    0x7fff54a02000 -     0x7fff54a06fff +libheimdal-asn1.dylib (597.80.1) <032D33F6-5F5C-3670-B029-5EE37F4E2A51> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libheimdal-asn1.dylib
    0x7fff54a07000 -     0x7fff54af7fff +libiconv.2.dylib (59) <3778DAE0-8133-3381-98B9-81EB889EA0DA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libiconv.2.dylib
    0x7fff54af8000 -     0x7fff54b10fff +liblzma.5.dylib (16) <119FF691-1F7F-3723-A0F4-E9ABA035796E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/liblzma.5.dylib
    0x7fff54b27000 -     0x7fff54d69fff +libmorphun.dylib (97.2) <3CE7754C-0B2F-3947-91DF-8A555A1DA759> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libmorphun.dylib
    0x7fff54d6a000 -     0x7fff54d99fff +libncurses.5.4.dylib (57) <8E3E3CB5-1E6A-3492-84E6-D23364C07725> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libncurses.5.4.dylib
    0x7fff54d9a000 -     0x7fff54db1fff +libnetworkextension.dylib (1295.80.3) <527C8DC6-D46E-3C5E-97A3-A8263B31B270> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libnetworkextension.dylib
    0x7fff54db2000 -     0x7fff54dcafff +libresolv.9.dylib (68) <694FB2C1-883B-3007-89FD-D9D566C6032B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libresolv.9.dylib
    0x7fff54dfc000 -     0x7fff54dfffff +libutil.dylib (58.40.2) <6549B2E2-9232-34D6-A5A4-BBE4B54D964A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libutil.dylib
    0x7fff54e03000 -     0x7fff54e2bfff +libxslt.1.dylib (17.3) <1EDBE529-1AE5-3B99-8727-4ABDCC5144CC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libxslt.1.dylib
    0x7fff54e2c000 -     0x7fff54e3efff +libz.1.dylib (76) <A8637C21-2358-3202-8D31-B58BC22F96E6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libz.1.dylib
    0x7fff54e52000 -     0x7fff54e54fff +liblog_network.dylib (2288.80.2) <74CCD1D2-5E26-3EF3-89C0-409CD67C555D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/log/liblog_network.dylib
    0x7fff551e6000 -     0x7fff551eafff +libcache.dylib (83) <8D1CE534-EDB1-32EE-8991-8B37D7F49319> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcache.dylib
    0x7fff551eb000 -     0x7fff551f6fff +libcommonCrypto.dylib (60178.40.2) <FC16096D-0F84-3824-B851-109756A304CA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcommonCrypto.dylib
    0x7fff551f7000 -     0x7fff551fefff +libcompiler_rt.dylib (102.3) <AD0A190C-222F-3389-A995-3936429B9323> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcompiler_rt.dylib
    0x7fff55323000 -     0x7fff55323fff +liblaunch.dylib (2038.80.3) <6E881886-903F-3AA3-81FD-DB527B7C0C6F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/liblaunch.dylib
    0x7fff55324000 -     0x7fff55329fff +libmacho.dylib (973.0.1) <36A2C5E4-14C3-3094-B3F9-BC92FB08FE81> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libmacho.dylib
    0x7fff5532a000 -     0x7fff5532bfff +libremovefile.dylib (49.40.3) <4872E337-D8C4-309A-981F-AAA35DE071FF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libremovefile.dylib
    0x7fff5532c000 -     0x7fff5532efff +libsystem_featureflags.dylib (28.60.1) <E1F96156-21DF-3EFE-B6DA-CDDC85979043> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_featureflags.dylib
    0x7fff5532f000 -     0x7fff55374fff +libsystem_m.dylib (3186.40.3) <201B462F-D179-3E66-9370-A30F843891C7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_m.dylib
    0x7fff55375000 -     0x7fff5537dfff +libunwind.dylib (200.10) <F9A8A037-17D1-36C9-BA57-C90AE9426734> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libunwind.dylib
    0x7fff55607000 -     0x7fff55670fff  com.apple.private.NanoRegistry (1.0 - 1) <438902B5-32DC-3C55-B488-DD7CE5A8B0FE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
    0x7fff55671000 -     0x7fff5567ffff  com.apple.NanoPreferencesSync (1.0 - 1) <A8395E9D-964E-3134-95DF-969774010006> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
    0x7fff55f37000 -     0x7fff55f76fff  com.apple.CryptoTokenKit (1.0 - 1) <BCC82566-94C0-3A97-81A9-644F4E5B162C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
    0x7fff562ae000 -     0x7fff56f67fff +libLLVMContainer.dylib (602.2.48.3) <33F5FC13-FB7F-31DF-8926-E14FF67BA284> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libLLVMContainer.dylib
    0x7fff57bec000 -     0x7fff57bfdfff  com.apple.UniformTypeIdentifiers (632 - 632) <FFCB938F-6844-3BFD-96A0-15CA7403ACB3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
    0x7fff5904f000 -     0x7fff5910dfff  com.apple.AVFCapture (1.0 - 80.20.5) <E6876978-B21D-3144-9749-43DE8D5E8BD5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture
    0x7fff5910e000 -     0x7fff592acfff  com.apple.AVFCore (1.0 - 2005.2) <26A672E0-425A-381A-91A6-3E36C5AE337C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
    0x7fff594b5000 -     0x7fff594d7fff  com.apple.AppSSO (1.0 - 1) <66A4BA2D-DBB2-3907-A281-2B201A1E92A8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSSO.framework/AppSSO
    0x7fff59571000 -     0x7fff5957bfff  com.apple.AppStoreOverlays (1.0 - 1) <859BA666-4583-349B-A5AA-F8F1BC8F03D1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppStoreOverlays.framework/AppStoreOverlays
    0x7fff59588000 -     0x7fff5959efff  com.apple.audio.AudioSession (1.0 - 76.7) <6118F55C-602C-3FBD-A401-A7E91B614084> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
    0x7fff595c1000 -     0x7fff595f0fff  com.apple.BannerKit (1.0 - 1) <072ED51C-1D1D-3B4D-91B2-F33AA477D9EC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BannerKit.framework/BannerKit
    0x7fff59601000 -     0x7fff59603fff  com.apple.biome.BiomeFoundation (1.0 - 28.3.1) <3ACFD163-82E6-37B6-94D9-B5F3A408677D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation
    0x7fff59604000 -     0x7fff5961cfff  com.apple.biome.BiomePubSub (1.0 - 28.3.1) <61A05A20-0530-33D5-B42D-F1D330D260E6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub
    0x7fff5961d000 -     0x7fff5962cfff  com.apple.biome.BiomeStorage (1.0 - 28.3.1) <A7BF2AC0-7C92-3889-BAC6-035083EC953D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage
    0x7fff5962d000 -     0x7fff59650fff  com.apple.biome.BiomeStreams (1.0 - 28.3.1) <768C9474-479E-3833-8914-ECABFF6A0DEC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams
    0x7fff5967b000 -     0x7fff596b8fff  com.apple.CMCapture (1.0 - 80.20.5) <1916CD27-C9D1-384A-B087-6D1A507D6185> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CMCapture.framework/CMCapture
    0x7fff596b9000 -     0x7fff596c3fff  com.apple.CMCaptureCore (1.0 - 80.20.5) <A8BA32F7-8640-3089-B24F-F22C9DF0EFC3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore
    0x7fff596dc000 -     0x7fff5975cfff  com.apple.CVNLP (1.0 - 119) <188DFD75-62E9-32DD-A9CF-932E9EB6D28D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CVNLP.framework/CVNLP
    0x7fff59a0b000 -     0x7fff59a14fff  com.apple.contextkit.ContextKitExtraction (1.0 - 1) <7A045A82-6DB5-321F-83BA-0AC8952C8661> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction
    0x7fff59a15000 -     0x7fff59a55fff  com.apple.CoreAutoLayout (1.0 - 20) <26AF5433-3752-31F5-A5D9-7CD3559152D3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout
    0x7fff59d6c000 -     0x7fff59d73fff  com.apple.ExtensionFoundation (19.5 - 19.5) <AEC86A01-44F0-3806-85CF-2ED17F7EF8C6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation
    0x7fff59d74000 -     0x7fff59d8dfff  com.apple.ExtensionKit (19.5 - 19.5) <3BF8CAD9-371C-3CB4-A99B-9B2E52B414F2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit
    0x7fff59d99000 -     0x7fff59da3fff  com.apple.skp.FeedbackLogger (1.0 - 1) <BB5ABA10-58A0-3E91-B05B-A8941B18A5B5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger
    0x7fff5a05b000 -     0x7fff5a061fff  com.apple.InAppMessagesCore (1.0 - 1) <886A3744-A43A-3C9E-99CF-D3CA854816B3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InAppMessagesCore.framework/InAppMessagesCore
    0x7fff5a4ac000 -     0x7fff5a4c4fff  com.apple.security.octagontrust (1.0 - 1) <CDFB7272-3CE0-349B-9667-4F6FA891FF56> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust
    0x7fff5adb8000 -     0x7fff5adc2fff  com.apple.PointerUIServices (1.0 - 1) <868C771C-9C22-3F50-8342-F41BD42D9A77> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
    0x7fff5b32a000 -     0x7fff5b3defff  com.apple.Safari.Shared.UI (610 - 610.4.3.0.1) <6034F808-596E-3200-97B4-0AB4034348DB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI
    0x7fff5c4c0000 -     0x7fff5c4cefff  com.apple.CoreSimulator.SimFramebufferClient (732.8 - 732.8) <9FE47B6B-BF66-3685-953F-3CDD392E22E8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SimFramebufferClient.framework/SimFramebufferClient
    0x7fff5c4cf000 -     0x7fff5c4d2fff  com.apple.iphonesimulator.SimulatorClient (1.0 - 1) <60595621-07AC-3F56-A758-62FD64B507EF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SimulatorClient.framework/SimulatorClient
    0x7fff5d4aa000 -     0x7fff5d4aafff  com.apple.SoftLinking (1.0 - 1) <BA6792E5-0125-3433-8624-313265CF9A96> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking
    0x7fff5d4b2000 -     0x7fff5d545fff  com.apple.SpeakerRecognition (1.0 - 3002.1) <9097E24D-AE0C-32EA-AEC3-27F1463F806D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SpeakerRecognition.framework/SpeakerRecognition
    0x7fff5d546000 -     0x7fff5d553fff  com.apple.metadata.SpotlightLinguistics (1.0 - 1) <2B1E0141-3BFE-3DF5-BFCB-A74BAD27CBC0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SpotlightLinguistics.framework/SpotlightLinguistics
    0x7fff5dd85000 -     0x7fff5dee8fff  com.apple.Translation (1.0 - 128.4.1) <8A79EA21-129C-320F-9A48-97EC25A1C0F9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Translation.framework/Translation
    0x7fff5e696000 -     0x7fff5e6c8fff  com.apple.VirtualGarage (1.0 - 1) <7A21E61E-0B12-30D1-AC59-BBDA0F146E29> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/VirtualGarage.framework/VirtualGarage
    0x7fff6102a000 -     0x7fff61042fff +libexpat.1.dylib (26) <EEA98C10-410F-3A91-B16F-D3684D5C82C2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libexpat.1.dylib
    0x7fff61127000 -     0x7fff61129fff +libsystem_collections.dylib (1439.40.11) <C19FECDC-EA07-3BC0-912C-DEBBA9F8B321> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_collections.dylib
    0x7fff6112a000 -     0x7fff61158fff +libsystem_kernel.dylib (7195.81.3) <AB413518-ECDE-3F04-A61C-278D3CF43076> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_kernel.dylib
    0x7fff61159000 -     0x7fff61162fff +libsystem_platform.dylib (254.80.2) <1C3E1A0A-92A8-3CDE-B622-8940B43A5DF2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_platform.dylib
    0x7fff61163000 -     0x7fff61163fff +libsystem_product_info_filter.dylib (8.40.1) <A092A50A-C368-3A55-9C39-1FFADC2EC95E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_product_info_filter.dylib
    0x7fff61164000 -     0x7fff6116ffff +libsystem_pthread.dylib (454.80.2) <B989DF6C-ADFE-3AF9-9C91-07D2521F9E47> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_pthread.dylib
    0x7fff61170000 -     0x7fff61171fff +libsystem_sim_kernel.dylib (227.40.3) <141DB3FA-199E-3751-814B-8F7BFAD32563> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_kernel.dylib
    0x7fff61172000 -     0x7fff61172fff +libsystem_sim_kernel_host.dylib (227.40.3) <B40F4E9A-9B20-3A29-B6A8-D69BF31AC86B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_kernel_host.dylib
    0x7fff61173000 -     0x7fff61175fff +libsystem_sim_platform.dylib (227.40.3) <E02A5656-7970-374D-87D4-37CC78A54F30> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_platform.dylib
    0x7fff61176000 -     0x7fff61176fff +libsystem_sim_platform_host.dylib (227.40.3) <72721056-049E-3A30-9FBB-50506E08BA67> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_platform_host.dylib
    0x7fff61177000 -     0x7fff61177fff +libsystem_sim_pthread.dylib (227.40.3) <2F45AEAD-2B07-397A-8D12-E4CE7A52F25C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_pthread.dylib
    0x7fff61178000 -     0x7fff61178fff +libsystem_sim_pthread_host.dylib (227.40.3) <DA48DADE-C86C-39C0-AF2C-A96CD1D404A9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_pthread_host.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 120461
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=855.8M resident=0K(0%) swapped_out_or_unallocated=855.8M(100%)
Writable regions: Total=622.5M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=622.5M(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               256K        2 
Activity Tracing                   256K        1 
CG raster data                    1760K        6 
CoreAnimation                      312K        5 
Foundation                          16K        1 
Image IO                           208K        4 
Kernel Alloc Once                    8K        1 
MALLOC                           223.9M       60 
MALLOC guard page                   48K       11 
MALLOC_NANO (reserved)           384.0M        1         reserved VM address space (unallocated)
SQLite page cache                  192K        3 
STACK GUARD                       56.0M       10 
Stack                             12.6M       10 
VM_ALLOCATE                        228K        4 
__DATA                            15.6M      473 
__DATA_CONST                      43.6M      471 
__DATA_DIRTY                        17K        5 
__FONT_DATA                          4K        1 
__LINKEDIT                       417.3M        7 
__OBJC_RO                         54.3M        1 
__OBJC_RW                         2624K        1 
__TEXT                           438.5M      480 
__UNICODE                          588K        1 
libnetwork                         640K       16 
mapped file                      225.6M       11 
shared memory                       16K        1 
===========                     =======  ======= 
TOTAL                              1.8G     1587 
TOTAL, minus reserved VM space     1.5G     1587 

Model: MacBookPro14,3, BootROM 429.80.1.0.0, 4 processors, Quad-Core Intel Core i7, 2.8 GHz, 16 GB, SMC 2.45f5
Graphics: kHW_AMDRadeonPro555Item, Radeon Pro 555, spdisplays_pcie_device, 2 GB
Graphics: kHW_IntelHDGraphics630Item, Intel HD Graphics 630, spdisplays_builtin

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.