Issue related to gstreamer Library

Appledev Neotech appdev at neotechindia.com
Wed Dec 27 09:01:38 UTC 2017


Hi Team ,
I have integrated GStreamer library 1.12.2 version in my ios application
that supports audio and video streaming through raspberry pi device .
Functionality that has been implemeted is as follows:
1. Video streaming has to run all time in my application once the
application is launched and on main screen.
2. There are one button one  for receiving audio along with video streaming
that shoud run seamlessly
 For which i created two  pipelines one for video and one for audio from
raspberry pi device to my ios application.

I have facing a crash as Attempted to dereference garbage pointer when
toggling audio i.e play and pause audio or keeping my app still for couple
of minutes it gets a crash .

I am attaching some code which i used to create pipeline for video and
audio.

/* for video and audio du to app */

-(void) app_function

{

    GstBus *bus;

    GSource *bus_source;

    GError *error = NULL;



    GstBus *bus1;

    GSource *bus_source1;



    GST_DEBUG ("Creating pipeline");



    /* Create our own GLib Main Context and make it the default one */

    context = g_main_context_new ();

    g_main_context_push_thread_default(context);



    // du to app recieve working fine

    audiopipeline = gst_parse_launch("udpsrc port=5001 caps=\"audio/x-raw,
rate = 8000, format=S16LE, channels=2\"  !audioconvert ! audioresample !
autoaudiosink sync=false", &error);

    if (error) {

        gchar *message = g_strdup_printf("Unable to build audio pipeline:
%s", error->message);

        g_clear_error (&error);

        [self setUIMessage:message];

        g_free (message);

        return;

    }

    error = NULL;

    // Runing  video pipeline

    pipeline =  gst_parse_launch("udpsrc port=5000 ! application/x-rtp,
payload=96 ! rtph264depay ! avdec_h264 ! autovideosink sync=false
text-overlay=false", &error);

    if (error) {

        gchar *message = g_strdup_printf("Unable to build video pipeline:
%s", error->message);

        g_clear_error (&error);

        [self setUIMessage:message];

        g_free (message);

        return;

    }



    /**************** for video  *****************/

    /* Set the pipeline to READY, so it can already accept a window handle
*/

    gst_element_set_state(pipeline, GST_STATE_READY);



    video_sink = gst_bin_get_by_interface(GST_BIN(pipeline),
GST_TYPE_VIDEO_OVERLAY);

    if (!video_sink) {

        GST_ERROR ("Could not retrieve video sink");

        return;

    }

    gst_video_overlay_set_window_handle(GST_VIDEO_OVERLAY(video_sink), (
guintptr) (id) ui_video_view);



    /* Instruct the bus to emit signals for each received message, and
connect to the interesting signals */

    bus = gst_element_get_bus (pipeline);

    bus_source = gst_bus_create_watch (bus);

    g_source_set_callback (bus_source, (GSourceFunc)
gst_bus_async_signal_func, NULL, NULL);

    g_source_attach (bus_source, context);

    g_source_unref (bus_source);

    g_signal_connect (G_OBJECT (bus), "message::error", (GCallback)error_cb,
(__bridge void *)self);

    g_signal_connect (G_OBJECT (bus), "message::state-changed", (GCallback)
state_changed_cb, (__bridge void *)self);

    gst_object_unref (bus);





    // for audio

    /**************** for audio **************/

    bus1 = gst_element_get_bus (audiopipeline);

    bus_source1 = gst_bus_create_watch (bus1);

    g_source_set_callback (bus_source1, (GSourceFunc)
gst_bus_async_signal_func, NULL, NULL);

    g_source_attach (bus_source1, context);

    g_source_unref (bus_source1);

    g_signal_connect (G_OBJECT (bus1), "message::error", (GCallback)
error_cb_audio, (__bridge void *)self);

    g_signal_connect (G_OBJECT (bus1), "message::state-changed", (GCallback)
state_changed_cb_audio, (__bridge void *)self);

    gst_object_unref (bus1);


    /* Create a GLib Main Loop and set it to run */

    GST_DEBUG ("Entering main loop...");

    main_loop = g_main_loop_new (context, FALSE);

    [self check_initialization_complete];

    g_main_loop_run (main_loop);

    GST_DEBUG ("Exited main loop");

    g_main_loop_unref (main_loop);

    main_loop = NULL;




    /* Free resources */

    g_main_context_pop_thread_default(context);

    g_main_context_unref (context);

    gst_element_set_state (pipeline, GST_STATE_NULL);

    gst_object_unref (pipeline);



    gst_element_set_state (audiopipeline, GST_STATE_NULL);

    gst_object_unref (audiopipeline);



    return;

}


/* Retrieve errors from the bus and show them on the UI */

static void error_cb (GstBus *bus, GstMessage *msg, GStreamerBackend *self)

{

    GError *err;

    gchar *debug_info;

    gchar *message_string;


    gst_message_parse_error (msg, &err, &debug_info);

    message_string = g_strdup_printf ("Error received from element %s: %s",
GST_OBJECT_NAME (msg->src), err->message);

    g_clear_error (&err);

    g_free (debug_info);

    [self setUIMessage:message_string];

    g_free (message_string);

    gst_element_set_state (self->pipeline, GST_STATE_NULL);

}


/* Notify UI about pipeline state changes */

static void state_changed_cb (GstBus *bus, GstMessage *msg, GStreamerBackend
*self)

{

    GstState old_state, new_state, pending_state;

    gst_message_parse_state_changed (msg, &old_state, &new_state,
&pending_state);

    /* Only pay attention to messages coming from the pipeline, not its
children */

    if (GST_MESSAGE_SRC (msg) == GST_OBJECT (self->pipeline)) {

        gchar *message = g_strdup_printf("State changed to %s",
gst_element_state_get_name(new_state));

        [self setUIMessage:message];

        g_free (message);

    }

}


/* Check if all conditions are met to report GStreamer as initialized.

 * These conditions will change depending on the application */

-(void) check_initialization_complete

{

    if (!initialized && main_loop) {

        GST_DEBUG ("Initialization complete, notifying application.");

        if (ui_delegate && [ui_delegate respondsToSelector:@selector
(gstreamerInitialized)])

        {

            [ui_delegate gstreamerInitialized];

        }

        initialized = TRUE;

    }

}



#pragma mark  - For audio -


/* Check if all conditions are met to report GStreamer as initialized.

 * These conditions will change depending on the application */

-(void) check_initialization_complete_audio

{

    if (!audioinitialized && main_loop1) {

        GST_DEBUG ("Initialization complete, notifying application.");

        if (ui_delegate && [ui_delegate respondsToSelector:@selector
(gstreamerInitialized)])

        {

            [ui_delegate gstreamerInitialized];

        }

        audioinitialized = TRUE;

    }

}



-(void) playaudio {

    if(gst_element_set_state(audiopipeline, GST_STATE_PLAYING) ==
GST_STATE_CHANGE_FAILURE) {

        [self setUIMessage:"Failed to set audio pipeline to playing"];

    }

}



-(void) pauseaudio {



    if(gst_element_set_state(audiopipeline, GST_STATE_PAUSED) ==
GST_STATE_CHANGE_FAILURE) {

        [self setUIMessage:"Failed to set audio pipeline to paused"];

    }

}


/* Retrieve errors from the bus and show them on the UI */

static void error_cb_audio (GstBus *bus, GstMessage *msg, GStreamerBackend *
self)

{

    GError *err;

    gchar *debug_info;

    gchar *message_string;



    gst_message_parse_error (msg, &err, &debug_info);

    message_string = g_strdup_printf ("Error received from element %s: %s",
GST_OBJECT_NAME (msg->src), err->message);

    g_clear_error (&err);

    g_free (debug_info);

    [self setUIMessage:message_string];

    g_free (message_string);

    gst_element_set_state (self->audiopipeline, GST_STATE_NULL);

}


/* Notify UI about pipeline state changes */

static void state_changed_cb_audio (GstBus *bus, GstMessage *msg,
GStreamerBackend *self)

{

    GstState old_state, new_state, pending_state;

    gst_message_parse_state_changed (msg, &old_state, &new_state,
&pending_state);

    /* Only pay attention to messages coming from the pipeline, not its
children */

    if (GST_MESSAGE_SRC (msg) == GST_OBJECT (self->audiopipeline)) {

        gchar *message = g_strdup_printf("State changed to %s",
gst_element_state_get_name(new_state));

        [self setUIMessage:message];

        g_free (message);

    }

}








Also , I am attaching crash files. Kindly help  me to get me out of this
issue.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/gstreamer-devel/attachments/20171227/0b900191/attachment-0001.html>
-------------- next part --------------
Incident Identifier: 66E56AB0-48B7-43DA-AC1B-262BF9A19DD2
CrashReporter Key:   ed2856d8019e3cc7aae1b9a5b4632ebf9ae2ce0b
Hardware Model:      iPhone7,2
Process:         Homesmart [13071]
Path:            /var/containers/Bundle/Application/88293485-43DA-4FCE-A610-85F6F45E2418/Homesmart.app/Homesmart
Identifier:      com.neotechindia.homesmart
Version:         1.2.1 (4)
Code Type:       ARM-64
Parent Process:  ? [1]

Date/Time:       2017-12-27 11:23:29.000 +0530
OS Version:      iOS 10.2 (14C92)
Report Version:  104

Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: 0x00000000 at 0x0000000000000040
Crashed Thread:  12

Thread 0:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   GraphicsServices                0x00000001952ce198 0x1952c2000 + 49560 (GSEventRunModal + 180)
6   UIKit                           0x00000001998617fc 0x1997e7000 + 501756 (<redacted> + 684)
7   UIKit                           0x000000019985c534 0x1997e7000 + 480564 (UIApplicationMain + 208)
8   Homesmart                       0x0000000100315398 0x10001c000 + 3117976 (main + 576)
9   libdyld.dylib                   0x00000001927fd5b8 0x1927f9000 + 17848 (<redacted> + 4)

Thread 1:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   AVFAudio                        0x00000001ad4afd24 0x1ad43a000 + 482596 (<redacted> + 164)
6   AVFAudio                        0x00000001ad4d5d9c 0x1ad43a000 + 638364 (<redacted> + 84)
7   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
8   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 2:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   Foundation                      0x000000019435726c 0x19434b000 + 49772 (<redacted> + 304)
6   Foundation                      0x0000000194377dd0 0x19434b000 + 183760 (<redacted> + 96)
7   UIKit                           0x000000019a1d5c38 0x1997e7000 + 10415160 (<redacted> + 136)
8   Foundation                      0x0000000194454e68 0x19434b000 + 1089128 (<redacted> + 1024)
9   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
10  libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 3:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   libsystem_kernel.dylib          0x00000001928f52a8 0x1928f0000 + 21160 (thread_suspend + 76)
3   Homesmart                       0x000000010021b370 0x10001c000 + 2093936 (ksmachexc_i_handleExceptions + 172)
4   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
5   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 4:

Thread 5:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   CoreFoundation                  0x0000000193867b44 0x193811000 + 355140 (CFRunLoopRun + 112)
6   CoreMotion                      0x000000019a6dd120 0x19a66f000 + 450848 (CLStartStopAdvertisingBeacon + 203196)
7   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
8   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 6:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   CFNetwork                       0x000000019401f8f0 0x193f40000 + 915696 (<redacted> + 336)
6   Foundation                      0x0000000194454e68 0x19434b000 + 1089128 (<redacted> + 1024)
7   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
8   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 7:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   Foundation                      0x000000019435726c 0x19434b000 + 49772 (<redacted> + 304)
6   Homesmart                       0x000000010008acd8 0x10001c000 + 453848 (+[GCDAsyncSocket cfstreamThread] + 548)
7   Foundation                      0x0000000194454e68 0x19434b000 + 1089128 (<redacted> + 1024)
8   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
9   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 8:
0   libsystem_kernel.dylib          0x000000019290f23c 0x1928f0000 + 127548 (select$DARWIN_EXTSN + 8)
1   CoreFoundation                  0x00000001938f5468 0x193811000 + 935016 (<redacted> + 640)
2   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
3   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 9:
0   libsystem_kernel.dylib          0x00000001928f56e4 0x1928f0000 + 22244 (poll + 8)
1   Homesmart                       0x0000000100f2a210 0x10001c000 + 15786512 (g_main_context_iterate + 344)
2   Homesmart                       0x0000000100f2a560 0x10001c000 + 15787360 (g_main_loop_run + 244)
3   Homesmart                       0x00000001001e7418 0x10001c000 + 1881112 (-[GStreamerBackend app_function] + 1524)
4   Homesmart                       0x00000001001e6d9c 0x10001c000 + 1879452 (__35-[GStreamerBackend init:videoView:]_block_invoke + 48)
5   libdispatch.dylib               0x00000001927ca1fc 0x1927c9000 + 4604 (<redacted> + 24)
6   libdispatch.dylib               0x00000001927ca1bc 0x1927c9000 + 4540 (<redacted> + 16)
7   libdispatch.dylib               0x00000001927d8a4c 0x1927c9000 + 64076 (<redacted> + 732)
8   libdispatch.dylib               0x00000001927da34c 0x1927c9000 + 70476 (<redacted> + 572)
9   libdispatch.dylib               0x00000001927da0ac 0x1927c9000 + 69804 (<redacted> + 124)
10  libsystem_pthread.dylib         0x00000001929d32a0 0x1929d2000 + 4768 (_pthread_wqthread + 1288)

Thread 10:
0   libsystem_kernel.dylib          0x00000001928f56e4 0x1928f0000 + 22244 (poll + 8)
1   Homesmart                       0x0000000100f2a210 0x10001c000 + 15786512 (g_main_context_iterate + 344)
2   Homesmart                       0x0000000100f2a560 0x10001c000 + 15787360 (g_main_loop_run + 244)
3   Homesmart                       0x000000010111e378 0x10001c000 + 17834872 (_event_thread_main + 88)
4   Homesmart                       0x0000000100f141c4 0x10001c000 + 15696324 (g_thread_proxy + 92)
5   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
6   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 11:
0   libsystem_kernel.dylib          0x00000001928f56e4 0x1928f0000 + 22244 (poll + 8)
1   Homesmart                       0x0000000100f2a210 0x10001c000 + 15786512 (g_main_context_iterate + 344)
2   Homesmart                       0x0000000100f2a560 0x10001c000 + 15787360 (g_main_loop_run + 244)
3   Homesmart                       0x0000000101117690 0x10001c000 + 17806992 (gst_gl_window_default_run + 32)
4   Homesmart                       0x0000000101112a94 0x10001c000 + 17787540 (gst_gl_context_create_thread + 516)
5   Homesmart                       0x0000000100f141c4 0x10001c000 + 15696324 (g_thread_proxy + 92)
6   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
7   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 12 Crashed:
0   Homesmart                       0x000000010118d120 0x10001c000 + 18288928 (_gst_buffer_free + 60)
1   Homesmart                       0x00000001011de2c4 0x10001c000 + 18621124 (gst_rtp_base_depayload_handle_buffer + 756)
2   Homesmart                       0x00000001011de2c4 0x10001c000 + 18621124 (gst_rtp_base_depayload_handle_buffer + 756)
3   Homesmart                       0x000000010115fa40 0x10001c000 + 18102848 (gst_pad_chain_data_unchecked + 168)
4   Homesmart                       0x0000000101160444 0x10001c000 + 18105412 (gst_pad_push_data + 184)
5   Homesmart                       0x0000000101160280 0x10001c000 + 18104960 (gst_pad_push + 288)
6   Homesmart                       0x00000001010eb270 0x10001c000 + 17625712 (gst_base_transform_chain + 476)
7   Homesmart                       0x000000010115fa40 0x10001c000 + 18102848 (gst_pad_chain_data_unchecked + 168)
8   Homesmart                       0x0000000101160444 0x10001c000 + 18105412 (gst_pad_push_data + 184)
9   Homesmart                       0x0000000101160280 0x10001c000 + 18104960 (gst_pad_push + 288)
10  Homesmart                       0x000000010110751c 0x10001c000 + 17741084 (gst_base_src_loop + 1672)
11  Homesmart                       0x00000001011793b8 0x10001c000 + 18207672 (gst_task_func + 252)
12  Homesmart                       0x0000000100f101a8 0x10001c000 + 15679912 (g_thread_pool_thread_proxy + 224)
13  Homesmart                       0x0000000100f141c4 0x10001c000 + 15696324 (g_thread_proxy + 92)
14  libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
15  libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 13:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   AudioToolbox                    0x00000001968e80cc 0x19672b000 + 1822924 (<redacted> + 164)
6   AudioToolbox                    0x0000000196ac0230 0x19672b000 + 3756592 (<redacted> + 84)
7   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
8   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 14:
0   Homesmart                       0x0000000101179db0 0x10001c000 + 18210224 (gst_segment_to_stream_time + 40)
1   Homesmart                       0x0000000101100994 0x10001c000 + 17713556 (gst_base_sink_get_sync_times + 4280)
2   Homesmart                       0x0000000101100994 0x10001c000 + 17713556 (gst_base_sink_get_sync_times + 4280)
3   Homesmart                       0x0000000101101868 0x10001c000 + 17717352 (gst_base_sink_do_sync + 2384)
4   Homesmart                       0x00000001010feef8 0x10001c000 + 17706744 (gst_base_sink_chain_unlocked + 2752)
5   Homesmart                       0x0000000101101fcc 0x10001c000 + 17719244 (gst_base_sink_chain_main + 76)
6   Homesmart                       0x000000010115fa40 0x10001c000 + 18102848 (gst_pad_chain_data_unchecked + 168)
7   Homesmart                       0x0000000101160444 0x10001c000 + 18105412 (gst_pad_push_data + 184)
8   Homesmart                       0x0000000101160280 0x10001c000 + 18104960 (gst_pad_push + 288)
9   Homesmart                       0x000000010119c54c 0x10001c000 + 18351436 (gst_proxy_pad_chain_default + 124)
10  Homesmart                       0x000000010115fa40 0x10001c000 + 18102848 (gst_pad_chain_data_unchecked + 168)
11  Homesmart                       0x0000000101160444 0x10001c000 + 18105412 (gst_pad_push_data + 184)
12  Homesmart                       0x0000000101160280 0x10001c000 + 18104960 (gst_pad_push + 288)
13  Homesmart                       0x00000001010eb270 0x10001c000 + 17625712 (gst_base_transform_chain + 476)
14  Homesmart                       0x000000010115fa40 0x10001c000 + 18102848 (gst_pad_chain_data_unchecked + 168)
15  Homesmart                       0x0000000101160444 0x10001c000 + 18105412 (gst_pad_push_data + 184)
16  Homesmart                       0x0000000101160280 0x10001c000 + 18104960 (gst_pad_push + 288)
17  Homesmart                       0x00000001010eb270 0x10001c000 + 17625712 (gst_base_transform_chain + 476)
18  Homesmart                       0x000000010115fa40 0x10001c000 + 18102848 (gst_pad_chain_data_unchecked + 168)
19  Homesmart                       0x0000000101160444 0x10001c000 + 18105412 (gst_pad_push_data + 184)
20  Homesmart                       0x0000000101160280 0x10001c000 + 18104960 (gst_pad_push + 288)
21  Homesmart                       0x000000010110751c 0x10001c000 + 17741084 (gst_base_src_loop + 1672)
22  Homesmart                       0x00000001011793b8 0x10001c000 + 18207672 (gst_task_func + 252)
23  Homesmart                       0x0000000100f101a8 0x10001c000 + 15679912 (g_thread_pool_thread_proxy + 224)
24  Homesmart                       0x0000000100f141c4 0x10001c000 + 15696324 (g_thread_proxy + 92)
25  libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
26  libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 15:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   AudioToolbox                    0x00000001967d16fc 0x19672b000 + 681724 (<redacted> + 288)
3   AudioToolbox                    0x00000001967d5a18 0x19672b000 + 698904 (<redacted> + 40)
4   AudioToolbox                    0x0000000196ac0230 0x19672b000 + 3756592 (<redacted> + 84)
5   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
6   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 16:
0   libsystem_kernel.dylib          0x000000019290ee1c 0x1928f0000 + 126492 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x00000001929d49c0 0x1929d2000 + 10688 (<redacted> + 640)
2   Homesmart                       0x00000001008be81c 0x10001c000 + 9054236 (worker + 152)
3   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 17:
0   libsystem_kernel.dylib          0x000000019290ee1c 0x1928f0000 + 126492 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x00000001929d49c0 0x1929d2000 + 10688 (<redacted> + 640)
2   Homesmart                       0x00000001008be81c 0x10001c000 + 9054236 (worker + 152)
3   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 18:
0   libsystem_kernel.dylib          0x000000019290fa88 0x1928f0000 + 129672 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x00000001929d3160 0x1929d2000 + 4448 (_pthread_wqthread + 968)

Thread 19:
0   libsystem_kernel.dylib          0x000000019290fa88 0x1928f0000 + 129672 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x00000001929d3160 0x1929d2000 + 4448 (_pthread_wqthread + 968)

Thread 20:
0   libsystem_kernel.dylib          0x000000019290fa88 0x1928f0000 + 129672 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x00000001929d3160 0x1929d2000 + 4448 (_pthread_wqthread + 968)

Thread 21:

Thread 22:

Thread 23:

Thread 12 crashed with ARM-64 Thread State:
  cpsr: 0x0000000080000000     fp: 0x000000016ecd2650     lr: 0x00000001011de2c4     pc: 0x000000010118d120 
    sp: 0x000000016ecd2620     x0: 0x0000000108a19210     x1: 0x000000010118d0e4    x10: 0x0000000000000000 
   x11: 0x0000000000000000    x12: 0x002b5000002b5000    x13: 0x00000000002b5000    x14: 0x000abc00000abc00 
   x15: 0x0000000000000000    x16: 0x00000001929d34e0    x17: 0x000000000000003c    x18: 0x0000000000000000 
   x19: 0x0000000108a19210     x2: 0x0000000000000000    x20: 0x000000010638f2d0    x21: 0x0000000000000020 
   x22: 0x00000000a7ae3154    x23: 0x00000000000019e5    x24: 0x0000000000004000    x25: 0x0000000000000000 
   x26: 0x00000001027beca4    x27: 0x00000001067e4010    x28: 0x0000000000000000    x29: 0x000000016ecd2650 
    x3: 0x00000001016b2ceb     x4: 0x0000000000001071     x5: 0x00000001067b94c0     x6: 0x00000001016b2d64 
    x7: 0x000000016ecd24d0     x8: 0x0000000000000005     x9: 0x0000000000000000 

Binary Images:
       0x10001c000 -        0x101fcffff +Homesmart arm64  <7e18ebc76c733dd2b55e04120c556766> /var/containers/Bundle/Application/88293485-43DA-4FCE-A610-85F6F45E2418/Homesmart.app/Homesmart
       0x1922f4000 -        0x1922f5fff  libSystem.B.dylib arm64  <6c1de96c8fe5363cab2ef76f891c6e22> /usr/lib/libSystem.B.dylib
       0x1922f6000 -        0x19234bfff  libc++.1.dylib arm64  <b2db8b1d09283b7bafe1b2933adc5dfd> /usr/lib/libc++.1.dylib
       0x19234c000 -        0x19236cfff  libc++abi.dylib arm64  <e3419bbaface31b5970c6c8d430be26d> /usr/lib/libc++abi.dylib
       0x192370000 -        0x192749fff  libobjc.A.dylib arm64  <538f809dcd7c35ceb59d99802248f045> /usr/lib/libobjc.A.dylib
       0x19274a000 -        0x19274efff  libcache.dylib arm64  <f09cab6893c631218f817e61b3d77fcb> /usr/lib/system/libcache.dylib
       0x19274f000 -        0x19275afff  libcommonCrypto.dylib arm64  <e071643355cd3f67bae19045c7f9f340> /usr/lib/system/libcommonCrypto.dylib
       0x19275b000 -        0x19275efff  libcompiler_rt.dylib arm64  <8209cb28df5d3b48894899019fcbb344> /usr/lib/system/libcompiler_rt.dylib
       0x19275f000 -        0x192766fff  libcopyfile.dylib arm64  <567f33ef4d8f3e48a5afac933ccd389f> /usr/lib/system/libcopyfile.dylib
       0x192767000 -        0x1927c8fff  libcorecrypto.dylib arm64  <056a6c201d3d3696b59f0b264ba9b972> /usr/lib/system/libcorecrypto.dylib
       0x1927c9000 -        0x1927f8fff  libdispatch.dylib arm64  <fb1d0baf642337d1bea0af309586df97> /usr/lib/system/libdispatch.dylib
       0x1927f9000 -        0x1927fdfff  libdyld.dylib arm64  <6ebb575f616935cbbef02f2c031490d1> /usr/lib/system/libdyld.dylib
       0x1927fe000 -        0x1927fefff  liblaunch.dylib arm64  <ceb57f62c49e38d8a8d33309db668bd3> /usr/lib/system/liblaunch.dylib
       0x1927ff000 -        0x192804fff  libmacho.dylib arm64  <20627f9f062c3ee8873e3ab3bc3fda8c> /usr/lib/system/libmacho.dylib
       0x192805000 -        0x192806fff  libremovefile.dylib arm64  <43110ffd953537e28981c6dead2c0b1f> /usr/lib/system/libremovefile.dylib
       0x192807000 -        0x19281efff  libsystem_asl.dylib arm64  <e52a49b27e963d2bb90332a5b0895f8d> /usr/lib/system/libsystem_asl.dylib
       0x19281f000 -        0x19281ffff  libsystem_blocks.dylib arm64  <480fe954b3f63f16af8acfd6dc34e2da> /usr/lib/system/libsystem_blocks.dylib
       0x192820000 -        0x19289efff  libsystem_c.dylib arm64  <8a5a190d70563f3c8d4ce16cab74f599> /usr/lib/system/libsystem_c.dylib
       0x19289f000 -        0x1928a3fff  libsystem_configuration.dylib arm64  <7628c33e4c383a78b0e33cf403e6f019> /usr/lib/system/libsystem_configuration.dylib
       0x1928a4000 -        0x1928a9fff  libsystem_containermanager.dylib arm64  <9de64e7545ab359fb9cefc695aa510f0> /usr/lib/system/libsystem_containermanager.dylib
       0x1928aa000 -        0x1928abfff  libsystem_coreservices.dylib arm64  <e61211f8f4c9399595fbd921e8589a8b> /usr/lib/system/libsystem_coreservices.dylib
       0x1928ac000 -        0x1928c4fff  libsystem_coretls.dylib arm64  <14fa1ba4b14b338181c2ef87b214695e> /usr/lib/system/libsystem_coretls.dylib
       0x1928c5000 -        0x1928cbfff  libsystem_dnssd.dylib arm64  <7d745bdfb72e3119bad43c36f60a5a8a> /usr/lib/system/libsystem_dnssd.dylib
       0x1928cc000 -        0x1928effff  libsystem_info.dylib arm64  <6546bc8b4fa23df898bf2471e801d50b> /usr/lib/system/libsystem_info.dylib
       0x1928f0000 -        0x192914fff  libsystem_kernel.dylib arm64  <9ec307fcdd2f3f728f37ec6e0186df20> /usr/lib/system/libsystem_kernel.dylib
       0x192915000 -        0x192941fff  libsystem_m.dylib arm64  <ba786894a7213d37baa99aafc0ee5493> /usr/lib/system/libsystem_m.dylib
       0x192942000 -        0x19295dfff  libsystem_malloc.dylib arm64  <c57ecb4ada5c3930a580b3d07583058a> /usr/lib/system/libsystem_malloc.dylib
       0x19295e000 -        0x1929b5fff  libsystem_network.dylib arm64  <efa018a4cb4936e3b77b9194d390efc4> /usr/lib/system/libsystem_network.dylib
       0x1929b6000 -        0x1929bffff  libsystem_networkextension.dylib arm64  <34c2d9c2986f32dd996e4e439d94c9c5> /usr/lib/system/libsystem_networkextension.dylib
       0x1929c0000 -        0x1929cafff  libsystem_notify.dylib arm64  <605beaf21db73cc3ae98a65e8c11f7d0> /usr/lib/system/libsystem_notify.dylib
       0x1929cb000 -        0x1929d1fff  libsystem_platform.dylib arm64  <518e18adfdfc316e9b4d519f6e4b6a47> /usr/lib/system/libsystem_platform.dylib
       0x1929d2000 -        0x1929dbfff  libsystem_pthread.dylib arm64  <d8480fc3a35d3475b0d12553c761d8cb> /usr/lib/system/libsystem_pthread.dylib
       0x1929dc000 -        0x1929dffff  libsystem_sandbox.dylib arm64  <89419e71367637d590768d37ca10d9a3> /usr/lib/system/libsystem_sandbox.dylib
       0x1929e0000 -        0x1929e7fff  libsystem_symptoms.dylib arm64  <832499573c1730b48f6ff8e7c06fae15> /usr/lib/system/libsystem_symptoms.dylib
       0x1929e8000 -        0x192a06fff  libsystem_trace.dylib arm64  <27778d14d3cb3239a6bb52a2461cd543> /usr/lib/system/libsystem_trace.dylib
       0x192a07000 -        0x192a0cfff  libunwind.dylib arm64  <7a7545249f7d3a69a162acb73ec4f17a> /usr/lib/system/libunwind.dylib
       0x192a0d000 -        0x192a0dfff  libvminterpose.dylib arm64  <21d158555a6233b19c53df16cafb6974> /usr/lib/system/libvminterpose.dylib
       0x192a0e000 -        0x192a34fff  libxpc.dylib arm64  <8f1330e254b83bd3a973af6933b91836> /usr/lib/system/libxpc.dylib
       0x192a35000 -        0x192c4ffff  libicucore.A.dylib arm64  <35fc5fa2aab8326897081ab8416c497c> /usr/lib/libicucore.A.dylib
       0x192c50000 -        0x192c60fff  libz.1.dylib arm64  <b3ab59ff330f3225a53b4e8e95440d77> /usr/lib/libz.1.dylib
       0x193811000 -        0x193b95fff  CoreFoundation arm64  <dd9791d198ef32eea1335b8ebc9b3d55> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
       0x193b96000 -        0x193ba6fff  libbsm.0.dylib arm64  <788093e9b6b738cea7045bfec4bef1d8> /usr/lib/libbsm.0.dylib
       0x193ba7000 -        0x193ba7fff  libenergytrace.dylib arm64  <3bcefd094fa83b26807a1c6c92933cd2> /usr/lib/libenergytrace.dylib
       0x193ba8000 -        0x193c23fff  IOKit arm64  <e0a6f4f0810b3f75813eda2afebd591c> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
       0x193c24000 -        0x193c44fff  libMobileGestalt.dylib arm64  <1e9e78da74143c54bb1e50aa7e285a0f> /usr/lib/libMobileGestalt.dylib
       0x193c45000 -        0x193d2ffff  libxml2.2.dylib arm64  <b3fc55542fe33491877c661cf410b164> /usr/lib/libxml2.2.dylib
       0x193d30000 -        0x193dbefff  Security arm64  <88e5d6eb0de13ff6b7904f1b0e43a88e> /System/Library/Frameworks/Security.framework/Security
       0x193dbf000 -        0x193e29fff  SystemConfiguration arm64  <d907035d1ff936e5986035f50a77f5d3> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
       0x193e2a000 -        0x193f3ffff  libsqlite3.dylib arm64  <87863a80836a3d659e5485f5029c3ed4> /usr/lib/libsqlite3.dylib
       0x193f40000 -        0x1942d9fff  CFNetwork arm64  <d63319a4fe2738dfb695ceb729f9b972> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
       0x1942da000 -        0x1942eafff  libbz2.1.0.dylib arm64  <0d14fa7337f43079bad2a4cfc6d66b70> /usr/lib/libbz2.1.0.dylib
       0x1942eb000 -        0x194303fff  liblzma.5.dylib arm64  <b90cea0595ff3f8599d9788e1d2cb454> /usr/lib/liblzma.5.dylib
       0x194304000 -        0x19431efff  libCRFSuite.dylib arm64  <ac663b865b6b38429a40878701aa484a> /usr/lib/libCRFSuite.dylib
       0x19431f000 -        0x194348fff  libarchive.2.dylib arm64  <667b9f199ef63c89b05bf1ea9a3ffe13> /usr/lib/libarchive.2.dylib
       0x194349000 -        0x19434afff  liblangid.dylib arm64  <a74f4f8a2d533e1f926044f052cc5b7d> /usr/lib/liblangid.dylib
       0x19434b000 -        0x194619fff  Foundation arm64  <7d40355e685036cc803455e5cbf6245f> /System/Library/Frameworks/Foundation.framework/Foundation
       0x19461a000 -        0x1946c6fff  libBLAS.dylib arm64  <fa29c2ad87a73ccea2885d9182faee53> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
       0x1946c7000 -        0x194a09fff  libLAPACK.dylib arm64  <6df40b0afcbb35a48d63e2fa8ec03b1b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
       0x194a0a000 -        0x194cacfff  vImage arm64  <8b797590cf983693b4c3b6b83dc4ba29> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
       0x194cad000 -        0x194ccffff  libvMisc.dylib arm64  <5bcbb491c0a03816a7634797852c21ad> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
       0x194cd0000 -        0x194ce4fff  libLinearAlgebra.dylib arm64  <1adeb99764f63e9e8ef1225bb7a5120d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
       0x194ce5000 -        0x194cf6fff  libSparseBLAS.dylib arm64  <515a7b8f5c433b709c1f6d205b9a73d2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
       0x194cf7000 -        0x194d6ffff  libvDSP.dylib arm64  <80294f738c053c4991fa3ab4e867218e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
       0x194d70000 -        0x194d70fff  vecLib arm64  <15dc1eafe1f8377d9cab3ba5c7e488be> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
       0x194d71000 -        0x194d71fff  Accelerate arm64  <32a527bb13a63e37bf50c725b008e9d5> /System/Library/Frameworks/Accelerate.framework/Accelerate
       0x194d72000 -        0x1952c1fff  CoreGraphics arm64  <52f191594f523f41880280896948b786> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
       0x1952c2000 -        0x1952d6fff  GraphicsServices arm64  <7c0dd118a4bc37dc8fab6449abde7ff9> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
       0x1952d7000 -        0x195322fff  AppSupport arm64  <bdaad3a71677315bb126c4a73a1bcb9e> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
       0x195323000 -        0x195446fff  MobileCoreServices arm64  <e035420bfabe3f28bc6eef0a144ac1d1> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
       0x195447000 -        0x19549ffff  BaseBoard arm64  <210cb4a9a0073c7b9e0b3d437cc1aa4b> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
       0x1954a0000 -        0x1954abfff  AssertionServices arm64  <7ca242e983fd3c0f805d51fca8a4c46a> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
       0x1954ac000 -        0x1954d8fff  BackBoardServices arm64  <c333604ae8123e3cbb46fe26f233beb9> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
       0x1954dd000 -        0x19552cfff  FrontBoardServices arm64  <00b3c2ff89f53d3dba0069b6bb5a56bd> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
       0x195530000 -        0x195563fff  SpringBoardServices arm64  <d2c3d08eff3f3119a6f4eb1a0a180305> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
       0x195564000 -        0x195578fff  MobileKeyBag arm64  <a78d40cc257231978e752c5a81cd1356> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
       0x195579000 -        0x195581fff  IOSurface arm64  <9a22349e905539a0a1598af6d7fe9cc9> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
       0x195582000 -        0x19558dfff  liblockdown.dylib arm64  <ab36b2ace988302c89207cb290ff4a76> /usr/lib/liblockdown.dylib
       0x19558e000 -        0x1955a4fff  CrashReporterSupport arm64  <326017f8d07d3e7cb338dda00fa888f7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
       0x1955a5000 -        0x1955a7fff  IOSurfaceAccelerator arm64  <7b7c2b7ea506374cb3902b7408d5d4bf> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
       0x1955a8000 -        0x1955e8fff  AppleJPEG arm64  <b2fd4ef37aaf38f58311e33ea1683082> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
       0x1955e9000 -        0x195b7bfff  ImageIO arm64  <f5ddfe623d4f3a338ae75c666ea10815> /System/Library/Frameworks/ImageIO.framework/ImageIO
       0x195b7c000 -        0x195b82fff  TCC arm64  <c9f168508185369591dfcd1c1cf9b6a3> /System/Library/PrivateFrameworks/TCC.framework/TCC
       0x195b83000 -        0x195b87fff  AggregateDictionary arm64  <4be0041fb69b358cada4eeabbf22adf3> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
       0x195b88000 -        0x195b94fff  PowerLog arm64  <e5003d8e49d0390c8a67da790407e704> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
       0x195b95000 -        0x195bfdfff  libTelephonyUtilDynamic.dylib arm64  <4a1e447a97f43b91a92ee731c2a4286b> /usr/lib/libTelephonyUtilDynamic.dylib
       0x195bfe000 -        0x195c10fff  CommonUtilities arm64  <486d816afdc431aaa2ef67b229cf4e96> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
       0x195c11000 -        0x195c25fff  libcompression.dylib arm64  <c764915fa0ec384f8a1759e63235b5a9> /usr/lib/libcompression.dylib
       0x195c26000 -        0x195ec4fff  CoreData arm64  <980c0f8663a0330d8b5fb541c22e7b66> /System/Library/Frameworks/CoreData.framework/CoreData
       0x195ec5000 -        0x195ecafff  libCoreVMClient.dylib arm64  <3a28c232b17430839305f9d17745e247> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
       0x195ecb000 -        0x195ed0fff  IOAccelerator arm64  <f4d5cd421bd03a52b40c991fd1c73806> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
       0x195ed1000 -        0x195ed2fff  libCVMSPluginSupport.dylib arm64  <7110757134ea3599b3d739db2ea6f48a> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
       0x195ed3000 -        0x195ed6fff  libCoreFSCache.dylib arm64  <2147b40a3d713d53b221e8f40ca5ac7f> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
       0x195ed7000 -        0x195f1afff  libGLImage.dylib arm64  <c2e2de9ee34236558c89d7fe9bc0116c> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
       0x195f1b000 -        0x195f25fff  libGFXShared.dylib arm64  <058e54d10e9838c5bea32a75f199c2db> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
       0x195f26000 -        0x195f2efff  IOMobileFramebuffer arm64  <811101a668313da993fa3881ac7cddef> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
       0x195f2f000 -        0x195f2ffff  libmetal_timestamp.dylib arm64  <2bbf481d5e4a35aea434cd15f9d6a182> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
       0x195f30000 -        0x195f8efff  Metal arm64  <ff1261ae94e03c19964dda0546e189fd> /System/Library/Frameworks/Metal.framework/Metal
       0x195f8f000 -        0x195f99fff  OpenGLES arm64  <52e0ecb1f2c23cc4a26345d035127679> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
       0x195f9a000 -        0x195fbefff  CoreVideo arm64  <581f5f9967923c4983c1373dfa23195b> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
       0x195fbf000 -        0x195fc1fff  OAuth arm64  <23d43697c1b130ed814eaddbd9851e0d> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
       0x195fc9000 -        0x196006fff  Accounts arm64  <ba89d108cfef37ae91b70116c6d7c66d> /System/Library/Frameworks/Accounts.framework/Accounts
       0x196007000 -        0x1960f9fff  libiconv.2.dylib arm64  <c85933d9062f32ac885047aadb359e88> /usr/lib/libiconv.2.dylib
       0x1960fa000 -        0x19624afff  CoreAudio arm64  <8ff5628b7e9b36efb6b746e6ea3e9088> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
       0x19624b000 -        0x19624efff  UserFS arm64  <13d40ea4a3e032b199465cddc45c8479> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
       0x19624f000 -        0x19635dfff  CoreMedia arm64  <98e944101d7b3745ae7bc0e43a8b59cb> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
       0x19635e000 -        0x196364fff  libcupolicy.dylib arm64  <e88ddf38bf5a3f2583b7f1c9b1af4e76> /usr/lib/libcupolicy.dylib
       0x196365000 -        0x1963f2fff  CoreTelephony arm64  <c5ef9b84bce0312e96b3faed5e424110> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
       0x1963f3000 -        0x196500fff  libFontParser.dylib arm64  <2784cc1e874a395bb3ea2f7c3382c62f> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
       0x196501000 -        0x196590fff  VideoToolbox arm64  <d0baea0326d13f66ae8623f19aa1ac76> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
       0x196591000 -        0x196591fff  FontServices arm64  <a4b99cf7d62630aeb2f8c8e865a8fe34> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
       0x196592000 -        0x1966dffff  CoreText arm64  <9d73af39afa63ea68673374a3862426b> /System/Library/Frameworks/CoreText.framework/CoreText
       0x1966e0000 -        0x1966fafff  ProtocolBuffer arm64  <11c5f55b03ff32c6b25310171c1c7afe> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
       0x1966fb000 -        0x196723fff  PersistentConnection arm64  <65b64570bee63c0580880163a91c230f> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
       0x196724000 -        0x19672afff  DataMigration arm64  <5961a23a26153867b4bb8c80c19799d0> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
       0x19672b000 -        0x196b8bfff  AudioToolbox arm64  <3ea60e00d2383ae498996690ab1fdbdd> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
       0x196b8c000 -        0x196d64fff  QuartzCore arm64  <6dc61ad83fc03f799792d1cb950622f7> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
       0x196d65000 -        0x196d6bfff  Netrb arm64  <81262209ce983a5197fc2da41fc3b6a3> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
       0x196d6c000 -        0x196d7cfff  libcmph.dylib arm64  <7f719c3d948530c78be18a40b3ea59aa> /usr/lib/libcmph.dylib
       0x196d7d000 -        0x196d9dfff  libmis.dylib arm64  <cd871843480d31b8b074ac87e66cb63d> /usr/lib/libmis.dylib
       0x196d9e000 -        0x196e91fff  LanguageModeling arm64  <8483753bf96f3484b448a47883cd5ab4> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
       0x196e92000 -        0x196f79fff  ManagedConfiguration arm64  <d9e33a6cfa163270bb50a1a6e370ea95> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
       0x196f7a000 -        0x196f90fff  libmarisa.dylib arm64  <f0eea40d2c0a33a58d7cd2c9b52da4b7> /usr/lib/libmarisa.dylib
       0x196f91000 -        0x197061fff  ProofReader arm64  <1596b3e0c7c43398ac19ac08a5460868> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
       0x197062000 -        0x19706cfff  MediaAccessibility arm64  <7b482ef272bf34fcb742c2afd236b626> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
       0x19706d000 -        0x19707dfff  MobileAsset arm64  <66b4c8da5b103557b258b9bac8d37772> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
       0x19707e000 -        0x1970effff  ColorSync arm64  <d4fa34368b923aaa8679c1bb8433b9b5> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
       0x1970f0000 -        0x197160fff  MetalPerformanceShaders arm64  <251f089c067b30d4922d67dc463d2300> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
       0x197161000 -        0x197590fff  FaceCore arm64  <04c8c7b7a36d3d98a96817f4365b3439> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
       0x197591000 -        0x19760cfff  Quagga arm64  <068db048c7e03054b73e3691592d1287> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
       0x19760d000 -        0x1977d7fff  CoreImage arm64  <8c3df52ae00634d0ac530ceea391edac> /System/Library/Frameworks/CoreImage.framework/CoreImage
       0x1977d8000 -        0x197824fff  TextInput arm64  <25840bba5f6e347290d6f9e13dc2adf7> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
       0x197825000 -        0x197835fff  libAccessibility.dylib arm64  <f9f8b21c43c33c20a44455087fb58d36> /usr/lib/libAccessibility.dylib
       0x197845000 -        0x19819bfff  JavaScriptCore arm64  <8f81ebee9a4c3d42903b89e5e73a54a7> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
       0x19819c000 -        0x1983b9fff  StoreServices arm64  <2f9d7cd0f84d33f3bce6134c7acb25c5> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
       0x1983ba000 -        0x1994adfff  WebCore arm64  <ef6c9957757b3733a0e5d447fe4455aa> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
       0x1994ae000 -        0x1994d7fff  libxslt.1.dylib arm64  <28d75f17d5b03dfd8717fea9677e1720> /usr/lib/libxslt.1.dylib
       0x1994d8000 -        0x1995bdfff  WebKitLegacy arm64  <2c47baeea50b32f6bab25105cfc7df1f> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
       0x1995be000 -        0x199686fff  CoreUI arm64  <c5f28ba5feee3fa68d7d42174e006ad5> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
       0x199687000 -        0x1996aefff  DictionaryServices arm64  <95116730515a356b990751cd0513b912> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
       0x1996af000 -        0x1996b0fff  HangTracer arm64  <d433b5e6e9d93fbeb761be625f893433> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
       0x1996b1000 -        0x199701fff  PhysicsKit arm64  <abbda49ec9cb3e67934ed6ca38a54986> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
       0x199702000 -        0x1997dafff  UIFoundation arm64  <bf83b49e8565319c87a0d11769135836> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
       0x1997e7000 -        0x19a573fff  UIKit arm64  <1804405f7b2a3e77a349b53163b09cdb> /System/Library/Frameworks/UIKit.framework/UIKit
       0x19a574000 -        0x19a59cfff  CoreBluetooth arm64  <12009b6e55113d8da05a44a02f819497> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
       0x19a59d000 -        0x19a5c2fff  DataAccessExpress arm64  <ee3cce236aaf3b77b59100acd44c2f29> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
       0x19a5c3000 -        0x19a5e4fff  NetworkStatistics arm64  <a0b0f25f321b35fba72fcdddcc334766> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
       0x19a5e5000 -        0x19a66efff  AddressBook arm64  <54368e264b6b3cf5bfc46b20d8c407be> /System/Library/Frameworks/AddressBook.framework/AddressBook
       0x19a66f000 -        0x19a7ccfff  CoreMotion arm64  <32e6ecff39443a1687ad3f188b97b09f> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
       0x19a7cd000 -        0x19a7fafff  CacheDelete arm64  <8da9a120ed5f31fcb904a48633c0612c> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
       0x19a7fb000 -        0x19a808fff  CoreAUC arm64  <671a13f17b6d3f7da0b81595e1957bc5> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
       0x19a809000 -        0x19adaafff  MediaToolbox arm64  <6a968276d7153a80b6059d561045f83d> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
       0x19adab000 -        0x19af56fff  Celestial arm64  <4b71ffa1c45d346887475b45f842fb12> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
       0x19af57000 -        0x19af66fff  IntlPreferences arm64  <41f26994496f3c4981cd2939832f54d6> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
       0x19af67000 -        0x19af69fff  CoreDuetDebugLogging arm64  <a16fb61a2c833e93852b77b5b5520db2> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
       0x19af6a000 -        0x19af7efff  CoreDuetDaemonProtocol arm64  <486d428723a038fc994d0b926b4a84af> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
       0x19af7f000 -        0x19b054fff  CoreDuet arm64  <8ab25716062a373c9bb1c54fc647d0fe> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
       0x19b055000 -        0x19b207fff  AVFoundation arm64  <4fed94e1676f3b50928f9be1cb375e75> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
       0x19b208000 -        0x19b23afff  libtidy.A.dylib arm64  <daa87ffd63a43a5aa805bce93b398a11> /usr/lib/libtidy.A.dylib
       0x19b23b000 -        0x19b2a1fff  IMFoundation arm64  <a2ca1e8dfe203f928802b19dcca8fbf7> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
       0x19b2a2000 -        0x19b92ffff  GeoServices arm64  <43d3e18725873a68be5c828ce90a623a> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
       0x19b930000 -        0x19b931fff  DiagnosticLogCollection arm64  <944c96e416a331efbf7bab3839ccd10d> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
       0x19b932000 -        0x19b933fff  Marco arm64  <bff480036e39364fafccd764c6dbaeb4> /System/Library/PrivateFrameworks/Marco.framework/Marco
       0x19b934000 -        0x19b9b8fff  CoreLocation arm64  <28f1187102a531528323faead1645b58> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
       0x19b9b9000 -        0x19b9befff  ConstantClasses arm64  <9d635c1173f83a22b1d1b1e53c16f6bb> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
       0x19bc4b000 -        0x19bc9cfff  IDSFoundation arm64  <ae619c4ab4343eaaaf51a9d5cc3acd3f> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
       0x19bc9d000 -        0x19bd63fff  IDS arm64  <f6a74797fdb43277b966a72442b3a803> /System/Library/PrivateFrameworks/IDS.framework/IDS
       0x19bd64000 -        0x19bd81fff  MediaServices arm64  <b4725476785c34aa8518b5b4a9ae13e6> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
       0x19bd82000 -        0x19bdc2fff  AuthKit arm64  <fb557bb1badb3e298bbc0b0945322e33> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
       0x19bdc3000 -        0x19bdc8fff  libheimdal-asn1.dylib arm64  <166bb8b0eaa6368d836a7702b4ade694> /usr/lib/libheimdal-asn1.dylib
       0x19bdc9000 -        0x19be77fff  MediaRemote arm64  <aed85a16fdeb30c7bb1e12c1ca7361ed> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
       0x19be78000 -        0x19bffffff  MobileSpotlightIndex arm64  <5383bbd06360330b8ad7f3d857bf0f87> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
       0x19c000000 -        0x19c020fff  PlugInKit arm64  <354f2edb8c5e3f4b95155b744b56ecc8> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
       0x19c021000 -        0x19c04dfff  ProtectedCloudStorage arm64  <1be1f41a77f138e7b177db7aea32c460> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
       0x19c04e000 -        0x19c069fff  libresolv.9.dylib arm64  <1088f2b7d38b3b29b79ea0a4de8eb83c> /usr/lib/libresolv.9.dylib
       0x19c06a000 -        0x19c07ffff  ApplePushService arm64  <404f080a4df430a6a4012958806b6e57> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
       0x19c080000 -        0x19c0cffff  ContactsFoundation arm64  <b2d796f48a0d336fb6f3d048299c9aa3> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
       0x19c0d6000 -        0x19c17efff  Contacts arm64  <74d5212f603f3e9ca9522262ad9aeacf> /System/Library/Frameworks/Contacts.framework/Contacts
       0x19c17f000 -        0x19c1cdfff  CoreSpotlight arm64  <dd56f04ebe813448a8009a72e6a5d4c0> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
       0x19c1ce000 -        0x19c1f6fff  vCard arm64  <6177f1a1d74e3a788a888913862c8487> /System/Library/PrivateFrameworks/vCard.framework/vCard
       0x19c423000 -        0x19c425fff  MessageSupport arm64  <9da4f5d6c66e33a191bfa15af72d846c> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
       0x19c426000 -        0x19c47afff  MIME arm64  <e389f4b280673c67b9f52e35f3dacd65> /System/Library/PrivateFrameworks/MIME.framework/MIME
       0x19c516000 -        0x19c532fff  AppleIDSSOAuthentication arm64  <86f02c1364c433578943f63cfdd6d63f> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
       0x19c533000 -        0x19c543fff  MailServices arm64  <9294a06f0a3834068ebf3d872a27d7ff> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
       0x19c544000 -        0x19c5b2fff  AppleAccount arm64  <ddcedeb71dde3b96af5ef48fafdbcaa3> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
       0x19c5b3000 -        0x19c5b7fff  CommunicationsFilter arm64  <c09574c4d9f132d080f543f4d2bc7c1d> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
       0x19c5b8000 -        0x19c5dcfff  ChunkingLibrary arm64  <2d79fcffe0a8325bb364c297197c2d65> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
       0x19c5dd000 -        0x19c5e8fff  CaptiveNetwork arm64  <5d095ea1c7e93865a577f73201dc43df> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
       0x19c5e9000 -        0x19c617fff  EAP8021X arm64  <87f61032e0c23911a752f834b3bf1ffa> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
       0x19c618000 -        0x19c61efff  AssetCacheServices arm64  <075670ecd32d3fbeb5b3ce6da947f51b> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
       0x19c61f000 -        0x19c6f8fff  MMCS arm64  <92dc4de4192c362591d4b4e019af6db1> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
       0x19c6f9000 -        0x19c729fff  MobileWiFi arm64  <b8634bee980a3594aeadee3f06a7186d> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
       0x19c72a000 -        0x19c76cfff  ContentIndex arm64  <19eda95a34c639d093b9dc61c0b3f4e6> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
       0x19c7cb000 -        0x19c7fbfff  Bom arm64  <9545e5dc0248350ea55266dafdf1c3f7> /System/Library/PrivateFrameworks/Bom.framework/Bom
       0x19c7fc000 -        0x19c803fff  CertUI arm64  <8fcb899eb96c3ca2a44f0f439a26b4fb> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
       0x19c804000 -        0x19c854fff  FTServices arm64  <b7c8a07e3a6336f286d247ec2b404488> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
       0x19c855000 -        0x19c8b3fff  CoreDAV arm64  <11b89b735ad93ffca4d0efb854df9ab8> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
       0x19c8c2000 -        0x19c8d6fff  UserManagement arm64  <26bc451e92fd3d18a4f237c34798385a> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
       0x19c8d7000 -        0x19c99ffff  CorePDF arm64  <83ce0866f79834d1b91423333a40f932> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
       0x19c9a0000 -        0x19c9d4fff  iCalendar arm64  <a6f2dc3bfc41351c9dded418139ee97d> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
       0x19c9dd000 -        0x19ca3cfff  CalendarFoundation arm64  <d8bae7d431e5328ca1d2716a42f29eae> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
       0x19cb3c000 -        0x19cbd4fff  CalendarDatabase arm64  <5997d40c47c632ad848c0da62416fff7> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
       0x19cbd5000 -        0x19cc1afff  CalendarDaemon arm64  <737888a19d1d3e2eb55023f964582a8d> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
       0x19cc1b000 -        0x19cceafff  EventKit arm64  <39e4a110cfb53e2f83a3f54255233a03> /System/Library/Frameworks/EventKit.framework/EventKit
       0x19cceb000 -        0x19cfeefff  WebKit arm64  <17220d29d7b2334db44059e6ff7f61e5> /System/Library/Frameworks/WebKit.framework/WebKit
       0x19cfef000 -        0x19d035fff  WebBookmarks arm64  <e79d45649948354a8585b97e91ec1380> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
       0x19d036000 -        0x19d17efff  ContactsUI arm64  <a5d684c338fb3ad9a5758cb81cae2073> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
       0x19d93a000 -        0x19d940fff  DAAPKit arm64  <e2f5c35af4e73c0b8880725e14fc12e7> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
       0x19da92000 -        0x19dcfcfff  MusicLibrary arm64  <0b694389c0443d8f905235f5b346964c> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
       0x19dcfd000 -        0x19dd3bfff  Notes arm64  <a0ede9e5e20e36938fda18c8e2e2de65> /System/Library/PrivateFrameworks/Notes.framework/Notes
       0x19dd3c000 -        0x19de13fff  AddressBookUI arm64  <83d4193ac4dd31b9b1690a0ecd1cd5f0> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
       0x19de14000 -        0x19def1fff  CloudKit arm64  <57ee991dbad6343aa5b1da537ef0c65f> /System/Library/Frameworks/CloudKit.framework/CloudKit
       0x19def2000 -        0x19df4ffff  iTunesStore arm64  <6b3c659271773947b78c6f2bdcec916e> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
       0x19df50000 -        0x19df56fff  CloudPhotoServices arm64  <381563610a603902b5a5bc6eb71411fb> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
       0x19df57000 -        0x19e04dfff  CloudPhotoLibrary arm64  <5aea2d9cd31a314c8c4107445241a237> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
       0x19e04e000 -        0x19e09dfff  DataAccess arm64  <210f37b04eab3bc0baa17f1218505f25> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
       0x19e09e000 -        0x19e0c5fff  AssetsLibraryServices arm64  <da2212f776a73a3cbae134918f26336c> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
       0x19e0c6000 -        0x19e15efff  HomeSharing arm64  <16daec5c02433eb4947ae0cce5a58ce1> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
       0x19e15f000 -        0x19e18dfff  ACTFramework arm64  <4109d6d2547c3ff6947434cd22492bfd> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework
       0x19e18e000 -        0x19e199fff  DCIMServices arm64  <e83ee6449bd43b719ee6689f153fb4eb> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
       0x19e19a000 -        0x19e2c7fff  CoreMediaStream arm64  <73e65daffe5c3aa7a54d64817cf62583> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
       0x19e2c8000 -        0x19e2e0fff  PhotosFormats arm64  <0a62b66d803e3ade95d2e303f5dc92ce> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
       0x19e2e1000 -        0x19e2e8fff  XPCKit arm64  <238c5b445c233772b1456419738eb478> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
       0x19e2e9000 -        0x19e667fff  MediaPlayer arm64  <7f0e6ef0d236360a96c4eb58067704f0> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
       0x19e668000 -        0x19e74efff  CameraKit arm64  <dced4b1aaa6c3025a834b265f84c86db> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit
       0x19e757000 -        0x19e772fff  MediaStream arm64  <c09f05a03f4531c8a40dc8c1b0e5d352> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
       0x19e773000 -        0x19eaf9fff  PhotoLibraryServices arm64  <e254ca00e46f3ca8a90a29c3018e3dc3> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
       0x19eb31000 -        0x19eb9ffff  libprotobuf.dylib arm64  <0281cb59de1d3e858bd9e59dddaf41ff> /usr/lib/libprotobuf.dylib
       0x19edd4000 -        0x19ef11fff  Message arm64  <ecd86c630dbd3fcfa592adb5cfa4d493> /System/Library/PrivateFrameworks/Message.framework/Message
       0x19efc5000 -        0x19eff8fff  DataDetectorsCore arm64  <36ddb64003543f17a4ae5f50cf5ca896> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
       0x19f007000 -        0x19f24afff  libAWDSupportFramework.dylib arm64  <5d208ba22cbd3626a213751b9f5a08da> /usr/lib/libAWDSupportFramework.dylib
       0x19f28a000 -        0x19f2c7fff  WirelessDiagnostics arm64  <940dc9eff3fd3865ae91cb2af37e86aa> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
       0x19f4a5000 -        0x19f4b0fff  CoreRecents arm64  <5919be3a936736239f53dc6057ac945e> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
       0x19f5b1000 -        0x19f5c4fff  AssetsLibrary arm64  <f7bc78a1943130c387a5d9661bd239cb> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
       0x19fe21000 -        0x19fe24fff  FTClientServices arm64  <cf575d90f0ef36b2a055840f02691b56> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
       0x1a0020000 -        0x1a0059fff  ContactsAutocomplete arm64  <797d7b400c5331fa9d7a7f6ded49b0db> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
       0x1a006a000 -        0x1a0148fff  MessageUI arm64  <db6cdc704fcd362797fa7a59836fc841> /System/Library/Frameworks/MessageUI.framework/MessageUI
       0x1a0149000 -        0x1a01c1fff  libnetwork.dylib arm64  <5a78675ccd2f3b50ba5ae3e5ef088969> /usr/lib/libnetwork.dylib
       0x1a01d5000 -        0x1a0253fff  Network arm64  <7c97545661d93a238dd3201713c90bbe> /System/Library/PrivateFrameworks/Network.framework/Network
       0x1a03f5000 -        0x1a040bfff  FTAWD arm64  <d5d986fdf2a73746badf86337ea26b3a> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
       0x1a2566000 -        0x1a26bffff  libGLProgrammability.dylib arm64  <1d853e0bd87737459c8970fcb7b46a5b> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
       0x1a3473000 -        0x1a347cfff  libGPUSupportMercury.dylib arm64  <8fed78f301243709bd259315697568b8> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
       0x1a3482000 -        0x1a3514fff  MediaPlatform arm64  <a956f56e7f5137f6b6fcd0012b79f0f7> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
       0x1a3fbe000 -        0x1a401afff  CoreBrightness arm64  <85ad1b8cc94739a6a1e65cfb56900997> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
       0x1a432a000 -        0x1a4453fff  StoreServicesCore arm64  <265f2ee887003ee7a6f622c9278f1861> /System/Library/PrivateFrameworks/StoreServicesCore.framework/StoreServicesCore
       0x1a4993000 -        0x1a4dd6fff  MediaLibraryCore arm64  <02b1955ea96135e195d5bea426c6702e> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
       0x1a50ae000 -        0x1a5100fff  libstdc++.6.dylib arm64  <eabed2bf79e137e6acc7efaff2dc7cf2> /usr/lib/libstdc++.6.dylib
       0x1a520c000 -        0x1a520ffff  AGXCompilerConnection arm64  <70c75ef975f0394e910e237ff7eed31a> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
       0x1a7f0b000 -        0x1a7fa7fff  AGXGLDriver arm64  <d0c9bc4e248536ad821144d2a3753ba2> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
       0x1a7fbf000 -        0x1a7fd3fff  libCGInterfaces.dylib arm64  <a94effd0df4d3bb691067ae3ae270125> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
       0x1a7fd4000 -        0x1a824cfff  AudioCodecs arm64  <dc938f61b75f327cb996d8ca884683f1> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
       0x1a8694000 -        0x1a877efff  GLEngine arm64  <ae68caa3ad9a39018fd54262c933e303> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
       0x1a8ec4000 -        0x1a8ed2fff  AppleFSCompression arm64  <a1afd6c88f183b0896626b220de4d2c2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
       0x1a8ed3000 -        0x1a8edefff  AppleIDAuthSupport arm64  <5ef7f5e8da2c364b9d459b7280615c26> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
       0x1a9b94000 -        0x1a9bbafff  CoreServicesInternal arm64  <3a007d98794d3e3a9d1f377b2c3619ee> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
       0x1aa2f4000 -        0x1aa300fff  libGSFontCache.dylib arm64  <e35b6863bb623df5b8e7735a66f76e50> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
       0x1aa301000 -        0x1aa332fff  libTrueTypeScaler.dylib arm64  <de847921d0693dc48e78f8847117768a> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
       0x1acddd000 -        0x1acfb8fff  libFosl_dynamic.dylib arm64  <0aa33a84bd8630f29c6fc401fa0ffd5e> /usr/lib/libFosl_dynamic.dylib
       0x1ad3cf000 -        0x1ad3fefff  libpcap.A.dylib arm64  <983b5efbde5d30238673d8b74a8a2653> /usr/lib/libpcap.A.dylib
       0x1ad43a000 -        0x1ad50bfff  AVFAudio arm64  <b1a0fc23635a35bb8ba6e8fe869cae92> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
       0x1ad50c000 -        0x1ad515fff  ProactiveEventTracker arm64  <5b8319222fbb31c58bd392b6d4fc1035> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
       0x1ad516000 -        0x1ad66cfff  Intents arm64  <242a81c86a613c7e961765694a6f9e89> /System/Library/Frameworks/Intents.framework/Intents
       0x1ad7b0000 -        0x1ad7d3fff  UserNotifications arm64  <0dd7c46e70d23483a26b02bfed7be22f> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
       0x1ad7e3000 -        0x1ad7f1fff  PersonaKit arm64  <11315b9f03073d42a84dfedc91b43347> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
       0x1adce9000 -        0x1ade73fff  TextureIO arm64  <c54172604d14378eb9ca8a71942a9a7e> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
       0x1ae38f000 -        0x1ae3d9fff  ContactsUICore arm64  <e046c6d1c0d33c0dadfe2a5c663a6683> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
       0x1af336000 -        0x1af348fff  libBNNS.dylib arm64  <4fe669ed8f7e3fd6aa4687faa52c18e9> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
       0x1af349000 -        0x1af34efff  libQuadrature.dylib arm64  <b42c49db566e3e5f9577adbfcf2e0a42> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
       0x1af6ea000 -        0x1af6fbfff  CoreEmoji arm64  <a5aa53b703bf3c669425672d599a24f9> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
       0x1afbb7000 -        0x1afbb7fff  IntentsFoundation arm64  <011ec9d36ee0348aa1c272522b03a06f> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
       0x1afcd6000 -        0x1afd9efff  NLP arm64  <41213ee6dc4c3221876add1679d24b72> /System/Library/PrivateFrameworks/NLP.framework/NLP
       0x1b0dd4000 -        0x1b0e4bfff  libate.dylib arm64  <afb1757e1bdd3804b372511c4c3ba662> /usr/lib/libate.dylib
       0x1b0e4c000 -        0x1b0e4cfff  libcoretls.dylib arm64  <3798381066cd3288b95a25164d224a06> /usr/lib/libcoretls.dylib
       0x1b0e4d000 -        0x1b0e4efff  libcoretls_cfhelpers.dylib arm64  <f528dac189a931439165cffb8579f5ef> /usr/lib/libcoretls_cfhelpers.dylib

Extra Information:

Stack Dump (0x000000016ecd25d0-0x000000016ecd26c0):

0040000000000000E5190000000000001892A108010000001092A108010000005026CD6E0100000098DE180101000000B03E30060100000080927B06010000005026CD6E0100000080021601010000000040000000000000E5190000000000005431AEA700000000B03E30060100000000000000000000001092A10801000000B029CD6E01000000C4E21D0101000000E828CD6E0100000098407E06010000000100000000000000B0FA380601000000B026CD6E01000000089BF60001000000B0FA380601000000A0C07506010000000E4600000000000040907B06010000005027CD6E01000000341E160101000000

Notable Addresses:
{
    "x3": {
        "address": 4318768363,
        "type": "string",
        "value": "GstFlowReturn gst_pad_chain_data_unchecked(GstPad *, GstPadProbeType, void *)"
    },
    "x6": {
        "address": 4318768484,
        "type": "string",
        "value": "called chainfunction &%s with buffer %p, returned %s"
    }
}

Application Stats:
{
    "active_time_since_last_crash": 0,
    "active_time_since_launch": 0,
    "application_active": false,
    "application_in_foreground": true,
    "background_time_since_last_crash": 0,
    "background_time_since_launch": 0,
    "launches_since_last_crash": 3,
    "sessions_since_last_crash": 3,
    "sessions_since_launch": 1
}

CrashDoctor Diagnosis: Attempted to dereference garbage pointer 0x40.
Originated at or in a subcall of _gst_buffer_free
-------------- next part --------------
Incident Identifier: 71BC544D-4FAA-4649-9797-23A349DDB36B
CrashReporter Key:   ed2856d8019e3cc7aae1b9a5b4632ebf9ae2ce0b
Hardware Model:      iPhone7,2
Process:         Homesmart [13055]
Path:            /var/containers/Bundle/Application/88293485-43DA-4FCE-A610-85F6F45E2418/Homesmart.app/Homesmart
Identifier:      com.neotechindia.homesmart
Version:         1.2.1 (4)
Code Type:       ARM-64
Parent Process:  ? [1]

Date/Time:       2017-12-27 11:14:19.000 +0530
OS Version:      iOS 10.2 (14C92)
Report Version:  104

Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_NO_SPACE at 0x0000010000000003
Crashed Thread:  26

Thread 0:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   GraphicsServices                0x00000001952ce198 0x1952c2000 + 49560 (GSEventRunModal + 180)
6   UIKit                           0x00000001998617fc 0x1997e7000 + 501756 (<redacted> + 684)
7   UIKit                           0x000000019985c534 0x1997e7000 + 480564 (UIApplicationMain + 208)
8   Homesmart                       0x000000010032d398 0x100034000 + 3117976 (main + 576)
9   libdyld.dylib                   0x00000001927fd5b8 0x1927f9000 + 17848 (<redacted> + 4)

Thread 1:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   AVFAudio                        0x00000001ad4afd24 0x1ad43a000 + 482596 (<redacted> + 164)
6   AVFAudio                        0x00000001ad4d5d9c 0x1ad43a000 + 638364 (<redacted> + 84)
7   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
8   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 2:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   Foundation                      0x000000019435726c 0x19434b000 + 49772 (<redacted> + 304)
6   Foundation                      0x0000000194377dd0 0x19434b000 + 183760 (<redacted> + 96)
7   UIKit                           0x000000019a1d5c38 0x1997e7000 + 10415160 (<redacted> + 136)
8   Foundation                      0x0000000194454e68 0x19434b000 + 1089128 (<redacted> + 1024)
9   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
10  libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 3:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   libsystem_kernel.dylib          0x00000001928f52a8 0x1928f0000 + 21160 (thread_suspend + 76)
3   Homesmart                       0x0000000100233370 0x100034000 + 2093936 (ksmachexc_i_handleExceptions + 172)
4   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
5   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 4:

Thread 5:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   CoreFoundation                  0x0000000193867b44 0x193811000 + 355140 (CFRunLoopRun + 112)
6   CoreMotion                      0x000000019a6dd120 0x19a66f000 + 450848 (CLStartStopAdvertisingBeacon + 203196)
7   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
8   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 6:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   CFNetwork                       0x000000019401f8f0 0x193f40000 + 915696 (<redacted> + 336)
6   Foundation                      0x0000000194454e68 0x19434b000 + 1089128 (<redacted> + 1024)
7   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
8   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 7:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   Foundation                      0x000000019435726c 0x19434b000 + 49772 (<redacted> + 304)
6   Homesmart                       0x00000001000a2cd8 0x100034000 + 453848 (+[GCDAsyncSocket cfstreamThread] + 548)
7   Foundation                      0x0000000194454e68 0x19434b000 + 1089128 (<redacted> + 1024)
8   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
9   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 8:
0   libsystem_kernel.dylib          0x000000019290f23c 0x1928f0000 + 127548 (select$DARWIN_EXTSN + 8)
1   CoreFoundation                  0x00000001938f5468 0x193811000 + 935016 (<redacted> + 640)
2   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
3   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 9:
0   libsystem_kernel.dylib          0x00000001928f56e4 0x1928f0000 + 22244 (poll + 8)
1   Homesmart                       0x0000000100f42210 0x100034000 + 15786512 (g_main_context_iterate + 344)
2   Homesmart                       0x0000000100f42560 0x100034000 + 15787360 (g_main_loop_run + 244)
3   Homesmart                       0x00000001001ff418 0x100034000 + 1881112 (-[GStreamerBackend app_function] + 1524)
4   Homesmart                       0x00000001001fed9c 0x100034000 + 1879452 (__35-[GStreamerBackend init:videoView:]_block_invoke + 48)
5   libdispatch.dylib               0x00000001927ca1fc 0x1927c9000 + 4604 (<redacted> + 24)
6   libdispatch.dylib               0x00000001927ca1bc 0x1927c9000 + 4540 (<redacted> + 16)
7   libdispatch.dylib               0x00000001927d8a4c 0x1927c9000 + 64076 (<redacted> + 732)
8   libdispatch.dylib               0x00000001927da34c 0x1927c9000 + 70476 (<redacted> + 572)
9   libdispatch.dylib               0x00000001927da0ac 0x1927c9000 + 69804 (<redacted> + 124)
10  libsystem_pthread.dylib         0x00000001929d32a0 0x1929d2000 + 4768 (_pthread_wqthread + 1288)

Thread 10:
0   libsystem_kernel.dylib          0x00000001928f56e4 0x1928f0000 + 22244 (poll + 8)
1   Homesmart                       0x0000000100f42210 0x100034000 + 15786512 (g_main_context_iterate + 344)
2   Homesmart                       0x0000000100f42560 0x100034000 + 15787360 (g_main_loop_run + 244)
3   Homesmart                       0x0000000101136378 0x100034000 + 17834872 (_event_thread_main + 88)
4   Homesmart                       0x0000000100f2c1c4 0x100034000 + 15696324 (g_thread_proxy + 92)
5   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
6   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 11:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   CoreFoundation                  0x00000001938ee5d0 0x193811000 + 906704 (<redacted> + 192)
3   CoreFoundation                  0x00000001938ec1ec 0x193811000 + 897516 (<redacted> + 1132)
4   CoreFoundation                  0x000000019381a2b8 0x193811000 + 37560 (CFRunLoopRunSpecific + 444)
5   AudioToolbox                    0x00000001968e80cc 0x19672b000 + 1822924 (<redacted> + 164)
6   AudioToolbox                    0x0000000196ac0230 0x19672b000 + 3756592 (<redacted> + 84)
7   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
8   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 12:
0   libsystem_kernel.dylib          0x000000019290fa88 0x1928f0000 + 129672 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x00000001929d3344 0x1929d2000 + 4932 (_pthread_wqthread + 1452)

Thread 13:
0   libsystem_kernel.dylib          0x00000001928f56e4 0x1928f0000 + 22244 (poll + 8)
1   Homesmart                       0x0000000100f42210 0x100034000 + 15786512 (g_main_context_iterate + 344)
2   Homesmart                       0x0000000100f42560 0x100034000 + 15787360 (g_main_loop_run + 244)
3   Homesmart                       0x00000001001ff418 0x100034000 + 1881112 (-[GStreamerBackend app_function] + 1524)
4   Homesmart                       0x00000001001fed9c 0x100034000 + 1879452 (__35-[GStreamerBackend init:videoView:]_block_invoke + 48)
5   libdispatch.dylib               0x00000001927ca1fc 0x1927c9000 + 4604 (<redacted> + 24)
6   libdispatch.dylib               0x00000001927ca1bc 0x1927c9000 + 4540 (<redacted> + 16)
7   libdispatch.dylib               0x00000001927d8a4c 0x1927c9000 + 64076 (<redacted> + 732)
8   libdispatch.dylib               0x00000001927da34c 0x1927c9000 + 70476 (<redacted> + 572)
9   libdispatch.dylib               0x00000001927da0ac 0x1927c9000 + 69804 (<redacted> + 124)
10  libsystem_pthread.dylib         0x00000001929d32a0 0x1929d2000 + 4768 (_pthread_wqthread + 1288)

Thread 14:
0   libsystem_kernel.dylib          0x00000001928f56e4 0x1928f0000 + 22244 (poll + 8)
1   Homesmart                       0x0000000100f42210 0x100034000 + 15786512 (g_main_context_iterate + 344)
2   Homesmart                       0x0000000100f42560 0x100034000 + 15787360 (g_main_loop_run + 244)
3   Homesmart                       0x00000001001ff418 0x100034000 + 1881112 (-[GStreamerBackend app_function] + 1524)
4   Homesmart                       0x00000001001fed9c 0x100034000 + 1879452 (__35-[GStreamerBackend init:videoView:]_block_invoke + 48)
5   libdispatch.dylib               0x00000001927ca1fc 0x1927c9000 + 4604 (<redacted> + 24)
6   libdispatch.dylib               0x00000001927ca1bc 0x1927c9000 + 4540 (<redacted> + 16)
7   libdispatch.dylib               0x00000001927d8a4c 0x1927c9000 + 64076 (<redacted> + 732)
8   libdispatch.dylib               0x00000001927da34c 0x1927c9000 + 70476 (<redacted> + 572)
9   libdispatch.dylib               0x00000001927da0ac 0x1927c9000 + 69804 (<redacted> + 124)
10  libsystem_pthread.dylib         0x00000001929d32a0 0x1929d2000 + 4768 (_pthread_wqthread + 1288)

Thread 15:
0   libsystem_kernel.dylib          0x00000001928f56e4 0x1928f0000 + 22244 (poll + 8)
1   Homesmart                       0x0000000100f42210 0x100034000 + 15786512 (g_main_context_iterate + 344)
2   Homesmart                       0x0000000100f42560 0x100034000 + 15787360 (g_main_loop_run + 244)
3   Homesmart                       0x0000000101136378 0x100034000 + 17834872 (_event_thread_main + 88)
4   Homesmart                       0x0000000100f2c1c4 0x100034000 + 15696324 (g_thread_proxy + 92)
5   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
6   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 16:
0   libsystem_kernel.dylib          0x00000001928f56e4 0x1928f0000 + 22244 (poll + 8)
1   Homesmart                       0x0000000100e98f44 0x100034000 + 15093572 (g_socket_condition_timed_wait + 400)
2   Homesmart                       0x00000001005bae9c 0x100034000 + 5795484 (gst_udpsrc_create + 1304)
3   Homesmart                       0x000000010111fbc8 0x100034000 + 17742792 (gst_base_src_get_range + 224)
4   Homesmart                       0x000000010111f318 0x100034000 + 17740568 (gst_base_src_loop + 1156)
5   Homesmart                       0x00000001011913b8 0x100034000 + 18207672 (gst_task_func + 252)
6   Homesmart                       0x0000000100f281a8 0x100034000 + 15679912 (g_thread_pool_thread_proxy + 224)
7   Homesmart                       0x0000000100f2c1c4 0x100034000 + 15696324 (g_thread_proxy + 92)
8   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
9   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 17:
0   libsystem_kernel.dylib          0x00000001928f56e4 0x1928f0000 + 22244 (poll + 8)
1   Homesmart                       0x0000000100f42210 0x100034000 + 15786512 (g_main_context_iterate + 344)
2   Homesmart                       0x0000000100f42560 0x100034000 + 15787360 (g_main_loop_run + 244)
3   Homesmart                       0x0000000101136378 0x100034000 + 17834872 (_event_thread_main + 88)
4   Homesmart                       0x0000000100f2c1c4 0x100034000 + 15696324 (g_thread_proxy + 92)
5   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
6   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 18:
0   libsystem_kernel.dylib          0x00000001928f56e4 0x1928f0000 + 22244 (poll + 8)
1   Homesmart                       0x0000000100f42210 0x100034000 + 15786512 (g_main_context_iterate + 344)
2   Homesmart                       0x0000000100f42560 0x100034000 + 15787360 (g_main_loop_run + 244)
3   Homesmart                       0x000000010112f690 0x100034000 + 17806992 (gst_gl_window_default_run + 32)
4   Homesmart                       0x000000010112aa94 0x100034000 + 17787540 (gst_gl_context_create_thread + 516)
5   Homesmart                       0x0000000100f2c1c4 0x100034000 + 15696324 (g_thread_proxy + 92)
6   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
7   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 19:
0   libsystem_kernel.dylib          0x000000019290ee1c 0x1928f0000 + 126492 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x00000001929d49c0 0x1929d2000 + 10688 (<redacted> + 640)
2   Homesmart                       0x00000001008d681c 0x100034000 + 9054236 (worker + 152)
3   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 20:
0   libsystem_kernel.dylib          0x000000019290ee1c 0x1928f0000 + 126492 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x00000001929d49c0 0x1929d2000 + 10688 (<redacted> + 640)
2   Homesmart                       0x00000001008d681c 0x100034000 + 9054236 (worker + 152)
3   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 21:
0   libsystem_kernel.dylib          0x000000019290ee1c 0x1928f0000 + 126492 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x00000001929d49c0 0x1929d2000 + 10688 (<redacted> + 640)
2   Homesmart                       0x0000000100f8b8a0 0x100034000 + 16087200 (g_cond_wait + 56)
3   Homesmart                       0x00000001010db7e4 0x100034000 + 17463268 (wait_segment + 136)
4   Homesmart                       0x00000001010dd454 0x100034000 + 17470548 (default_commit + 4268)
5   Homesmart                       0x00000001010c81fc 0x100034000 + 17383932 (gst_audio_base_sink_render + 3232)
6   Homesmart                       0x0000000101116fcc 0x100034000 + 17706956 (gst_base_sink_chain_unlocked + 2964)
7   Homesmart                       0x0000000101119fcc 0x100034000 + 17719244 (gst_base_sink_chain_main + 76)
8   Homesmart                       0x0000000101177a40 0x100034000 + 18102848 (gst_pad_chain_data_unchecked + 168)
9   Homesmart                       0x0000000101178444 0x100034000 + 18105412 (gst_pad_push_data + 184)
10  Homesmart                       0x0000000101178280 0x100034000 + 18104960 (gst_pad_push + 288)
11  Homesmart                       0x00000001011b454c 0x100034000 + 18351436 (gst_proxy_pad_chain_default + 124)
12  Homesmart                       0x0000000101177a40 0x100034000 + 18102848 (gst_pad_chain_data_unchecked + 168)
13  Homesmart                       0x0000000101178444 0x100034000 + 18105412 (gst_pad_push_data + 184)
14  Homesmart                       0x0000000101178280 0x100034000 + 18104960 (gst_pad_push + 288)
15  Homesmart                       0x0000000101103270 0x100034000 + 17625712 (gst_base_transform_chain + 476)
16  Homesmart                       0x0000000101177a40 0x100034000 + 18102848 (gst_pad_chain_data_unchecked + 168)
17  Homesmart                       0x0000000101178444 0x100034000 + 18105412 (gst_pad_push_data + 184)
18  Homesmart                       0x0000000101178280 0x100034000 + 18104960 (gst_pad_push + 288)
19  Homesmart                       0x0000000101103270 0x100034000 + 17625712 (gst_base_transform_chain + 476)
20  Homesmart                       0x0000000101177a40 0x100034000 + 18102848 (gst_pad_chain_data_unchecked + 168)
21  Homesmart                       0x0000000101178444 0x100034000 + 18105412 (gst_pad_push_data + 184)
22  Homesmart                       0x0000000101178280 0x100034000 + 18104960 (gst_pad_push + 288)
23  Homesmart                       0x000000010111f51c 0x100034000 + 17741084 (gst_base_src_loop + 1672)
24  Homesmart                       0x00000001011913b8 0x100034000 + 18207672 (gst_task_func + 252)
25  Homesmart                       0x0000000100f281a8 0x100034000 + 15679912 (g_thread_pool_thread_proxy + 224)
26  Homesmart                       0x0000000100f2c1c4 0x100034000 + 15696324 (g_thread_proxy + 92)
27  libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
28  libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 22:
0   libsystem_kernel.dylib          0x00000001928f1188 0x1928f0000 + 4488 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001928f0ff8 0x1928f0000 + 4088 (mach_msg + 72)
2   AudioToolbox                    0x00000001967d16fc 0x19672b000 + 681724 (<redacted> + 288)
3   AudioToolbox                    0x00000001967d5a18 0x19672b000 + 698904 (<redacted> + 40)
4   AudioToolbox                    0x0000000196ac0230 0x19672b000 + 3756592 (<redacted> + 84)
5   libsystem_pthread.dylib         0x00000001929d5850 0x1929d2000 + 14416 (<redacted> + 240)
6   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 23:
0   libsystem_kernel.dylib          0x000000019290fa88 0x1928f0000 + 129672 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x00000001929d3160 0x1929d2000 + 4448 (_pthread_wqthread + 968)

Thread 24:
0   libsystem_kernel.dylib          0x000000019290fa88 0x1928f0000 + 129672 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x00000001929d3160 0x1929d2000 + 4448 (_pthread_wqthread + 968)

Thread 25:

Thread 26 Crashed:
0   Homesmart                       0x0000000100f2bd50 0x100034000 + 15695184 (magazine_cache_push_magazine + 536)
1   Homesmart                       0x0000000100f2bd70 0x100034000 + 15695216 (magazine_cache_push_magazine + 568)
2   Homesmart                       0x0000000100f2ba98 0x100034000 + 15694488 (private_thread_memory_cleanup + 176)
3   libsystem_pthread.dylib         0x00000001929d3f70 0x1929d2000 + 8048 (<redacted> + 496)
4   libsystem_pthread.dylib         0x00000001929d3ce4 0x1929d2000 + 7396 (<redacted> + 200)
5   libsystem_pthread.dylib         0x00000001929d585c 0x1929d2000 + 14428 (<redacted> + 252)
6   libsystem_pthread.dylib         0x00000001929d5760 0x1929d2000 + 14176 (_pthread_start + 284)

Thread 26 crashed with ARM-64 Thread State:
  cpsr: 0x0000000080000000     fp: 0x000000016e516dc0     lr: 0x0000000100f2bd70     pc: 0x0000000100f2bd50 
    sp: 0x000000016e516d80     x0: 0x0000000107c28000     x1: 0x0000010000000003    x10: 0x000000000000014f 
   x11: 0x0000000107c2b2d0    x12: 0x0000000000000000    x13: 0x00000000003a9f00    x14: 0x0000000108a4f240 
   x15: 0x0000000108a4f270    x16: 0x00000001929d3378    x17: 0x0000000108a4f210    x18: 0x0000000000000000 
   x19: 0x0000000000000030     x2: 0x0000000000000000    x20: 0x00000001027cdaf8    x21: 0x0000000107c2b630 
   x22: 0x0000000108bc0ab0    x23: 0x0000000000000002    x24: 0x000000000000007f    x25: 0x000000016e516dd8 
   x26: 0x0000000000000003    x27: 0x0000000000000000    x28: 0x00000001039e4e30    x29: 0x000000016e516dc0 
    x3: 0x0000000000000701     x4: 0x0000000000000000     x5: 0x0000000000000701     x6: 0x0000000000000000 
    x7: 0x0000000000000701     x8: 0x0000000108bc0ab0     x9: 0x0000000100000002 

Binary Images:
       0x100034000 -        0x101fe7fff +Homesmart arm64  <7e18ebc76c733dd2b55e04120c556766> /var/containers/Bundle/Application/88293485-43DA-4FCE-A610-85F6F45E2418/Homesmart.app/Homesmart
       0x1922f4000 -        0x1922f5fff  libSystem.B.dylib arm64  <6c1de96c8fe5363cab2ef76f891c6e22> /usr/lib/libSystem.B.dylib
       0x1922f6000 -        0x19234bfff  libc++.1.dylib arm64  <b2db8b1d09283b7bafe1b2933adc5dfd> /usr/lib/libc++.1.dylib
       0x19234c000 -        0x19236cfff  libc++abi.dylib arm64  <e3419bbaface31b5970c6c8d430be26d> /usr/lib/libc++abi.dylib
       0x192370000 -        0x192749fff  libobjc.A.dylib arm64  <538f809dcd7c35ceb59d99802248f045> /usr/lib/libobjc.A.dylib
       0x19274a000 -        0x19274efff  libcache.dylib arm64  <f09cab6893c631218f817e61b3d77fcb> /usr/lib/system/libcache.dylib
       0x19274f000 -        0x19275afff  libcommonCrypto.dylib arm64  <e071643355cd3f67bae19045c7f9f340> /usr/lib/system/libcommonCrypto.dylib
       0x19275b000 -        0x19275efff  libcompiler_rt.dylib arm64  <8209cb28df5d3b48894899019fcbb344> /usr/lib/system/libcompiler_rt.dylib
       0x19275f000 -        0x192766fff  libcopyfile.dylib arm64  <567f33ef4d8f3e48a5afac933ccd389f> /usr/lib/system/libcopyfile.dylib
       0x192767000 -        0x1927c8fff  libcorecrypto.dylib arm64  <056a6c201d3d3696b59f0b264ba9b972> /usr/lib/system/libcorecrypto.dylib
       0x1927c9000 -        0x1927f8fff  libdispatch.dylib arm64  <fb1d0baf642337d1bea0af309586df97> /usr/lib/system/libdispatch.dylib
       0x1927f9000 -        0x1927fdfff  libdyld.dylib arm64  <6ebb575f616935cbbef02f2c031490d1> /usr/lib/system/libdyld.dylib
       0x1927fe000 -        0x1927fefff  liblaunch.dylib arm64  <ceb57f62c49e38d8a8d33309db668bd3> /usr/lib/system/liblaunch.dylib
       0x1927ff000 -        0x192804fff  libmacho.dylib arm64  <20627f9f062c3ee8873e3ab3bc3fda8c> /usr/lib/system/libmacho.dylib
       0x192805000 -        0x192806fff  libremovefile.dylib arm64  <43110ffd953537e28981c6dead2c0b1f> /usr/lib/system/libremovefile.dylib
       0x192807000 -        0x19281efff  libsystem_asl.dylib arm64  <e52a49b27e963d2bb90332a5b0895f8d> /usr/lib/system/libsystem_asl.dylib
       0x19281f000 -        0x19281ffff  libsystem_blocks.dylib arm64  <480fe954b3f63f16af8acfd6dc34e2da> /usr/lib/system/libsystem_blocks.dylib
       0x192820000 -        0x19289efff  libsystem_c.dylib arm64  <8a5a190d70563f3c8d4ce16cab74f599> /usr/lib/system/libsystem_c.dylib
       0x19289f000 -        0x1928a3fff  libsystem_configuration.dylib arm64  <7628c33e4c383a78b0e33cf403e6f019> /usr/lib/system/libsystem_configuration.dylib
       0x1928a4000 -        0x1928a9fff  libsystem_containermanager.dylib arm64  <9de64e7545ab359fb9cefc695aa510f0> /usr/lib/system/libsystem_containermanager.dylib
       0x1928aa000 -        0x1928abfff  libsystem_coreservices.dylib arm64  <e61211f8f4c9399595fbd921e8589a8b> /usr/lib/system/libsystem_coreservices.dylib
       0x1928ac000 -        0x1928c4fff  libsystem_coretls.dylib arm64  <14fa1ba4b14b338181c2ef87b214695e> /usr/lib/system/libsystem_coretls.dylib
       0x1928c5000 -        0x1928cbfff  libsystem_dnssd.dylib arm64  <7d745bdfb72e3119bad43c36f60a5a8a> /usr/lib/system/libsystem_dnssd.dylib
       0x1928cc000 -        0x1928effff  libsystem_info.dylib arm64  <6546bc8b4fa23df898bf2471e801d50b> /usr/lib/system/libsystem_info.dylib
       0x1928f0000 -        0x192914fff  libsystem_kernel.dylib arm64  <9ec307fcdd2f3f728f37ec6e0186df20> /usr/lib/system/libsystem_kernel.dylib
       0x192915000 -        0x192941fff  libsystem_m.dylib arm64  <ba786894a7213d37baa99aafc0ee5493> /usr/lib/system/libsystem_m.dylib
       0x192942000 -        0x19295dfff  libsystem_malloc.dylib arm64  <c57ecb4ada5c3930a580b3d07583058a> /usr/lib/system/libsystem_malloc.dylib
       0x19295e000 -        0x1929b5fff  libsystem_network.dylib arm64  <efa018a4cb4936e3b77b9194d390efc4> /usr/lib/system/libsystem_network.dylib
       0x1929b6000 -        0x1929bffff  libsystem_networkextension.dylib arm64  <34c2d9c2986f32dd996e4e439d94c9c5> /usr/lib/system/libsystem_networkextension.dylib
       0x1929c0000 -        0x1929cafff  libsystem_notify.dylib arm64  <605beaf21db73cc3ae98a65e8c11f7d0> /usr/lib/system/libsystem_notify.dylib
       0x1929cb000 -        0x1929d1fff  libsystem_platform.dylib arm64  <518e18adfdfc316e9b4d519f6e4b6a47> /usr/lib/system/libsystem_platform.dylib
       0x1929d2000 -        0x1929dbfff  libsystem_pthread.dylib arm64  <d8480fc3a35d3475b0d12553c761d8cb> /usr/lib/system/libsystem_pthread.dylib
       0x1929dc000 -        0x1929dffff  libsystem_sandbox.dylib arm64  <89419e71367637d590768d37ca10d9a3> /usr/lib/system/libsystem_sandbox.dylib
       0x1929e0000 -        0x1929e7fff  libsystem_symptoms.dylib arm64  <832499573c1730b48f6ff8e7c06fae15> /usr/lib/system/libsystem_symptoms.dylib
       0x1929e8000 -        0x192a06fff  libsystem_trace.dylib arm64  <27778d14d3cb3239a6bb52a2461cd543> /usr/lib/system/libsystem_trace.dylib
       0x192a07000 -        0x192a0cfff  libunwind.dylib arm64  <7a7545249f7d3a69a162acb73ec4f17a> /usr/lib/system/libunwind.dylib
       0x192a0d000 -        0x192a0dfff  libvminterpose.dylib arm64  <21d158555a6233b19c53df16cafb6974> /usr/lib/system/libvminterpose.dylib
       0x192a0e000 -        0x192a34fff  libxpc.dylib arm64  <8f1330e254b83bd3a973af6933b91836> /usr/lib/system/libxpc.dylib
       0x192a35000 -        0x192c4ffff  libicucore.A.dylib arm64  <35fc5fa2aab8326897081ab8416c497c> /usr/lib/libicucore.A.dylib
       0x192c50000 -        0x192c60fff  libz.1.dylib arm64  <b3ab59ff330f3225a53b4e8e95440d77> /usr/lib/libz.1.dylib
       0x193811000 -        0x193b95fff  CoreFoundation arm64  <dd9791d198ef32eea1335b8ebc9b3d55> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
       0x193b96000 -        0x193ba6fff  libbsm.0.dylib arm64  <788093e9b6b738cea7045bfec4bef1d8> /usr/lib/libbsm.0.dylib
       0x193ba7000 -        0x193ba7fff  libenergytrace.dylib arm64  <3bcefd094fa83b26807a1c6c92933cd2> /usr/lib/libenergytrace.dylib
       0x193ba8000 -        0x193c23fff  IOKit arm64  <e0a6f4f0810b3f75813eda2afebd591c> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
       0x193c24000 -        0x193c44fff  libMobileGestalt.dylib arm64  <1e9e78da74143c54bb1e50aa7e285a0f> /usr/lib/libMobileGestalt.dylib
       0x193c45000 -        0x193d2ffff  libxml2.2.dylib arm64  <b3fc55542fe33491877c661cf410b164> /usr/lib/libxml2.2.dylib
       0x193d30000 -        0x193dbefff  Security arm64  <88e5d6eb0de13ff6b7904f1b0e43a88e> /System/Library/Frameworks/Security.framework/Security
       0x193dbf000 -        0x193e29fff  SystemConfiguration arm64  <d907035d1ff936e5986035f50a77f5d3> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
       0x193e2a000 -        0x193f3ffff  libsqlite3.dylib arm64  <87863a80836a3d659e5485f5029c3ed4> /usr/lib/libsqlite3.dylib
       0x193f40000 -        0x1942d9fff  CFNetwork arm64  <d63319a4fe2738dfb695ceb729f9b972> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
       0x1942da000 -        0x1942eafff  libbz2.1.0.dylib arm64  <0d14fa7337f43079bad2a4cfc6d66b70> /usr/lib/libbz2.1.0.dylib
       0x1942eb000 -        0x194303fff  liblzma.5.dylib arm64  <b90cea0595ff3f8599d9788e1d2cb454> /usr/lib/liblzma.5.dylib
       0x194304000 -        0x19431efff  libCRFSuite.dylib arm64  <ac663b865b6b38429a40878701aa484a> /usr/lib/libCRFSuite.dylib
       0x19431f000 -        0x194348fff  libarchive.2.dylib arm64  <667b9f199ef63c89b05bf1ea9a3ffe13> /usr/lib/libarchive.2.dylib
       0x194349000 -        0x19434afff  liblangid.dylib arm64  <a74f4f8a2d533e1f926044f052cc5b7d> /usr/lib/liblangid.dylib
       0x19434b000 -        0x194619fff  Foundation arm64  <7d40355e685036cc803455e5cbf6245f> /System/Library/Frameworks/Foundation.framework/Foundation
       0x19461a000 -        0x1946c6fff  libBLAS.dylib arm64  <fa29c2ad87a73ccea2885d9182faee53> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
       0x1946c7000 -        0x194a09fff  libLAPACK.dylib arm64  <6df40b0afcbb35a48d63e2fa8ec03b1b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
       0x194a0a000 -        0x194cacfff  vImage arm64  <8b797590cf983693b4c3b6b83dc4ba29> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
       0x194cad000 -        0x194ccffff  libvMisc.dylib arm64  <5bcbb491c0a03816a7634797852c21ad> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
       0x194cd0000 -        0x194ce4fff  libLinearAlgebra.dylib arm64  <1adeb99764f63e9e8ef1225bb7a5120d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
       0x194ce5000 -        0x194cf6fff  libSparseBLAS.dylib arm64  <515a7b8f5c433b709c1f6d205b9a73d2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
       0x194cf7000 -        0x194d6ffff  libvDSP.dylib arm64  <80294f738c053c4991fa3ab4e867218e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
       0x194d70000 -        0x194d70fff  vecLib arm64  <15dc1eafe1f8377d9cab3ba5c7e488be> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
       0x194d71000 -        0x194d71fff  Accelerate arm64  <32a527bb13a63e37bf50c725b008e9d5> /System/Library/Frameworks/Accelerate.framework/Accelerate
       0x194d72000 -        0x1952c1fff  CoreGraphics arm64  <52f191594f523f41880280896948b786> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
       0x1952c2000 -        0x1952d6fff  GraphicsServices arm64  <7c0dd118a4bc37dc8fab6449abde7ff9> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
       0x1952d7000 -        0x195322fff  AppSupport arm64  <bdaad3a71677315bb126c4a73a1bcb9e> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
       0x195323000 -        0x195446fff  MobileCoreServices arm64  <e035420bfabe3f28bc6eef0a144ac1d1> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
       0x195447000 -        0x19549ffff  BaseBoard arm64  <210cb4a9a0073c7b9e0b3d437cc1aa4b> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
       0x1954a0000 -        0x1954abfff  AssertionServices arm64  <7ca242e983fd3c0f805d51fca8a4c46a> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
       0x1954ac000 -        0x1954d8fff  BackBoardServices arm64  <c333604ae8123e3cbb46fe26f233beb9> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
       0x1954dd000 -        0x19552cfff  FrontBoardServices arm64  <00b3c2ff89f53d3dba0069b6bb5a56bd> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
       0x195530000 -        0x195563fff  SpringBoardServices arm64  <d2c3d08eff3f3119a6f4eb1a0a180305> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
       0x195564000 -        0x195578fff  MobileKeyBag arm64  <a78d40cc257231978e752c5a81cd1356> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
       0x195579000 -        0x195581fff  IOSurface arm64  <9a22349e905539a0a1598af6d7fe9cc9> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
       0x195582000 -        0x19558dfff  liblockdown.dylib arm64  <ab36b2ace988302c89207cb290ff4a76> /usr/lib/liblockdown.dylib
       0x19558e000 -        0x1955a4fff  CrashReporterSupport arm64  <326017f8d07d3e7cb338dda00fa888f7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
       0x1955a5000 -        0x1955a7fff  IOSurfaceAccelerator arm64  <7b7c2b7ea506374cb3902b7408d5d4bf> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
       0x1955a8000 -        0x1955e8fff  AppleJPEG arm64  <b2fd4ef37aaf38f58311e33ea1683082> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
       0x1955e9000 -        0x195b7bfff  ImageIO arm64  <f5ddfe623d4f3a338ae75c666ea10815> /System/Library/Frameworks/ImageIO.framework/ImageIO
       0x195b7c000 -        0x195b82fff  TCC arm64  <c9f168508185369591dfcd1c1cf9b6a3> /System/Library/PrivateFrameworks/TCC.framework/TCC
       0x195b83000 -        0x195b87fff  AggregateDictionary arm64  <4be0041fb69b358cada4eeabbf22adf3> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
       0x195b88000 -        0x195b94fff  PowerLog arm64  <e5003d8e49d0390c8a67da790407e704> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
       0x195b95000 -        0x195bfdfff  libTelephonyUtilDynamic.dylib arm64  <4a1e447a97f43b91a92ee731c2a4286b> /usr/lib/libTelephonyUtilDynamic.dylib
       0x195bfe000 -        0x195c10fff  CommonUtilities arm64  <486d816afdc431aaa2ef67b229cf4e96> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
       0x195c11000 -        0x195c25fff  libcompression.dylib arm64  <c764915fa0ec384f8a1759e63235b5a9> /usr/lib/libcompression.dylib
       0x195c26000 -        0x195ec4fff  CoreData arm64  <980c0f8663a0330d8b5fb541c22e7b66> /System/Library/Frameworks/CoreData.framework/CoreData
       0x195ec5000 -        0x195ecafff  libCoreVMClient.dylib arm64  <3a28c232b17430839305f9d17745e247> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
       0x195ecb000 -        0x195ed0fff  IOAccelerator arm64  <f4d5cd421bd03a52b40c991fd1c73806> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
       0x195ed1000 -        0x195ed2fff  libCVMSPluginSupport.dylib arm64  <7110757134ea3599b3d739db2ea6f48a> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
       0x195ed3000 -        0x195ed6fff  libCoreFSCache.dylib arm64  <2147b40a3d713d53b221e8f40ca5ac7f> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
       0x195ed7000 -        0x195f1afff  libGLImage.dylib arm64  <c2e2de9ee34236558c89d7fe9bc0116c> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
       0x195f1b000 -        0x195f25fff  libGFXShared.dylib arm64  <058e54d10e9838c5bea32a75f199c2db> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
       0x195f26000 -        0x195f2efff  IOMobileFramebuffer arm64  <811101a668313da993fa3881ac7cddef> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
       0x195f2f000 -        0x195f2ffff  libmetal_timestamp.dylib arm64  <2bbf481d5e4a35aea434cd15f9d6a182> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
       0x195f30000 -        0x195f8efff  Metal arm64  <ff1261ae94e03c19964dda0546e189fd> /System/Library/Frameworks/Metal.framework/Metal
       0x195f8f000 -        0x195f99fff  OpenGLES arm64  <52e0ecb1f2c23cc4a26345d035127679> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
       0x195f9a000 -        0x195fbefff  CoreVideo arm64  <581f5f9967923c4983c1373dfa23195b> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
       0x195fbf000 -        0x195fc1fff  OAuth arm64  <23d43697c1b130ed814eaddbd9851e0d> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
       0x195fc9000 -        0x196006fff  Accounts arm64  <ba89d108cfef37ae91b70116c6d7c66d> /System/Library/Frameworks/Accounts.framework/Accounts
       0x196007000 -        0x1960f9fff  libiconv.2.dylib arm64  <c85933d9062f32ac885047aadb359e88> /usr/lib/libiconv.2.dylib
       0x1960fa000 -        0x19624afff  CoreAudio arm64  <8ff5628b7e9b36efb6b746e6ea3e9088> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
       0x19624b000 -        0x19624efff  UserFS arm64  <13d40ea4a3e032b199465cddc45c8479> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
       0x19624f000 -        0x19635dfff  CoreMedia arm64  <98e944101d7b3745ae7bc0e43a8b59cb> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
       0x19635e000 -        0x196364fff  libcupolicy.dylib arm64  <e88ddf38bf5a3f2583b7f1c9b1af4e76> /usr/lib/libcupolicy.dylib
       0x196365000 -        0x1963f2fff  CoreTelephony arm64  <c5ef9b84bce0312e96b3faed5e424110> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
       0x1963f3000 -        0x196500fff  libFontParser.dylib arm64  <2784cc1e874a395bb3ea2f7c3382c62f> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
       0x196501000 -        0x196590fff  VideoToolbox arm64  <d0baea0326d13f66ae8623f19aa1ac76> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
       0x196591000 -        0x196591fff  FontServices arm64  <a4b99cf7d62630aeb2f8c8e865a8fe34> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
       0x196592000 -        0x1966dffff  CoreText arm64  <9d73af39afa63ea68673374a3862426b> /System/Library/Frameworks/CoreText.framework/CoreText
       0x1966e0000 -        0x1966fafff  ProtocolBuffer arm64  <11c5f55b03ff32c6b25310171c1c7afe> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
       0x1966fb000 -        0x196723fff  PersistentConnection arm64  <65b64570bee63c0580880163a91c230f> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
       0x196724000 -        0x19672afff  DataMigration arm64  <5961a23a26153867b4bb8c80c19799d0> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
       0x19672b000 -        0x196b8bfff  AudioToolbox arm64  <3ea60e00d2383ae498996690ab1fdbdd> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
       0x196b8c000 -        0x196d64fff  QuartzCore arm64  <6dc61ad83fc03f799792d1cb950622f7> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
       0x196d65000 -        0x196d6bfff  Netrb arm64  <81262209ce983a5197fc2da41fc3b6a3> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
       0x196d6c000 -        0x196d7cfff  libcmph.dylib arm64  <7f719c3d948530c78be18a40b3ea59aa> /usr/lib/libcmph.dylib
       0x196d7d000 -        0x196d9dfff  libmis.dylib arm64  <cd871843480d31b8b074ac87e66cb63d> /usr/lib/libmis.dylib
       0x196d9e000 -        0x196e91fff  LanguageModeling arm64  <8483753bf96f3484b448a47883cd5ab4> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
       0x196e92000 -        0x196f79fff  ManagedConfiguration arm64  <d9e33a6cfa163270bb50a1a6e370ea95> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
       0x196f7a000 -        0x196f90fff  libmarisa.dylib arm64  <f0eea40d2c0a33a58d7cd2c9b52da4b7> /usr/lib/libmarisa.dylib
       0x196f91000 -        0x197061fff  ProofReader arm64  <1596b3e0c7c43398ac19ac08a5460868> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
       0x197062000 -        0x19706cfff  MediaAccessibility arm64  <7b482ef272bf34fcb742c2afd236b626> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
       0x19706d000 -        0x19707dfff  MobileAsset arm64  <66b4c8da5b103557b258b9bac8d37772> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
       0x19707e000 -        0x1970effff  ColorSync arm64  <d4fa34368b923aaa8679c1bb8433b9b5> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
       0x1970f0000 -        0x197160fff  MetalPerformanceShaders arm64  <251f089c067b30d4922d67dc463d2300> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
       0x197161000 -        0x197590fff  FaceCore arm64  <04c8c7b7a36d3d98a96817f4365b3439> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
       0x197591000 -        0x19760cfff  Quagga arm64  <068db048c7e03054b73e3691592d1287> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
       0x19760d000 -        0x1977d7fff  CoreImage arm64  <8c3df52ae00634d0ac530ceea391edac> /System/Library/Frameworks/CoreImage.framework/CoreImage
       0x1977d8000 -        0x197824fff  TextInput arm64  <25840bba5f6e347290d6f9e13dc2adf7> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
       0x197825000 -        0x197835fff  libAccessibility.dylib arm64  <f9f8b21c43c33c20a44455087fb58d36> /usr/lib/libAccessibility.dylib
       0x197845000 -        0x19819bfff  JavaScriptCore arm64  <8f81ebee9a4c3d42903b89e5e73a54a7> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
       0x19819c000 -        0x1983b9fff  StoreServices arm64  <2f9d7cd0f84d33f3bce6134c7acb25c5> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
       0x1983ba000 -        0x1994adfff  WebCore arm64  <ef6c9957757b3733a0e5d447fe4455aa> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
       0x1994ae000 -        0x1994d7fff  libxslt.1.dylib arm64  <28d75f17d5b03dfd8717fea9677e1720> /usr/lib/libxslt.1.dylib
       0x1994d8000 -        0x1995bdfff  WebKitLegacy arm64  <2c47baeea50b32f6bab25105cfc7df1f> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
       0x1995be000 -        0x199686fff  CoreUI arm64  <c5f28ba5feee3fa68d7d42174e006ad5> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
       0x199687000 -        0x1996aefff  DictionaryServices arm64  <95116730515a356b990751cd0513b912> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
       0x1996af000 -        0x1996b0fff  HangTracer arm64  <d433b5e6e9d93fbeb761be625f893433> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
       0x1996b1000 -        0x199701fff  PhysicsKit arm64  <abbda49ec9cb3e67934ed6ca38a54986> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
       0x199702000 -        0x1997dafff  UIFoundation arm64  <bf83b49e8565319c87a0d11769135836> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
       0x1997e7000 -        0x19a573fff  UIKit arm64  <1804405f7b2a3e77a349b53163b09cdb> /System/Library/Frameworks/UIKit.framework/UIKit
       0x19a574000 -        0x19a59cfff  CoreBluetooth arm64  <12009b6e55113d8da05a44a02f819497> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
       0x19a59d000 -        0x19a5c2fff  DataAccessExpress arm64  <ee3cce236aaf3b77b59100acd44c2f29> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
       0x19a5c3000 -        0x19a5e4fff  NetworkStatistics arm64  <a0b0f25f321b35fba72fcdddcc334766> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
       0x19a5e5000 -        0x19a66efff  AddressBook arm64  <54368e264b6b3cf5bfc46b20d8c407be> /System/Library/Frameworks/AddressBook.framework/AddressBook
       0x19a66f000 -        0x19a7ccfff  CoreMotion arm64  <32e6ecff39443a1687ad3f188b97b09f> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
       0x19a7cd000 -        0x19a7fafff  CacheDelete arm64  <8da9a120ed5f31fcb904a48633c0612c> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
       0x19a7fb000 -        0x19a808fff  CoreAUC arm64  <671a13f17b6d3f7da0b81595e1957bc5> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
       0x19a809000 -        0x19adaafff  MediaToolbox arm64  <6a968276d7153a80b6059d561045f83d> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
       0x19adab000 -        0x19af56fff  Celestial arm64  <4b71ffa1c45d346887475b45f842fb12> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
       0x19af57000 -        0x19af66fff  IntlPreferences arm64  <41f26994496f3c4981cd2939832f54d6> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
       0x19af67000 -        0x19af69fff  CoreDuetDebugLogging arm64  <a16fb61a2c833e93852b77b5b5520db2> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
       0x19af6a000 -        0x19af7efff  CoreDuetDaemonProtocol arm64  <486d428723a038fc994d0b926b4a84af> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
       0x19af7f000 -        0x19b054fff  CoreDuet arm64  <8ab25716062a373c9bb1c54fc647d0fe> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
       0x19b055000 -        0x19b207fff  AVFoundation arm64  <4fed94e1676f3b50928f9be1cb375e75> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
       0x19b208000 -        0x19b23afff  libtidy.A.dylib arm64  <daa87ffd63a43a5aa805bce93b398a11> /usr/lib/libtidy.A.dylib
       0x19b23b000 -        0x19b2a1fff  IMFoundation arm64  <a2ca1e8dfe203f928802b19dcca8fbf7> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
       0x19b2a2000 -        0x19b92ffff  GeoServices arm64  <43d3e18725873a68be5c828ce90a623a> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
       0x19b930000 -        0x19b931fff  DiagnosticLogCollection arm64  <944c96e416a331efbf7bab3839ccd10d> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
       0x19b932000 -        0x19b933fff  Marco arm64  <bff480036e39364fafccd764c6dbaeb4> /System/Library/PrivateFrameworks/Marco.framework/Marco
       0x19b934000 -        0x19b9b8fff  CoreLocation arm64  <28f1187102a531528323faead1645b58> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
       0x19b9b9000 -        0x19b9befff  ConstantClasses arm64  <9d635c1173f83a22b1d1b1e53c16f6bb> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
       0x19bc4b000 -        0x19bc9cfff  IDSFoundation arm64  <ae619c4ab4343eaaaf51a9d5cc3acd3f> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
       0x19bc9d000 -        0x19bd63fff  IDS arm64  <f6a74797fdb43277b966a72442b3a803> /System/Library/PrivateFrameworks/IDS.framework/IDS
       0x19bd64000 -        0x19bd81fff  MediaServices arm64  <b4725476785c34aa8518b5b4a9ae13e6> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
       0x19bd82000 -        0x19bdc2fff  AuthKit arm64  <fb557bb1badb3e298bbc0b0945322e33> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
       0x19bdc3000 -        0x19bdc8fff  libheimdal-asn1.dylib arm64  <166bb8b0eaa6368d836a7702b4ade694> /usr/lib/libheimdal-asn1.dylib
       0x19bdc9000 -        0x19be77fff  MediaRemote arm64  <aed85a16fdeb30c7bb1e12c1ca7361ed> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
       0x19be78000 -        0x19bffffff  MobileSpotlightIndex arm64  <5383bbd06360330b8ad7f3d857bf0f87> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
       0x19c000000 -        0x19c020fff  PlugInKit arm64  <354f2edb8c5e3f4b95155b744b56ecc8> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
       0x19c021000 -        0x19c04dfff  ProtectedCloudStorage arm64  <1be1f41a77f138e7b177db7aea32c460> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
       0x19c04e000 -        0x19c069fff  libresolv.9.dylib arm64  <1088f2b7d38b3b29b79ea0a4de8eb83c> /usr/lib/libresolv.9.dylib
       0x19c06a000 -        0x19c07ffff  ApplePushService arm64  <404f080a4df430a6a4012958806b6e57> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
       0x19c080000 -        0x19c0cffff  ContactsFoundation arm64  <b2d796f48a0d336fb6f3d048299c9aa3> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
       0x19c0d6000 -        0x19c17efff  Contacts arm64  <74d5212f603f3e9ca9522262ad9aeacf> /System/Library/Frameworks/Contacts.framework/Contacts
       0x19c17f000 -        0x19c1cdfff  CoreSpotlight arm64  <dd56f04ebe813448a8009a72e6a5d4c0> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
       0x19c1ce000 -        0x19c1f6fff  vCard arm64  <6177f1a1d74e3a788a888913862c8487> /System/Library/PrivateFrameworks/vCard.framework/vCard
       0x19c423000 -        0x19c425fff  MessageSupport arm64  <9da4f5d6c66e33a191bfa15af72d846c> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
       0x19c426000 -        0x19c47afff  MIME arm64  <e389f4b280673c67b9f52e35f3dacd65> /System/Library/PrivateFrameworks/MIME.framework/MIME
       0x19c516000 -        0x19c532fff  AppleIDSSOAuthentication arm64  <86f02c1364c433578943f63cfdd6d63f> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
       0x19c533000 -        0x19c543fff  MailServices arm64  <9294a06f0a3834068ebf3d872a27d7ff> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
       0x19c544000 -        0x19c5b2fff  AppleAccount arm64  <ddcedeb71dde3b96af5ef48fafdbcaa3> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
       0x19c5b3000 -        0x19c5b7fff  CommunicationsFilter arm64  <c09574c4d9f132d080f543f4d2bc7c1d> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
       0x19c5b8000 -        0x19c5dcfff  ChunkingLibrary arm64  <2d79fcffe0a8325bb364c297197c2d65> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
       0x19c5dd000 -        0x19c5e8fff  CaptiveNetwork arm64  <5d095ea1c7e93865a577f73201dc43df> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
       0x19c5e9000 -        0x19c617fff  EAP8021X arm64  <87f61032e0c23911a752f834b3bf1ffa> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
       0x19c618000 -        0x19c61efff  AssetCacheServices arm64  <075670ecd32d3fbeb5b3ce6da947f51b> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
       0x19c61f000 -        0x19c6f8fff  MMCS arm64  <92dc4de4192c362591d4b4e019af6db1> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
       0x19c6f9000 -        0x19c729fff  MobileWiFi arm64  <b8634bee980a3594aeadee3f06a7186d> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
       0x19c72a000 -        0x19c76cfff  ContentIndex arm64  <19eda95a34c639d093b9dc61c0b3f4e6> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
       0x19c7cb000 -        0x19c7fbfff  Bom arm64  <9545e5dc0248350ea55266dafdf1c3f7> /System/Library/PrivateFrameworks/Bom.framework/Bom
       0x19c7fc000 -        0x19c803fff  CertUI arm64  <8fcb899eb96c3ca2a44f0f439a26b4fb> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
       0x19c804000 -        0x19c854fff  FTServices arm64  <b7c8a07e3a6336f286d247ec2b404488> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
       0x19c855000 -        0x19c8b3fff  CoreDAV arm64  <11b89b735ad93ffca4d0efb854df9ab8> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
       0x19c8c2000 -        0x19c8d6fff  UserManagement arm64  <26bc451e92fd3d18a4f237c34798385a> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
       0x19c8d7000 -        0x19c99ffff  CorePDF arm64  <83ce0866f79834d1b91423333a40f932> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
       0x19c9a0000 -        0x19c9d4fff  iCalendar arm64  <a6f2dc3bfc41351c9dded418139ee97d> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
       0x19c9dd000 -        0x19ca3cfff  CalendarFoundation arm64  <d8bae7d431e5328ca1d2716a42f29eae> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
       0x19cb3c000 -        0x19cbd4fff  CalendarDatabase arm64  <5997d40c47c632ad848c0da62416fff7> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
       0x19cbd5000 -        0x19cc1afff  CalendarDaemon arm64  <737888a19d1d3e2eb55023f964582a8d> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
       0x19cc1b000 -        0x19cceafff  EventKit arm64  <39e4a110cfb53e2f83a3f54255233a03> /System/Library/Frameworks/EventKit.framework/EventKit
       0x19cceb000 -        0x19cfeefff  WebKit arm64  <17220d29d7b2334db44059e6ff7f61e5> /System/Library/Frameworks/WebKit.framework/WebKit
       0x19cfef000 -        0x19d035fff  WebBookmarks arm64  <e79d45649948354a8585b97e91ec1380> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
       0x19d036000 -        0x19d17efff  ContactsUI arm64  <a5d684c338fb3ad9a5758cb81cae2073> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
       0x19d93a000 -        0x19d940fff  DAAPKit arm64  <e2f5c35af4e73c0b8880725e14fc12e7> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
       0x19da92000 -        0x19dcfcfff  MusicLibrary arm64  <0b694389c0443d8f905235f5b346964c> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
       0x19dcfd000 -        0x19dd3bfff  Notes arm64  <a0ede9e5e20e36938fda18c8e2e2de65> /System/Library/PrivateFrameworks/Notes.framework/Notes
       0x19dd3c000 -        0x19de13fff  AddressBookUI arm64  <83d4193ac4dd31b9b1690a0ecd1cd5f0> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
       0x19de14000 -        0x19def1fff  CloudKit arm64  <57ee991dbad6343aa5b1da537ef0c65f> /System/Library/Frameworks/CloudKit.framework/CloudKit
       0x19def2000 -        0x19df4ffff  iTunesStore arm64  <6b3c659271773947b78c6f2bdcec916e> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
       0x19df50000 -        0x19df56fff  CloudPhotoServices arm64  <381563610a603902b5a5bc6eb71411fb> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
       0x19df57000 -        0x19e04dfff  CloudPhotoLibrary arm64  <5aea2d9cd31a314c8c4107445241a237> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
       0x19e04e000 -        0x19e09dfff  DataAccess arm64  <210f37b04eab3bc0baa17f1218505f25> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
       0x19e09e000 -        0x19e0c5fff  AssetsLibraryServices arm64  <da2212f776a73a3cbae134918f26336c> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
       0x19e0c6000 -        0x19e15efff  HomeSharing arm64  <16daec5c02433eb4947ae0cce5a58ce1> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
       0x19e15f000 -        0x19e18dfff  ACTFramework arm64  <4109d6d2547c3ff6947434cd22492bfd> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework
       0x19e18e000 -        0x19e199fff  DCIMServices arm64  <e83ee6449bd43b719ee6689f153fb4eb> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
       0x19e19a000 -        0x19e2c7fff  CoreMediaStream arm64  <73e65daffe5c3aa7a54d64817cf62583> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
       0x19e2c8000 -        0x19e2e0fff  PhotosFormats arm64  <0a62b66d803e3ade95d2e303f5dc92ce> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
       0x19e2e1000 -        0x19e2e8fff  XPCKit arm64  <238c5b445c233772b1456419738eb478> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
       0x19e2e9000 -        0x19e667fff  MediaPlayer arm64  <7f0e6ef0d236360a96c4eb58067704f0> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
       0x19e668000 -        0x19e74efff  CameraKit arm64  <dced4b1aaa6c3025a834b265f84c86db> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit
       0x19e757000 -        0x19e772fff  MediaStream arm64  <c09f05a03f4531c8a40dc8c1b0e5d352> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
       0x19e773000 -        0x19eaf9fff  PhotoLibraryServices arm64  <e254ca00e46f3ca8a90a29c3018e3dc3> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
       0x19eb31000 -        0x19eb9ffff  libprotobuf.dylib arm64  <0281cb59de1d3e858bd9e59dddaf41ff> /usr/lib/libprotobuf.dylib
       0x19edd4000 -        0x19ef11fff  Message arm64  <ecd86c630dbd3fcfa592adb5cfa4d493> /System/Library/PrivateFrameworks/Message.framework/Message
       0x19efc5000 -        0x19eff8fff  DataDetectorsCore arm64  <36ddb64003543f17a4ae5f50cf5ca896> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
       0x19f007000 -        0x19f24afff  libAWDSupportFramework.dylib arm64  <5d208ba22cbd3626a213751b9f5a08da> /usr/lib/libAWDSupportFramework.dylib
       0x19f28a000 -        0x19f2c7fff  WirelessDiagnostics arm64  <940dc9eff3fd3865ae91cb2af37e86aa> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
       0x19f4a5000 -        0x19f4b0fff  CoreRecents arm64  <5919be3a936736239f53dc6057ac945e> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
       0x19f5b1000 -        0x19f5c4fff  AssetsLibrary arm64  <f7bc78a1943130c387a5d9661bd239cb> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
       0x19fe21000 -        0x19fe24fff  FTClientServices arm64  <cf575d90f0ef36b2a055840f02691b56> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
       0x1a0020000 -        0x1a0059fff  ContactsAutocomplete arm64  <797d7b400c5331fa9d7a7f6ded49b0db> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
       0x1a006a000 -        0x1a0148fff  MessageUI arm64  <db6cdc704fcd362797fa7a59836fc841> /System/Library/Frameworks/MessageUI.framework/MessageUI
       0x1a0149000 -        0x1a01c1fff  libnetwork.dylib arm64  <5a78675ccd2f3b50ba5ae3e5ef088969> /usr/lib/libnetwork.dylib
       0x1a01d5000 -        0x1a0253fff  Network arm64  <7c97545661d93a238dd3201713c90bbe> /System/Library/PrivateFrameworks/Network.framework/Network
       0x1a03f5000 -        0x1a040bfff  FTAWD arm64  <d5d986fdf2a73746badf86337ea26b3a> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
       0x1a2566000 -        0x1a26bffff  libGLProgrammability.dylib arm64  <1d853e0bd87737459c8970fcb7b46a5b> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
       0x1a3473000 -        0x1a347cfff  libGPUSupportMercury.dylib arm64  <8fed78f301243709bd259315697568b8> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
       0x1a3482000 -        0x1a3514fff  MediaPlatform arm64  <a956f56e7f5137f6b6fcd0012b79f0f7> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
       0x1a3fbe000 -        0x1a401afff  CoreBrightness arm64  <85ad1b8cc94739a6a1e65cfb56900997> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
       0x1a432a000 -        0x1a4453fff  StoreServicesCore arm64  <265f2ee887003ee7a6f622c9278f1861> /System/Library/PrivateFrameworks/StoreServicesCore.framework/StoreServicesCore
       0x1a4993000 -        0x1a4dd6fff  MediaLibraryCore arm64  <02b1955ea96135e195d5bea426c6702e> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
       0x1a50ae000 -        0x1a5100fff  libstdc++.6.dylib arm64  <eabed2bf79e137e6acc7efaff2dc7cf2> /usr/lib/libstdc++.6.dylib
       0x1a520c000 -        0x1a520ffff  AGXCompilerConnection arm64  <70c75ef975f0394e910e237ff7eed31a> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
       0x1a7f0b000 -        0x1a7fa7fff  AGXGLDriver arm64  <d0c9bc4e248536ad821144d2a3753ba2> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
       0x1a7fbf000 -        0x1a7fd3fff  libCGInterfaces.dylib arm64  <a94effd0df4d3bb691067ae3ae270125> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
       0x1a7fd4000 -        0x1a824cfff  AudioCodecs arm64  <dc938f61b75f327cb996d8ca884683f1> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
       0x1a8694000 -        0x1a877efff  GLEngine arm64  <ae68caa3ad9a39018fd54262c933e303> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
       0x1a8ec4000 -        0x1a8ed2fff  AppleFSCompression arm64  <a1afd6c88f183b0896626b220de4d2c2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
       0x1a8ed3000 -        0x1a8edefff  AppleIDAuthSupport arm64  <5ef7f5e8da2c364b9d459b7280615c26> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
       0x1a9b94000 -        0x1a9bbafff  CoreServicesInternal arm64  <3a007d98794d3e3a9d1f377b2c3619ee> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
       0x1aa2f4000 -        0x1aa300fff  libGSFontCache.dylib arm64  <e35b6863bb623df5b8e7735a66f76e50> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
       0x1aa301000 -        0x1aa332fff  libTrueTypeScaler.dylib arm64  <de847921d0693dc48e78f8847117768a> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
       0x1acddd000 -        0x1acfb8fff  libFosl_dynamic.dylib arm64  <0aa33a84bd8630f29c6fc401fa0ffd5e> /usr/lib/libFosl_dynamic.dylib
       0x1ad3cf000 -        0x1ad3fefff  libpcap.A.dylib arm64  <983b5efbde5d30238673d8b74a8a2653> /usr/lib/libpcap.A.dylib
       0x1ad43a000 -        0x1ad50bfff  AVFAudio arm64  <b1a0fc23635a35bb8ba6e8fe869cae92> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
       0x1ad50c000 -        0x1ad515fff  ProactiveEventTracker arm64  <5b8319222fbb31c58bd392b6d4fc1035> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
       0x1ad516000 -        0x1ad66cfff  Intents arm64  <242a81c86a613c7e961765694a6f9e89> /System/Library/Frameworks/Intents.framework/Intents
       0x1ad7b0000 -        0x1ad7d3fff  UserNotifications arm64  <0dd7c46e70d23483a26b02bfed7be22f> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
       0x1ad7e3000 -        0x1ad7f1fff  PersonaKit arm64  <11315b9f03073d42a84dfedc91b43347> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
       0x1adce9000 -        0x1ade73fff  TextureIO arm64  <c54172604d14378eb9ca8a71942a9a7e> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
       0x1ae38f000 -        0x1ae3d9fff  ContactsUICore arm64  <e046c6d1c0d33c0dadfe2a5c663a6683> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
       0x1af336000 -        0x1af348fff  libBNNS.dylib arm64  <4fe669ed8f7e3fd6aa4687faa52c18e9> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
       0x1af349000 -        0x1af34efff  libQuadrature.dylib arm64  <b42c49db566e3e5f9577adbfcf2e0a42> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
       0x1af6ea000 -        0x1af6fbfff  CoreEmoji arm64  <a5aa53b703bf3c669425672d599a24f9> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
       0x1afbb7000 -        0x1afbb7fff  IntentsFoundation arm64  <011ec9d36ee0348aa1c272522b03a06f> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
       0x1afcd6000 -        0x1afd9efff  NLP arm64  <41213ee6dc4c3221876add1679d24b72> /System/Library/PrivateFrameworks/NLP.framework/NLP
       0x1b0dd4000 -        0x1b0e4bfff  libate.dylib arm64  <afb1757e1bdd3804b372511c4c3ba662> /usr/lib/libate.dylib
       0x1b0e4c000 -        0x1b0e4cfff  libcoretls.dylib arm64  <3798381066cd3288b95a25164d224a06> /usr/lib/libcoretls.dylib
       0x1b0e4d000 -        0x1b0e4efff  libcoretls_cfhelpers.dylib arm64  <f528dac189a931439165cffb8579f5ef> /usr/lib/libcoretls_cfhelpers.dylib

Extra Information:

Stack Dump (0x000000016e516d30-0x000000016e516e20):

000500000000000030C29A3B000000000E000000000000000000000000000000E00A247001000000C0A8067001000000F8DA7C02010000000200000000000000C06D516E0100000020BDF20001000000006E516E0100000000000000000000007F0000000000000098DA7C020100000030000000000000000200000000000000F8DA7C0201000000004E9E0301000000406E516E0100000098BAF2000100000008E6067001000000304E9E030100000020569E030100000018003CB8D7430A61000000000000000000000000000000000000000000000000050000000000000020ED20B90100000000D020B901000000

Notable Addresses:
{
    "stack at 0x16e516d50": {
        "address": 6176377568,
        "type": "string",
        "value": "DNOC"
    },
    "stack at 0x16e516d58": {
        "address": 6174451904,
        "type": "string",
        "value": "ZTUM"
    }
}

Application Stats:
{
    "active_time_since_last_crash": 0,
    "active_time_since_launch": 0,
    "application_active": false,
    "application_in_foreground": true,
    "background_time_since_last_crash": 0,
    "background_time_since_launch": 0,
    "launches_since_last_crash": 84,
    "sessions_since_last_crash": 84,
    "sessions_since_launch": 1
}

CrashDoctor Diagnosis: Attempted to dereference garbage pointer 0x10000000003.
Originated at or in a subcall of magazine_cache_push_magazine
-------------- next part --------------
Incident Identifier: DB381655-3994-4C14-B9EB-BAF490391308
CrashReporter Key:   4a6830ba3bfd700f578d099b7dbd7a05d81bacc1
Hardware Model:      iPad4,4
Process:         Homesmart [257]
Path:            /var/containers/Bundle/Application/F85B5E3A-E4D6-4B86-89B9-A51AF9E230A5/Homesmart.app/Homesmart
Identifier:      com.neotechindia.homesmart
Version:         1.2.1 (4)
Code Type:       ARM-64
Parent Process:  ? [1]

Date/Time:       2017-12-26 12:40:41.000 +0530
OS Version:      iOS 10.3.2 (14F89)
Report Version:  104

Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: 0x00000000 at 0x0000000000000000
Crashed Thread:  20

Thread 0:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   GraphicsServices                0x0000000190dfc074 0x190df0000 + 49268 (GSEventRunModal + 100)
6   UIKit                           0x0000000195646058 0x1955d1000 + 479320 (UIApplicationMain + 208)
7   Homesmart                       0x00000001001ee1fc 0x100048000 + 1729020 (_mh_execute_header + 1729020)
8   libdyld.dylib                   0x000000018e3a159c 0x18e39d000 + 17820 (<redacted> + 4)

Thread 1:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   AVFAudio                        0x00000001a8fd8540 0x1a8f64000 + 476480 (<redacted> + 164)
6   AVFAudio                        0x00000001a8ffe814 0x1a8f64000 + 632852 (<redacted> + 84)
7   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
8   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 2:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   Foundation                      0x000000018feacd74 0x18fea0000 + 52596 (<redacted> + 304)
6   Foundation                      0x000000018fecdb44 0x18fea0000 + 187204 (<redacted> + 96)
7   UIKit                           0x0000000195fd06a8 0x1955d1000 + 10483368 (<redacted> + 136)
8   Foundation                      0x000000018ffaa2d8 0x18fea0000 + 1090264 (<redacted> + 996)
9   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
10  libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 3:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   libsystem_kernel.dylib          0x000000018e49733c 0x18e492000 + 21308 (thread_suspend + 80)
3   Homesmart                       0x00000001001667ec 0x100048000 + 1173484 (_mh_execute_header + 1173484)
4   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
5   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 4:

Thread 5:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   CoreFoundation                  0x000000018f3df9c0 0x18f38a000 + 350656 (CFRunLoopRun + 112)
6   CoreMotion                      0x00000001964e501c 0x196476000 + 454684 (CLStartStopAdvertisingBeacon + 203104)
7   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
8   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 6:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100d6e784 0x100048000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000100d6ea5c 0x100048000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x000000010014c79c 0x100048000 + 1066908 (_mh_execute_header + 1066908)
4   libdispatch.dylib               0x000000018e36e9e0 0x18e36d000 + 6624 (<redacted> + 24)
5   libdispatch.dylib               0x000000018e36e9a0 0x18e36d000 + 6560 (<redacted> + 16)
6   libdispatch.dylib               0x000000018e37d0d4 0x18e36d000 + 65748 (<redacted> + 644)
7   libdispatch.dylib               0x000000018e37ea50 0x18e36d000 + 72272 (<redacted> + 540)
8   libdispatch.dylib               0x000000018e37e7d0 0x18e36d000 + 71632 (<redacted> + 124)
9   libsystem_pthread.dylib         0x000000018e577100 0x18e576000 + 4352 (_pthread_wqthread + 1096)

Thread 7:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   Foundation                      0x000000018feacd74 0x18fea0000 + 52596 (<redacted> + 304)
6   Homesmart                       0x0000000100087e30 0x100048000 + 261680 (_mh_execute_header + 261680)
7   Foundation                      0x000000018ffaa2d8 0x18fea0000 + 1090264 (<redacted> + 996)
8   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
9   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 8:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   CFNetwork                       0x000000018fb9edf4 0x18fabd000 + 925172 (<redacted> + 404)
6   Foundation                      0x000000018ffaa2d8 0x18fea0000 + 1090264 (<redacted> + 996)
7   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
8   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 9:
0   libsystem_kernel.dylib          0x000000018e4b123c 0x18e492000 + 127548 (select$DARWIN_EXTSN + 8)
1   CoreFoundation                  0x000000018f46bcb0 0x18f38a000 + 924848 (<redacted> + 632)
2   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
3   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 10:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100d6e784 0x100048000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000100d6ea5c 0x100048000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x0000000100eec538 0x100048000 + 15353144 (_gnutls_global_init_skip + 988364)
4   Homesmart                       0x0000000100d5b97c 0x100048000 + 13711740 (_mh_execute_header + 13711740)
5   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
6   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 11:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100d6e784 0x100048000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000100d6ea5c 0x100048000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x000000010014c79c 0x100048000 + 1066908 (_mh_execute_header + 1066908)
4   libdispatch.dylib               0x000000018e36e9e0 0x18e36d000 + 6624 (<redacted> + 24)
5   libdispatch.dylib               0x000000018e36e9a0 0x18e36d000 + 6560 (<redacted> + 16)
6   libdispatch.dylib               0x000000018e37d0d4 0x18e36d000 + 65748 (<redacted> + 644)
7   libdispatch.dylib               0x000000018e37ea50 0x18e36d000 + 72272 (<redacted> + 540)
8   libdispatch.dylib               0x000000018e37e7d0 0x18e36d000 + 71632 (<redacted> + 124)
9   libsystem_pthread.dylib         0x000000018e577100 0x18e576000 + 4352 (_pthread_wqthread + 1096)

Thread 12:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100d6e784 0x100048000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000100d6ea5c 0x100048000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x0000000100eec538 0x100048000 + 15353144 (_gnutls_global_init_skip + 988364)
4   Homesmart                       0x0000000100d5b97c 0x100048000 + 13711740 (_mh_execute_header + 13711740)
5   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
6   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 13:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100d6e784 0x100048000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000100d6ea5c 0x100048000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x000000010014c79c 0x100048000 + 1066908 (_mh_execute_header + 1066908)
4   libdispatch.dylib               0x000000018e36e9e0 0x18e36d000 + 6624 (<redacted> + 24)
5   libdispatch.dylib               0x000000018e36e9a0 0x18e36d000 + 6560 (<redacted> + 16)
6   libdispatch.dylib               0x000000018e37d0d4 0x18e36d000 + 65748 (<redacted> + 644)
7   libdispatch.dylib               0x000000018e37ea50 0x18e36d000 + 72272 (<redacted> + 540)
8   libdispatch.dylib               0x000000018e37e7d0 0x18e36d000 + 71632 (<redacted> + 124)
9   libsystem_pthread.dylib         0x000000018e577100 0x18e576000 + 4352 (_pthread_wqthread + 1096)

Thread 14:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100d6e784 0x100048000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000100d6ea5c 0x100048000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x0000000100eec538 0x100048000 + 15353144 (_gnutls_global_init_skip + 988364)
4   Homesmart                       0x0000000100d5b97c 0x100048000 + 13711740 (_mh_execute_header + 13711740)
5   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
6   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 15:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100d6e784 0x100048000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000100d6ea5c 0x100048000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x0000000100ee5d3c 0x100048000 + 15326524 (_gnutls_global_init_skip + 961744)
4   Homesmart                       0x0000000100ee15e0 0x100048000 + 15308256 (_gnutls_global_init_skip + 943476)
5   Homesmart                       0x0000000100d5b97c 0x100048000 + 13711740 (_mh_execute_header + 13711740)
6   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
7   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 16:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100cf9c78 0x100048000 + 13311096 (_mh_execute_header + 13311096)
2   Homesmart                       0x0000000100457a58 0x100048000 + 4258392 (_mh_execute_header + 4258392)
3   Homesmart                       0x0000000100ed7504 0x100048000 + 15267076 (_gnutls_global_init_skip + 902296)
4   Homesmart                       0x0000000100ed6c54 0x100048000 + 15264852 (_gnutls_global_init_skip + 900072)
5   Homesmart                       0x0000000100f365a0 0x100048000 + 15656352 (_gnutls_global_init_skip + 1291572)
6   Homesmart                       0x0000000100d57cc0 0x100048000 + 13696192 (_mh_execute_header + 13696192)
7   Homesmart                       0x0000000100d5b97c 0x100048000 + 13711740 (_mh_execute_header + 13711740)
8   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
9   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 17:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   AudioToolbox                    0x00000001924169fc 0x192262000 + 1788412 (<redacted> + 164)
6   AudioToolbox                    0x00000001925ea4bc 0x192262000 + 3703996 (<redacted> + 84)
7   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
8   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 18:
0   libsystem_kernel.dylib          0x000000018e4b0e1c 0x18e492000 + 126492 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x000000018e578814 0x18e576000 + 10260 (<redacted> + 640)
2   Homesmart                       0x00000001007707e0 0x100048000 + 7505888 (_mh_execute_header + 7505888)
3   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 19:
0   libsystem_kernel.dylib          0x000000018e4b0e1c 0x18e492000 + 126492 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x000000018e578814 0x18e576000 + 10260 (<redacted> + 640)
2   Homesmart                       0x00000001007707e0 0x100048000 + 7505888 (_mh_execute_header + 7505888)
3   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 20 Crashed:
0   Homesmart                       0x0000000100d5b390 0x100048000 + 13710224 (_mh_execute_header + 13710224)
1   Homesmart                       0x0000000100d5b370 0x100048000 + 13710192 (_mh_execute_header + 13710192)
2   Homesmart                       0x0000000100d5b250 0x100048000 + 13709904 (_mh_execute_header + 13709904)
3   libsystem_pthread.dylib         0x000000018e577dd4 0x18e576000 + 7636 (<redacted> + 496)
4   libsystem_pthread.dylib         0x000000018e577b48 0x18e576000 + 6984 (<redacted> + 200)
5   libsystem_pthread.dylib         0x000000018e5771d8 0x18e576000 + 4568 (_pthread_wqthread + 1312)

Thread 21:
0   libsystem_kernel.dylib          0x000000018e4b1a88 0x18e492000 + 129672 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x000000018e576fd0 0x18e576000 + 4048 (_pthread_wqthread + 792)

Thread 22:

Thread 23:
0   libsystem_kernel.dylib          0x000000018e4b1a88 0x18e492000 + 129672 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x000000018e5771a4 0x18e576000 + 4516 (_pthread_wqthread + 1260)

Thread 24:

Thread 20 crashed with ARM-64 Thread State:
  cpsr: 0x0000000060000000     fp: 0x000000016df8eda0     lr: 0x0000000100d5b370     pc: 0x0000000100d5b390 
    sp: 0x000000016df8ed60     x0: 0x0000000000000000     x1: 0x000c8100000c8203    x10: 0x0000000000000000 
   x11: 0x00000001042718f0    x12: 0x0000000000000000    x13: 0x00000000000c8200    x14: 0x00000001704efcdc 
   x15: 0xfffffff100000000    x16: 0x000000018e5771ec    x17: 0x000000018f3b6f74    x18: 0x0000000000000000 
   x19: 0x0000000000000002     x2: 0x0000000000000000    x20: 0x00000001057a8cc0    x21: 0x0000000000000043 
   x22: 0x0000000102456b58    x23: 0x0000000000000002    x24: 0x000000000000007f    x25: 0x000000016df8edb8 
   x26: 0x0000000000000003    x27: 0x0000000000000000    x28: 0x0000000138215030    x29: 0x000000016df8eda0 
    x3: 0x0000000000000000     x4: 0x00000000a40008ff     x5: 0x0000000000000000     x6: 0x0000000000000000 
    x7: 0x0000000000000022     x8: 0x00000001042718f0     x9: 0x0000000138014000 

Binary Images:
       0x100048000 -        0x101c87fff +Homesmart arm64  <43a60ad888383b2e90745e49ee6441c7> /var/containers/Bundle/Application/F85B5E3A-E4D6-4B86-89B9-A51AF9E230A5/Homesmart.app/Homesmart
       0x18de98000 -        0x18de99fff  libSystem.B.dylib arm64  <2e9654eb84903bd7aee0815fd9d27591> /usr/lib/libSystem.B.dylib
       0x18de9a000 -        0x18deeffff  libc++.1.dylib arm64  <da0f6a86db853140b2d79e3b36f28795> /usr/lib/libc++.1.dylib
       0x18def0000 -        0x18df0cfff  libc++abi.dylib arm64  <5dc5ba28cfa43f838099049d17ba9ec6> /usr/lib/libc++abi.dylib
       0x18df10000 -        0x18e2edfff  libobjc.A.dylib arm64  <85f3b59b96243690b138ce96e663bf4b> /usr/lib/libobjc.A.dylib
       0x18e2ee000 -        0x18e2f2fff  libcache.dylib arm64  <5d1024035c983afdacc90dad2f0280ec> /usr/lib/system/libcache.dylib
       0x18e2f3000 -        0x18e2fefff  libcommonCrypto.dylib arm64  <0ca00f1d89553b9e8ad032310e8ecbb8> /usr/lib/system/libcommonCrypto.dylib
       0x18e2ff000 -        0x18e302fff  libcompiler_rt.dylib arm64  <771427d857db3158b2f7d971afa219c9> /usr/lib/system/libcompiler_rt.dylib
       0x18e303000 -        0x18e30afff  libcopyfile.dylib arm64  <793e7046ae7c3b65b17d6e0d9fe975fd> /usr/lib/system/libcopyfile.dylib
       0x18e30b000 -        0x18e36cfff  libcorecrypto.dylib arm64  <66d47f7529873633892967a26e598456> /usr/lib/system/libcorecrypto.dylib
       0x18e36d000 -        0x18e39cfff  libdispatch.dylib arm64  <1643bcf57daf389784dfcad8c485fd3e> /usr/lib/system/libdispatch.dylib
       0x18e39d000 -        0x18e3a1fff  libdyld.dylib arm64  <6c6a61f720cf30daa4a357cbefbf4cd6> /usr/lib/system/libdyld.dylib
       0x18e3a2000 -        0x18e3a2fff  liblaunch.dylib arm64  <1539b0564b4b34f78ab27c96400c3619> /usr/lib/system/liblaunch.dylib
       0x18e3a3000 -        0x18e3a8fff  libmacho.dylib arm64  <9434199c06b73b7090f38d0d0f6e6c20> /usr/lib/system/libmacho.dylib
       0x18e3a9000 -        0x18e3aafff  libremovefile.dylib arm64  <2262f08800e630af981ed21f7240d32e> /usr/lib/system/libremovefile.dylib
       0x18e3ab000 -        0x18e3c2fff  libsystem_asl.dylib arm64  <8c876d02afeb3aa18e733bbdbfa074f9> /usr/lib/system/libsystem_asl.dylib
       0x18e3c3000 -        0x18e3c3fff  libsystem_blocks.dylib arm64  <45adbecbe4b93744911aa6314fbbc8ff> /usr/lib/system/libsystem_blocks.dylib
       0x18e3c4000 -        0x18e440fff  libsystem_c.dylib arm64  <31008bfe57f7313a974fad1f76e24496> /usr/lib/system/libsystem_c.dylib
       0x18e441000 -        0x18e445fff  libsystem_configuration.dylib arm64  <99e65007dcd2368da0a7896f491ece18> /usr/lib/system/libsystem_configuration.dylib
       0x18e446000 -        0x18e44bfff  libsystem_containermanager.dylib arm64  <62636c63790b3c0d9cc115fc73d66ba2> /usr/lib/system/libsystem_containermanager.dylib
       0x18e44c000 -        0x18e44dfff  libsystem_coreservices.dylib arm64  <9eec7dc8a2d831639eaf9bd9b3e70377> /usr/lib/system/libsystem_coreservices.dylib
       0x18e44e000 -        0x18e466fff  libsystem_coretls.dylib arm64  <f7a5e11e082d37babe31812e9717fcf0> /usr/lib/system/libsystem_coretls.dylib
       0x18e467000 -        0x18e46dfff  libsystem_dnssd.dylib arm64  <9700821f537737e4b2f91607acb78aa7> /usr/lib/system/libsystem_dnssd.dylib
       0x18e46e000 -        0x18e491fff  libsystem_info.dylib arm64  <077e4a85b19f3b00b768a5eb34fe46b5> /usr/lib/system/libsystem_info.dylib
       0x18e492000 -        0x18e4b6fff  libsystem_kernel.dylib arm64  <275624061b1a3ab391baf08b4ba58a97> /usr/lib/system/libsystem_kernel.dylib
       0x18e4b7000 -        0x18e4e3fff  libsystem_m.dylib arm64  <d8e9248df4523f35a7ac365dab827fba> /usr/lib/system/libsystem_m.dylib
       0x18e4e4000 -        0x18e4fffff  libsystem_malloc.dylib arm64  <56104290e798374188ef0da981dc3146> /usr/lib/system/libsystem_malloc.dylib
       0x18e500000 -        0x18e559fff  libsystem_network.dylib arm64  <54ba9caf24023fd0ad569557ac08b1a6> /usr/lib/system/libsystem_network.dylib
       0x18e55a000 -        0x18e563fff  libsystem_networkextension.dylib arm64  <8aef40a6317b3062b40dc94d87f7d1bf> /usr/lib/system/libsystem_networkextension.dylib
       0x18e564000 -        0x18e56efff  libsystem_notify.dylib arm64  <1da4fe88c1ad31b6a5c7c2138f5d1c94> /usr/lib/system/libsystem_notify.dylib
       0x18e56f000 -        0x18e575fff  libsystem_platform.dylib arm64  <a0a582b8f653379e8ac7799e83c90b1f> /usr/lib/system/libsystem_platform.dylib
       0x18e576000 -        0x18e57ffff  libsystem_pthread.dylib arm64  <8f14c41e6536348a9b6ffd2a82be7d57> /usr/lib/system/libsystem_pthread.dylib
       0x18e580000 -        0x18e583fff  libsystem_sandbox.dylib arm64  <ac550550955c37c2b2e4022095b4b8de> /usr/lib/system/libsystem_sandbox.dylib
       0x18e584000 -        0x18e58bfff  libsystem_symptoms.dylib arm64  <39c51c9bffa030ef82de6c281436e836> /usr/lib/system/libsystem_symptoms.dylib
       0x18e58c000 -        0x18e59efff  libsystem_trace.dylib arm64  <3fdd15d2b2c33d68b8cc600d0482b5fd> /usr/lib/system/libsystem_trace.dylib
       0x18e59f000 -        0x18e5a4fff  libunwind.dylib arm64  <990bab05c7b333f3bfc274d5ea579b71> /usr/lib/system/libunwind.dylib
       0x18e5a5000 -        0x18e5a5fff  libvminterpose.dylib arm64  <dabe83c40ec235dfb7f0e8fe395e1844> /usr/lib/system/libvminterpose.dylib
       0x18e5a6000 -        0x18e5ccfff  libxpc.dylib arm64  <7a12d1ee49b73e1eb582b9c359c7fe79> /usr/lib/system/libxpc.dylib
       0x18e5cd000 -        0x18e7e2fff  libicucore.A.dylib arm64  <d7b181cad9a438e7b6e010c2e4c8da5e> /usr/lib/libicucore.A.dylib
       0x18e7e3000 -        0x18e7f4fff  libz.1.dylib arm64  <ab0d683d7cf931e49e5456a420ced72e> /usr/lib/libz.1.dylib
       0x18f38a000 -        0x18f70bfff  CoreFoundation arm64  <719044f95fe23ee0ab14504def42b100> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
       0x18f70c000 -        0x18f71cfff  libbsm.0.dylib arm64  <4f2930cfb67e3965a863f8bfb7704300> /usr/lib/libbsm.0.dylib
       0x18f71d000 -        0x18f71dfff  libenergytrace.dylib arm64  <5cfceffa0be736398124efbb3d80cbd1> /usr/lib/libenergytrace.dylib
       0x18f71e000 -        0x18f799fff  IOKit arm64  <6f72fc6ac9d2309dbf33c8b014c129d0> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
       0x18f79a000 -        0x18f7bafff  libMobileGestalt.dylib arm64  <5674397d74c33492a16f51f6fd33f114> /usr/lib/libMobileGestalt.dylib
       0x18f7bb000 -        0x18f8a4fff  libxml2.2.dylib arm64  <605bee9eb5ff3c43a65d251460f3650c> /usr/lib/libxml2.2.dylib
       0x18f8a5000 -        0x18f93ffff  Security arm64  <287bf21cb54734b9b91574ccb4e71436> /System/Library/Frameworks/Security.framework/Security
       0x18f940000 -        0x18f9abfff  SystemConfiguration arm64  <57d2eead9fcf34ecaa81c225ad8345e1> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
       0x18f9ac000 -        0x18fabcfff  libsqlite3.dylib arm64  <aa3a5cd643b43e40b5680d5a3758ab8f> /usr/lib/libsqlite3.dylib
       0x18fabd000 -        0x18fe31fff  CFNetwork arm64  <05331a42dd8b31cea6ef547eadc487cd> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
       0x18fe32000 -        0x18fe3ffff  libbz2.1.0.dylib arm64  <29e1c06129583bb5b423bbfd7397c0e5> /usr/lib/libbz2.1.0.dylib
       0x18fe40000 -        0x18fe58fff  liblzma.5.dylib arm64  <eb9e235443573c948bcd016ea00a3709> /usr/lib/liblzma.5.dylib
       0x18fe59000 -        0x18fe73fff  libCRFSuite.dylib arm64  <a859d30f7de034a2bee5aa662bc5bc2d> /usr/lib/libCRFSuite.dylib
       0x18fe74000 -        0x18fe9dfff  libarchive.2.dylib arm64  <a31887c5b46a3b97ad308f4db869be43> /usr/lib/libarchive.2.dylib
       0x18fe9e000 -        0x18fe9ffff  liblangid.dylib arm64  <80d66702d7ce30b7b75c3f75472697eb> /usr/lib/liblangid.dylib
       0x18fea0000 -        0x19016ffff  Foundation arm64  <08e6a29fdbac38dd817c66cedf0e0052> /System/Library/Frameworks/Foundation.framework/Foundation
       0x190170000 -        0x19021bfff  libBLAS.dylib arm64  <708d8599265c39d3881fc57c55bc982d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
       0x19021c000 -        0x19054afff  libLAPACK.dylib arm64  <96e5ce2234903263ad30c6398972d535> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
       0x19054b000 -        0x1907e5fff  vImage arm64  <1f67094759de381898830a3692edff0f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
       0x1907e6000 -        0x19080bfff  libvMisc.dylib arm64  <3de044e80d883d6188e8ce8a8572ec5b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
       0x19080c000 -        0x190820fff  libLinearAlgebra.dylib arm64  <37c71c692da03cc9a1534badab1cf6f4> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
       0x190821000 -        0x190832fff  libSparseBLAS.dylib arm64  <2237c532ebe539f8ab93c181dfa1a291> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
       0x190833000 -        0x1908a8fff  libvDSP.dylib arm64  <0ced33b1008e357e9acb9d039cff697d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
       0x1908a9000 -        0x1908a9fff  vecLib arm64  <d21c98b0003235f99d247f4f934c7641> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
       0x1908aa000 -        0x1908aafff  Accelerate arm64  <f38de9acd0ba3a00a1c32fda7a240f38> /System/Library/Frameworks/Accelerate.framework/Accelerate
       0x1908ab000 -        0x190deffff  CoreGraphics arm64  <7d39f265eae8328f801705549c70e571> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
       0x190df0000 -        0x190e04fff  GraphicsServices arm64  <b5749f3fa6f13ce689683db33f23256c> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
       0x190e05000 -        0x190e52fff  AppSupport arm64  <2a60ffa70fa13031a1251b964802ad31> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
       0x190e53000 -        0x190f80fff  MobileCoreServices arm64  <78cfd6fb54fa3b2abaa4006791ac96ca> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
       0x190f81000 -        0x190fe2fff  BaseBoard arm64  <ff0febbec86337aead2c18f8ac460dec> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
       0x190fe3000 -        0x190ff2fff  AssertionServices arm64  <8ff92082f5833b7795af4a2200886ce2> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
       0x190ff3000 -        0x191020fff  BackBoardServices arm64  <7bd5622615bb39cdba684e47e9bb8798> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
       0x191025000 -        0x191074fff  FrontBoardServices arm64  <6adf5e0649313e35bd11d448eb071d17> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
       0x191078000 -        0x1910acfff  SpringBoardServices arm64  <a5f42cadcaba3943953f5047533c2fe7> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
       0x1910ad000 -        0x1910c7fff  MobileKeyBag arm64  <51a5be975d3a37c2af8751a5b9124948> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
       0x1910c8000 -        0x1910d0fff  IOSurface arm64  <acecdca025ff36b4b14159e52e2819dd> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
       0x1910d1000 -        0x1910dcfff  liblockdown.dylib arm64  <3904292ecd513a0e85216e7c3abd1101> /usr/lib/liblockdown.dylib
       0x1910dd000 -        0x1910f3fff  CrashReporterSupport arm64  <b06bf5fa4c9b36f595a2a8ea4a84cca9> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
       0x1910f4000 -        0x1910f6fff  IOSurfaceAccelerator arm64  <7dd37fd295f93ecfa89401bbbb418dbf> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
       0x1910f7000 -        0x191137fff  AppleJPEG arm64  <d8b98c13f8d83200ad41d6b30d3c9c14> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
       0x191138000 -        0x1916c5fff  ImageIO arm64  <9133dcebff4c3ab6807f96f884190cb5> /System/Library/Frameworks/ImageIO.framework/ImageIO
       0x1916c6000 -        0x1916ccfff  TCC arm64  <b11f764c841d3c69a50a6b0993735d43> /System/Library/PrivateFrameworks/TCC.framework/TCC
       0x1916cd000 -        0x1916d1fff  AggregateDictionary arm64  <fab7b20283e43d8aa268b7d051e3d521> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
       0x1916d2000 -        0x1916defff  PowerLog arm64  <a668cd2a3ad03c0291a9665f3151f946> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
       0x1916df000 -        0x191749fff  libTelephonyUtilDynamic.dylib arm64  <a9cba41bffa83838b49c3f8ff2538f8a> /usr/lib/libTelephonyUtilDynamic.dylib
       0x19174a000 -        0x19175cfff  CommonUtilities arm64  <495171d174123535af0ff1751ef454b3> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
       0x19175d000 -        0x191772fff  libcompression.dylib arm64  <c5e41b4a6cbf37fb87cd5cd44f6906b8> /usr/lib/libcompression.dylib
       0x191773000 -        0x191a0bfff  CoreData arm64  <7574c4fafa7a33bf82e05d9fa01ed542> /System/Library/Frameworks/CoreData.framework/CoreData
       0x191a0c000 -        0x191a11fff  libCoreVMClient.dylib arm64  <07e215340c3239fea6c469df55183bcd> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
       0x191a12000 -        0x191a17fff  IOAccelerator arm64  <54e24860953b39ddbe13a2dcdf76c733> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
       0x191a18000 -        0x191a19fff  libCVMSPluginSupport.dylib arm64  <02280e05346d31509d62ac2583f72857> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
       0x191a1a000 -        0x191a1dfff  libCoreFSCache.dylib arm64  <f5c0306167ea39b2b60185329c1a8bbb> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
       0x191a1e000 -        0x191a5ffff  libGLImage.dylib arm64  <34bb7e96428f3c1abd6f0cbb2787b9e1> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
       0x191a60000 -        0x191a6afff  libGFXShared.dylib arm64  <d70b4c465ebe3a9e98c2b82ccf8fb7d7> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
       0x191a6b000 -        0x191a73fff  IOMobileFramebuffer arm64  <e759626dff9439309f66279b3e4296ca> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
       0x191a74000 -        0x191a74fff  libmetal_timestamp.dylib arm64  <b51cc6027bd833d4a2a80f0d1de8bc40> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
       0x191a75000 -        0x191ad6fff  Metal arm64  <0dc267ebbc333fcfa409b09544725b5f> /System/Library/Frameworks/Metal.framework/Metal
       0x191ad7000 -        0x191ae1fff  OpenGLES arm64  <d789825652ac31c78f1007fed0ff3777> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
       0x191ae2000 -        0x191b06fff  CoreVideo arm64  <ba0cdc15666b32f7be6f9fcd1528c7f1> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
       0x191b07000 -        0x191b09fff  OAuth arm64  <56d873bb47973452a9fc41ee777f8d42> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
       0x191b0a000 -        0x191b46fff  Accounts arm64  <28b18304843b3350a829aaedc92b5a54> /System/Library/Frameworks/Accounts.framework/Accounts
       0x191b47000 -        0x191c39fff  libiconv.2.dylib arm64  <1db28a41c3a83551aad361a4e072fe33> /usr/lib/libiconv.2.dylib
       0x191c3a000 -        0x191d87fff  CoreAudio arm64  <34f7497d8b43383cb4021a8300855c94> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
       0x191d88000 -        0x191d8bfff  UserFS arm64  <b8862d7a16d83d22954ab81b89743009> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
       0x191d8c000 -        0x191e99fff  CoreMedia arm64  <8d8137d106813d32a14ce6e1f8384c08> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
       0x191e9a000 -        0x191ea0fff  libcupolicy.dylib arm64  <3964026e2c6f3eab9ea81b19ec10b7ed> /usr/lib/libcupolicy.dylib
       0x191ea1000 -        0x191f2afff  CoreTelephony arm64  <84dcfae0a4713efc95beb71856f971aa> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
       0x191f2b000 -        0x192038fff  libFontParser.dylib arm64  <a7990cbb692b36a49280088c24b9ec2a> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
       0x192039000 -        0x1920c8fff  VideoToolbox arm64  <59e3d13a5d243b44abf10a5c4ba313f4> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
       0x1920c9000 -        0x1920c9fff  FontServices arm64  <5a9fc52851583aac96b6745cf7aae370> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
       0x1920ca000 -        0x192216fff  CoreText arm64  <851f6498f833335fb35ec9e67515c2fb> /System/Library/Frameworks/CoreText.framework/CoreText
       0x192217000 -        0x192231fff  ProtocolBuffer arm64  <a3544981c8743eea875d5b7c7bc5b19b> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
       0x192232000 -        0x19225afff  PersistentConnection arm64  <4a392539b9c33a47b69439638cfaac04> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
       0x19225b000 -        0x192261fff  DataMigration arm64  <6cff1ebc13b332e3809b4722048c6ffb> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
       0x192262000 -        0x1926b6fff  AudioToolbox arm64  <0505b7dd6a033bf78117a8cd81a1101b> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
       0x1926b7000 -        0x192894fff  QuartzCore arm64  <416a878f23c636fc8d81404ff7dd4fdc> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
       0x192895000 -        0x19289bfff  Netrb arm64  <099e2ab3ae8e3a498e0e0a0f17e128a7> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
       0x19289c000 -        0x1928acfff  libcmph.dylib arm64  <903e25509e37307e99af188ed1272633> /usr/lib/libcmph.dylib
       0x1928ad000 -        0x1928cdfff  libmis.dylib arm64  <1a116c60b46a3781a68a9c27e9cf2653> /usr/lib/libmis.dylib
       0x1928ce000 -        0x1929bffff  LanguageModeling arm64  <c49bcbbac36d34308151388e8bf1a718> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
       0x1929c0000 -        0x192ab6fff  ManagedConfiguration arm64  <0e15a8564caf3d47ab9b199770bf5cd2> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
       0x192ab7000 -        0x192acdfff  libmarisa.dylib arm64  <96c399295cb13cad829c93b5c29f0661> /usr/lib/libmarisa.dylib
       0x192ace000 -        0x192b9efff  ProofReader arm64  <bb56e538be8835199a0abd263adb75f8> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
       0x192b9f000 -        0x192ba9fff  MediaAccessibility arm64  <17fe4943f5363a278cf9868db2623b9d> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
       0x192baa000 -        0x192bbafff  MobileAsset arm64  <2a3a006162af37b79c3a6b2ab71344c6> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
       0x192bbb000 -        0x192c2cfff  ColorSync arm64  <996fd30495c33a64b17b87797c54aec2> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
       0x192c2d000 -        0x192c9dfff  MetalPerformanceShaders arm64  <e78463e7ed8334909ae0968c5b4ddcbc> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
       0x192c9e000 -        0x1930cdfff  FaceCore arm64  <0179b0a45e4932e5967336ac40c0c4d8> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
       0x1930ce000 -        0x19314afff  Quagga arm64  <b3a2d704a9103e2e85e0d86e6bb6f0b2> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
       0x19314b000 -        0x193314fff  CoreImage arm64  <8c5c510a2d90361696f6a965b6b933a0> /System/Library/Frameworks/CoreImage.framework/CoreImage
       0x193315000 -        0x193364fff  TextInput arm64  <a1a56e91cb0534e8815a23fb6993b023> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
       0x193365000 -        0x193375fff  libAccessibility.dylib arm64  <fbd694050c503c12a3e0e7dfb490b9df> /usr/lib/libAccessibility.dylib
       0x193385000 -        0x193dc7fff  JavaScriptCore arm64  <f4afe098cd9b33c2b3369773851e26b9> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
       0x193dc8000 -        0x194019fff  StoreServices arm64  <7876e0b331c3380ab69b57e9bc5ece4b> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
       0x19401a000 -        0x19520ffff  WebCore arm64  <d0a2b6b3b79434a08272968e20cd00a7> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
       0x195210000 -        0x195238fff  libxslt.1.dylib arm64  <3edbcb1d6e1d33519db363daf35cfe1c> /usr/lib/libxslt.1.dylib
       0x195239000 -        0x1953a5fff  WebKitLegacy arm64  <a7feeddf725930858e5fe93e4e047bb5> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
       0x1953a6000 -        0x19546bfff  CoreUI arm64  <0a25c84cf6183efead20a5cea30b98ad> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
       0x19546c000 -        0x195493fff  DictionaryServices arm64  <dd7a3952ff63333ebe91d7eff8347628> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
       0x195494000 -        0x195497fff  HangTracer arm64  <13e35bff690836b7b717f3f5ff690897> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
       0x195498000 -        0x1954ecfff  PhysicsKit arm64  <e53aecfb95ec3252986a82a83a3cafd1> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
       0x1954ed000 -        0x1955c4fff  UIFoundation arm64  <db0623abf2243a578bd1e457f6877483> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
       0x1955d1000 -        0x196378fff  UIKit arm64  <4ad90348edcc3d21983f83490705f2aa> /System/Library/Frameworks/UIKit.framework/UIKit
       0x196379000 -        0x1963a1fff  CoreBluetooth arm64  <ced176702d7c37e6a9027eeb3fbf7f66> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
       0x1963a2000 -        0x1963cafff  DataAccessExpress arm64  <6c35e310019e35a38adba222a251f4fc> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
       0x1963cb000 -        0x1963ebfff  NetworkStatistics arm64  <de6f2c537e8b32f19a14ca97b293394e> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
       0x1963ec000 -        0x196475fff  AddressBook arm64  <6ac637105605370a8cf1bf73e72447bf> /System/Library/Frameworks/AddressBook.framework/AddressBook
       0x196476000 -        0x1965d6fff  CoreMotion arm64  <5add12fe99963d58a923e3151d02baea> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
       0x1965d7000 -        0x196601fff  CacheDelete arm64  <b7d03ec01fa83f0c8c876884fb6a7b2a> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
       0x196602000 -        0x19660ffff  CoreAUC arm64  <4ccece7ce6f53d4393588ca8af59f4cc> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
       0x196610000 -        0x196b7bfff  MediaToolbox arm64  <6cca04ef0c203442a24e3613d286cd42> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
       0x196b7c000 -        0x196d29fff  Celestial arm64  <3330c498b46631eeb90a642d377fae9b> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
       0x196d2a000 -        0x196d39fff  IntlPreferences arm64  <09d66fe143483a389cd6f502e13da940> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
       0x196d3a000 -        0x196d3cfff  CoreDuetDebugLogging arm64  <7e3ea6bf9d463951866292d973db6e6b> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
       0x196d3d000 -        0x196d51fff  CoreDuetDaemonProtocol arm64  <9702905525c33e2880b00d957ad476c9> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
       0x196d52000 -        0x196e27fff  CoreDuet arm64  <d436e43f1206320fbd75248b121358aa> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
       0x196e28000 -        0x196fdefff  AVFoundation arm64  <bf1a5ba30aa5384289fb3f8454ba0e22> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
       0x196fdf000 -        0x197013fff  libtidy.A.dylib arm64  <2f48d4f92e6a3ff5b0509adff9b99ca4> /usr/lib/libtidy.A.dylib
       0x197014000 -        0x19707afff  IMFoundation arm64  <38ea4de43fbe399397e16b597d39ef1e> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
       0x19707b000 -        0x19771efff  GeoServices arm64  <58b2dd08bd0f303cbbee0e58327e5c87> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
       0x19771f000 -        0x197720fff  DiagnosticLogCollection arm64  <8c7cdc0581863d949fad12e1c002c80f> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
       0x197721000 -        0x197722fff  Marco arm64  <9de14b0be5043a13ae11ce2b307d4352> /System/Library/PrivateFrameworks/Marco.framework/Marco
       0x197723000 -        0x1977a8fff  CoreLocation arm64  <527a5b7da22730e0ba1a17a74575990e> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
       0x1977a9000 -        0x1977aefff  ConstantClasses arm64  <d1824269bde13011a30bb20413b487c8> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
       0x197a40000 -        0x197a92fff  IDSFoundation arm64  <7f7fb39e2f1c38549a0f6a98ad72a35d> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
       0x197a93000 -        0x197b5bfff  IDS arm64  <70d356bcf7223c3b88292e774b59302e> /System/Library/PrivateFrameworks/IDS.framework/IDS
       0x197b5c000 -        0x197b7afff  MediaServices arm64  <ae9e890161c13c02a11f9fcce775756d> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
       0x197b7b000 -        0x197bbefff  AuthKit arm64  <51f9f14dab343736aba127fc4c2fef4d> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
       0x197bbf000 -        0x197bc4fff  libheimdal-asn1.dylib arm64  <430155e3abb132b391e8bc0785b6cd70> /usr/lib/libheimdal-asn1.dylib
       0x197bc5000 -        0x197c99fff  MediaRemote arm64  <54a5906be66238bc85148945148e5e08> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
       0x197c9a000 -        0x197e1efff  MobileSpotlightIndex arm64  <85e4085a14363a6d9104565abe0d8ac9> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
       0x197e1f000 -        0x197e3efff  PlugInKit arm64  <5fd199791bd034158ae690bd4b9ab1e1> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
       0x197e3f000 -        0x197e7bfff  ProtectedCloudStorage arm64  <e05570a9e6bf32d7b7064e4bff2da280> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
       0x197e7c000 -        0x197e97fff  libresolv.9.dylib arm64  <1d7a61761a42344b850150806bcb08a9> /usr/lib/libresolv.9.dylib
       0x197e98000 -        0x197eadfff  ApplePushService arm64  <0af0362080153e92bf29b1b964417848> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
       0x197eae000 -        0x197efdfff  ContactsFoundation arm64  <4834faa7e4d9338995744a0082f8c55c> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
       0x197f01000 -        0x197fb4fff  Contacts arm64  <958c7de2b63736d7a5a44b1935bd2950> /System/Library/Frameworks/Contacts.framework/Contacts
       0x197fb5000 -        0x197ffefff  CoreSpotlight arm64  <d82a303ae98f311ea76c1b2eb85ab42d> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
       0x197fff000 -        0x198027fff  vCard arm64  <7498fe2f006237ee95d1570b4fd377d4> /System/Library/PrivateFrameworks/vCard.framework/vCard
       0x198259000 -        0x19825bfff  MessageSupport arm64  <7503df5f7cfa32689597eb887e6abb87> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
       0x19825c000 -        0x1982b1fff  MIME arm64  <9e606ab8de0039f5bcb8494d547d84ad> /System/Library/PrivateFrameworks/MIME.framework/MIME
       0x198347000 -        0x198363fff  AppleIDSSOAuthentication arm64  <51e91fc9170931599eb79c311b1adc09> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
       0x198364000 -        0x198374fff  MailServices arm64  <8c1659bf6454376aaec1fb2d42586212> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
       0x198375000 -        0x1983e8fff  AppleAccount arm64  <419f55559f51314b9d6c53d03f353f19> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
       0x1983e9000 -        0x1983edfff  CommunicationsFilter arm64  <88fe96f3e9bd3c928f0ce3b9e3609f22> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
       0x1983ee000 -        0x198413fff  ChunkingLibrary arm64  <a5610db4cde33d18849623976460f536> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
       0x198414000 -        0x19841ffff  CaptiveNetwork arm64  <cd8e42beb887325798304d0d01bd57b3> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
       0x198420000 -        0x19844efff  EAP8021X arm64  <3a3aa5c4990e34879ca12e6f5e1de265> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
       0x19844f000 -        0x198456fff  AssetCacheServices arm64  <ec37af1c81113876b331f36c6263a725> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
       0x198457000 -        0x19851ffff  MMCS arm64  <5943d49acc423c058ef9b4147abe8b41> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
       0x198520000 -        0x198550fff  MobileWiFi arm64  <2d66ac36f09f39c4ac0722873331d039> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
       0x198551000 -        0x198593fff  ContentIndex arm64  <4e6fa126997f30cb8c0caf9ae4f0e63b> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
       0x1985f1000 -        0x198621fff  Bom arm64  <32b8ff158e563292bb052e36c903dbdd> /System/Library/PrivateFrameworks/Bom.framework/Bom
       0x198622000 -        0x19862afff  CertUI arm64  <cb4d90563707392e899956a3821b83ae> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
       0x19862b000 -        0x19867cfff  FTServices arm64  <29a4eddd415830269083b141166e572d> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
       0x19867d000 -        0x1986dbfff  CoreDAV arm64  <177ab5ce6c7e3061aeddeb7faf8bc41d> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
       0x1986eb000 -        0x198701fff  UserManagement arm64  <40ac399d20df3c0e9c438d1c212beb4f> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
       0x198702000 -        0x1987c9fff  CorePDF arm64  <ef1ec23787d03e2b97a39e89764281f9> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
       0x1987ca000 -        0x1987fefff  iCalendar arm64  <5bb9085e143b383db506a50934df271c> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
       0x198807000 -        0x198865fff  CalendarFoundation arm64  <d9d4b20dd9623e4e8831ca80a9f94797> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
       0x198968000 -        0x198a01fff  CalendarDatabase arm64  <b36f47675dc836dfb3ea9101226ba62e> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
       0x198a02000 -        0x198a47fff  CalendarDaemon arm64  <1c5280642d4d365cac44cbb0cb2127af> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
       0x198a48000 -        0x198b18fff  EventKit arm64  <aeca0fb6ca6531c68c5388e26f71d66d> /System/Library/Frameworks/EventKit.framework/EventKit
       0x198b19000 -        0x198e51fff  WebKit arm64  <e21373bf39a93e75bebaff8fa2b03658> /System/Library/Frameworks/WebKit.framework/WebKit
       0x198e52000 -        0x198e9dfff  WebBookmarks arm64  <b190a03110d835aba39b9a39f8855001> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
       0x198e9e000 -        0x198fe2fff  ContactsUI arm64  <31a25a9458cf380fbc3f78c00d447586> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
       0x1997b5000 -        0x1997bbfff  DAAPKit arm64  <fbf1424a544b3c4fb6a917d95bc7eaf0> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
       0x19990d000 -        0x199b7dfff  MusicLibrary arm64  <d82d6c2a89733868a3919d72266778f3> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
       0x199b7e000 -        0x199bbcfff  Notes arm64  <d204c65f3fe134dda8eac2541d19535c> /System/Library/PrivateFrameworks/Notes.framework/Notes
       0x199bbd000 -        0x199c94fff  AddressBookUI arm64  <381f7b67a71c3e57a975bbc88e3b2046> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
       0x199c95000 -        0x199d71fff  CloudKit arm64  <e20611e33e9f3e708171900528be44e1> /System/Library/Frameworks/CloudKit.framework/CloudKit
       0x199d72000 -        0x199de8fff  iTunesStore arm64  <ce72159db23032379460e91ee94f2bd9> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
       0x199de9000 -        0x199deffff  CloudPhotoServices arm64  <8de95cd9eb9c3941ad9348dc323bbd82> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
       0x199df0000 -        0x199ee6fff  CloudPhotoLibrary arm64  <3183a58c4b8739e5bd61501dababa798> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
       0x199ee7000 -        0x199f3efff  DataAccess arm64  <73a90d6941233c46a50db9d0a13a0aae> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
       0x199f3f000 -        0x199f67fff  AssetsLibraryServices arm64  <a1f91416a79731e192e96ff9f7e6a9f9> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
       0x199f68000 -        0x19a004fff  HomeSharing arm64  <7919fa86104c3f9ea4e5c3b7131a857c> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
       0x19a005000 -        0x19a033fff  ACTFramework arm64  <d0dbf6b0c7253e30b8d55be12b11d409> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework
       0x19a034000 -        0x19a03ffff  DCIMServices arm64  <14a4ff27549d33ca8f53de8d463b39c7> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
       0x19a040000 -        0x19a16ffff  CoreMediaStream arm64  <3533cce3157433488535bdfa0cb13785> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
       0x19a170000 -        0x19a189fff  PhotosFormats arm64  <a541a7d13e8f39d388646bcca30d5da3> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
       0x19a18a000 -        0x19a191fff  XPCKit arm64  <db3b46de1c973673aef44874014248c2> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
       0x19a192000 -        0x19a569fff  MediaPlayer arm64  <e212e3ca659630b4879b8972f82c4143> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
       0x19a56a000 -        0x19a64ffff  CameraKit arm64  <573a74738cc13b64aa19c96a125bfac7> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit
       0x19a658000 -        0x19a674fff  MediaStream arm64  <624779663a7b3643830a30e280c86db6> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
       0x19a675000 -        0x19aa12fff  PhotoLibraryServices arm64  <a9ff7bee826b3701a1e97ad63168cdc8> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
       0x19aa4a000 -        0x19aab7fff  libprotobuf.dylib arm64  <9c108882e95c3003a9140280a9da8250> /usr/lib/libprotobuf.dylib
       0x19aced000 -        0x19ae24fff  Message arm64  <d8c884a6ef7c32d8af49a5f96529333e> /System/Library/PrivateFrameworks/Message.framework/Message
       0x19aed8000 -        0x19af09fff  DataDetectorsCore arm64  <a6010e00f70239889cbdaaaf2325df0d> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
       0x19af18000 -        0x19b178fff  libAWDSupportFramework.dylib arm64  <2c1184b25c6130d29445782aa1fe9b73> /usr/lib/libAWDSupportFramework.dylib
       0x19b1bb000 -        0x19b1fbfff  WirelessDiagnostics arm64  <8aab71ecbfba39c78621cdf43f93a4d2> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
       0x19b3e9000 -        0x19b3f4fff  CoreRecents arm64  <a7313c413ca031469295d08361d050c8> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
       0x19b4f5000 -        0x19b508fff  AssetsLibrary arm64  <75a7169f5751312c844ec6af3151310d> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
       0x19bd80000 -        0x19bd83fff  FTClientServices arm64  <034e25b243383864aa3d9471c4ab1a63> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
       0x19bf85000 -        0x19bfbefff  ContactsAutocomplete arm64  <d1b2973b67ba361ba94d685c4b9d9cf8> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
       0x19bfcf000 -        0x19c0aefff  MessageUI arm64  <8de75ccad4f93e79888791ca2ff92c48> /System/Library/Frameworks/MessageUI.framework/MessageUI
       0x19c0af000 -        0x19c128fff  libnetwork.dylib arm64  <a1d866db069538fc90aaae3ca1ccb13d> /usr/lib/libnetwork.dylib
       0x19c13c000 -        0x19c1bcfff  Network arm64  <e962fe80d3ee3497a52d0644c99aafb6> /System/Library/PrivateFrameworks/Network.framework/Network
       0x19c38b000 -        0x19c3a1fff  FTAWD arm64  <3f976dcde4a0365ab3d4b2fed519daec> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
       0x19cc4f000 -        0x19cc80fff  Pegasus arm64  <26e597b5dc1a30b99fa2a6ec018d6f12> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
       0x19e59d000 -        0x19e6f2fff  libGLProgrammability.dylib arm64  <3c09b74512053e9eaa6baf54245bad6c> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
       0x19f4c7000 -        0x19f4d0fff  libGPUSupportMercury.dylib arm64  <a8f01baddd403dad922828f2ef4a5893> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
       0x19f4d6000 -        0x19f56afff  MediaPlatform arm64  <4dc66da5850f30e18409990cce613dea> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
       0x1a0040000 -        0x1a009efff  CoreBrightness arm64  <3cbc7c04794738d3a761dde2fd830fd1> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
       0x1a03cd000 -        0x1a04fafff  StoreServicesCore arm64  <e872abc10c0a3a89b2585bbaffaea1e0> /System/Library/PrivateFrameworks/StoreServicesCore.framework/StoreServicesCore
       0x1a0a39000 -        0x1a0e96fff  MediaLibraryCore arm64  <05c6f35e7b813ff5be616b42cafb29a3> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
       0x1a117e000 -        0x1a11d0fff  libstdc++.6.dylib arm64  <b1c395ad1e5831b9bc0165d11209df61> /usr/lib/libstdc++.6.dylib
       0x1a12de000 -        0x1a12e1fff  AGXCompilerConnection arm64  <03463f6016223febb5ccb1e3b6598984> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
       0x1a1937000 -        0x1a1956fff  CoreNLP arm64  <42836654b8a33051a104b0ec97fc1091> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
       0x1a3f63000 -        0x1a3ffffff  AGXGLDriver arm64  <911b31d32fdf3574a871defd9945512c> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
       0x1a4018000 -        0x1a402cfff  libCGInterfaces.dylib arm64  <8d96c27fbf1235749dd2907472688e89> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
       0x1a402d000 -        0x1a42a3fff  AudioCodecs arm64  <4743bf4ffa263bc5977f9c821b72486c> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
       0x1a46e8000 -        0x1a47d1fff  GLEngine arm64  <d9bbd8a24a07397db91501079705efe6> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
       0x1a4f22000 -        0x1a4f30fff  AppleFSCompression arm64  <9ce16a16e20c35f5be292f251083c30d> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
       0x1a4f31000 -        0x1a4f3cfff  AppleIDAuthSupport arm64  <73d34b108f8634649e3ef934de89d6dd> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
       0x1a5c1d000 -        0x1a5c42fff  CoreServicesInternal arm64  <3c2db4f07ea232358a78e76307363ba0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
       0x1a6340000 -        0x1a634cfff  libGSFontCache.dylib arm64  <ad96a7db4ef337a1919ef9e4f24ce96a> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
       0x1a634d000 -        0x1a637efff  libTrueTypeScaler.dylib arm64  <b675e879d4b032ba8ad24e7e78818463> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
       0x1a81e6000 -        0x1a81ebfff  TextInputUI arm64  <6a4759a2652537418870bb45e66496a5> /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
       0x1a890c000 -        0x1a8adbfff  libFosl_dynamic.dylib arm64  <8e1668637c423351a9b8f75d3db4e1bd> /usr/lib/libFosl_dynamic.dylib
       0x1a8adc000 -        0x1a8ae6fff  libMobileGestaltExtensions.dylib arm64  <c84971521e73337b92f4e3efabae2eb6> /usr/lib/libMobileGestaltExtensions.dylib
       0x1a8ef7000 -        0x1a8f29fff  libpcap.A.dylib arm64  <5b50b83d66ba3127ab8bfb9d7773aeab> /usr/lib/libpcap.A.dylib
       0x1a8f64000 -        0x1a9034fff  AVFAudio arm64  <82aeee0bc85835348e3b6113e5f0f7dc> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
       0x1a9035000 -        0x1a903efff  ProactiveEventTracker arm64  <66b41160346f344b8b7685ea37bf7d3f> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
       0x1a903f000 -        0x1a91d5fff  Intents arm64  <c55c244eff3a3b568972131160de46a0> /System/Library/Frameworks/Intents.framework/Intents
       0x1a9316000 -        0x1a9339fff  UserNotifications arm64  <dea565113b183df0a2d4cd6a375f3142> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
       0x1a934c000 -        0x1a935afff  PersonaKit arm64  <dffe49e16fb6322e98e7a30d94e46c85> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
       0x1a97c8000 -        0x1a97f3fff  Pasteboard arm64  <524e5f899a9836c5a45b76c5ef4cae9a> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
       0x1a980c000 -        0x1a98affff  TextureIO arm64  <a427c8b881e43dad8d3c812bc418d731> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
       0x1a9ddd000 -        0x1a9e26fff  ContactsUICore arm64  <3a022fafb1dc3fe4a790384482e64dbb> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
       0x1a9e6c000 -        0x1a9e80fff  EmojiFoundation arm64  <2dbf33d95d573f3aafc459d5f9114fff> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
       0x1aadfd000 -        0x1aae0ffff  libBNNS.dylib arm64  <7b15b1fd47de37cc94234f1279febec2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
       0x1aae10000 -        0x1aae14fff  libQuadrature.dylib arm64  <6142532815973d5f9292892fb7c2c353> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
       0x1ab177000 -        0x1ab188fff  CoreEmoji arm64  <02de2177a2a83b389b2d8796f9576d41> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
       0x1ab688000 -        0x1ab688fff  IntentsFoundation arm64  <640a622a48173a91829abcded6d8ac51> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
       0x1ab715000 -        0x1ab729fff  MailSupport arm64  <408e73191f9d3dac874e2883b052dfb5> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
       0x1ab7d0000 -        0x1ab89cfff  NLP arm64  <9162fa12a5ab3325a413c57dad3dce48> /System/Library/PrivateFrameworks/NLP.framework/NLP
       0x1ac32c000 -        0x1ac331fff  SymptomDiagnosticReporter arm64  <23b4b5547e8433289e9fc4757ae5eb17> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
       0x1aca27000 -        0x1aca9ffff  libate.dylib arm64  <8f60d460abd031edaf8477a229c4006c> /usr/lib/libate.dylib
       0x1acaa0000 -        0x1acaa0fff  libcoretls.dylib arm64  <852a1f8d67063962b6699bd608ee1eef> /usr/lib/libcoretls.dylib
       0x1acaa1000 -        0x1acaa2fff  libcoretls_cfhelpers.dylib arm64  <85a72486fa0e376f8b14a6d19375a1b6> /usr/lib/libcoretls_cfhelpers.dylib

Extra Information:

Stack Dump (0x000000016df8ed10-0x000000016df8ee00):

0000000000000000020000000000000002000000000000000000000008000000FF0800A400000000000000000800C0FFC08C7A05010000000200000000000000A0EDF86D0100000070B3D50001000000020003000000000080FC4E70010000007F00000000000000586B45020100000030000000000000000200000000000000B86B450201000000005021380100000020EEF86D0100000050B2D5000100000018D2CEB401000000305021380100000020582138010000005100110F93D7E95DFF10008000000000000000800000000000000000000000000500000000000000203CCFB4010000000020CFB401000000

Notable Addresses:
{
    "stack at 0x16df8ed68": {
        "address": 6179191936,
        "class": "OS_dispatch_queue",
        "ivars": {},
        "type": "objc_object"
    },
    "stack at 0x16df8edb0": {
        "address": 7328420376,
        "class": "OS_dispatch_queue",
        "type": "objc_class"
    }
}

Application Stats:
{
    "active_time_since_last_crash": 0,
    "active_time_since_launch": 0,
    "application_active": false,
    "application_in_foreground": true,
    "background_time_since_last_crash": 0,
    "background_time_since_launch": 0,
    "launches_since_last_crash": 12,
    "sessions_since_last_crash": 12,
    "sessions_since_launch": 1
}

CrashDoctor Diagnosis: Attempted to dereference null pointer.
Originated at or in a subcall of _mh_execute_header
-------------- next part --------------
Incident Identifier: 6D6B5501-0180-4845-8C59-32A301A1EF74
CrashReporter Key:   4a6830ba3bfd700f578d099b7dbd7a05d81bacc1
Hardware Model:      iPad4,4
Process:         Homesmart [325]
Path:            /var/containers/Bundle/Application/F85B5E3A-E4D6-4B86-89B9-A51AF9E230A5/Homesmart.app/Homesmart
Identifier:      com.neotechindia.homesmart
Version:         1.2.1 (4)
Code Type:       ARM-64
Parent Process:  ? [1]

Date/Time:       2017-12-26 16:36:50.000 +0530
OS Version:      iOS 10.3.2 (14F89)
Report Version:  104

Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: 0x00000000 at 0x0000000000000000
Crashed Thread:  20

Thread 0:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   GraphicsServices                0x0000000190dfc074 0x190df0000 + 49268 (GSEventRunModal + 100)
6   UIKit                           0x0000000195646058 0x1955d1000 + 479320 (UIApplicationMain + 208)
7   Homesmart                       0x000000010028a1fc 0x1000e4000 + 1729020 (_mh_execute_header + 1729020)
8   libdyld.dylib                   0x000000018e3a159c 0x18e39d000 + 17820 (<redacted> + 4)

Thread 1:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   AVFAudio                        0x00000001a8fd8540 0x1a8f64000 + 476480 (<redacted> + 164)
6   AVFAudio                        0x00000001a8ffe814 0x1a8f64000 + 632852 (<redacted> + 84)
7   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
8   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 2:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   Foundation                      0x000000018feacd74 0x18fea0000 + 52596 (<redacted> + 304)
6   Foundation                      0x000000018fecdb44 0x18fea0000 + 187204 (<redacted> + 96)
7   UIKit                           0x0000000195fd06a8 0x1955d1000 + 10483368 (<redacted> + 136)
8   Foundation                      0x000000018ffaa2d8 0x18fea0000 + 1090264 (<redacted> + 996)
9   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
10  libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 3:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100e0a784 0x1000e4000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000100e0aa5c 0x1000e4000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x00000001001e879c 0x1000e4000 + 1066908 (_mh_execute_header + 1066908)
4   libdispatch.dylib               0x000000018e36e9e0 0x18e36d000 + 6624 (<redacted> + 24)
5   libdispatch.dylib               0x000000018e36e9a0 0x18e36d000 + 6560 (<redacted> + 16)
6   libdispatch.dylib               0x000000018e37d0d4 0x18e36d000 + 65748 (<redacted> + 644)
7   libdispatch.dylib               0x000000018e37ea50 0x18e36d000 + 72272 (<redacted> + 540)
8   libdispatch.dylib               0x000000018e37e7d0 0x18e36d000 + 71632 (<redacted> + 124)
9   libsystem_pthread.dylib         0x000000018e577100 0x18e576000 + 4352 (_pthread_wqthread + 1096)

Thread 4:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   libsystem_kernel.dylib          0x000000018e49733c 0x18e492000 + 21308 (thread_suspend + 80)
3   Homesmart                       0x00000001002027ec 0x1000e4000 + 1173484 (_mh_execute_header + 1173484)
4   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
5   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 5:

Thread 6:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   CoreFoundation                  0x000000018f3df9c0 0x18f38a000 + 350656 (CFRunLoopRun + 112)
6   CoreMotion                      0x00000001964e501c 0x196476000 + 454684 (CLStartStopAdvertisingBeacon + 203104)
7   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
8   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 7:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   Foundation                      0x000000018feacd74 0x18fea0000 + 52596 (<redacted> + 304)
6   Homesmart                       0x0000000100123e30 0x1000e4000 + 261680 (_mh_execute_header + 261680)
7   Foundation                      0x000000018ffaa2d8 0x18fea0000 + 1090264 (<redacted> + 996)
8   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
9   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 8:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   CFNetwork                       0x000000018fb9edf4 0x18fabd000 + 925172 (<redacted> + 404)
6   Foundation                      0x000000018ffaa2d8 0x18fea0000 + 1090264 (<redacted> + 996)
7   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
8   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 9:
0   libsystem_kernel.dylib          0x000000018e4b123c 0x18e492000 + 127548 (select$DARWIN_EXTSN + 8)
1   CoreFoundation                  0x000000018f46bcb0 0x18f38a000 + 924848 (<redacted> + 632)
2   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
3   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 10:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100e0a784 0x1000e4000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000100e0aa5c 0x1000e4000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x0000000100f88538 0x1000e4000 + 15353144 (_gnutls_global_init_skip + 988364)
4   Homesmart                       0x0000000100df797c 0x1000e4000 + 13711740 (_mh_execute_header + 13711740)
5   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
6   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 11:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100e0a784 0x1000e4000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000100e0aa5c 0x1000e4000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x00000001001e879c 0x1000e4000 + 1066908 (_mh_execute_header + 1066908)
4   libdispatch.dylib               0x000000018e36e9e0 0x18e36d000 + 6624 (<redacted> + 24)
5   libdispatch.dylib               0x000000018e36e9a0 0x18e36d000 + 6560 (<redacted> + 16)
6   libdispatch.dylib               0x000000018e37d0d4 0x18e36d000 + 65748 (<redacted> + 644)
7   libdispatch.dylib               0x000000018e37ea50 0x18e36d000 + 72272 (<redacted> + 540)
8   libdispatch.dylib               0x000000018e37e7d0 0x18e36d000 + 71632 (<redacted> + 124)
9   libsystem_pthread.dylib         0x000000018e577100 0x18e576000 + 4352 (_pthread_wqthread + 1096)

Thread 12:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100e0a784 0x1000e4000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000100e0aa5c 0x1000e4000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x0000000100f88538 0x1000e4000 + 15353144 (_gnutls_global_init_skip + 988364)
4   Homesmart                       0x0000000100df797c 0x1000e4000 + 13711740 (_mh_execute_header + 13711740)
5   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
6   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 13:
0   libsystem_kernel.dylib          0x000000018e49777c 0x18e492000 + 22396 (poll + 8)
1   Homesmart                       0x0000000100e0a784 0x1000e4000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000100e0aa5c 0x1000e4000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x0000000100f81d3c 0x1000e4000 + 15326524 (_gnutls_global_init_skip + 961744)
4   Homesmart                       0x0000000100f7d5e0 0x1000e4000 + 15308256 (_gnutls_global_init_skip + 943476)
5   Homesmart                       0x0000000100df797c 0x1000e4000 + 13711740 (_mh_execute_header + 13711740)
6   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
7   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 14:
0   libsystem_kernel.dylib          0x000000018e4b0e1c 0x18e492000 + 126492 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x000000018e578814 0x18e576000 + 10260 (<redacted> + 640)
2   Homesmart                       0x0000000100e3e624 0x1000e4000 + 14001700 (_mh_execute_header + 14001700)
3   Homesmart                       0x0000000100f81db8 0x1000e4000 + 15326648 (_gnutls_global_init_skip + 961868)
4   Homesmart                       0x0000000100f7e4c4 0x1000e4000 + 15312068 (_gnutls_global_init_skip + 947288)
5   Homesmart                       0x0000000100f7f878 0x1000e4000 + 15317112 (_gnutls_global_init_skip + 952332)
6   Homesmart                       0x0000000100fe3984 0x1000e4000 + 15726980 (_gnutls_global_init_skip + 1362200)
7   Homesmart                       0x0000000100fe0e1c 0x1000e4000 + 15715868 (_gnutls_global_init_skip + 1351088)
8   Homesmart                       0x0000000101058920 0x1000e4000 + 16206112 (_gnutls_global_init_skip + 1841332)
9   Homesmart                       0x00000001010476b4 0x1000e4000 + 16135860 (_gnutls_global_init_skip + 1771080)
10  Homesmart                       0x00000001003c8e5c 0x1000e4000 + 3034716 (_mh_execute_header + 3034716)
11  Homesmart                       0x0000000100c658dc 0x1000e4000 + 12064988 (_mh_execute_header + 12064988)
12  Homesmart                       0x00000001003c79e4 0x1000e4000 + 3029476 (_mh_execute_header + 3029476)
13  Homesmart                       0x000000010103e2c4 0x1000e4000 + 16097988 (_gnutls_global_init_skip + 1733208)
14  Homesmart                       0x00000001010431d8 0x1000e4000 + 16118232 (_gnutls_global_init_skip + 1753452)
15  Homesmart                       0x000000010104383c 0x1000e4000 + 16119868 (_gnutls_global_init_skip + 1755088)
16  Homesmart                       0x0000000100fbab10 0x1000e4000 + 15559440 (_gnutls_global_init_skip + 1194660)
17  Homesmart                       0x0000000100fbb42c 0x1000e4000 + 15561772 (_gnutls_global_init_skip + 1196992)
18  Homesmart                       0x0000000100fbb268 0x1000e4000 + 15561320 (_gnutls_global_init_skip + 1196540)
19  Homesmart                       0x0000000101023e58 0x1000e4000 + 15990360 (_gnutls_global_init_skip + 1625580)
20  Homesmart                       0x0000000100fbab10 0x1000e4000 + 15559440 (_gnutls_global_init_skip + 1194660)
21  Homesmart                       0x0000000100fbb42c 0x1000e4000 + 15561772 (_gnutls_global_init_skip + 1196992)
22  Homesmart                       0x0000000100fbb268 0x1000e4000 + 15561320 (_gnutls_global_init_skip + 1196540)
23  Homesmart                       0x0000000100f5a678 0x1000e4000 + 15165048 (_gnutls_global_init_skip + 800268)
24  Homesmart                       0x0000000100fbab10 0x1000e4000 + 15559440 (_gnutls_global_init_skip + 1194660)
25  Homesmart                       0x0000000100fbb42c 0x1000e4000 + 15561772 (_gnutls_global_init_skip + 1196992)
26  Homesmart                       0x0000000100fbb268 0x1000e4000 + 15561320 (_gnutls_global_init_skip + 1196540)
27  Homesmart                       0x0000000100f72e58 0x1000e4000 + 15265368 (_gnutls_global_init_skip + 900588)
28  Homesmart                       0x0000000100fd25a0 0x1000e4000 + 15656352 (_gnutls_global_init_skip + 1291572)
29  Homesmart                       0x0000000100df3cc0 0x1000e4000 + 13696192 (_mh_execute_header + 13696192)
30  Homesmart                       0x0000000100df797c 0x1000e4000 + 13711740 (_mh_execute_header + 13711740)
31  libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
32  libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 15:
0   libsystem_kernel.dylib          0x000000018e4b0e1c 0x18e492000 + 126492 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x000000018e578814 0x18e576000 + 10260 (<redacted> + 640)
2   Homesmart                       0x000000010080c7e0 0x1000e4000 + 7505888 (_mh_execute_header + 7505888)
3   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 16:
0   libsystem_kernel.dylib          0x000000018e4b0e1c 0x18e492000 + 126492 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x000000018e578814 0x18e576000 + 10260 (<redacted> + 640)
2   Homesmart                       0x000000010080c7e0 0x1000e4000 + 7505888 (_mh_execute_header + 7505888)
3   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 17:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   CoreFoundation                  0x000000018f464e90 0x18f38a000 + 896656 (<redacted> + 192)
3   CoreFoundation                  0x000000018f462ae4 0x18f38a000 + 887524 (<redacted> + 1060)
4   CoreFoundation                  0x000000018f392da4 0x18f38a000 + 36260 (CFRunLoopRunSpecific + 424)
5   AudioToolbox                    0x00000001924169fc 0x192262000 + 1788412 (<redacted> + 164)
6   AudioToolbox                    0x00000001925ea4bc 0x192262000 + 3703996 (<redacted> + 84)
7   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
8   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 18:
0   libsystem_kernel.dylib          0x000000018e4b0e1c 0x18e492000 + 126492 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x000000018e578814 0x18e576000 + 10260 (<redacted> + 640)
2   Homesmart                       0x0000000100e3e624 0x1000e4000 + 14001700 (_mh_execute_header + 14001700)
3   Homesmart                       0x0000000100fd25dc 0x1000e4000 + 15656412 (_gnutls_global_init_skip + 1291632)
4   Homesmart                       0x0000000100df3cc0 0x1000e4000 + 13696192 (_mh_execute_header + 13696192)
5   Homesmart                       0x0000000100df797c 0x1000e4000 + 13711740 (_mh_execute_header + 13711740)
6   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
7   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 19:
0   libsystem_kernel.dylib          0x000000018e493224 0x18e492000 + 4644 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x000000018e49309c 0x18e492000 + 4252 (mach_msg + 72)
2   AudioToolbox                    0x0000000192305e00 0x192262000 + 671232 (<redacted> + 280)
3   AudioToolbox                    0x000000019230a05c 0x192262000 + 688220 (<redacted> + 40)
4   AudioToolbox                    0x00000001925ea4bc 0x192262000 + 3703996 (<redacted> + 84)
5   libsystem_pthread.dylib         0x000000018e57968c 0x18e576000 + 13964 (<redacted> + 240)
6   libsystem_pthread.dylib         0x000000018e57959c 0x18e576000 + 13724 (_pthread_start + 284)

Thread 20 Crashed:
0   Homesmart                       0x0000000100df6260 0x1000e4000 + 13705824 (_mh_execute_header + 13705824)
1   Homesmart                       0x0000000100df5fec 0x1000e4000 + 13705196 (_mh_execute_header + 13705196)
2   Homesmart                       0x0000000100df67c4 0x1000e4000 + 13707204 (_mh_execute_header + 13707204)
3   Homesmart                       0x0000000100df7b4c 0x1000e4000 + 13712204 (_mh_execute_header + 13712204)
4   Homesmart                       0x0000000100f85484 0x1000e4000 + 15340676 (_gnutls_global_init_skip + 975896)
5   Homesmart                       0x0000000100f7cbc4 0x1000e4000 + 15305668 (_gnutls_global_init_skip + 940888)
6   Homesmart                       0x0000000100f8497c 0x1000e4000 + 15337852 (_gnutls_global_init_skip + 973072)
7   libdispatch.dylib               0x000000018e36e9e0 0x18e36d000 + 6624 (<redacted> + 24)
8   libdispatch.dylib               0x000000018e36e9a0 0x18e36d000 + 6560 (<redacted> + 16)
9   libdispatch.dylib               0x000000018e37cad4 0x18e36d000 + 64212 (<redacted> + 928)
10  libdispatch.dylib               0x000000018e3722cc 0x18e36d000 + 21196 (<redacted> + 884)
11  libdispatch.dylib               0x000000018e37ea50 0x18e36d000 + 72272 (<redacted> + 540)
12  libdispatch.dylib               0x000000018e37e7d0 0x18e36d000 + 71632 (<redacted> + 124)
13  libsystem_pthread.dylib         0x000000018e577100 0x18e576000 + 4352 (_pthread_wqthread + 1096)

Thread 21:
0   libsystem_kernel.dylib          0x000000018e4b1a88 0x18e492000 + 129672 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x000000018e5771a4 0x18e576000 + 4516 (_pthread_wqthread + 1260)

Thread 22:
0   libsystem_kernel.dylib          0x000000018e4b1a88 0x18e492000 + 129672 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x000000018e5771a4 0x18e576000 + 4516 (_pthread_wqthread + 1260)

Thread 23:
0   libsystem_kernel.dylib          0x000000018e4b1a88 0x18e492000 + 129672 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x000000018e5771a4 0x18e576000 + 4516 (_pthread_wqthread + 1260)

Thread 24:

Thread 20 crashed with ARM-64 Thread State:
  cpsr: 0x0000000020000000     fp: 0x000000016ea52bf0     lr: 0x0000000100df5fec     pc: 0x0000000100df6260 
    sp: 0x000000016ea52b70     x0: 0x0000000000000001     x1: 0x0000000103171e00    x10: 0x0000000000000000 
   x11: 0x0004200000042000    x12: 0x0000000000000000    x13: 0x0004200000042103    x14: 0x0000000000000000 
   x15: 0xfffffff100000000    x16: 0x000000018e578aac    x17: 0x0000000191ade7cc    x18: 0x0000000000000000 
   x19: 0x0000000000000030     x2: 0x0000000000000000    x20: 0x0000000105c37330    x21: 0x0000000000000002 
   x22: 0x00000001024f2b58    x23: 0x000000000000003f    x24: 0x0000000103171e38    x25: 0x00000001029023d0 
   x26: 0x00000001b4cee480    x27: 0x000000016ea530e0    x28: 0x0000000000000000    x29: 0x000000016ea52bf0 
    x3: 0x0000000103172dc0     x4: 0x0000000103171e80     x5: 0x0000000105c49a30     x6: 0x0000000101411a59 
    x7: 0x000000016ea52c90     x8: 0x0000000103806600     x9: 0x0000000000000000 

Binary Images:
       0x1000e4000 -        0x101d23fff +Homesmart arm64  <43a60ad888383b2e90745e49ee6441c7> /var/containers/Bundle/Application/F85B5E3A-E4D6-4B86-89B9-A51AF9E230A5/Homesmart.app/Homesmart
       0x18de98000 -        0x18de99fff  libSystem.B.dylib arm64  <2e9654eb84903bd7aee0815fd9d27591> /usr/lib/libSystem.B.dylib
       0x18de9a000 -        0x18deeffff  libc++.1.dylib arm64  <da0f6a86db853140b2d79e3b36f28795> /usr/lib/libc++.1.dylib
       0x18def0000 -        0x18df0cfff  libc++abi.dylib arm64  <5dc5ba28cfa43f838099049d17ba9ec6> /usr/lib/libc++abi.dylib
       0x18df10000 -        0x18e2edfff  libobjc.A.dylib arm64  <85f3b59b96243690b138ce96e663bf4b> /usr/lib/libobjc.A.dylib
       0x18e2ee000 -        0x18e2f2fff  libcache.dylib arm64  <5d1024035c983afdacc90dad2f0280ec> /usr/lib/system/libcache.dylib
       0x18e2f3000 -        0x18e2fefff  libcommonCrypto.dylib arm64  <0ca00f1d89553b9e8ad032310e8ecbb8> /usr/lib/system/libcommonCrypto.dylib
       0x18e2ff000 -        0x18e302fff  libcompiler_rt.dylib arm64  <771427d857db3158b2f7d971afa219c9> /usr/lib/system/libcompiler_rt.dylib
       0x18e303000 -        0x18e30afff  libcopyfile.dylib arm64  <793e7046ae7c3b65b17d6e0d9fe975fd> /usr/lib/system/libcopyfile.dylib
       0x18e30b000 -        0x18e36cfff  libcorecrypto.dylib arm64  <66d47f7529873633892967a26e598456> /usr/lib/system/libcorecrypto.dylib
       0x18e36d000 -        0x18e39cfff  libdispatch.dylib arm64  <1643bcf57daf389784dfcad8c485fd3e> /usr/lib/system/libdispatch.dylib
       0x18e39d000 -        0x18e3a1fff  libdyld.dylib arm64  <6c6a61f720cf30daa4a357cbefbf4cd6> /usr/lib/system/libdyld.dylib
       0x18e3a2000 -        0x18e3a2fff  liblaunch.dylib arm64  <1539b0564b4b34f78ab27c96400c3619> /usr/lib/system/liblaunch.dylib
       0x18e3a3000 -        0x18e3a8fff  libmacho.dylib arm64  <9434199c06b73b7090f38d0d0f6e6c20> /usr/lib/system/libmacho.dylib
       0x18e3a9000 -        0x18e3aafff  libremovefile.dylib arm64  <2262f08800e630af981ed21f7240d32e> /usr/lib/system/libremovefile.dylib
       0x18e3ab000 -        0x18e3c2fff  libsystem_asl.dylib arm64  <8c876d02afeb3aa18e733bbdbfa074f9> /usr/lib/system/libsystem_asl.dylib
       0x18e3c3000 -        0x18e3c3fff  libsystem_blocks.dylib arm64  <45adbecbe4b93744911aa6314fbbc8ff> /usr/lib/system/libsystem_blocks.dylib
       0x18e3c4000 -        0x18e440fff  libsystem_c.dylib arm64  <31008bfe57f7313a974fad1f76e24496> /usr/lib/system/libsystem_c.dylib
       0x18e441000 -        0x18e445fff  libsystem_configuration.dylib arm64  <99e65007dcd2368da0a7896f491ece18> /usr/lib/system/libsystem_configuration.dylib
       0x18e446000 -        0x18e44bfff  libsystem_containermanager.dylib arm64  <62636c63790b3c0d9cc115fc73d66ba2> /usr/lib/system/libsystem_containermanager.dylib
       0x18e44c000 -        0x18e44dfff  libsystem_coreservices.dylib arm64  <9eec7dc8a2d831639eaf9bd9b3e70377> /usr/lib/system/libsystem_coreservices.dylib
       0x18e44e000 -        0x18e466fff  libsystem_coretls.dylib arm64  <f7a5e11e082d37babe31812e9717fcf0> /usr/lib/system/libsystem_coretls.dylib
       0x18e467000 -        0x18e46dfff  libsystem_dnssd.dylib arm64  <9700821f537737e4b2f91607acb78aa7> /usr/lib/system/libsystem_dnssd.dylib
       0x18e46e000 -        0x18e491fff  libsystem_info.dylib arm64  <077e4a85b19f3b00b768a5eb34fe46b5> /usr/lib/system/libsystem_info.dylib
       0x18e492000 -        0x18e4b6fff  libsystem_kernel.dylib arm64  <275624061b1a3ab391baf08b4ba58a97> /usr/lib/system/libsystem_kernel.dylib
       0x18e4b7000 -        0x18e4e3fff  libsystem_m.dylib arm64  <d8e9248df4523f35a7ac365dab827fba> /usr/lib/system/libsystem_m.dylib
       0x18e4e4000 -        0x18e4fffff  libsystem_malloc.dylib arm64  <56104290e798374188ef0da981dc3146> /usr/lib/system/libsystem_malloc.dylib
       0x18e500000 -        0x18e559fff  libsystem_network.dylib arm64  <54ba9caf24023fd0ad569557ac08b1a6> /usr/lib/system/libsystem_network.dylib
       0x18e55a000 -        0x18e563fff  libsystem_networkextension.dylib arm64  <8aef40a6317b3062b40dc94d87f7d1bf> /usr/lib/system/libsystem_networkextension.dylib
       0x18e564000 -        0x18e56efff  libsystem_notify.dylib arm64  <1da4fe88c1ad31b6a5c7c2138f5d1c94> /usr/lib/system/libsystem_notify.dylib
       0x18e56f000 -        0x18e575fff  libsystem_platform.dylib arm64  <a0a582b8f653379e8ac7799e83c90b1f> /usr/lib/system/libsystem_platform.dylib
       0x18e576000 -        0x18e57ffff  libsystem_pthread.dylib arm64  <8f14c41e6536348a9b6ffd2a82be7d57> /usr/lib/system/libsystem_pthread.dylib
       0x18e580000 -        0x18e583fff  libsystem_sandbox.dylib arm64  <ac550550955c37c2b2e4022095b4b8de> /usr/lib/system/libsystem_sandbox.dylib
       0x18e584000 -        0x18e58bfff  libsystem_symptoms.dylib arm64  <39c51c9bffa030ef82de6c281436e836> /usr/lib/system/libsystem_symptoms.dylib
       0x18e58c000 -        0x18e59efff  libsystem_trace.dylib arm64  <3fdd15d2b2c33d68b8cc600d0482b5fd> /usr/lib/system/libsystem_trace.dylib
       0x18e59f000 -        0x18e5a4fff  libunwind.dylib arm64  <990bab05c7b333f3bfc274d5ea579b71> /usr/lib/system/libunwind.dylib
       0x18e5a5000 -        0x18e5a5fff  libvminterpose.dylib arm64  <dabe83c40ec235dfb7f0e8fe395e1844> /usr/lib/system/libvminterpose.dylib
       0x18e5a6000 -        0x18e5ccfff  libxpc.dylib arm64  <7a12d1ee49b73e1eb582b9c359c7fe79> /usr/lib/system/libxpc.dylib
       0x18e5cd000 -        0x18e7e2fff  libicucore.A.dylib arm64  <d7b181cad9a438e7b6e010c2e4c8da5e> /usr/lib/libicucore.A.dylib
       0x18e7e3000 -        0x18e7f4fff  libz.1.dylib arm64  <ab0d683d7cf931e49e5456a420ced72e> /usr/lib/libz.1.dylib
       0x18f38a000 -        0x18f70bfff  CoreFoundation arm64  <719044f95fe23ee0ab14504def42b100> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
       0x18f70c000 -        0x18f71cfff  libbsm.0.dylib arm64  <4f2930cfb67e3965a863f8bfb7704300> /usr/lib/libbsm.0.dylib
       0x18f71d000 -        0x18f71dfff  libenergytrace.dylib arm64  <5cfceffa0be736398124efbb3d80cbd1> /usr/lib/libenergytrace.dylib
       0x18f71e000 -        0x18f799fff  IOKit arm64  <6f72fc6ac9d2309dbf33c8b014c129d0> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
       0x18f79a000 -        0x18f7bafff  libMobileGestalt.dylib arm64  <5674397d74c33492a16f51f6fd33f114> /usr/lib/libMobileGestalt.dylib
       0x18f7bb000 -        0x18f8a4fff  libxml2.2.dylib arm64  <605bee9eb5ff3c43a65d251460f3650c> /usr/lib/libxml2.2.dylib
       0x18f8a5000 -        0x18f93ffff  Security arm64  <287bf21cb54734b9b91574ccb4e71436> /System/Library/Frameworks/Security.framework/Security
       0x18f940000 -        0x18f9abfff  SystemConfiguration arm64  <57d2eead9fcf34ecaa81c225ad8345e1> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
       0x18f9ac000 -        0x18fabcfff  libsqlite3.dylib arm64  <aa3a5cd643b43e40b5680d5a3758ab8f> /usr/lib/libsqlite3.dylib
       0x18fabd000 -        0x18fe31fff  CFNetwork arm64  <05331a42dd8b31cea6ef547eadc487cd> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
       0x18fe32000 -        0x18fe3ffff  libbz2.1.0.dylib arm64  <29e1c06129583bb5b423bbfd7397c0e5> /usr/lib/libbz2.1.0.dylib
       0x18fe40000 -        0x18fe58fff  liblzma.5.dylib arm64  <eb9e235443573c948bcd016ea00a3709> /usr/lib/liblzma.5.dylib
       0x18fe59000 -        0x18fe73fff  libCRFSuite.dylib arm64  <a859d30f7de034a2bee5aa662bc5bc2d> /usr/lib/libCRFSuite.dylib
       0x18fe74000 -        0x18fe9dfff  libarchive.2.dylib arm64  <a31887c5b46a3b97ad308f4db869be43> /usr/lib/libarchive.2.dylib
       0x18fe9e000 -        0x18fe9ffff  liblangid.dylib arm64  <80d66702d7ce30b7b75c3f75472697eb> /usr/lib/liblangid.dylib
       0x18fea0000 -        0x19016ffff  Foundation arm64  <08e6a29fdbac38dd817c66cedf0e0052> /System/Library/Frameworks/Foundation.framework/Foundation
       0x190170000 -        0x19021bfff  libBLAS.dylib arm64  <708d8599265c39d3881fc57c55bc982d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
       0x19021c000 -        0x19054afff  libLAPACK.dylib arm64  <96e5ce2234903263ad30c6398972d535> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
       0x19054b000 -        0x1907e5fff  vImage arm64  <1f67094759de381898830a3692edff0f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
       0x1907e6000 -        0x19080bfff  libvMisc.dylib arm64  <3de044e80d883d6188e8ce8a8572ec5b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
       0x19080c000 -        0x190820fff  libLinearAlgebra.dylib arm64  <37c71c692da03cc9a1534badab1cf6f4> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
       0x190821000 -        0x190832fff  libSparseBLAS.dylib arm64  <2237c532ebe539f8ab93c181dfa1a291> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
       0x190833000 -        0x1908a8fff  libvDSP.dylib arm64  <0ced33b1008e357e9acb9d039cff697d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
       0x1908a9000 -        0x1908a9fff  vecLib arm64  <d21c98b0003235f99d247f4f934c7641> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
       0x1908aa000 -        0x1908aafff  Accelerate arm64  <f38de9acd0ba3a00a1c32fda7a240f38> /System/Library/Frameworks/Accelerate.framework/Accelerate
       0x1908ab000 -        0x190deffff  CoreGraphics arm64  <7d39f265eae8328f801705549c70e571> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
       0x190df0000 -        0x190e04fff  GraphicsServices arm64  <b5749f3fa6f13ce689683db33f23256c> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
       0x190e05000 -        0x190e52fff  AppSupport arm64  <2a60ffa70fa13031a1251b964802ad31> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
       0x190e53000 -        0x190f80fff  MobileCoreServices arm64  <78cfd6fb54fa3b2abaa4006791ac96ca> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
       0x190f81000 -        0x190fe2fff  BaseBoard arm64  <ff0febbec86337aead2c18f8ac460dec> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
       0x190fe3000 -        0x190ff2fff  AssertionServices arm64  <8ff92082f5833b7795af4a2200886ce2> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
       0x190ff3000 -        0x191020fff  BackBoardServices arm64  <7bd5622615bb39cdba684e47e9bb8798> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
       0x191025000 -        0x191074fff  FrontBoardServices arm64  <6adf5e0649313e35bd11d448eb071d17> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
       0x191078000 -        0x1910acfff  SpringBoardServices arm64  <a5f42cadcaba3943953f5047533c2fe7> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
       0x1910ad000 -        0x1910c7fff  MobileKeyBag arm64  <51a5be975d3a37c2af8751a5b9124948> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
       0x1910c8000 -        0x1910d0fff  IOSurface arm64  <acecdca025ff36b4b14159e52e2819dd> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
       0x1910d1000 -        0x1910dcfff  liblockdown.dylib arm64  <3904292ecd513a0e85216e7c3abd1101> /usr/lib/liblockdown.dylib
       0x1910dd000 -        0x1910f3fff  CrashReporterSupport arm64  <b06bf5fa4c9b36f595a2a8ea4a84cca9> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
       0x1910f4000 -        0x1910f6fff  IOSurfaceAccelerator arm64  <7dd37fd295f93ecfa89401bbbb418dbf> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
       0x1910f7000 -        0x191137fff  AppleJPEG arm64  <d8b98c13f8d83200ad41d6b30d3c9c14> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
       0x191138000 -        0x1916c5fff  ImageIO arm64  <9133dcebff4c3ab6807f96f884190cb5> /System/Library/Frameworks/ImageIO.framework/ImageIO
       0x1916c6000 -        0x1916ccfff  TCC arm64  <b11f764c841d3c69a50a6b0993735d43> /System/Library/PrivateFrameworks/TCC.framework/TCC
       0x1916cd000 -        0x1916d1fff  AggregateDictionary arm64  <fab7b20283e43d8aa268b7d051e3d521> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
       0x1916d2000 -        0x1916defff  PowerLog arm64  <a668cd2a3ad03c0291a9665f3151f946> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
       0x1916df000 -        0x191749fff  libTelephonyUtilDynamic.dylib arm64  <a9cba41bffa83838b49c3f8ff2538f8a> /usr/lib/libTelephonyUtilDynamic.dylib
       0x19174a000 -        0x19175cfff  CommonUtilities arm64  <495171d174123535af0ff1751ef454b3> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
       0x19175d000 -        0x191772fff  libcompression.dylib arm64  <c5e41b4a6cbf37fb87cd5cd44f6906b8> /usr/lib/libcompression.dylib
       0x191773000 -        0x191a0bfff  CoreData arm64  <7574c4fafa7a33bf82e05d9fa01ed542> /System/Library/Frameworks/CoreData.framework/CoreData
       0x191a0c000 -        0x191a11fff  libCoreVMClient.dylib arm64  <07e215340c3239fea6c469df55183bcd> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
       0x191a12000 -        0x191a17fff  IOAccelerator arm64  <54e24860953b39ddbe13a2dcdf76c733> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
       0x191a18000 -        0x191a19fff  libCVMSPluginSupport.dylib arm64  <02280e05346d31509d62ac2583f72857> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
       0x191a1a000 -        0x191a1dfff  libCoreFSCache.dylib arm64  <f5c0306167ea39b2b60185329c1a8bbb> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
       0x191a1e000 -        0x191a5ffff  libGLImage.dylib arm64  <34bb7e96428f3c1abd6f0cbb2787b9e1> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
       0x191a60000 -        0x191a6afff  libGFXShared.dylib arm64  <d70b4c465ebe3a9e98c2b82ccf8fb7d7> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
       0x191a6b000 -        0x191a73fff  IOMobileFramebuffer arm64  <e759626dff9439309f66279b3e4296ca> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
       0x191a74000 -        0x191a74fff  libmetal_timestamp.dylib arm64  <b51cc6027bd833d4a2a80f0d1de8bc40> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
       0x191a75000 -        0x191ad6fff  Metal arm64  <0dc267ebbc333fcfa409b09544725b5f> /System/Library/Frameworks/Metal.framework/Metal
       0x191ad7000 -        0x191ae1fff  OpenGLES arm64  <d789825652ac31c78f1007fed0ff3777> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
       0x191ae2000 -        0x191b06fff  CoreVideo arm64  <ba0cdc15666b32f7be6f9fcd1528c7f1> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
       0x191b07000 -        0x191b09fff  OAuth arm64  <56d873bb47973452a9fc41ee777f8d42> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
       0x191b0a000 -        0x191b46fff  Accounts arm64  <28b18304843b3350a829aaedc92b5a54> /System/Library/Frameworks/Accounts.framework/Accounts
       0x191b47000 -        0x191c39fff  libiconv.2.dylib arm64  <1db28a41c3a83551aad361a4e072fe33> /usr/lib/libiconv.2.dylib
       0x191c3a000 -        0x191d87fff  CoreAudio arm64  <34f7497d8b43383cb4021a8300855c94> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
       0x191d88000 -        0x191d8bfff  UserFS arm64  <b8862d7a16d83d22954ab81b89743009> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
       0x191d8c000 -        0x191e99fff  CoreMedia arm64  <8d8137d106813d32a14ce6e1f8384c08> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
       0x191e9a000 -        0x191ea0fff  libcupolicy.dylib arm64  <3964026e2c6f3eab9ea81b19ec10b7ed> /usr/lib/libcupolicy.dylib
       0x191ea1000 -        0x191f2afff  CoreTelephony arm64  <84dcfae0a4713efc95beb71856f971aa> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
       0x191f2b000 -        0x192038fff  libFontParser.dylib arm64  <a7990cbb692b36a49280088c24b9ec2a> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
       0x192039000 -        0x1920c8fff  VideoToolbox arm64  <59e3d13a5d243b44abf10a5c4ba313f4> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
       0x1920c9000 -        0x1920c9fff  FontServices arm64  <5a9fc52851583aac96b6745cf7aae370> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
       0x1920ca000 -        0x192216fff  CoreText arm64  <851f6498f833335fb35ec9e67515c2fb> /System/Library/Frameworks/CoreText.framework/CoreText
       0x192217000 -        0x192231fff  ProtocolBuffer arm64  <a3544981c8743eea875d5b7c7bc5b19b> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
       0x192232000 -        0x19225afff  PersistentConnection arm64  <4a392539b9c33a47b69439638cfaac04> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
       0x19225b000 -        0x192261fff  DataMigration arm64  <6cff1ebc13b332e3809b4722048c6ffb> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
       0x192262000 -        0x1926b6fff  AudioToolbox arm64  <0505b7dd6a033bf78117a8cd81a1101b> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
       0x1926b7000 -        0x192894fff  QuartzCore arm64  <416a878f23c636fc8d81404ff7dd4fdc> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
       0x192895000 -        0x19289bfff  Netrb arm64  <099e2ab3ae8e3a498e0e0a0f17e128a7> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
       0x19289c000 -        0x1928acfff  libcmph.dylib arm64  <903e25509e37307e99af188ed1272633> /usr/lib/libcmph.dylib
       0x1928ad000 -        0x1928cdfff  libmis.dylib arm64  <1a116c60b46a3781a68a9c27e9cf2653> /usr/lib/libmis.dylib
       0x1928ce000 -        0x1929bffff  LanguageModeling arm64  <c49bcbbac36d34308151388e8bf1a718> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
       0x1929c0000 -        0x192ab6fff  ManagedConfiguration arm64  <0e15a8564caf3d47ab9b199770bf5cd2> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
       0x192ab7000 -        0x192acdfff  libmarisa.dylib arm64  <96c399295cb13cad829c93b5c29f0661> /usr/lib/libmarisa.dylib
       0x192ace000 -        0x192b9efff  ProofReader arm64  <bb56e538be8835199a0abd263adb75f8> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
       0x192b9f000 -        0x192ba9fff  MediaAccessibility arm64  <17fe4943f5363a278cf9868db2623b9d> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
       0x192baa000 -        0x192bbafff  MobileAsset arm64  <2a3a006162af37b79c3a6b2ab71344c6> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
       0x192bbb000 -        0x192c2cfff  ColorSync arm64  <996fd30495c33a64b17b87797c54aec2> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
       0x192c2d000 -        0x192c9dfff  MetalPerformanceShaders arm64  <e78463e7ed8334909ae0968c5b4ddcbc> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
       0x192c9e000 -        0x1930cdfff  FaceCore arm64  <0179b0a45e4932e5967336ac40c0c4d8> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
       0x1930ce000 -        0x19314afff  Quagga arm64  <b3a2d704a9103e2e85e0d86e6bb6f0b2> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
       0x19314b000 -        0x193314fff  CoreImage arm64  <8c5c510a2d90361696f6a965b6b933a0> /System/Library/Frameworks/CoreImage.framework/CoreImage
       0x193315000 -        0x193364fff  TextInput arm64  <a1a56e91cb0534e8815a23fb6993b023> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
       0x193365000 -        0x193375fff  libAccessibility.dylib arm64  <fbd694050c503c12a3e0e7dfb490b9df> /usr/lib/libAccessibility.dylib
       0x193385000 -        0x193dc7fff  JavaScriptCore arm64  <f4afe098cd9b33c2b3369773851e26b9> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
       0x193dc8000 -        0x194019fff  StoreServices arm64  <7876e0b331c3380ab69b57e9bc5ece4b> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
       0x19401a000 -        0x19520ffff  WebCore arm64  <d0a2b6b3b79434a08272968e20cd00a7> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
       0x195210000 -        0x195238fff  libxslt.1.dylib arm64  <3edbcb1d6e1d33519db363daf35cfe1c> /usr/lib/libxslt.1.dylib
       0x195239000 -        0x1953a5fff  WebKitLegacy arm64  <a7feeddf725930858e5fe93e4e047bb5> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
       0x1953a6000 -        0x19546bfff  CoreUI arm64  <0a25c84cf6183efead20a5cea30b98ad> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
       0x19546c000 -        0x195493fff  DictionaryServices arm64  <dd7a3952ff63333ebe91d7eff8347628> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
       0x195494000 -        0x195497fff  HangTracer arm64  <13e35bff690836b7b717f3f5ff690897> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
       0x195498000 -        0x1954ecfff  PhysicsKit arm64  <e53aecfb95ec3252986a82a83a3cafd1> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
       0x1954ed000 -        0x1955c4fff  UIFoundation arm64  <db0623abf2243a578bd1e457f6877483> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
       0x1955d1000 -        0x196378fff  UIKit arm64  <4ad90348edcc3d21983f83490705f2aa> /System/Library/Frameworks/UIKit.framework/UIKit
       0x196379000 -        0x1963a1fff  CoreBluetooth arm64  <ced176702d7c37e6a9027eeb3fbf7f66> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
       0x1963a2000 -        0x1963cafff  DataAccessExpress arm64  <6c35e310019e35a38adba222a251f4fc> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
       0x1963cb000 -        0x1963ebfff  NetworkStatistics arm64  <de6f2c537e8b32f19a14ca97b293394e> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
       0x1963ec000 -        0x196475fff  AddressBook arm64  <6ac637105605370a8cf1bf73e72447bf> /System/Library/Frameworks/AddressBook.framework/AddressBook
       0x196476000 -        0x1965d6fff  CoreMotion arm64  <5add12fe99963d58a923e3151d02baea> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
       0x1965d7000 -        0x196601fff  CacheDelete arm64  <b7d03ec01fa83f0c8c876884fb6a7b2a> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
       0x196602000 -        0x19660ffff  CoreAUC arm64  <4ccece7ce6f53d4393588ca8af59f4cc> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
       0x196610000 -        0x196b7bfff  MediaToolbox arm64  <6cca04ef0c203442a24e3613d286cd42> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
       0x196b7c000 -        0x196d29fff  Celestial arm64  <3330c498b46631eeb90a642d377fae9b> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
       0x196d2a000 -        0x196d39fff  IntlPreferences arm64  <09d66fe143483a389cd6f502e13da940> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
       0x196d3a000 -        0x196d3cfff  CoreDuetDebugLogging arm64  <7e3ea6bf9d463951866292d973db6e6b> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
       0x196d3d000 -        0x196d51fff  CoreDuetDaemonProtocol arm64  <9702905525c33e2880b00d957ad476c9> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
       0x196d52000 -        0x196e27fff  CoreDuet arm64  <d436e43f1206320fbd75248b121358aa> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
       0x196e28000 -        0x196fdefff  AVFoundation arm64  <bf1a5ba30aa5384289fb3f8454ba0e22> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
       0x196fdf000 -        0x197013fff  libtidy.A.dylib arm64  <2f48d4f92e6a3ff5b0509adff9b99ca4> /usr/lib/libtidy.A.dylib
       0x197014000 -        0x19707afff  IMFoundation arm64  <38ea4de43fbe399397e16b597d39ef1e> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
       0x19707b000 -        0x19771efff  GeoServices arm64  <58b2dd08bd0f303cbbee0e58327e5c87> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
       0x19771f000 -        0x197720fff  DiagnosticLogCollection arm64  <8c7cdc0581863d949fad12e1c002c80f> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
       0x197721000 -        0x197722fff  Marco arm64  <9de14b0be5043a13ae11ce2b307d4352> /System/Library/PrivateFrameworks/Marco.framework/Marco
       0x197723000 -        0x1977a8fff  CoreLocation arm64  <527a5b7da22730e0ba1a17a74575990e> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
       0x1977a9000 -        0x1977aefff  ConstantClasses arm64  <d1824269bde13011a30bb20413b487c8> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
       0x197a40000 -        0x197a92fff  IDSFoundation arm64  <7f7fb39e2f1c38549a0f6a98ad72a35d> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
       0x197a93000 -        0x197b5bfff  IDS arm64  <70d356bcf7223c3b88292e774b59302e> /System/Library/PrivateFrameworks/IDS.framework/IDS
       0x197b5c000 -        0x197b7afff  MediaServices arm64  <ae9e890161c13c02a11f9fcce775756d> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
       0x197b7b000 -        0x197bbefff  AuthKit arm64  <51f9f14dab343736aba127fc4c2fef4d> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
       0x197bbf000 -        0x197bc4fff  libheimdal-asn1.dylib arm64  <430155e3abb132b391e8bc0785b6cd70> /usr/lib/libheimdal-asn1.dylib
       0x197bc5000 -        0x197c99fff  MediaRemote arm64  <54a5906be66238bc85148945148e5e08> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
       0x197c9a000 -        0x197e1efff  MobileSpotlightIndex arm64  <85e4085a14363a6d9104565abe0d8ac9> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
       0x197e1f000 -        0x197e3efff  PlugInKit arm64  <5fd199791bd034158ae690bd4b9ab1e1> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
       0x197e3f000 -        0x197e7bfff  ProtectedCloudStorage arm64  <e05570a9e6bf32d7b7064e4bff2da280> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
       0x197e7c000 -        0x197e97fff  libresolv.9.dylib arm64  <1d7a61761a42344b850150806bcb08a9> /usr/lib/libresolv.9.dylib
       0x197e98000 -        0x197eadfff  ApplePushService arm64  <0af0362080153e92bf29b1b964417848> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
       0x197eae000 -        0x197efdfff  ContactsFoundation arm64  <4834faa7e4d9338995744a0082f8c55c> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
       0x197f01000 -        0x197fb4fff  Contacts arm64  <958c7de2b63736d7a5a44b1935bd2950> /System/Library/Frameworks/Contacts.framework/Contacts
       0x197fb5000 -        0x197ffefff  CoreSpotlight arm64  <d82a303ae98f311ea76c1b2eb85ab42d> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
       0x197fff000 -        0x198027fff  vCard arm64  <7498fe2f006237ee95d1570b4fd377d4> /System/Library/PrivateFrameworks/vCard.framework/vCard
       0x198259000 -        0x19825bfff  MessageSupport arm64  <7503df5f7cfa32689597eb887e6abb87> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
       0x19825c000 -        0x1982b1fff  MIME arm64  <9e606ab8de0039f5bcb8494d547d84ad> /System/Library/PrivateFrameworks/MIME.framework/MIME
       0x198347000 -        0x198363fff  AppleIDSSOAuthentication arm64  <51e91fc9170931599eb79c311b1adc09> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
       0x198364000 -        0x198374fff  MailServices arm64  <8c1659bf6454376aaec1fb2d42586212> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
       0x198375000 -        0x1983e8fff  AppleAccount arm64  <419f55559f51314b9d6c53d03f353f19> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
       0x1983e9000 -        0x1983edfff  CommunicationsFilter arm64  <88fe96f3e9bd3c928f0ce3b9e3609f22> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
       0x1983ee000 -        0x198413fff  ChunkingLibrary arm64  <a5610db4cde33d18849623976460f536> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
       0x198414000 -        0x19841ffff  CaptiveNetwork arm64  <cd8e42beb887325798304d0d01bd57b3> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
       0x198420000 -        0x19844efff  EAP8021X arm64  <3a3aa5c4990e34879ca12e6f5e1de265> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
       0x19844f000 -        0x198456fff  AssetCacheServices arm64  <ec37af1c81113876b331f36c6263a725> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
       0x198457000 -        0x19851ffff  MMCS arm64  <5943d49acc423c058ef9b4147abe8b41> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
       0x198520000 -        0x198550fff  MobileWiFi arm64  <2d66ac36f09f39c4ac0722873331d039> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
       0x198551000 -        0x198593fff  ContentIndex arm64  <4e6fa126997f30cb8c0caf9ae4f0e63b> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
       0x1985f1000 -        0x198621fff  Bom arm64  <32b8ff158e563292bb052e36c903dbdd> /System/Library/PrivateFrameworks/Bom.framework/Bom
       0x198622000 -        0x19862afff  CertUI arm64  <cb4d90563707392e899956a3821b83ae> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
       0x19862b000 -        0x19867cfff  FTServices arm64  <29a4eddd415830269083b141166e572d> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
       0x19867d000 -        0x1986dbfff  CoreDAV arm64  <177ab5ce6c7e3061aeddeb7faf8bc41d> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
       0x1986eb000 -        0x198701fff  UserManagement arm64  <40ac399d20df3c0e9c438d1c212beb4f> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
       0x198702000 -        0x1987c9fff  CorePDF arm64  <ef1ec23787d03e2b97a39e89764281f9> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
       0x1987ca000 -        0x1987fefff  iCalendar arm64  <5bb9085e143b383db506a50934df271c> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
       0x198807000 -        0x198865fff  CalendarFoundation arm64  <d9d4b20dd9623e4e8831ca80a9f94797> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
       0x198968000 -        0x198a01fff  CalendarDatabase arm64  <b36f47675dc836dfb3ea9101226ba62e> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
       0x198a02000 -        0x198a47fff  CalendarDaemon arm64  <1c5280642d4d365cac44cbb0cb2127af> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
       0x198a48000 -        0x198b18fff  EventKit arm64  <aeca0fb6ca6531c68c5388e26f71d66d> /System/Library/Frameworks/EventKit.framework/EventKit
       0x198b19000 -        0x198e51fff  WebKit arm64  <e21373bf39a93e75bebaff8fa2b03658> /System/Library/Frameworks/WebKit.framework/WebKit
       0x198e52000 -        0x198e9dfff  WebBookmarks arm64  <b190a03110d835aba39b9a39f8855001> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
       0x198e9e000 -        0x198fe2fff  ContactsUI arm64  <31a25a9458cf380fbc3f78c00d447586> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
       0x1997b5000 -        0x1997bbfff  DAAPKit arm64  <fbf1424a544b3c4fb6a917d95bc7eaf0> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
       0x19990d000 -        0x199b7dfff  MusicLibrary arm64  <d82d6c2a89733868a3919d72266778f3> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
       0x199b7e000 -        0x199bbcfff  Notes arm64  <d204c65f3fe134dda8eac2541d19535c> /System/Library/PrivateFrameworks/Notes.framework/Notes
       0x199bbd000 -        0x199c94fff  AddressBookUI arm64  <381f7b67a71c3e57a975bbc88e3b2046> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
       0x199c95000 -        0x199d71fff  CloudKit arm64  <e20611e33e9f3e708171900528be44e1> /System/Library/Frameworks/CloudKit.framework/CloudKit
       0x199d72000 -        0x199de8fff  iTunesStore arm64  <ce72159db23032379460e91ee94f2bd9> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
       0x199de9000 -        0x199deffff  CloudPhotoServices arm64  <8de95cd9eb9c3941ad9348dc323bbd82> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
       0x199df0000 -        0x199ee6fff  CloudPhotoLibrary arm64  <3183a58c4b8739e5bd61501dababa798> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
       0x199ee7000 -        0x199f3efff  DataAccess arm64  <73a90d6941233c46a50db9d0a13a0aae> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
       0x199f3f000 -        0x199f67fff  AssetsLibraryServices arm64  <a1f91416a79731e192e96ff9f7e6a9f9> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
       0x199f68000 -        0x19a004fff  HomeSharing arm64  <7919fa86104c3f9ea4e5c3b7131a857c> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
       0x19a005000 -        0x19a033fff  ACTFramework arm64  <d0dbf6b0c7253e30b8d55be12b11d409> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework
       0x19a034000 -        0x19a03ffff  DCIMServices arm64  <14a4ff27549d33ca8f53de8d463b39c7> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
       0x19a040000 -        0x19a16ffff  CoreMediaStream arm64  <3533cce3157433488535bdfa0cb13785> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
       0x19a170000 -        0x19a189fff  PhotosFormats arm64  <a541a7d13e8f39d388646bcca30d5da3> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
       0x19a18a000 -        0x19a191fff  XPCKit arm64  <db3b46de1c973673aef44874014248c2> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
       0x19a192000 -        0x19a569fff  MediaPlayer arm64  <e212e3ca659630b4879b8972f82c4143> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
       0x19a56a000 -        0x19a64ffff  CameraKit arm64  <573a74738cc13b64aa19c96a125bfac7> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit
       0x19a658000 -        0x19a674fff  MediaStream arm64  <624779663a7b3643830a30e280c86db6> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
       0x19a675000 -        0x19aa12fff  PhotoLibraryServices arm64  <a9ff7bee826b3701a1e97ad63168cdc8> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
       0x19aa4a000 -        0x19aab7fff  libprotobuf.dylib arm64  <9c108882e95c3003a9140280a9da8250> /usr/lib/libprotobuf.dylib
       0x19aced000 -        0x19ae24fff  Message arm64  <d8c884a6ef7c32d8af49a5f96529333e> /System/Library/PrivateFrameworks/Message.framework/Message
       0x19aed8000 -        0x19af09fff  DataDetectorsCore arm64  <a6010e00f70239889cbdaaaf2325df0d> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
       0x19af18000 -        0x19b178fff  libAWDSupportFramework.dylib arm64  <2c1184b25c6130d29445782aa1fe9b73> /usr/lib/libAWDSupportFramework.dylib
       0x19b1bb000 -        0x19b1fbfff  WirelessDiagnostics arm64  <8aab71ecbfba39c78621cdf43f93a4d2> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
       0x19b3e9000 -        0x19b3f4fff  CoreRecents arm64  <a7313c413ca031469295d08361d050c8> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
       0x19b4f5000 -        0x19b508fff  AssetsLibrary arm64  <75a7169f5751312c844ec6af3151310d> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
       0x19bd80000 -        0x19bd83fff  FTClientServices arm64  <034e25b243383864aa3d9471c4ab1a63> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
       0x19bf85000 -        0x19bfbefff  ContactsAutocomplete arm64  <d1b2973b67ba361ba94d685c4b9d9cf8> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
       0x19bfcf000 -        0x19c0aefff  MessageUI arm64  <8de75ccad4f93e79888791ca2ff92c48> /System/Library/Frameworks/MessageUI.framework/MessageUI
       0x19c0af000 -        0x19c128fff  libnetwork.dylib arm64  <a1d866db069538fc90aaae3ca1ccb13d> /usr/lib/libnetwork.dylib
       0x19c13c000 -        0x19c1bcfff  Network arm64  <e962fe80d3ee3497a52d0644c99aafb6> /System/Library/PrivateFrameworks/Network.framework/Network
       0x19c38b000 -        0x19c3a1fff  FTAWD arm64  <3f976dcde4a0365ab3d4b2fed519daec> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
       0x19e59d000 -        0x19e6f2fff  libGLProgrammability.dylib arm64  <3c09b74512053e9eaa6baf54245bad6c> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
       0x19f4c7000 -        0x19f4d0fff  libGPUSupportMercury.dylib arm64  <a8f01baddd403dad922828f2ef4a5893> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
       0x19f4d6000 -        0x19f56afff  MediaPlatform arm64  <4dc66da5850f30e18409990cce613dea> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
       0x1a0040000 -        0x1a009efff  CoreBrightness arm64  <3cbc7c04794738d3a761dde2fd830fd1> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
       0x1a03cd000 -        0x1a04fafff  StoreServicesCore arm64  <e872abc10c0a3a89b2585bbaffaea1e0> /System/Library/PrivateFrameworks/StoreServicesCore.framework/StoreServicesCore
       0x1a0a39000 -        0x1a0e96fff  MediaLibraryCore arm64  <05c6f35e7b813ff5be616b42cafb29a3> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
       0x1a117e000 -        0x1a11d0fff  libstdc++.6.dylib arm64  <b1c395ad1e5831b9bc0165d11209df61> /usr/lib/libstdc++.6.dylib
       0x1a12de000 -        0x1a12e1fff  AGXCompilerConnection arm64  <03463f6016223febb5ccb1e3b6598984> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
       0x1a1937000 -        0x1a1956fff  CoreNLP arm64  <42836654b8a33051a104b0ec97fc1091> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
       0x1a3f63000 -        0x1a3ffffff  AGXGLDriver arm64  <911b31d32fdf3574a871defd9945512c> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
       0x1a4018000 -        0x1a402cfff  libCGInterfaces.dylib arm64  <8d96c27fbf1235749dd2907472688e89> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
       0x1a402d000 -        0x1a42a3fff  AudioCodecs arm64  <4743bf4ffa263bc5977f9c821b72486c> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
       0x1a46e8000 -        0x1a47d1fff  GLEngine arm64  <d9bbd8a24a07397db91501079705efe6> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
       0x1a4f22000 -        0x1a4f30fff  AppleFSCompression arm64  <9ce16a16e20c35f5be292f251083c30d> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
       0x1a4f31000 -        0x1a4f3cfff  AppleIDAuthSupport arm64  <73d34b108f8634649e3ef934de89d6dd> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
       0x1a5c1d000 -        0x1a5c42fff  CoreServicesInternal arm64  <3c2db4f07ea232358a78e76307363ba0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
       0x1a6340000 -        0x1a634cfff  libGSFontCache.dylib arm64  <ad96a7db4ef337a1919ef9e4f24ce96a> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
       0x1a634d000 -        0x1a637efff  libTrueTypeScaler.dylib arm64  <b675e879d4b032ba8ad24e7e78818463> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
       0x1a81e6000 -        0x1a81ebfff  TextInputUI arm64  <6a4759a2652537418870bb45e66496a5> /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
       0x1a890c000 -        0x1a8adbfff  libFosl_dynamic.dylib arm64  <8e1668637c423351a9b8f75d3db4e1bd> /usr/lib/libFosl_dynamic.dylib
       0x1a8adc000 -        0x1a8ae6fff  libMobileGestaltExtensions.dylib arm64  <c84971521e73337b92f4e3efabae2eb6> /usr/lib/libMobileGestaltExtensions.dylib
       0x1a8ef7000 -        0x1a8f29fff  libpcap.A.dylib arm64  <5b50b83d66ba3127ab8bfb9d7773aeab> /usr/lib/libpcap.A.dylib
       0x1a8f64000 -        0x1a9034fff  AVFAudio arm64  <82aeee0bc85835348e3b6113e5f0f7dc> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
       0x1a9035000 -        0x1a903efff  ProactiveEventTracker arm64  <66b41160346f344b8b7685ea37bf7d3f> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
       0x1a903f000 -        0x1a91d5fff  Intents arm64  <c55c244eff3a3b568972131160de46a0> /System/Library/Frameworks/Intents.framework/Intents
       0x1a9316000 -        0x1a9339fff  UserNotifications arm64  <dea565113b183df0a2d4cd6a375f3142> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
       0x1a934c000 -        0x1a935afff  PersonaKit arm64  <dffe49e16fb6322e98e7a30d94e46c85> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
       0x1a97c8000 -        0x1a97f3fff  Pasteboard arm64  <524e5f899a9836c5a45b76c5ef4cae9a> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
       0x1a980c000 -        0x1a98affff  TextureIO arm64  <a427c8b881e43dad8d3c812bc418d731> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
       0x1a9ddd000 -        0x1a9e26fff  ContactsUICore arm64  <3a022fafb1dc3fe4a790384482e64dbb> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
       0x1a9e6c000 -        0x1a9e80fff  EmojiFoundation arm64  <2dbf33d95d573f3aafc459d5f9114fff> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
       0x1aadfd000 -        0x1aae0ffff  libBNNS.dylib arm64  <7b15b1fd47de37cc94234f1279febec2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
       0x1aae10000 -        0x1aae14fff  libQuadrature.dylib arm64  <6142532815973d5f9292892fb7c2c353> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
       0x1ab177000 -        0x1ab188fff  CoreEmoji arm64  <02de2177a2a83b389b2d8796f9576d41> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
       0x1ab688000 -        0x1ab688fff  IntentsFoundation arm64  <640a622a48173a91829abcded6d8ac51> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
       0x1ab715000 -        0x1ab729fff  MailSupport arm64  <408e73191f9d3dac874e2883b052dfb5> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
       0x1ab7d0000 -        0x1ab89cfff  NLP arm64  <9162fa12a5ab3325a413c57dad3dce48> /System/Library/PrivateFrameworks/NLP.framework/NLP
       0x1ac32c000 -        0x1ac331fff  SymptomDiagnosticReporter arm64  <23b4b5547e8433289e9fc4757ae5eb17> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
       0x1aca27000 -        0x1aca9ffff  libate.dylib arm64  <8f60d460abd031edaf8477a229c4006c> /usr/lib/libate.dylib
       0x1acaa0000 -        0x1acaa0fff  libcoretls.dylib arm64  <852a1f8d67063962b6699bd608ee1eef> /usr/lib/libcoretls.dylib
       0x1acaa1000 -        0x1acaa2fff  libcoretls_cfhelpers.dylib arm64  <85a72486fa0e376f8b14a6d19375a1b6> /usr/lib/libcoretls_cfhelpers.dylib

Extra Information:

Stack Dump (0x000000016ea52b20-0x000000016ea52c10):

602BA56E010000007464DF0001000000C06C167001000000082CA56E01000000702BA56E0100000078CFCF8F01000000902B4F02010000003000000000000000F02BA56E01000000EC5FDF0001000000502CA56E01000000301E170301000000001E1703010000002000000000000000000000000000000000000000000000000000000000000000E030A56E0100000080E4CEB4010000008097C6700100000080E4CEB4010000008C9A4F02010000000020E40101000000204DBD0501000000309AC405010000003000000000000000102CA56E01000000C467DF0001000000309AC405010000000000000000000000

Notable Addresses:
{
    "stack at 0x16ea52b30": {
        "address": 6175485120,
        "class": "__NSCFType",
        "ivars": {},
        "type": "objc_object"
    },
    "stack at 0x16ea52bb0": {
        "address": 7328425088,
        "class": "OS_dispatch_queue_root",
        "ivars": {},
        "type": "objc_object"
    },
    "stack at 0x16ea52bc0": {
        "address": 7328425088,
        "class": "OS_dispatch_queue_root",
        "ivars": {},
        "type": "objc_object"
    },
    "x26": {
        "address": 7328425088,
        "class": "OS_dispatch_queue_root",
        "ivars": {},
        "type": "objc_object"
    },
    "x6": {
        "address": 4316011097,
        "type": "string",
        "value": "activate:%d"
    }
}

Application Stats:
{
    "active_time_since_last_crash": 0,
    "active_time_since_launch": 0,
    "application_active": false,
    "application_in_foreground": true,
    "background_time_since_last_crash": 0,
    "background_time_since_launch": 0,
    "launches_since_last_crash": 29,
    "sessions_since_last_crash": 29,
    "sessions_since_launch": 1
}

CrashDoctor Diagnosis: Attempted to dereference null pointer.
Originated at or in a subcall of _mh_execute_header
-------------- next part --------------
Incident Identifier: DB28D031-538A-4038-BE50-A3570EA765CA
CrashReporter Key:   0971af46dc443f6758983b3ea4d2341fb15f395d
Hardware Model:      iPhone8,4
Process:         Homesmart [373]
Path:            /var/containers/Bundle/Application/47E5F8FB-399F-4FE9-8345-963C2898697D/Homesmart.app/Homesmart
Identifier:      com.neotechindia.homesmart
Version:         1.2.1 (4)
Code Type:       ARM-64
Parent Process:  ? [1]

Date/Time:       2017-12-26 16:37:13.000 -0800
OS Version:      iOS 11.2 (15C114)
Report Version:  104

Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: 0x00000000 at 0x0000010000000000
Crashed Thread:  0

Thread 0 Crashed:
0   Homesmart                       0x00000001010d202c 0x1003c0000 + 13705260 (_mh_execute_header + 13705260)
1   Homesmart                       0x00000001010d1ed4 0x1003c0000 + 13704916 (_mh_execute_header + 13704916)
2   Homesmart                       0x0000000101111a58 0x1003c0000 + 13965912 (_mh_execute_header + 13965912)
3   Homesmart                       0x00000001012dc864 0x1003c0000 + 15845476 (_gnutls_global_init_skip + 1480696)
4   Homesmart                       0x00000001012dcce8 0x1003c0000 + 15846632 (_gnutls_global_init_skip + 1481852)
5   Homesmart                       0x00000001012cf9b8 0x1003c0000 + 15792568 (_gnutls_global_init_skip + 1427788)
6   Homesmart                       0x00000001011c6b08 0x1003c0000 + 14707464 (_gnutls_global_init_skip + 342684)
7   Homesmart                       0x00000001011d7d4c 0x1003c0000 + 14777676 (_gnutls_global_init_skip + 412896)
8   Homesmart                       0x00000001011d7b64 0x1003c0000 + 14777188 (_gnutls_global_init_skip + 412408)
9   Homesmart                       0x00000001011d75fc 0x1003c0000 + 14775804 (_gnutls_global_init_skip + 411024)
10  Homesmart                       0x0000000101215d7c 0x1003c0000 + 15031676 (_gnutls_global_init_skip + 666896)
11  Homesmart                       0x00000001011fe850 0x1003c0000 + 14936144 (_gnutls_global_init_skip + 571364)
12  Homesmart                       0x00000001011c6b08 0x1003c0000 + 14707464 (_gnutls_global_init_skip + 342684)
13  Homesmart                       0x00000001011d7d4c 0x1003c0000 + 14777676 (_gnutls_global_init_skip + 412896)
14  Homesmart                       0x00000001011d7b64 0x1003c0000 + 14777188 (_gnutls_global_init_skip + 412408)
15  Homesmart                       0x00000001011d75fc 0x1003c0000 + 14775804 (_gnutls_global_init_skip + 411024)
16  Homesmart                       0x000000010128b8f8 0x1003c0000 + 15513848 (_gnutls_global_init_skip + 1149068)
17  Homesmart                       0x00000001005f2bf0 0x1003c0000 + 2305008 (_mh_execute_header + 2305008)
18  Homesmart                       0x00000001012c643c 0x1003c0000 + 15754300 (_gnutls_global_init_skip + 1389520)
19  Homesmart                       0x00000001012c7944 0x1003c0000 + 15759684 (_gnutls_global_init_skip + 1394904)
20  Homesmart                       0x00000001012a7164 0x1003c0000 + 15626596 (_gnutls_global_init_skip + 1261816)
21  Homesmart                       0x000000010129d850 0x1003c0000 + 15587408 (_gnutls_global_init_skip + 1222628)
22  Homesmart                       0x00000001012c643c 0x1003c0000 + 15754300 (_gnutls_global_init_skip + 1389520)
23  Homesmart                       0x00000001012c7944 0x1003c0000 + 15759684 (_gnutls_global_init_skip + 1394904)
24  Homesmart                       0x00000001004c4d8c 0x1003c0000 + 1068428 (_mh_execute_header + 1068428)
25  Homesmart                       0x0000000100457524 0x1003c0000 + 619812 (_mh_execute_header + 619812)
26  Homesmart                       0x0000000100457260 0x1003c0000 + 619104 (_mh_execute_header + 619104)
27  UIKit                           0x000000018e14abb4 0x18e024000 + 1207220 (<redacted> + 1352)
28  UIKit                           0x000000018e1f37f4 0x18e024000 + 1898484 (<redacted> + 268)
29  UIKit                           0x000000018e2a1b3c 0x18e024000 + 2612028 (<redacted> + 292)
30  UIKit                           0x000000018e294ef0 0x18e024000 + 2559728 (<redacted> + 288)
31  UIKit                           0x000000018e02654c 0x18e024000 + 9548 (<redacted> + 132)
32  CoreFoundation                  0x0000000184af9edc 0x184a0c000 + 974556 (<redacted> + 32)
33  CoreFoundation                  0x0000000184af7894 0x184a0c000 + 964756 (<redacted> + 412)
34  CoreFoundation                  0x0000000184af7e50 0x184a0c000 + 966224 (<redacted> + 1292)
35  CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
36  GraphicsServices                0x00000001868c4f84 0x1868ba000 + 44932 (GSEventRunModal + 100)
37  UIKit                           0x000000018e09767c 0x18e024000 + 472700 (UIApplicationMain + 236)
38  Homesmart                       0x00000001005661fc 0x1003c0000 + 1729020 (_mh_execute_header + 1729020)
39  libdyld.dylib                   0x000000018453456c 0x184533000 + 5484 (<redacted> + 4)

Thread 1:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   AVFAudio                        0x000000018a37ddc4 0x18a2f4000 + 564676 (<redacted> + 164)
6   AVFAudio                        0x000000018a3a8830 0x18a2f4000 + 739376 (<redacted> + 84)
7   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
8   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 2:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   Foundation                      0x000000018544d594 0x185441000 + 50580 (<redacted> + 304)
6   Foundation                      0x000000018546c9ac 0x185441000 + 178604 (<redacted> + 96)
7   UIKit                           0x000000018ec017b8 0x18e024000 + 12441528 (<redacted> + 136)
8   Foundation                      0x000000018554f0f4 0x185441000 + 1106164 (<redacted> + 996)
9   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
10  libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 3:
0   libsystem_kernel.dylib          0x0000000184647b48 0x184642000 + 23368 (poll + 8)
1   Homesmart                       0x00000001010e6784 0x1003c0000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x00000001010e6a5c 0x1003c0000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x00000001004c479c 0x1003c0000 + 1066908 (_mh_execute_header + 1066908)
4   libdispatch.dylib               0x00000001844cea54 0x1844cd000 + 6740 (<redacted> + 24)
5   libdispatch.dylib               0x00000001844cea14 0x1844cd000 + 6676 (<redacted> + 16)
6   libdispatch.dylib               0x00000001844d5bc8 0x1844cd000 + 35784 (<redacted> + 716)
7   libdispatch.dylib               0x00000001844dbcf4 0x1844cd000 + 60660 (<redacted> + 600)
8   libdispatch.dylib               0x00000001844dba38 0x1844cd000 + 59960 (<redacted> + 120)
9   libsystem_pthread.dylib         0x000000018477706c 0x184776000 + 4204 (_pthread_wqthread + 1268)

Thread 4:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   libsystem_kernel.dylib          0x0000000184647700 0x184642000 + 22272 (thread_suspend + 84)
3   Homesmart                       0x00000001004de7ec 0x1003c0000 + 1173484 (_mh_execute_header + 1173484)
4   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
5   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 5:

Thread 6:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   CoreFoundation                  0x0000000184a66f54 0x184a0c000 + 372564 (CFRunLoopRun + 116)
6   CoreMotion                      0x0000000189e850e8 0x189e05000 + 524520 (CLStartStopAdvertisingBeacon + 227264)
7   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
8   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 7:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   Foundation                      0x000000018544d594 0x185441000 + 50580 (<redacted> + 304)
6   Homesmart                       0x00000001003ffe30 0x1003c0000 + 261680 (_mh_execute_header + 261680)
7   Foundation                      0x000000018554f0f4 0x185441000 + 1106164 (<redacted> + 996)
8   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
9   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 8:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   CFNetwork                       0x0000000185307128 0x1850d3000 + 2310440 (<redacted> + 780)
6   Foundation                      0x000000018554f0f4 0x185441000 + 1106164 (<redacted> + 996)
7   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
8   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 9:
0   libsystem_kernel.dylib          0x0000000184664534 0x184642000 + 140596 (select$DARWIN_EXTSN + 8)
1   CoreFoundation                  0x0000000184b02840 0x184a0c000 + 1009728 (<redacted> + 644)
2   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
3   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 10:
0   libsystem_kernel.dylib          0x0000000184647b48 0x184642000 + 23368 (poll + 8)
1   Homesmart                       0x00000001010e6784 0x1003c0000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x00000001010e6a5c 0x1003c0000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x0000000101264538 0x1003c0000 + 15353144 (_gnutls_global_init_skip + 988364)
4   Homesmart                       0x00000001010d397c 0x1003c0000 + 13711740 (_mh_execute_header + 13711740)
5   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
6   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 11:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   AudioToolbox                    0x0000000188731b28 0x188523000 + 2157352 (<redacted> + 164)
6   AudioToolbox                    0x000000018896d090 0x188523000 + 4497552 (<redacted> + 84)
7   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
8   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 12:
0   libsystem_kernel.dylib          0x0000000184647b48 0x184642000 + 23368 (poll + 8)
1   Homesmart                       0x00000001010e6784 0x1003c0000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x00000001010e6a5c 0x1003c0000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x00000001004c479c 0x1003c0000 + 1066908 (_mh_execute_header + 1066908)
4   libdispatch.dylib               0x00000001844cea54 0x1844cd000 + 6740 (<redacted> + 24)
5   libdispatch.dylib               0x00000001844cea14 0x1844cd000 + 6676 (<redacted> + 16)
6   libdispatch.dylib               0x00000001844d5bc8 0x1844cd000 + 35784 (<redacted> + 716)
7   libdispatch.dylib               0x00000001844dbcf4 0x1844cd000 + 60660 (<redacted> + 600)
8   libdispatch.dylib               0x00000001844dba38 0x1844cd000 + 59960 (<redacted> + 120)
9   libsystem_pthread.dylib         0x000000018477706c 0x184776000 + 4204 (_pthread_wqthread + 1268)

Thread 13:
0   libsystem_kernel.dylib          0x0000000184664d80 0x184642000 + 142720 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x0000000184777080 0x184776000 + 4224 (_pthread_wqthread + 1288)

Thread 14:
0   libsystem_kernel.dylib          0x0000000184664d80 0x184642000 + 142720 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x0000000184777080 0x184776000 + 4224 (_pthread_wqthread + 1288)

Thread 15:
0   libsystem_kernel.dylib          0x0000000184647b48 0x184642000 + 23368 (poll + 8)
1   Homesmart                       0x00000001010e6784 0x1003c0000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x00000001010e6a5c 0x1003c0000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x0000000101264538 0x1003c0000 + 15353144 (_gnutls_global_init_skip + 988364)
4   Homesmart                       0x00000001010d397c 0x1003c0000 + 13711740 (_mh_execute_header + 13711740)
5   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
6   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 16:
0   libsystem_kernel.dylib          0x0000000184647b48 0x184642000 + 23368 (poll + 8)
1   Homesmart                       0x00000001010e6784 0x1003c0000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x00000001010e6a5c 0x1003c0000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x000000010125dd3c 0x1003c0000 + 15326524 (_gnutls_global_init_skip + 961744)
4   Homesmart                       0x00000001012595e0 0x1003c0000 + 15308256 (_gnutls_global_init_skip + 943476)
5   Homesmart                       0x00000001010d397c 0x1003c0000 + 13711740 (_mh_execute_header + 13711740)
6   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
7   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 17:

Thread 18:
0   libsystem_kernel.dylib          0x0000000184664d80 0x184642000 + 142720 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x0000000184777080 0x184776000 + 4224 (_pthread_wqthread + 1288)

Thread 19:
0   libsystem_kernel.dylib          0x0000000184664d80 0x184642000 + 142720 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x0000000184777080 0x184776000 + 4224 (_pthread_wqthread + 1288)

Thread 0 crashed with ARM-64 Thread State:
  cpsr: 0x0000000060000000     fp: 0x000000016fa3daf0     lr: 0x00000001010d1ed4     pc: 0x00000001010d202c 
    sp: 0x000000016fa3da70     x0: 0x0000000103002800     x1: 0x0000000000000000    x10: 0x0000010000000000 
   x11: 0xffffffffffffffff    x12: 0x0000000103a79000    x13: 0x00000000000005bb    x14: 0x0000000000000001 
   x15: 0x0000000000000005    x16: 0x0000000184783dbc    x17: 0x00000000000005bb    x18: 0xfffffff02129925c 
   x19: 0x0000000000000028     x2: 0x0000000000000008    x20: 0x00000001072ce790    x21: 0x0000000000000002 
   x22: 0x00000001027ceb58    x23: 0x0000000000000037    x24: 0x00000001c44e8780    x25: 0x0000000000000000 
   x26: 0x0000000102f3d860    x27: 0x00000001027cf000    x28: 0x000000016fa3dd18    x29: 0x000000016fa3daf0 
    x3: 0x0000000000000000     x4: 0x00000000000002a9     x5: 0x0000000000000000     x6: 0x0000000101717ceb 
    x7: 0x000000016fa3db40     x8: 0x0000000103002810     x9: 0x0000000000000020 

Binary Images:
       0x1003c0000 -        0x101ffffff +Homesmart arm64  <43a60ad888383b2e90745e49ee6441c7> /var/containers/Bundle/Application/47E5F8FB-399F-4FE9-8345-963C2898697D/Homesmart.app/Homesmart
       0x183d12000 -        0x183d13fff  libSystem.B.dylib arm64  <f1a8dae6cdac3bdeb67f9a56e4acb0d0> /usr/lib/libSystem.B.dylib
       0x183d14000 -        0x183d6dfff  libc++.1.dylib arm64  <aee157a049663aa88c4e928768cfd553> /usr/lib/libc++.1.dylib
       0x183d6e000 -        0x183d8efff  libc++abi.dylib arm64  <b4f54419327f3bfea747549b84dad328> /usr/lib/libc++abi.dylib
       0x183d90000 -        0x18444bfff  libobjc.A.dylib arm64  <3a9d464322eb3285bc88fabf7cec20ed> /usr/lib/libobjc.A.dylib
       0x18444c000 -        0x184450fff  libcache.dylib arm64  <5d31b020cbde3110981e6a8213297535> /usr/lib/system/libcache.dylib
       0x184451000 -        0x18445cfff  libcommonCrypto.dylib arm64  <5fcc43ca8cd9305091129711db270b8c> /usr/lib/system/libcommonCrypto.dylib
       0x18445d000 -        0x184460fff  libcompiler_rt.dylib arm64  <49e30d90aab53f8a99c9109db350ae39> /usr/lib/system/libcompiler_rt.dylib
       0x184461000 -        0x184468fff  libcopyfile.dylib arm64  <bc50a65225833e458ae22db52300bf10> /usr/lib/system/libcopyfile.dylib
       0x184469000 -        0x1844ccfff  libcorecrypto.dylib arm64  <1647a3e06adc30b3b8f8298f897d6e87> /usr/lib/system/libcorecrypto.dylib
       0x1844cd000 -        0x184532fff  libdispatch.dylib arm64  <25e5e6ee10093937b122c4b509716294> /usr/lib/system/libdispatch.dylib
       0x184533000 -        0x18454dfff  libdyld.dylib arm64  <aa89b903caf232bebaea4294ee62a6d2> /usr/lib/system/libdyld.dylib
       0x18454e000 -        0x18454efff  liblaunch.dylib arm64  <ca90373a022d3c38ac7ecd736c13bf9b> /usr/lib/system/liblaunch.dylib
       0x18454f000 -        0x184554fff  libmacho.dylib arm64  <5cf371e4795437008e8ba71f7c18c3e0> /usr/lib/system/libmacho.dylib
       0x184555000 -        0x184556fff  libremovefile.dylib arm64  <1f6279ea185b39ebab0412f03836952f> /usr/lib/system/libremovefile.dylib
       0x184557000 -        0x18456efff  libsystem_asl.dylib arm64  <dd425157f17d3c428245da87b0d36205> /usr/lib/system/libsystem_asl.dylib
       0x18456f000 -        0x18456ffff  libsystem_blocks.dylib arm64  <93403bb53b293e748a97895ea5d99def> /usr/lib/system/libsystem_blocks.dylib
       0x184570000 -        0x1845edfff  libsystem_c.dylib arm64  <400d9d205a453ab49971ab4bebbff01c> /usr/lib/system/libsystem_c.dylib
       0x1845ee000 -        0x1845f2fff  libsystem_configuration.dylib arm64  <1d864850ea2a32d6bb44b37cff02883c> /usr/lib/system/libsystem_configuration.dylib
       0x1845f3000 -        0x1845f8fff  libsystem_containermanager.dylib arm64  <fc551cabe5a334c1b09a49278900e46a> /usr/lib/system/libsystem_containermanager.dylib
       0x1845f9000 -        0x1845fafff  libsystem_coreservices.dylib arm64  <367354d549a434efb82345e4010ae363> /usr/lib/system/libsystem_coreservices.dylib
       0x1845fb000 -        0x1845fcfff  libsystem_darwin.dylib arm64  <74d54bc023a2320a9d93943806b0c19e> /usr/lib/system/libsystem_darwin.dylib
       0x1845fd000 -        0x184603fff  libsystem_dnssd.dylib arm64  <5c8c5aaa95393d4e8492379ff9efb960> /usr/lib/system/libsystem_dnssd.dylib
       0x184604000 -        0x184641fff  libsystem_info.dylib arm64  <a844d2a933a93a0ea78b2aa73be718ea> /usr/lib/system/libsystem_info.dylib
       0x184642000 -        0x18466afff  libsystem_kernel.dylib arm64  <1eb83b93d8e5382fa3692c4db5c8425e> /usr/lib/system/libsystem_kernel.dylib
       0x18466b000 -        0x184698fff  libsystem_m.dylib arm64  <fec251da685c39678cddf31fc925050a> /usr/lib/system/libsystem_m.dylib
       0x184699000 -        0x1846b3fff  libsystem_malloc.dylib arm64  <4867a62768f93413a9e9da35906b4624> /usr/lib/system/libsystem_malloc.dylib
       0x1846b4000 -        0x184754fff  libsystem_network.dylib arm64  <27058056b60a3c5b9f7dd945f07ced58> /usr/lib/system/libsystem_network.dylib
       0x184755000 -        0x184760fff  libsystem_networkextension.dylib arm64  <26f9a6394d763402add762982498e16d> /usr/lib/system/libsystem_networkextension.dylib
       0x184761000 -        0x18476bfff  libsystem_notify.dylib arm64  <f4a564bb65e13f7fa40a7b3e7b400e16> /usr/lib/system/libsystem_notify.dylib
       0x18476c000 -        0x184775fff  libsystem_platform.dylib arm64  <5bdfc85463ac3da5976bdb230cc9904e> /usr/lib/system/libsystem_platform.dylib
       0x184776000 -        0x184785fff  libsystem_pthread.dylib arm64  <ec07a01f70933f629bb77dfa516eac50> /usr/lib/system/libsystem_pthread.dylib
       0x184786000 -        0x184789fff  libsystem_sandbox.dylib arm64  <c207a17a12a03d92aaa44fb3d7bb4664> /usr/lib/system/libsystem_sandbox.dylib
       0x18478a000 -        0x184791fff  libsystem_symptoms.dylib arm64  <e2f659feb4f33387951c4e76e64be23d> /usr/lib/system/libsystem_symptoms.dylib
       0x184792000 -        0x1847a5fff  libsystem_trace.dylib arm64  <291c25bcc2ee33259698edefb7e76a1f> /usr/lib/system/libsystem_trace.dylib
       0x1847a6000 -        0x1847abfff  libunwind.dylib arm64  <db0499e29a383530972aec98f7b20450> /usr/lib/system/libunwind.dylib
       0x1847ac000 -        0x1847acfff  libvminterpose.dylib arm64  <d51048b4b2573b18875138004e66b83d> /usr/lib/system/libvminterpose.dylib
       0x1847ad000 -        0x1847d7fff  libxpc.dylib arm64  <ad6af358f21c3fd9a171d66c6fcc1e0d> /usr/lib/system/libxpc.dylib
       0x1847d8000 -        0x1849f9fff  libicucore.A.dylib arm64  <32c272e1e9f735aba4c16a17580f13e3> /usr/lib/libicucore.A.dylib
       0x1849fa000 -        0x184a0bfff  libz.1.dylib arm64  <c402ff63470b34df8634f2078cd151e1> /usr/lib/libz.1.dylib
       0x184a0c000 -        0x184da4fff  CoreFoundation arm64  <733e7542e92b34bd9403762135ad5014> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
       0x184da5000 -        0x184db5fff  libbsm.0.dylib arm64  <b7a56e43a852351d8a2dab94c7fc04e6> /usr/lib/libbsm.0.dylib
       0x184db6000 -        0x184db6fff  libenergytrace.dylib arm64  <6adeca3b70ed33dda70a16353c5ef6ce> /usr/lib/libenergytrace.dylib
       0x184db7000 -        0x184e3cfff  IOKit arm64  <9e81333d12bd3d06bfdcaa867f2035da> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
       0x184e3d000 -        0x184f26fff  libxml2.2.dylib arm64  <33530216f58333d993d4acb846c63aac> /usr/lib/libxml2.2.dylib
       0x184f27000 -        0x184f34fff  libbz2.1.0.dylib arm64  <35c6ddde076638589f755656ac0058ce> /usr/lib/libbz2.1.0.dylib
       0x184f35000 -        0x184f4dfff  liblzma.5.dylib arm64  <7d5815f117103d15a67fd30b3375b11b> /usr/lib/liblzma.5.dylib
       0x184f4e000 -        0x1850abfff  libsqlite3.dylib arm64  <eac933b033d43444ae182e2d7de6137f> /usr/lib/libsqlite3.dylib
       0x1850ac000 -        0x1850d2fff  libMobileGestalt.dylib arm64  <9c73d51ef65330e3b29fa4ec81169863> /usr/lib/libMobileGestalt.dylib
       0x1850d3000 -        0x185440fff  CFNetwork arm64  <fd66a1913ddd34f89f00756cf3147246> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
       0x185441000 -        0x18573cfff  Foundation arm64  <b0f8df9777ec36008a9f35035b889efd> /System/Library/Frameworks/Foundation.framework/Foundation
       0x18573d000 -        0x18582bfff  Security arm64  <f8097c91a8623fbda138a402b6151ca2> /System/Library/Frameworks/Security.framework/Security
       0x18582c000 -        0x185898fff  SystemConfiguration arm64  <13d55604fde63c2e96df89e8d6e84fe6> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
       0x185899000 -        0x1858cffff  libCRFSuite.dylib arm64  <12e6cdcbfa43330da4fa268f1662bf39> /usr/lib/libCRFSuite.dylib
       0x1858d0000 -        0x1858d0fff  libapple_crypto.dylib arm64  <26fe924005203d45aee4a14f5cb64434> /usr/lib/libapple_crypto.dylib
       0x1858d1000 -        0x1858e7fff  libapple_nghttp2.dylib arm64  <ff88135792b639679509b309f0c0cad9> /usr/lib/libapple_nghttp2.dylib
       0x1858e8000 -        0x185911fff  libarchive.2.dylib arm64  <957aea53942d3afc91420044f6ae5112> /usr/lib/libarchive.2.dylib
       0x185912000 -        0x1859c3fff  libboringssl.dylib arm64  <3c4640e6332d3b44a79759034630ce2a> /usr/lib/libboringssl.dylib
       0x1859c4000 -        0x1859dbfff  libcoretls.dylib arm64  <c2287d06413f32c2aee0e6c3313d98c7> /usr/lib/libcoretls.dylib
       0x1859dc000 -        0x1859ddfff  libcoretls_cfhelpers.dylib arm64  <503fb7729cbe382ea1e0a315e7bd87ba> /usr/lib/libcoretls_cfhelpers.dylib
       0x1859de000 -        0x1859dffff  liblangid.dylib arm64  <11d94ede5ab1300a820d96e3374f53fa> /usr/lib/liblangid.dylib
       0x1859e0000 -        0x185ab3fff  libnetwork.dylib arm64  <ba7d2d20eb3a32ac802209e5f7008280> /usr/lib/libnetwork.dylib
       0x185ab4000 -        0x185ae6fff  libpcap.A.dylib arm64  <419a8dd2325a326c81b4b02d849ce562> /usr/lib/libpcap.A.dylib
       0x185ae7000 -        0x185b1bfff  libusrtcp.dylib arm64  <227ec64866e53676828e76f89c1e4928> /usr/lib/libusrtcp.dylib
       0x185b1c000 -        0x185b25fff  IOSurface arm64  <121f7f9d94d63afb8974ca4b14aadbbf> /System/Library/Frameworks/IOSurface.framework/IOSurface
       0x185b26000 -        0x185bcbfff  libBLAS.dylib arm64  <05ecdd31f9573a069c0e8b3d610bbc3f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
       0x185bcc000 -        0x185efbfff  libLAPACK.dylib arm64  <3e55f73c8a4c329d8bb7f5e58ed687c3> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
       0x185efc000 -        0x186168fff  vImage arm64  <7fabce5d1fe83c38aa998440146eb09b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
       0x186169000 -        0x18617afff  libSparseBLAS.dylib arm64  <88335b280db13b3d812ee89998bc363c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
       0x18617b000 -        0x18619ffff  libvMisc.dylib arm64  <20da313fe2343db189a04c72928eb120> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
       0x1861a0000 -        0x1861cafff  libBNNS.dylib arm64  <19481dd658fb3f949cc1874250cfead5> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
       0x1861cb000 -        0x1861e0fff  libLinearAlgebra.dylib arm64  <0f6e8d5a7dd8384ebb8a873c2caa7ad7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
       0x1861e1000 -        0x1861e5fff  libQuadrature.dylib arm64  <124a57c41e3e3956b46e10d49ddf8fe1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
       0x1861e6000 -        0x18623cfff  libSparse.dylib arm64  <c7def66b4a4c3f29b55fcbdcf881e3f2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
       0x18623d000 -        0x1862b5fff  libvDSP.dylib arm64  <4bf846f47a0e309db93bbbc791720463> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
       0x1862b6000 -        0x1862b6fff  vecLib arm64  <86cdd48d842334dd831b1fc0e2b0270f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
       0x1862b7000 -        0x1862b7fff  Accelerate arm64  <01d515c3376c332799f14694934ed70b> /System/Library/Frameworks/Accelerate.framework/Accelerate
       0x1862b8000 -        0x1862cdfff  libcompression.dylib arm64  <b1a3a8c4b3a6301da874dc2af4a50920> /usr/lib/libcompression.dylib
       0x1862ce000 -        0x186812fff  CoreGraphics arm64  <84200292e2373b96bde75a022c9eeacf> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
       0x186813000 -        0x186818fff  IOAccelerator arm64  <e66452fc19ef3af29dac52b16e6cb128> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
       0x186819000 -        0x18681efff  libCoreFSCache.dylib arm64  <ac1882646b0c3cccb69dfc5246995396> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
       0x18681f000 -        0x1868b9fff  Metal arm64  <ef4fbbbcfa2b38928f3c8ec471c8cde6> /System/Library/Frameworks/Metal.framework/Metal
       0x1868ba000 -        0x1868cdfff  GraphicsServices arm64  <60c9cc9a0df43872a837f0ddb03140a5> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
       0x1868ce000 -        0x186a26fff  MobileCoreServices arm64  <dcdc67868d5a370185e0242a11a54054> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
       0x186a27000 -        0x186a29fff  IOSurfaceAccelerator arm64  <cf8349e45ac1355386a2d94794f075e4> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
       0x186a2a000 -        0x186a6bfff  AppleJPEG arm64  <9ee4b3efde073642af80e42915e2f46c> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
       0x186a6c000 -        0x18701cfff  ImageIO arm64  <ab5dbbc48a64389487f5572f13867857> /System/Library/Frameworks/ImageIO.framework/ImageIO
       0x18701d000 -        0x187081fff  BaseBoard arm64  <763fe7d346a337e68e1b067d7359b9f6> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
       0x187082000 -        0x187099fff  AssertionServices arm64  <eac3dcdc35103304b3dc72ce0c8a0a07> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
       0x18709a000 -        0x1870a2fff  CorePhoneNumbers arm64  <d4693a21c4e83fb09a52ddb833dc793c> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
       0x1870a3000 -        0x1870e7fff  AppSupport arm64  <8f2f75f2c4853c7e8e7d9739e12d45cd> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
       0x1870e8000 -        0x187100fff  CrashReporterSupport arm64  <18930e85456c3eb39fe19a4fe0a7d171> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
       0x187101000 -        0x187106fff  AggregateDictionary arm64  <95f98162fc7836268686104aabee8c12> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
       0x187107000 -        0x187188fff  libTelephonyUtilDynamic.dylib arm64  <0d366024d6da340a93979ccdec97be29> /usr/lib/libTelephonyUtilDynamic.dylib
       0x187189000 -        0x1871a8fff  ProtocolBuffer arm64  <9bf97e1248b13b959d7a10a0dc8bcaf7> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
       0x1871a9000 -        0x1871d4fff  MobileKeyBag arm64  <f7fe398063d1384291d2c0f09c64e9e1> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
       0x1871d5000 -        0x187209fff  BackBoardServices arm64  <6c304c21d68037e9b0646f0deb25ca58> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
       0x18720a000 -        0x187265fff  FrontBoardServices arm64  <6fb061c48f653be48d29f133e1cda578> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
       0x187266000 -        0x1872a2fff  SpringBoardServices arm64  <21b76097326c3a008eed2a77084a3f1e> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
       0x1872a3000 -        0x1872b1fff  PowerLog arm64  <b88d155999433dfb9850b7159809529e> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
       0x1872b2000 -        0x1872cffff  CommonUtilities arm64  <c93c41c50d3f3f48865808dbc37f3b8a> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
       0x1872d0000 -        0x1872dbfff  liblockdown.dylib arm64  <3f0340a84dc533789f81ee18818c6564> /usr/lib/liblockdown.dylib
       0x1872dc000 -        0x1875defff  CoreData arm64  <2228ace9ad8e381893664325ab627965> /System/Library/Frameworks/CoreData.framework/CoreData
       0x1875df000 -        0x1875e5fff  TCC arm64  <a26916f3c09f332da85ef22df54c9862> /System/Library/PrivateFrameworks/TCC.framework/TCC
       0x1875e6000 -        0x1875edfff  libcupolicy.dylib arm64  <0e601fb410e03f58a540190040be0570> /usr/lib/libcupolicy.dylib
       0x1875ee000 -        0x18767afff  CoreTelephony arm64  <b96ce755f62c395cbb93e90dbf128892> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
       0x18767b000 -        0x1876d1fff  Accounts arm64  <6847536ea2373c7388fb9081c9dbbadd> /System/Library/Frameworks/Accounts.framework/Accounts
       0x1876d2000 -        0x1876fbfff  AppleSauce arm64  <3bbfd85a193f3a529cd5fa4ce93b6a87> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
       0x1876fc000 -        0x187704fff  DataMigration arm64  <241a0384f6d630b496686b1f454a82e4> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
       0x187705000 -        0x18770bfff  Netrb arm64  <eff36ad08b493f15a80e93aa57cb7672> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
       0x18770c000 -        0x18773ffff  PersistentConnection arm64  <e053741bde6f318b93de7c35c2a9db61> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
       0x187740000 -        0x187751fff  libmis.dylib arm64  <f864082f4e9b3830a0e050fce4352f14> /usr/lib/libmis.dylib
       0x187752000 -        0x187852fff  ManagedConfiguration arm64  <cc35838fdd2939999a226213f56ab5e9> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
       0x187853000 -        0x187858fff  libReverseProxyDevice.dylib arm64  <8578d96ba38c3027ba0d802eba838736> /usr/lib/libReverseProxyDevice.dylib
       0x187859000 -        0x18786afff  libamsupport.dylib arm64  <aefcd7ec80cf32ffb612b2d508ec4434> /usr/lib/libamsupport.dylib
       0x18786b000 -        0x187870fff  libCoreVMClient.dylib arm64  <017bacb6b7e83fdda154764e0492358a> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
       0x187871000 -        0x187872fff  libCVMSPluginSupport.dylib arm64  <0ea33c2e6344361db9a3c8fa83948ebe> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
       0x187873000 -        0x187876fff  libutil.dylib arm64  <b82455fcf10c34ddbe0871d7e6998071> /usr/lib/libutil.dylib
       0x187877000 -        0x1878b8fff  libGLImage.dylib arm64  <9ac83085267733acb9bc652dd70dcc2d> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
       0x1878b9000 -        0x187929fff  APFS arm64  <b37bd4abf8fc37f985190265ad8dca3e> /System/Library/PrivateFrameworks/APFS.framework/APFS
       0x18792a000 -        0x18795bfff  MediaKit arm64  <41ac5f40d9c43b5cad406fd5ec592d31> /System/Library/PrivateFrameworks/MediaKit.framework/MediaKit
       0x18795c000 -        0x187974fff  libSERestoreInfo.dylib arm64  <73db2cd529163f2591a962e7d2911a53> /usr/lib/updaters/libSERestoreInfo.dylib
       0x187979000 -        0x1879b5fff  DiskImages arm64  <4bc2acb597e63ef3a3ac9225ec7ab2f3> /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
       0x1879b6000 -        0x1879c0fff  libGFXShared.dylib arm64  <f53963ffa07f3455a080784a939f3027> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
       0x1879c1000 -        0x187a07fff  libauthinstall.dylib arm64  <d769efe64c5a3b519087c768cd609565> /usr/lib/libauthinstall.dylib
       0x187a08000 -        0x187a10fff  IOMobileFramebuffer arm64  <c293967d42ae3c1bae785619369433bd> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
       0x187a11000 -        0x187a1cfff  OpenGLES arm64  <1d31b8472eef34d1a8bbd0cefa8c7927> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
       0x187a1d000 -        0x187aa4fff  ColorSync arm64  <33046de8138635a29227b3a477d00dd7> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
       0x187aa5000 -        0x187acffff  CoreVideo arm64  <6b2310090f9b37f5baf0378866ec978d> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
       0x187ad0000 -        0x187ad1fff  libCTGreenTeaLogger.dylib arm64  <3c8d18c26d0b3c24974f155ffb880787> /usr/lib/libCTGreenTeaLogger.dylib
       0x187ad2000 -        0x187c34fff  CoreAudio arm64  <c5554e700acf38d58cdfe448135184c5> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
       0x187c35000 -        0x187c63fff  CoreAnalytics arm64  <8300701d98d7319689110ee40b2120b5> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
       0x187c64000 -        0x187c67fff  UserFS arm64  <0470e2fc32c0303c816947cdb954d434> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
       0x187c68000 -        0x187ddbfff  CoreMedia arm64  <7d2c0d08b8833096beb8562460382a8d> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
       0x187ddc000 -        0x187deefff  libprotobuf-lite.dylib arm64  <2ed5fd0c82f8337b96e17a7b1846b878> /usr/lib/libprotobuf-lite.dylib
       0x187def000 -        0x187e53fff  libprotobuf.dylib arm64  <0a967243387e32aeb31a8b5ceeac3718> /usr/lib/libprotobuf.dylib
       0x187e54000 -        0x188131fff  libAWDSupportFramework.dylib arm64  <db0f4644d45938e39bdace7ecc5c6eeb> /usr/lib/libAWDSupportFramework.dylib
       0x188132000 -        0x188178fff  WirelessDiagnostics arm64  <24442ae5cff4329fad51f2efd6cb9ec9> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
       0x188179000 -        0x188231fff  VideoToolbox arm64  <f5145552cee039648c7e5691ca45bd42> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
       0x188232000 -        0x18833dfff  libFontParser.dylib arm64  <21220ffc653432808d5d09df7698e61b> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
       0x18833e000 -        0x18833ffff  FontServices arm64  <e17c3dd6d3733750a4a1b82ac527ba53> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
       0x188340000 -        0x18848ffff  CoreText arm64  <dbab05410da4301782ad6922d55546a0> /System/Library/Frameworks/CoreText.framework/CoreText
       0x188490000 -        0x18849ffff  IntlPreferences arm64  <7aafcdb73e8e3a7690ea5b2cf667afaa> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
       0x1884a0000 -        0x1884a8fff  RTCReporting arm64  <278400bd508c38768e2972eb594ab959> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
       0x1884a9000 -        0x188516fff  CoreBrightness arm64  <95be0f7b665835619b8a4fca3388ec48> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
       0x188517000 -        0x188522fff  libAudioStatistics.dylib arm64  <3d794f8dcc493d2195d6929f4d09b38d> /usr/lib/libAudioStatistics.dylib
       0x188523000 -        0x188a72fff  AudioToolbox arm64  <5856a9cad5ad3f88ae48a2c580dccc0c> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
       0x188a73000 -        0x188ca3fff  QuartzCore arm64  <66977459f63f39ac96813aef68ff0eaf> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
       0x188ca4000 -        0x188caffff  MediaAccessibility arm64  <78f4363eea97331495885cfaddd39d12> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
       0x188cb0000 -        0x188da2fff  libiconv.2.dylib arm64  <28fec549f7f6396483fb3b04c800adcb> /usr/lib/libiconv.2.dylib
       0x188da3000 -        0x188dbffff  NetworkStatistics arm64  <73ff6f9af8f43ec5bbb4772b6d7c6671> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
       0x188dc0000 -        0x188dd5fff  MPSCore arm64  <f17598623cb432f2a175ce166396bbea> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
       0x188dd6000 -        0x188e3afff  MPSImage arm64  <b860f467ef823f7f9c1e54002d4a2d31> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
       0x188e3b000 -        0x188e5bfff  MPSMatrix arm64  <9d69c1f2cff932ce82dd6fea51bfa313> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
       0x188e5c000 -        0x188e6afff  CoreAUC arm64  <707e9d20bc113658afececb44cd65468> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
       0x188e6b000 -        0x1894eefff  MediaToolbox arm64  <47df3e1782983a2babda38fcaf1539ac> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
       0x1894ef000 -        0x1895b5fff  MPSNeuralNetwork arm64  <ad66eabd1b0232539656f3699ece6c1c> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
       0x1895b6000 -        0x1895b6fff  MetalPerformanceShaders arm64  <968c8d8650a6345e99c11a24d4908a14> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
       0x1895b7000 -        0x1899eafff  FaceCore arm64  <d2dbc5ac047a3a3086d71339f3e4baad> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
       0x1899eb000 -        0x1899f8fff  GraphVisualizer arm64  <6babaa2dbd4237638afddfbe7a50eef6> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
       0x1899f9000 -        0x189b9efff  libFosl_dynamic.dylib arm64  <8dade3ca46eb36ba918cabaae25e7279> /usr/lib/libFosl_dynamic.dylib
       0x189b9f000 -        0x189e04fff  CoreImage arm64  <fb0038da9f393be4bf10a072d87f06fa> /System/Library/Frameworks/CoreImage.framework/CoreImage
       0x189e05000 -        0x189ff3fff  CoreMotion arm64  <d4e50e15fed83c6c8910b3f176fb9d75> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
       0x189ff4000 -        0x18a022fff  CoreBluetooth arm64  <0a6e2ddd19833f11aef2db9eac09b767> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
       0x18a023000 -        0x18a045fff  PlugInKit arm64  <58516352e5423efcae9a5e91b2f0dd01> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
       0x18a046000 -        0x18a270fff  Celestial arm64  <9b7337f0725c3eda8d2c4b65555e95d7> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
       0x18a271000 -        0x18a2f3fff  Quagga arm64  <881da54d257d32bab10fe8f51c9267a1> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
       0x18a2f4000 -        0x18a3edfff  AVFAudio arm64  <767d3ec2f13a303cb1892207c94db016> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
       0x18a3ee000 -        0x18a5dcfff  AVFoundation arm64  <237969258f323f1eb2562d4dd4f95aef> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
       0x18a5dd000 -        0x18a600fff  CacheDelete arm64  <8510e8ab56db3d5995706cc99293a006> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
       0x18a601000 -        0x18a626fff  StreamingZip arm64  <c16c7b4c281a3649ac6e446cd24faba1> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
       0x18a627000 -        0x18a638fff  CoreEmoji arm64  <0fed33cbda37338b9a43e1ef58c8e0f2> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
       0x18a639000 -        0x18a687fff  CoreLocationProtobuf arm64  <7c704f35846b3bb3abd87bbeac17725e> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
       0x18a688000 -        0x18a68ffff  SymptomDiagnosticReporter arm64  <f2889f7d3709300b9705b2f211eb795f> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
       0x18a690000 -        0x18af90fff  GeoServices arm64  <b78713b86cac34b19772734e7a101333> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
       0x18af91000 -        0x18afa8fff  MobileAsset arm64  <135ac14d29573717a5aca07db0a1066e> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
       0x18afa9000 -        0x18afeafff  Lexicon arm64  <26e262cea357360f896ec150d8e7e0fe> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
       0x18afeb000 -        0x18affbfff  libcmph.dylib arm64  <8b492aa79dc5318481752d5cba68e84b> /usr/lib/libcmph.dylib
       0x18affc000 -        0x18b118fff  LanguageModeling arm64  <c297b33f937532a1bdfb93eaeac4585f> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
       0x18b119000 -        0x18b130fff  libmarisa.dylib arm64  <948c4447eef032a2bd7fdb0d5860359c> /usr/lib/libmarisa.dylib
       0x18b131000 -        0x18b1cbfff  CoreLocation arm64  <4f98821d01ee39e3b2cda430fb77ff49> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
       0x18b1cc000 -        0x18b1ccfff  PhoneNumbers arm64  <3aa5a16bf8123be8b4f1ea9ab4293e80> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
       0x18b1cd000 -        0x18b1d8fff  libChineseTokenizer.dylib arm64  <19ddc4b9d0f13f2183631824651c70c9> /usr/lib/libChineseTokenizer.dylib
       0x18b1d9000 -        0x18b286fff  libmecab_em.dylib arm64  <0a7c2fd4dd613449a0bdae35e1c05621> /usr/lib/libmecab_em.dylib
       0x18b287000 -        0x18b288fff  libThaiTokenizer.dylib arm64  <235c653d8a4f3a778f71258342a49c87> /usr/lib/libThaiTokenizer.dylib
       0x18b289000 -        0x18b28dfff  libgermantok.dylib arm64  <21224ee62107366c8c6c1af241c5b9b5> /usr/lib/libgermantok.dylib
       0x18b28e000 -        0x18b2e6fff  CoreNLP arm64  <631fdf115f0c3047a3ca6dd7b28c073b> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
       0x18b2e7000 -        0x18b4a5fff  MobileSpotlightIndex arm64  <cd13d8305e4230e6b001ff9d173470c3> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
       0x18b4a6000 -        0x18b505fff  CoreSpotlight arm64  <1d631a5f5b8834c48d6719d79b772bc8> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
       0x18b512000 -        0x18bee4fff  JavaScriptCore arm64  <f8ccf929435534c7bafa70746e9b95f9> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
       0x18bee5000 -        0x18beeafff  libheimdal-asn1.dylib arm64  <1dc1aa4421fe3ddea53a07080c5058c6> /usr/lib/libheimdal-asn1.dylib
       0x18beeb000 -        0x18bf65fff  libate.dylib arm64  <bb4173dd632f3d9baf425608ec3ad1a7> /usr/lib/libate.dylib
       0x18bf66000 -        0x18c008fff  TextureIO arm64  <57a2d0b6d5fd36de9f35834757dd6e1e> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
       0x18c009000 -        0x18c0d3fff  CoreUI arm64  <69a9ab41133d3819be7437b4d9fc58c3> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
       0x18c0d4000 -        0x18c0ddfff  MobileIcons arm64  <4a020d6be6443a5cb093a703e301507f> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
       0x18c0de000 -        0x18c0ecfff  AppleFSCompression arm64  <e91d533eee543737900020f2b6dd1209> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
       0x18c0ed000 -        0x18c146fff  TextInput arm64  <4eb2ccd7f165345f9253c62faf5de39f> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
       0x18c1a6000 -        0x18c23bfff  FileProvider arm64  <29753c5b5f3e32b2881f8c44ddcf4cd9> /System/Library/Frameworks/FileProvider.framework/FileProvider
       0x18c415000 -        0x18c429fff  libAccessibility.dylib arm64  <f9278e55ebdc34528a01f614a78def92> /usr/lib/libAccessibility.dylib
       0x18c42a000 -        0x18c882fff  libwebrtc.dylib arm64  <cbe7d01cc0113edcb4be72bfb604ce8d> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
       0x18c883000 -        0x18c8e3fff  ContactsFoundation arm64  <8e3781f5e5a23366907c2fdc447ab008> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
       0x18c8e4000 -        0x18dc90fff  WebCore arm64  <17b029bf848431a4b7613b41708aca64> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
       0x18dc91000 -        0x18de03fff  WebKitLegacy arm64  <eb2a2de9272a39b3a671d66f07c2fb87> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
       0x18de04000 -        0x18de2cfff  DataAccessExpress arm64  <14e9e1270dca3e0c90bf867c08dbc188> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
       0x18de2d000 -        0x18dec5fff  AddressBookLegacy arm64  <6ad817e759b23b499aa3eccfde7d766c> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
       0x18dec6000 -        0x18df1dfff  ProtectedCloudStorage arm64  <5a4c02583e573b2abfdb24da350b7e98> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
       0x18df1e000 -        0x18df4afff  UserNotifications arm64  <1acc9bc755ae33708ad7a5eeadf6b8ec> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
       0x18df4b000 -        0x18df56fff  AppleIDAuthSupport arm64  <e320d30ed9eb361295151481bd624549> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
       0x18df57000 -        0x18dfa5fff  AuthKit arm64  <7ea243ecc77b3aa7b24375b3e1d079d5> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
       0x18dfd0000 -        0x18e023fff  DocumentManager arm64  <ccce6da1d4c638ea97d53cdf51377e7c> /System/Library/Frameworks/UIKit.framework/Frameworks/DocumentManager.framework/DocumentManager
       0x18e024000 -        0x18f0a9fff  UIKit arm64  <63bb42d77c7a3152a4a305f534779a61> /System/Library/Frameworks/UIKit.framework/UIKit
       0x18f0aa000 -        0x18f0bbfff  DocumentManagerCore arm64  <591ab729d9e53d3c818125db9a5a252a> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
       0x18f0bc000 -        0x18f0c0fff  HangTracer arm64  <f66e4e75e8073b9290d9723d324edb88> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
       0x18f0c1000 -        0x18f113fff  PhysicsKit arm64  <5506b2a20d883442a4cad88e1b49475b> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
       0x18f114000 -        0x18f116fff  StudyLog arm64  <cc3048f6ddea3203be8c9078e8334198> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
       0x18f117000 -        0x18f1f7fff  UIFoundation arm64  <fa727d25bd7432f3afe426784ff9cdd1> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
       0x18f1f8000 -        0x18f304fff  CloudKit arm64  <b6e98437c800397bb600258e4876eff5> /System/Library/Frameworks/CloudKit.framework/CloudKit
       0x18f305000 -        0x18f305fff  IntentsFoundation arm64  <bddd7668dee33f8894f87e72b5179805> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
       0x18f306000 -        0x18f3cffff  Network arm64  <231cd3af11133afbb61078d2e0a72813> /System/Library/PrivateFrameworks/Network.framework/Network
       0x18f3d0000 -        0x18f5dafff  Intents arm64  <464982043f213c9a9b6e863c59fe30d2> /System/Library/Frameworks/Intents.framework/Intents
       0x18f5db000 -        0x18f5f6fff  libresolv.9.dylib arm64  <1243b6c2a9b93b79898311cb8d37d87a> /usr/lib/libresolv.9.dylib
       0x18f5f7000 -        0x18f5f9fff  CoreDuetDebugLogging arm64  <40fcd2a0492a3138ab50daa0fc539408> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
       0x18f5fa000 -        0x18f62efff  libtidy.A.dylib arm64  <f8dae748d73237b985dd34f9ef9f953f> /usr/lib/libtidy.A.dylib
       0x18f62f000 -        0x18f759fff  CoreDuet arm64  <8391cd7b01893c7bb5567c9566d16c48> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
       0x18f75a000 -        0x18f778fff  CoreDuetContext arm64  <aad357044daa31bab4f12fa570ae8386> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
       0x18f779000 -        0x18f78dfff  CoreDuetDaemonProtocol arm64  <c414be876f203f2c98812d573be9bafa> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
       0x18f78e000 -        0x18f7f9fff  IMFoundation arm64  <6b6422289ce939baafbfe0508edc2b13> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
       0x18f7fa000 -        0x18f828fff  vCard arm64  <b0a50e4baac93faa8dcdeb7d37e521d1> /System/Library/PrivateFrameworks/vCard.framework/vCard
       0x18f829000 -        0x18f934fff  Contacts arm64  <4e8acc9e76de3e49a6264964058223e4> /System/Library/Frameworks/Contacts.framework/Contacts
       0x18f935000 -        0x18f936fff  DiagnosticLogCollection arm64  <aa5b7374194e3a0ebd05d5213e33f94b> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
       0x18f937000 -        0x18f938fff  Marco arm64  <db4311c1bca83d24afacd3db6518f2b3> /System/Library/PrivateFrameworks/Marco.framework/Marco
       0x18f939000 -        0x18f93ffff  MessageProtection arm64  <6dc7651d32053fbf96d333c60519bc43> /System/Library/PrivateFrameworks/MessageProtection.framework/MessageProtection
       0x18f940000 -        0x18fc46fff  StoreServices arm64  <eed397d3163f358db76c1d5ebaf7e4f6> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
       0x18fc47000 -        0x18fc5ffff  Engram arm64  <edec7faf180d37b2a646533a7ad7069e> /System/Library/PrivateFrameworks/Engram.framework/Engram
       0x18fc60000 -        0x18fd52fff  IDSFoundation arm64  <41b4c422367139d4ab112879dd6f6ee3> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
       0x18fd53000 -        0x18fd5efff  CaptiveNetwork arm64  <68930edfd9593c61be8952bd70f75bf9> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
       0x18fd5f000 -        0x18fd8dfff  EAP8021X arm64  <0b795c120aaa38a1a91860a611284c58> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
       0x18fd8e000 -        0x18fdc8fff  MobileWiFi arm64  <29fe25fde1de390ba1fc5e51850a17d3> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
       0x18fdc9000 -        0x18fdcbfff  OAuth arm64  <1ca9fd6c48a437948124d95ae53825e7> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
       0x18fdcc000 -        0x18fdcefff  CommonAuth arm64  <35c1af3f71213eaeb19292fda822e67a> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
       0x18fdcf000 -        0x18fe3dfff  Heimdal arm64  <f744238528d13568a383cd02c2c3c17a> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
       0x18fe3e000 -        0x18fe67fff  GSS arm64  <39131c5b25f33207829d786ea5d2837e> /System/Library/Frameworks/GSS.framework/GSS
       0x18fe68000 -        0x18fe7ffff  ApplePushService arm64  <d5e2e4944c4d3e1faa66dab4d1f90d6f> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
       0x18fe80000 -        0x18ff18fff  AccountsDaemon arm64  <303267dfcfa23f4eba9af44f724879be> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
       0x18ff19000 -        0x18ff37fff  AppleIDSSOAuthentication arm64  <a2ad71e90a133bbbaeab3ab0d1ff4ff7> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
       0x18ff38000 -        0x18ffaafff  AppleAccount arm64  <cd5e7605d3b2364291dd1a1c18369b8d> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
       0x18ffab000 -        0x1900befff  CoreUtils arm64  <572166133ddc3056aa0f87d05fc39b12> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
       0x1900bf000 -        0x1901d8fff  IDS arm64  <e8c5adf666fa395487717253f7dabe1e> /System/Library/PrivateFrameworks/IDS.framework/IDS
       0x1901d9000 -        0x1901fafff  MediaServices arm64  <58cd7ac73c8d3fbea1130cbd4c8d6064> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
       0x1901fb000 -        0x19035ffff  MediaRemote arm64  <f214ad97f14b3e4fa92d19875f7beedc> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
       0x190360000 -        0x190376fff  UserManagement arm64  <37e9f071230432efb4de36fccf3974d6> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
       0x190387000 -        0x1903b7fff  Bom arm64  <1687a8ce9c5030df8b0b6338bd5f168e> /System/Library/PrivateFrameworks/Bom.framework/Bom
       0x1903b8000 -        0x1903bcfff  CommunicationsFilter arm64  <59084d88ea733e4ab9f6d81ebeea61ac> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
       0x1903bd000 -        0x1903e2fff  FTAWD arm64  <4e5e93f600b73542bd17d45153d0f4ca> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
       0x1903e3000 -        0x190436fff  FTServices arm64  <d10443472e333174badf6c90bed39b9c> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
       0x19048a000 -        0x19049efff  ProactiveEventTracker arm64  <684b2a827fd03675a51d5f33139b1978> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
       0x19049f000 -        0x1904f0fff  ChunkingLibrary arm64  <118a49d396bd312cb2a149a061813c8d> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
       0x1904f1000 -        0x1904fdfff  libnetworkextension.dylib arm64  <969fc737cd7c3812a8e11b396fd14f1f> /usr/lib/libnetworkextension.dylib
       0x1904fe000 -        0x190522fff  AddressBook arm64  <6bf7a3ae474d3d32bc8f7bab92e4e544> /System/Library/Frameworks/AddressBook.framework/AddressBook
       0x1912fb000 -        0x191490fff  NetworkExtension arm64  <75cb9b101c8936d0a49ccf229b36bc00> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
       0x191a42000 -        0x191a49fff  AssetCacheServices arm64  <065bdc6672843b94985ca785a4889c2c> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
       0x191a4a000 -        0x191b04fff  NetworkServiceProxy arm64  <7270a6a9ae8036ab88d882352bb51e47> /System/Library/PrivateFrameworks/NetworkServiceProxy.framework/NetworkServiceProxy
       0x191b05000 -        0x191bfafff  MMCS arm64  <36d1198f00a63b389e137333dd53251f> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
       0x191c08000 -        0x191c79fff  CoreDAV arm64  <2b8c3a76866d37389d07f97118dc177e> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
       0x191c7a000 -        0x191caefff  iCalendar arm64  <00a6da1e12ad3aa9a40e09d0e98c1a65> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
       0x191caf000 -        0x191cbdfff  PersonaKit arm64  <50c8e7f6befb3d6dbc8f4b8560c5536e> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
       0x191cbe000 -        0x191d18fff  CalendarFoundation arm64  <88351d14d0c53df78d7bef9d37732014> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
       0x191d19000 -        0x191d46fff  PhotosFormats arm64  <1ac9d31535f034229cd2e62a85cc70cf> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
       0x191d47000 -        0x191de3fff  CalendarDatabase arm64  <aea5cc07347a35e7ac7b035bec99bcb8> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
       0x191de4000 -        0x191e35fff  CalendarDaemon arm64  <5a4f13d8fcac3a888ab10c31789b736f> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
       0x191e36000 -        0x191f54fff  CloudPhotoLibrary arm64  <3090eb778bf83102b9693a3819c8d657> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
       0x191f55000 -        0x192039fff  EventKit arm64  <0084b9612435327aba71161ba7ba1254> /System/Library/Frameworks/EventKit.framework/EventKit
       0x19203a000 -        0x192064fff  AssetsLibraryServices arm64  <698f27791d7034a689c77fd45f1cef73> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
       0x192065000 -        0x192099fff  ACTFramework arm64  <30c48c06532734ffb365afdd8c3b9f14> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework
       0x19209a000 -        0x1920bafff  DCIMServices arm64  <8c9a59ca94a23c0599e0b5f89f9d8990> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
       0x1920bb000 -        0x1921f5fff  CoreMediaStream arm64  <f8cf05ed94a43506a5adc8fffe6d8d34> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
       0x1921f6000 -        0x1921fdfff  XPCKit arm64  <92f06031b48134d9b54bc9ec5b7f1a7a> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
       0x1921fe000 -        0x1922e4fff  CameraKit arm64  <91088223dc9734c7b79b6af1c8ed6ca7> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit
       0x1922e5000 -        0x1922fdfff  CloudPhotoServices arm64  <72e95f7d4dc934d3b162de9b862b5999> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
       0x1922fe000 -        0x192309fff  CoreRecents arm64  <32ef08ca2b40314282ee7ef190a22580> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
       0x19230a000 -        0x192328fff  MediaStream arm64  <4be5138a6f033789a3febfc7d1fb0463> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
       0x192329000 -        0x19274bfff  PhotoLibraryServices arm64  <6489f89144ee3db0b91b46b8644370b9> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
       0x19280f000 -        0x19293cfff  SearchFoundation arm64  <605cb19d691d397d96ea1d4283ee47d3> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
       0x192944000 -        0x1929edfff  iTunesStore arm64  <e0be60e8ccd63484b6da6dea8dda6bf6> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
       0x192d20000 -        0x192d56fff  DifferentialPrivacy arm64  <e8cd80cc069e3861b5b4801ecbf03175> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
       0x193139000 -        0x19313cfff  MobileSystemServices arm64  <94279498cdbc3128a9dbdfec9a2b11ff> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
       0x193466000 -        0x19346afff  CoreOptimization arm64  <6e61942f08953dd79fd44cc9d4d744f1> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
       0x19346b000 -        0x1934a8fff  SafariCore arm64  <e48385ff069e3aee9750fa167847ae2a> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
       0x1934a9000 -        0x193503fff  CorePrediction arm64  <cbba5beaa97f3f4f8d1803b796592eb1> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
       0x193504000 -        0x193601fff  Navigation arm64  <6e9d43be24e83bd69946d2c753eac763> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
       0x193602000 -        0x19361afff  ContactsDonation arm64  <850e4dad3a1e35cbb43225944027046f> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
       0x1936f3000 -        0x19374bfff  ContactsUICore arm64  <a2781bb6bc043f6cbc0203433093616b> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
       0x19374c000 -        0x1938b0fff  ContactsUI arm64  <8db1cf7a61153acf8930085673dc45ee> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
       0x1938b1000 -        0x19398dfff  CorePDF arm64  <22a974d195923e16a509bd49b06b1fdc> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
       0x193bef000 -        0x193f9efff  WebKit arm64  <78b19dea30573176a37ee0092e22b716> /System/Library/Frameworks/WebKit.framework/WebKit
       0x194059000 -        0x19405efff  ConstantClasses arm64  <54dae35faf09384087e3b0b13b2e119f> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
       0x19405f000 -        0x194067fff  CertUI arm64  <b699133afdc9395d8d5042b70a656476> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
       0x194150000 -        0x1941ecfff  MediaPlatform arm64  <b1a2014666ea35abaf09c4e2b9464729> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
       0x1941ed000 -        0x19424cfff  WebBookmarks arm64  <f8ccbfd103623f2dbcec8e19359e3920> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
       0x19424d000 -        0x194253fff  DAAPKit arm64  <1489e0c7529436419e775108edc2851e> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
       0x194346000 -        0x19461efff  MediaLibraryCore arm64  <02248f50390733a9b45fe8969af53700> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
       0x194620000 -        0x19489efff  MusicLibrary arm64  <6ddc4b85c8e63282ab77faa15ab06b14> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
       0x19489f000 -        0x194f27fff  VectorKit arm64  <80e45f0d02973b81a25b9f8933b359ed> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
       0x194f28000 -        0x195165fff  MapKit arm64  <b159fe592a273823897c1700c7a9a619> /System/Library/Frameworks/MapKit.framework/MapKit
       0x195166000 -        0x1952defff  iTunesCloud arm64  <ba5787ebac97338a9cc3126d539ca42a> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
       0x1952df000 -        0x19537ffff  HomeSharing arm64  <8d47fbe5e22a3508aea12b531cebe07e> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
       0x1954ef000 -        0x19594bfff  MediaPlayer arm64  <9cd3159587c4334cb1b0c1d9000647f3> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
       0x19594c000 -        0x195971fff  MobileInstallation arm64  <d0101b2690a23497b076bf9228df2639> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
       0x195972000 -        0x195978fff  EmailAddressing arm64  <4f7608603bbb3369aad9abb08f62d8d7> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
       0x195979000 -        0x19597bfff  MessageSupport arm64  <602ecf8e71b53f969946ea63085fee81> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
       0x19597f000 -        0x1959dafff  MIME arm64  <899cda88811c3fa4952615b77fc80a77> /System/Library/PrivateFrameworks/MIME.framework/MIME
       0x195a0b000 -        0x195a43fff  Notes arm64  <872aa8ea8d383e66940ef74179811fc0> /System/Library/PrivateFrameworks/Notes.framework/Notes
       0x195b4c000 -        0x195ba7fff  DataAccess arm64  <b43109e66f9c3507ad72d0059f5be92c> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
       0x195ba8000 -        0x195bbbfff  AssetsLibrary arm64  <0a9e8429c233352c9c9b320506037d25> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
       0x196048000 -        0x196058fff  MailServices arm64  <b0776838b78f3e57b1ba700219f4bf90> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
       0x1960ef000 -        0x19610afff  MailSupport arm64  <2230a40fe77032559bbfd5428fd6bf12> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
       0x19610b000 -        0x19625afff  Message arm64  <7cab7cc94e783cf1b41d8ce61e16b8d1> /System/Library/PrivateFrameworks/Message.framework/Message
       0x196582000 -        0x1965bdfff  ContactsAutocomplete arm64  <c6d2f37a43453da6a96aabd2e1eed361> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
       0x19675b000 -        0x19675efff  FTClientServices arm64  <897631ca933b36f7bb9ed1e8b2e657bb> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
       0x198047000 -        0x198062fff  EmojiFoundation arm64  <3948ceefa85f3c77bab3442a5a8b9ff9> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
       0x198831000 -        0x198839fff  AddressBookUI arm64  <02e93e3a48663afebec669ef46ef2486> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
       0x199899000 -        0x199993fff  MessageUI arm64  <86d11145916a3a81a425402bbfe289e4> /System/Library/Frameworks/MessageUI.framework/MessageUI
       0x19d820000 -        0x19d844fff  AppSupportUI arm64  <a834561f64d337958f11376a97856ba4> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
       0x19e57b000 -        0x19e6cffff  libGLProgrammability.dylib arm64  <b7560c85bb5c354fabbcc32378172f6c> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
       0x1a3e1d000 -        0x1a40d2fff  RawCamera arm64  <f9c361f2865338dcbbacb8cf8f910f66> /System/Library/CoreServices/RawCamera.bundle/RawCamera
       0x1a4297000 -        0x1a4348fff  AGXMetalA9 arm64  <7fde8f2cc43236b3af5b9d2f0ecbab3f> /System/Library/Extensions/AGXMetalA9.bundle/AGXMetalA9
       0x1a4354000 -        0x1a4372fff  AppleMetalGLRenderer arm64  <4c13044583f73749b0c2f9def1cea2b8> /System/Library/Extensions/AppleMetalGLRenderer.bundle/AppleMetalGLRenderer
       0x1a4382000 -        0x1a4396fff  libCGInterfaces.dylib arm64  <ad5b2e34ffdd36c4afc9dbbaa93a146f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
       0x1a4397000 -        0x1a47dcfff  AudioCodecs arm64  <70e54b5be4ae32529eb647dee45639c0> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
       0x1a509b000 -        0x1a517dfff  GLEngine arm64  <54df1e2d0f073bfc8144f2889e03c9aa> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
       0x1a6813000 -        0x1a683afff  CoreServicesInternal arm64  <f1e975f233a335eab52a486ec25520a9> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
       0x1a6e09000 -        0x1a6e1afff  libGSFontCache.dylib arm64  <50b74f1d848d3bb693fedc5ec5abcdd4> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
       0x1a6e1b000 -        0x1a6e4dfff  libTrueTypeScaler.dylib arm64  <61cf1230be373f8c8defd2cfe3e8fd79> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
       0x1a777c000 -        0x1a777cfff  libmetal_timestamp.dylib arm64  <f18a626680ea3501b7fdf6042433c155> /System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libmetal_timestamp.dylib
       0x1a85da000 -        0x1a85ddfff  InternationalSupport arm64  <3b40414b65b035ebac8c2f2ecd3be78e> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
       0x1aa34f000 -        0x1aa354fff  TextInputUI arm64  <c60ab0c23a5235fca90ad0601ab45c21> /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
       0x1ac371000 -        0x1ac3a2fff  libclosured.dylib arm64  <aefc8840686d30a88277d7efcb70abaf> /usr/lib/closure/libclosured.dylib
       0x1ac3a3000 -        0x1ac3f5fff  libstdc++.6.dylib arm64  <4df1d316c21733febe1bf87c069dafb4> /usr/lib/libstdc++.6.dylib

Extra Information:

Stack Dump (0x000000016fa3da20-0x000000016fa3db10):

60DAA36F01000000E4230D010100000060D8F30201000000000000000000000080874EC40100000000803AB40100000000000000000000002800000000000000F0DAA36F01000000D41E0D010100000090DAA36F010000005CAC6A840100000000403AB4010000004000000000000000D0DAA36F01000000889B69840100000018DDA36F0100000000F07C020100000060D8F30201000000000000000000000080874EC40100000000000000000000000800000000000000000000000000000000000000000000006027FC020100000030DBA36F01000000581A11010100000080874EC40100000080F47C0201000000

Notable Addresses:
{
    "x6": {
        "address": 4319182059,
        "type": "string",
        "value": "%p: new controllable : %d"
    }
}

Application Stats:
{
    "active_time_since_last_crash": 0,
    "active_time_since_launch": 0,
    "application_active": false,
    "application_in_foreground": true,
    "background_time_since_last_crash": 0,
    "background_time_since_launch": 0,
    "launches_since_last_crash": 28,
    "sessions_since_last_crash": 28,
    "sessions_since_launch": 1
}

CrashDoctor Diagnosis: Attempted to dereference garbage pointer 0x10000000000.
Originated at or in a subcall of _mh_execute_header
-------------- next part --------------
Incident Identifier: 720B09D5-1B9E-4122-A20B-9B5BFB996CF4
CrashReporter Key:   0971af46dc443f6758983b3ea4d2341fb15f395d
Hardware Model:      iPhone8,4
Process:         Homesmart [376]
Path:            /var/containers/Bundle/Application/47E5F8FB-399F-4FE9-8345-963C2898697D/Homesmart.app/Homesmart
Identifier:      com.neotechindia.homesmart
Version:         1.2.1 (4)
Code Type:       ARM-64
Parent Process:  ? [1]

Date/Time:       2017-12-26 16:55:21.000 -0800
OS Version:      iOS 11.2 (15C114)
Report Version:  104

Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_INVALID_ARGUMENT at 0x0000008000000004
Crashed Thread:  20

Thread 0:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   GraphicsServices                0x00000001868c4f84 0x1868ba000 + 44932 (GSEventRunModal + 100)
6   UIKit                           0x000000018e09767c 0x18e024000 + 472700 (UIApplicationMain + 236)
7   Homesmart                       0x00000001041aa1fc 0x104004000 + 1729020 (_mh_execute_header + 1729020)
8   libdyld.dylib                   0x000000018453456c 0x184533000 + 5484 (<redacted> + 4)

Thread 1:
0   libsystem_kernel.dylib          0x0000000184647b48 0x184642000 + 23368 (poll + 8)
1   Homesmart                       0x0000000104d2a784 0x104004000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000104d2aa5c 0x104004000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x000000010410879c 0x104004000 + 1066908 (_mh_execute_header + 1066908)
4   libdispatch.dylib               0x00000001844cea54 0x1844cd000 + 6740 (<redacted> + 24)
5   libdispatch.dylib               0x00000001844cea14 0x1844cd000 + 6676 (<redacted> + 16)
6   libdispatch.dylib               0x00000001844d5bc8 0x1844cd000 + 35784 (<redacted> + 716)
7   libdispatch.dylib               0x00000001844dbcf4 0x1844cd000 + 60660 (<redacted> + 600)
8   libdispatch.dylib               0x00000001844dba38 0x1844cd000 + 59960 (<redacted> + 120)
9   libsystem_pthread.dylib         0x000000018477706c 0x184776000 + 4204 (_pthread_wqthread + 1268)

Thread 2:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   AVFAudio                        0x000000018a37ddc4 0x18a2f4000 + 564676 (<redacted> + 164)
6   AVFAudio                        0x000000018a3a8830 0x18a2f4000 + 739376 (<redacted> + 84)
7   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
8   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 3:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   Foundation                      0x000000018544d594 0x185441000 + 50580 (<redacted> + 304)
6   Foundation                      0x000000018546c9ac 0x185441000 + 178604 (<redacted> + 96)
7   UIKit                           0x000000018ec017b8 0x18e024000 + 12441528 (<redacted> + 136)
8   Foundation                      0x000000018554f0f4 0x185441000 + 1106164 (<redacted> + 996)
9   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
10  libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 4:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   libsystem_kernel.dylib          0x0000000184647700 0x184642000 + 22272 (thread_suspend + 84)
3   Homesmart                       0x00000001041227ec 0x104004000 + 1173484 (_mh_execute_header + 1173484)
4   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
5   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 5:

Thread 6:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   CoreFoundation                  0x0000000184a66f54 0x184a0c000 + 372564 (CFRunLoopRun + 116)
6   CoreMotion                      0x0000000189e850e8 0x189e05000 + 524520 (CLStartStopAdvertisingBeacon + 227264)
7   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
8   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 7:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   CFNetwork                       0x0000000185307128 0x1850d3000 + 2310440 (<redacted> + 780)
6   Foundation                      0x000000018554f0f4 0x185441000 + 1106164 (<redacted> + 996)
7   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
8   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 8:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   Foundation                      0x000000018544d594 0x185441000 + 50580 (<redacted> + 304)
6   Homesmart                       0x0000000104043e30 0x104004000 + 261680 (_mh_execute_header + 261680)
7   Foundation                      0x000000018554f0f4 0x185441000 + 1106164 (<redacted> + 996)
8   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
9   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 9:
0   libsystem_kernel.dylib          0x0000000184664534 0x184642000 + 140596 (select$DARWIN_EXTSN + 8)
1   CoreFoundation                  0x0000000184b02840 0x184a0c000 + 1009728 (<redacted> + 644)
2   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
3   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 10:
0   libsystem_kernel.dylib          0x0000000184647b48 0x184642000 + 23368 (poll + 8)
1   Homesmart                       0x0000000104d2a784 0x104004000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000104d2aa5c 0x104004000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x0000000104ea8538 0x104004000 + 15353144 (_gnutls_global_init_skip + 988364)
4   Homesmart                       0x0000000104d1797c 0x104004000 + 13711740 (_mh_execute_header + 13711740)
5   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
6   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 11:
0   libsystem_kernel.dylib          0x00000001846640f0 0x184642000 + 139504 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x000000018477ace4 0x184776000 + 19684 (<redacted> + 640)
2   Homesmart                       0x0000000104d5e624 0x104004000 + 14001700 (_mh_execute_header + 14001700)
3   Homesmart                       0x0000000104ef25dc 0x104004000 + 15656412 (_gnutls_global_init_skip + 1291632)
4   Homesmart                       0x0000000104d13cc0 0x104004000 + 13696192 (_mh_execute_header + 13696192)
5   Homesmart                       0x0000000104d1797c 0x104004000 + 13711740 (_mh_execute_header + 13711740)
6   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
7   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 12:
0   libsystem_kernel.dylib          0x0000000184647b48 0x184642000 + 23368 (poll + 8)
1   Homesmart                       0x0000000104d2a784 0x104004000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000104d2aa5c 0x104004000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x000000010410879c 0x104004000 + 1066908 (_mh_execute_header + 1066908)
4   libdispatch.dylib               0x00000001844cea54 0x1844cd000 + 6740 (<redacted> + 24)
5   libdispatch.dylib               0x00000001844cea14 0x1844cd000 + 6676 (<redacted> + 16)
6   libdispatch.dylib               0x00000001844d5bc8 0x1844cd000 + 35784 (<redacted> + 716)
7   libdispatch.dylib               0x00000001844dbcf4 0x1844cd000 + 60660 (<redacted> + 600)
8   libdispatch.dylib               0x00000001844dba38 0x1844cd000 + 59960 (<redacted> + 120)
9   libsystem_pthread.dylib         0x000000018477706c 0x184776000 + 4204 (_pthread_wqthread + 1268)

Thread 13:
0   libsystem_kernel.dylib          0x0000000184647b48 0x184642000 + 23368 (poll + 8)
1   Homesmart                       0x0000000104d2a784 0x104004000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000104d2aa5c 0x104004000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x0000000104ea8538 0x104004000 + 15353144 (_gnutls_global_init_skip + 988364)
4   Homesmart                       0x0000000104d1797c 0x104004000 + 13711740 (_mh_execute_header + 13711740)
5   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
6   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 14:
0   libsystem_kernel.dylib          0x0000000184647b48 0x184642000 + 23368 (poll + 8)
1   Homesmart                       0x0000000104d2a784 0x104004000 + 13789060 (_mh_execute_header + 13789060)
2   Homesmart                       0x0000000104d2aa5c 0x104004000 + 13789788 (_mh_execute_header + 13789788)
3   Homesmart                       0x0000000104ea1d3c 0x104004000 + 15326524 (_gnutls_global_init_skip + 961744)
4   Homesmart                       0x0000000104e9d5e0 0x104004000 + 15308256 (_gnutls_global_init_skip + 943476)
5   Homesmart                       0x0000000104d1797c 0x104004000 + 13711740 (_mh_execute_header + 13711740)
6   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
7   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 15:
0   libsystem_kernel.dylib          0x00000001846640f0 0x184642000 + 139504 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x000000018477ace4 0x184776000 + 19684 (<redacted> + 640)
2   Homesmart                       0x000000010472c7e0 0x104004000 + 7505888 (_mh_execute_header + 7505888)
3   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 16:
0   libsystem_kernel.dylib          0x00000001846640f0 0x184642000 + 139504 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x000000018477ace4 0x184776000 + 19684 (<redacted> + 640)
2   Homesmart                       0x000000010472c7e0 0x104004000 + 7505888 (_mh_execute_header + 7505888)
3   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 17:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   CoreFoundation                  0x0000000184afa308 0x184a0c000 + 975624 (<redacted> + 196)
3   CoreFoundation                  0x0000000184af7ed4 0x184a0c000 + 966356 (<redacted> + 1424)
4   CoreFoundation                  0x0000000184a17e58 0x184a0c000 + 48728 (CFRunLoopRunSpecific + 436)
5   AudioToolbox                    0x0000000188731b28 0x188523000 + 2157352 (<redacted> + 164)
6   AudioToolbox                    0x000000018896d090 0x188523000 + 4497552 (<redacted> + 84)
7   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
8   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 18:
0   libsystem_kernel.dylib          0x00000001846640f0 0x184642000 + 139504 (__psynch_cvwait + 8)
1   libsystem_pthread.dylib         0x000000018477ace4 0x184776000 + 19684 (<redacted> + 640)
2   Homesmart                       0x0000000104d5e624 0x104004000 + 14001700 (_mh_execute_header + 14001700)
3   Homesmart                       0x0000000104e84d10 0x104004000 + 15207696 (_gnutls_global_init_skip + 842916)
4   Homesmart                       0x0000000104e45234 0x104004000 + 14946868 (_gnutls_global_init_skip + 582088)
5   Homesmart                       0x0000000104e8ad08 0x104004000 + 15232264 (_gnutls_global_init_skip + 867484)
6   Homesmart                       0x0000000104e8dd08 0x104004000 + 15244552 (_gnutls_global_init_skip + 879772)
7   Homesmart                       0x0000000104edab10 0x104004000 + 15559440 (_gnutls_global_init_skip + 1194660)
8   Homesmart                       0x0000000104edb42c 0x104004000 + 15561772 (_gnutls_global_init_skip + 1196992)
9   Homesmart                       0x0000000104edb268 0x104004000 + 15561320 (_gnutls_global_init_skip + 1196540)
10  Homesmart                       0x0000000104f0eb30 0x104004000 + 15772464 (_gnutls_global_init_skip + 1407684)
11  Homesmart                       0x0000000104edab10 0x104004000 + 15559440 (_gnutls_global_init_skip + 1194660)
12  Homesmart                       0x0000000104edb42c 0x104004000 + 15561772 (_gnutls_global_init_skip + 1196992)
13  Homesmart                       0x0000000104edb268 0x104004000 + 15561320 (_gnutls_global_init_skip + 1196540)
14  Homesmart                       0x0000000104e7a678 0x104004000 + 15165048 (_gnutls_global_init_skip + 800268)
15  Homesmart                       0x0000000104edab10 0x104004000 + 15559440 (_gnutls_global_init_skip + 1194660)
16  Homesmart                       0x0000000104edb42c 0x104004000 + 15561772 (_gnutls_global_init_skip + 1196992)
17  Homesmart                       0x0000000104edb268 0x104004000 + 15561320 (_gnutls_global_init_skip + 1196540)
18  Homesmart                       0x0000000104e7a678 0x104004000 + 15165048 (_gnutls_global_init_skip + 800268)
19  Homesmart                       0x0000000104edab10 0x104004000 + 15559440 (_gnutls_global_init_skip + 1194660)
20  Homesmart                       0x0000000104edb42c 0x104004000 + 15561772 (_gnutls_global_init_skip + 1196992)
21  Homesmart                       0x0000000104edb268 0x104004000 + 15561320 (_gnutls_global_init_skip + 1196540)
22  Homesmart                       0x0000000104e92e58 0x104004000 + 15265368 (_gnutls_global_init_skip + 900588)
23  Homesmart                       0x0000000104ef25a0 0x104004000 + 15656352 (_gnutls_global_init_skip + 1291572)
24  Homesmart                       0x0000000104d13cc0 0x104004000 + 13696192 (_mh_execute_header + 13696192)
25  Homesmart                       0x0000000104d1797c 0x104004000 + 13711740 (_mh_execute_header + 13711740)
26  libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
27  libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 19:
0   libsystem_kernel.dylib          0x0000000184643568 0x184642000 + 5480 (mach_msg_trap + 8)
1   libsystem_kernel.dylib          0x00000001846433e0 0x184642000 + 5088 (mach_msg + 72)
2   AudioToolbox                    0x00000001885e2918 0x188523000 + 784664 (<redacted> + 264)
3   AudioToolbox                    0x00000001885e6eb0 0x188523000 + 802480 (<redacted> + 160)
4   AudioToolbox                    0x000000018896d090 0x188523000 + 4497552 (<redacted> + 84)
5   libsystem_pthread.dylib         0x00000001847782b4 0x184776000 + 8884 (<redacted> + 308)
6   libsystem_pthread.dylib         0x0000000184778180 0x184776000 + 8576 (_pthread_start + 312)

Thread 20 Crashed:
0   Homesmart                       0x0000000104d17508 0x104004000 + 13710600 (_mh_execute_header + 13710600)
1   Homesmart                       0x0000000104d17528 0x104004000 + 13710632 (_mh_execute_header + 13710632)
2   Homesmart                       0x0000000104d17250 0x104004000 + 13709904 (_mh_execute_header + 13709904)
3   libsystem_pthread.dylib         0x0000000184777598 0x184776000 + 5528 (<redacted> + 496)
4   libsystem_pthread.dylib         0x0000000184777334 0x184776000 + 4916 (<redacted> + 88)
5   libsystem_pthread.dylib         0x00000001847770b4 0x184776000 + 4276 (_pthread_wqthread + 1340)

Thread 21:
0   libsystem_kernel.dylib          0x0000000184664d80 0x184642000 + 142720 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x0000000184776eec 0x184776000 + 3820 (_pthread_wqthread + 884)

Thread 22:

Thread 23:
0   libsystem_kernel.dylib          0x0000000184664d80 0x184642000 + 142720 (__workq_kernreturn + 8)
1   libsystem_pthread.dylib         0x0000000184777080 0x184776000 + 4224 (_pthread_wqthread + 1288)

Thread 24:

Thread 20 crashed with ARM-64 Thread State:
  cpsr: 0x0000000080000000     fp: 0x000000016c9feda0     lr: 0x0000000104d17528     pc: 0x0000000104d17508 
    sp: 0x000000016c9fed60     x0: 0x0000000109c94000     x1: 0x0000008000000004    x10: 0x00000000000000ce 
   x11: 0x0000000109c965e0    x12: 0x0000000000604d00    x13: 0x0000000000000001    x14: 0x00604d0000604e03 
   x15: 0x0000000000000000    x16: 0x000000018477b764    x17: 0x0000000109c94750    x18: 0xfffffff02129925c 
   x19: 0x0000000000000030     x2: 0x0000000000000042    x20: 0x0000000106412bb8    x21: 0x0000000000000000 
   x22: 0x0000000109d50000    x23: 0x0000000000000002    x24: 0x000000000000007f    x25: 0x000000016c9fedb8 
   x26: 0x0000000000000003    x27: 0x0000000000000000    x28: 0x000000011e247a30    x29: 0x000000016c9feda0 
    x3: 0x0000000000000000     x4: 0x0000000000000010     x5: 0x0000000000000000     x6: 0x00000001c4aea400 
    x7: 0x0000000000000023     x8: 0x0000000109d50000     x9: 0x0000000100000002 

Binary Images:
       0x104004000 -        0x105c43fff +Homesmart arm64  <43a60ad888383b2e90745e49ee6441c7> /var/containers/Bundle/Application/47E5F8FB-399F-4FE9-8345-963C2898697D/Homesmart.app/Homesmart
       0x183d12000 -        0x183d13fff  libSystem.B.dylib arm64  <f1a8dae6cdac3bdeb67f9a56e4acb0d0> /usr/lib/libSystem.B.dylib
       0x183d14000 -        0x183d6dfff  libc++.1.dylib arm64  <aee157a049663aa88c4e928768cfd553> /usr/lib/libc++.1.dylib
       0x183d6e000 -        0x183d8efff  libc++abi.dylib arm64  <b4f54419327f3bfea747549b84dad328> /usr/lib/libc++abi.dylib
       0x183d90000 -        0x18444bfff  libobjc.A.dylib arm64  <3a9d464322eb3285bc88fabf7cec20ed> /usr/lib/libobjc.A.dylib
       0x18444c000 -        0x184450fff  libcache.dylib arm64  <5d31b020cbde3110981e6a8213297535> /usr/lib/system/libcache.dylib
       0x184451000 -        0x18445cfff  libcommonCrypto.dylib arm64  <5fcc43ca8cd9305091129711db270b8c> /usr/lib/system/libcommonCrypto.dylib
       0x18445d000 -        0x184460fff  libcompiler_rt.dylib arm64  <49e30d90aab53f8a99c9109db350ae39> /usr/lib/system/libcompiler_rt.dylib
       0x184461000 -        0x184468fff  libcopyfile.dylib arm64  <bc50a65225833e458ae22db52300bf10> /usr/lib/system/libcopyfile.dylib
       0x184469000 -        0x1844ccfff  libcorecrypto.dylib arm64  <1647a3e06adc30b3b8f8298f897d6e87> /usr/lib/system/libcorecrypto.dylib
       0x1844cd000 -        0x184532fff  libdispatch.dylib arm64  <25e5e6ee10093937b122c4b509716294> /usr/lib/system/libdispatch.dylib
       0x184533000 -        0x18454dfff  libdyld.dylib arm64  <aa89b903caf232bebaea4294ee62a6d2> /usr/lib/system/libdyld.dylib
       0x18454e000 -        0x18454efff  liblaunch.dylib arm64  <ca90373a022d3c38ac7ecd736c13bf9b> /usr/lib/system/liblaunch.dylib
       0x18454f000 -        0x184554fff  libmacho.dylib arm64  <5cf371e4795437008e8ba71f7c18c3e0> /usr/lib/system/libmacho.dylib
       0x184555000 -        0x184556fff  libremovefile.dylib arm64  <1f6279ea185b39ebab0412f03836952f> /usr/lib/system/libremovefile.dylib
       0x184557000 -        0x18456efff  libsystem_asl.dylib arm64  <dd425157f17d3c428245da87b0d36205> /usr/lib/system/libsystem_asl.dylib
       0x18456f000 -        0x18456ffff  libsystem_blocks.dylib arm64  <93403bb53b293e748a97895ea5d99def> /usr/lib/system/libsystem_blocks.dylib
       0x184570000 -        0x1845edfff  libsystem_c.dylib arm64  <400d9d205a453ab49971ab4bebbff01c> /usr/lib/system/libsystem_c.dylib
       0x1845ee000 -        0x1845f2fff  libsystem_configuration.dylib arm64  <1d864850ea2a32d6bb44b37cff02883c> /usr/lib/system/libsystem_configuration.dylib
       0x1845f3000 -        0x1845f8fff  libsystem_containermanager.dylib arm64  <fc551cabe5a334c1b09a49278900e46a> /usr/lib/system/libsystem_containermanager.dylib
       0x1845f9000 -        0x1845fafff  libsystem_coreservices.dylib arm64  <367354d549a434efb82345e4010ae363> /usr/lib/system/libsystem_coreservices.dylib
       0x1845fb000 -        0x1845fcfff  libsystem_darwin.dylib arm64  <74d54bc023a2320a9d93943806b0c19e> /usr/lib/system/libsystem_darwin.dylib
       0x1845fd000 -        0x184603fff  libsystem_dnssd.dylib arm64  <5c8c5aaa95393d4e8492379ff9efb960> /usr/lib/system/libsystem_dnssd.dylib
       0x184604000 -        0x184641fff  libsystem_info.dylib arm64  <a844d2a933a93a0ea78b2aa73be718ea> /usr/lib/system/libsystem_info.dylib
       0x184642000 -        0x18466afff  libsystem_kernel.dylib arm64  <1eb83b93d8e5382fa3692c4db5c8425e> /usr/lib/system/libsystem_kernel.dylib
       0x18466b000 -        0x184698fff  libsystem_m.dylib arm64  <fec251da685c39678cddf31fc925050a> /usr/lib/system/libsystem_m.dylib
       0x184699000 -        0x1846b3fff  libsystem_malloc.dylib arm64  <4867a62768f93413a9e9da35906b4624> /usr/lib/system/libsystem_malloc.dylib
       0x1846b4000 -        0x184754fff  libsystem_network.dylib arm64  <27058056b60a3c5b9f7dd945f07ced58> /usr/lib/system/libsystem_network.dylib
       0x184755000 -        0x184760fff  libsystem_networkextension.dylib arm64  <26f9a6394d763402add762982498e16d> /usr/lib/system/libsystem_networkextension.dylib
       0x184761000 -        0x18476bfff  libsystem_notify.dylib arm64  <f4a564bb65e13f7fa40a7b3e7b400e16> /usr/lib/system/libsystem_notify.dylib
       0x18476c000 -        0x184775fff  libsystem_platform.dylib arm64  <5bdfc85463ac3da5976bdb230cc9904e> /usr/lib/system/libsystem_platform.dylib
       0x184776000 -        0x184785fff  libsystem_pthread.dylib arm64  <ec07a01f70933f629bb77dfa516eac50> /usr/lib/system/libsystem_pthread.dylib
       0x184786000 -        0x184789fff  libsystem_sandbox.dylib arm64  <c207a17a12a03d92aaa44fb3d7bb4664> /usr/lib/system/libsystem_sandbox.dylib
       0x18478a000 -        0x184791fff  libsystem_symptoms.dylib arm64  <e2f659feb4f33387951c4e76e64be23d> /usr/lib/system/libsystem_symptoms.dylib
       0x184792000 -        0x1847a5fff  libsystem_trace.dylib arm64  <291c25bcc2ee33259698edefb7e76a1f> /usr/lib/system/libsystem_trace.dylib
       0x1847a6000 -        0x1847abfff  libunwind.dylib arm64  <db0499e29a383530972aec98f7b20450> /usr/lib/system/libunwind.dylib
       0x1847ac000 -        0x1847acfff  libvminterpose.dylib arm64  <d51048b4b2573b18875138004e66b83d> /usr/lib/system/libvminterpose.dylib
       0x1847ad000 -        0x1847d7fff  libxpc.dylib arm64  <ad6af358f21c3fd9a171d66c6fcc1e0d> /usr/lib/system/libxpc.dylib
       0x1847d8000 -        0x1849f9fff  libicucore.A.dylib arm64  <32c272e1e9f735aba4c16a17580f13e3> /usr/lib/libicucore.A.dylib
       0x1849fa000 -        0x184a0bfff  libz.1.dylib arm64  <c402ff63470b34df8634f2078cd151e1> /usr/lib/libz.1.dylib
       0x184a0c000 -        0x184da4fff  CoreFoundation arm64  <733e7542e92b34bd9403762135ad5014> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
       0x184da5000 -        0x184db5fff  libbsm.0.dylib arm64  <b7a56e43a852351d8a2dab94c7fc04e6> /usr/lib/libbsm.0.dylib
       0x184db6000 -        0x184db6fff  libenergytrace.dylib arm64  <6adeca3b70ed33dda70a16353c5ef6ce> /usr/lib/libenergytrace.dylib
       0x184db7000 -        0x184e3cfff  IOKit arm64  <9e81333d12bd3d06bfdcaa867f2035da> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
       0x184e3d000 -        0x184f26fff  libxml2.2.dylib arm64  <33530216f58333d993d4acb846c63aac> /usr/lib/libxml2.2.dylib
       0x184f27000 -        0x184f34fff  libbz2.1.0.dylib arm64  <35c6ddde076638589f755656ac0058ce> /usr/lib/libbz2.1.0.dylib
       0x184f35000 -        0x184f4dfff  liblzma.5.dylib arm64  <7d5815f117103d15a67fd30b3375b11b> /usr/lib/liblzma.5.dylib
       0x184f4e000 -        0x1850abfff  libsqlite3.dylib arm64  <eac933b033d43444ae182e2d7de6137f> /usr/lib/libsqlite3.dylib
       0x1850ac000 -        0x1850d2fff  libMobileGestalt.dylib arm64  <9c73d51ef65330e3b29fa4ec81169863> /usr/lib/libMobileGestalt.dylib
       0x1850d3000 -        0x185440fff  CFNetwork arm64  <fd66a1913ddd34f89f00756cf3147246> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
       0x185441000 -        0x18573cfff  Foundation arm64  <b0f8df9777ec36008a9f35035b889efd> /System/Library/Frameworks/Foundation.framework/Foundation
       0x18573d000 -        0x18582bfff  Security arm64  <f8097c91a8623fbda138a402b6151ca2> /System/Library/Frameworks/Security.framework/Security
       0x18582c000 -        0x185898fff  SystemConfiguration arm64  <13d55604fde63c2e96df89e8d6e84fe6> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
       0x185899000 -        0x1858cffff  libCRFSuite.dylib arm64  <12e6cdcbfa43330da4fa268f1662bf39> /usr/lib/libCRFSuite.dylib
       0x1858d0000 -        0x1858d0fff  libapple_crypto.dylib arm64  <26fe924005203d45aee4a14f5cb64434> /usr/lib/libapple_crypto.dylib
       0x1858d1000 -        0x1858e7fff  libapple_nghttp2.dylib arm64  <ff88135792b639679509b309f0c0cad9> /usr/lib/libapple_nghttp2.dylib
       0x1858e8000 -        0x185911fff  libarchive.2.dylib arm64  <957aea53942d3afc91420044f6ae5112> /usr/lib/libarchive.2.dylib
       0x185912000 -        0x1859c3fff  libboringssl.dylib arm64  <3c4640e6332d3b44a79759034630ce2a> /usr/lib/libboringssl.dylib
       0x1859c4000 -        0x1859dbfff  libcoretls.dylib arm64  <c2287d06413f32c2aee0e6c3313d98c7> /usr/lib/libcoretls.dylib
       0x1859dc000 -        0x1859ddfff  libcoretls_cfhelpers.dylib arm64  <503fb7729cbe382ea1e0a315e7bd87ba> /usr/lib/libcoretls_cfhelpers.dylib
       0x1859de000 -        0x1859dffff  liblangid.dylib arm64  <11d94ede5ab1300a820d96e3374f53fa> /usr/lib/liblangid.dylib
       0x1859e0000 -        0x185ab3fff  libnetwork.dylib arm64  <ba7d2d20eb3a32ac802209e5f7008280> /usr/lib/libnetwork.dylib
       0x185ab4000 -        0x185ae6fff  libpcap.A.dylib arm64  <419a8dd2325a326c81b4b02d849ce562> /usr/lib/libpcap.A.dylib
       0x185ae7000 -        0x185b1bfff  libusrtcp.dylib arm64  <227ec64866e53676828e76f89c1e4928> /usr/lib/libusrtcp.dylib
       0x185b1c000 -        0x185b25fff  IOSurface arm64  <121f7f9d94d63afb8974ca4b14aadbbf> /System/Library/Frameworks/IOSurface.framework/IOSurface
       0x185b26000 -        0x185bcbfff  libBLAS.dylib arm64  <05ecdd31f9573a069c0e8b3d610bbc3f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
       0x185bcc000 -        0x185efbfff  libLAPACK.dylib arm64  <3e55f73c8a4c329d8bb7f5e58ed687c3> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
       0x185efc000 -        0x186168fff  vImage arm64  <7fabce5d1fe83c38aa998440146eb09b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
       0x186169000 -        0x18617afff  libSparseBLAS.dylib arm64  <88335b280db13b3d812ee89998bc363c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
       0x18617b000 -        0x18619ffff  libvMisc.dylib arm64  <20da313fe2343db189a04c72928eb120> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
       0x1861a0000 -        0x1861cafff  libBNNS.dylib arm64  <19481dd658fb3f949cc1874250cfead5> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
       0x1861cb000 -        0x1861e0fff  libLinearAlgebra.dylib arm64  <0f6e8d5a7dd8384ebb8a873c2caa7ad7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
       0x1861e1000 -        0x1861e5fff  libQuadrature.dylib arm64  <124a57c41e3e3956b46e10d49ddf8fe1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
       0x1861e6000 -        0x18623cfff  libSparse.dylib arm64  <c7def66b4a4c3f29b55fcbdcf881e3f2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
       0x18623d000 -        0x1862b5fff  libvDSP.dylib arm64  <4bf846f47a0e309db93bbbc791720463> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
       0x1862b6000 -        0x1862b6fff  vecLib arm64  <86cdd48d842334dd831b1fc0e2b0270f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
       0x1862b7000 -        0x1862b7fff  Accelerate arm64  <01d515c3376c332799f14694934ed70b> /System/Library/Frameworks/Accelerate.framework/Accelerate
       0x1862b8000 -        0x1862cdfff  libcompression.dylib arm64  <b1a3a8c4b3a6301da874dc2af4a50920> /usr/lib/libcompression.dylib
       0x1862ce000 -        0x186812fff  CoreGraphics arm64  <84200292e2373b96bde75a022c9eeacf> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
       0x186813000 -        0x186818fff  IOAccelerator arm64  <e66452fc19ef3af29dac52b16e6cb128> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
       0x186819000 -        0x18681efff  libCoreFSCache.dylib arm64  <ac1882646b0c3cccb69dfc5246995396> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
       0x18681f000 -        0x1868b9fff  Metal arm64  <ef4fbbbcfa2b38928f3c8ec471c8cde6> /System/Library/Frameworks/Metal.framework/Metal
       0x1868ba000 -        0x1868cdfff  GraphicsServices arm64  <60c9cc9a0df43872a837f0ddb03140a5> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
       0x1868ce000 -        0x186a26fff  MobileCoreServices arm64  <dcdc67868d5a370185e0242a11a54054> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
       0x186a27000 -        0x186a29fff  IOSurfaceAccelerator arm64  <cf8349e45ac1355386a2d94794f075e4> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
       0x186a2a000 -        0x186a6bfff  AppleJPEG arm64  <9ee4b3efde073642af80e42915e2f46c> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
       0x186a6c000 -        0x18701cfff  ImageIO arm64  <ab5dbbc48a64389487f5572f13867857> /System/Library/Frameworks/ImageIO.framework/ImageIO
       0x18701d000 -        0x187081fff  BaseBoard arm64  <763fe7d346a337e68e1b067d7359b9f6> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
       0x187082000 -        0x187099fff  AssertionServices arm64  <eac3dcdc35103304b3dc72ce0c8a0a07> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
       0x18709a000 -        0x1870a2fff  CorePhoneNumbers arm64  <d4693a21c4e83fb09a52ddb833dc793c> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
       0x1870a3000 -        0x1870e7fff  AppSupport arm64  <8f2f75f2c4853c7e8e7d9739e12d45cd> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
       0x1870e8000 -        0x187100fff  CrashReporterSupport arm64  <18930e85456c3eb39fe19a4fe0a7d171> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
       0x187101000 -        0x187106fff  AggregateDictionary arm64  <95f98162fc7836268686104aabee8c12> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
       0x187107000 -        0x187188fff  libTelephonyUtilDynamic.dylib arm64  <0d366024d6da340a93979ccdec97be29> /usr/lib/libTelephonyUtilDynamic.dylib
       0x187189000 -        0x1871a8fff  ProtocolBuffer arm64  <9bf97e1248b13b959d7a10a0dc8bcaf7> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
       0x1871a9000 -        0x1871d4fff  MobileKeyBag arm64  <f7fe398063d1384291d2c0f09c64e9e1> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
       0x1871d5000 -        0x187209fff  BackBoardServices arm64  <6c304c21d68037e9b0646f0deb25ca58> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
       0x18720a000 -        0x187265fff  FrontBoardServices arm64  <6fb061c48f653be48d29f133e1cda578> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
       0x187266000 -        0x1872a2fff  SpringBoardServices arm64  <21b76097326c3a008eed2a77084a3f1e> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
       0x1872a3000 -        0x1872b1fff  PowerLog arm64  <b88d155999433dfb9850b7159809529e> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
       0x1872b2000 -        0x1872cffff  CommonUtilities arm64  <c93c41c50d3f3f48865808dbc37f3b8a> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
       0x1872d0000 -        0x1872dbfff  liblockdown.dylib arm64  <3f0340a84dc533789f81ee18818c6564> /usr/lib/liblockdown.dylib
       0x1872dc000 -        0x1875defff  CoreData arm64  <2228ace9ad8e381893664325ab627965> /System/Library/Frameworks/CoreData.framework/CoreData
       0x1875df000 -        0x1875e5fff  TCC arm64  <a26916f3c09f332da85ef22df54c9862> /System/Library/PrivateFrameworks/TCC.framework/TCC
       0x1875e6000 -        0x1875edfff  libcupolicy.dylib arm64  <0e601fb410e03f58a540190040be0570> /usr/lib/libcupolicy.dylib
       0x1875ee000 -        0x18767afff  CoreTelephony arm64  <b96ce755f62c395cbb93e90dbf128892> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
       0x18767b000 -        0x1876d1fff  Accounts arm64  <6847536ea2373c7388fb9081c9dbbadd> /System/Library/Frameworks/Accounts.framework/Accounts
       0x1876d2000 -        0x1876fbfff  AppleSauce arm64  <3bbfd85a193f3a529cd5fa4ce93b6a87> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
       0x1876fc000 -        0x187704fff  DataMigration arm64  <241a0384f6d630b496686b1f454a82e4> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
       0x187705000 -        0x18770bfff  Netrb arm64  <eff36ad08b493f15a80e93aa57cb7672> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
       0x18770c000 -        0x18773ffff  PersistentConnection arm64  <e053741bde6f318b93de7c35c2a9db61> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
       0x187740000 -        0x187751fff  libmis.dylib arm64  <f864082f4e9b3830a0e050fce4352f14> /usr/lib/libmis.dylib
       0x187752000 -        0x187852fff  ManagedConfiguration arm64  <cc35838fdd2939999a226213f56ab5e9> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
       0x187853000 -        0x187858fff  libReverseProxyDevice.dylib arm64  <8578d96ba38c3027ba0d802eba838736> /usr/lib/libReverseProxyDevice.dylib
       0x187859000 -        0x18786afff  libamsupport.dylib arm64  <aefcd7ec80cf32ffb612b2d508ec4434> /usr/lib/libamsupport.dylib
       0x18786b000 -        0x187870fff  libCoreVMClient.dylib arm64  <017bacb6b7e83fdda154764e0492358a> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
       0x187871000 -        0x187872fff  libCVMSPluginSupport.dylib arm64  <0ea33c2e6344361db9a3c8fa83948ebe> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
       0x187873000 -        0x187876fff  libutil.dylib arm64  <b82455fcf10c34ddbe0871d7e6998071> /usr/lib/libutil.dylib
       0x187877000 -        0x1878b8fff  libGLImage.dylib arm64  <9ac83085267733acb9bc652dd70dcc2d> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
       0x1878b9000 -        0x187929fff  APFS arm64  <b37bd4abf8fc37f985190265ad8dca3e> /System/Library/PrivateFrameworks/APFS.framework/APFS
       0x18792a000 -        0x18795bfff  MediaKit arm64  <41ac5f40d9c43b5cad406fd5ec592d31> /System/Library/PrivateFrameworks/MediaKit.framework/MediaKit
       0x18795c000 -        0x187974fff  libSERestoreInfo.dylib arm64  <73db2cd529163f2591a962e7d2911a53> /usr/lib/updaters/libSERestoreInfo.dylib
       0x187979000 -        0x1879b5fff  DiskImages arm64  <4bc2acb597e63ef3a3ac9225ec7ab2f3> /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
       0x1879b6000 -        0x1879c0fff  libGFXShared.dylib arm64  <f53963ffa07f3455a080784a939f3027> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
       0x1879c1000 -        0x187a07fff  libauthinstall.dylib arm64  <d769efe64c5a3b519087c768cd609565> /usr/lib/libauthinstall.dylib
       0x187a08000 -        0x187a10fff  IOMobileFramebuffer arm64  <c293967d42ae3c1bae785619369433bd> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
       0x187a11000 -        0x187a1cfff  OpenGLES arm64  <1d31b8472eef34d1a8bbd0cefa8c7927> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
       0x187a1d000 -        0x187aa4fff  ColorSync arm64  <33046de8138635a29227b3a477d00dd7> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
       0x187aa5000 -        0x187acffff  CoreVideo arm64  <6b2310090f9b37f5baf0378866ec978d> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
       0x187ad0000 -        0x187ad1fff  libCTGreenTeaLogger.dylib arm64  <3c8d18c26d0b3c24974f155ffb880787> /usr/lib/libCTGreenTeaLogger.dylib
       0x187ad2000 -        0x187c34fff  CoreAudio arm64  <c5554e700acf38d58cdfe448135184c5> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
       0x187c35000 -        0x187c63fff  CoreAnalytics arm64  <8300701d98d7319689110ee40b2120b5> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
       0x187c64000 -        0x187c67fff  UserFS arm64  <0470e2fc32c0303c816947cdb954d434> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
       0x187c68000 -        0x187ddbfff  CoreMedia arm64  <7d2c0d08b8833096beb8562460382a8d> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
       0x187ddc000 -        0x187deefff  libprotobuf-lite.dylib arm64  <2ed5fd0c82f8337b96e17a7b1846b878> /usr/lib/libprotobuf-lite.dylib
       0x187def000 -        0x187e53fff  libprotobuf.dylib arm64  <0a967243387e32aeb31a8b5ceeac3718> /usr/lib/libprotobuf.dylib
       0x187e54000 -        0x188131fff  libAWDSupportFramework.dylib arm64  <db0f4644d45938e39bdace7ecc5c6eeb> /usr/lib/libAWDSupportFramework.dylib
       0x188132000 -        0x188178fff  WirelessDiagnostics arm64  <24442ae5cff4329fad51f2efd6cb9ec9> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
       0x188179000 -        0x188231fff  VideoToolbox arm64  <f5145552cee039648c7e5691ca45bd42> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
       0x188232000 -        0x18833dfff  libFontParser.dylib arm64  <21220ffc653432808d5d09df7698e61b> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
       0x18833e000 -        0x18833ffff  FontServices arm64  <e17c3dd6d3733750a4a1b82ac527ba53> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
       0x188340000 -        0x18848ffff  CoreText arm64  <dbab05410da4301782ad6922d55546a0> /System/Library/Frameworks/CoreText.framework/CoreText
       0x188490000 -        0x18849ffff  IntlPreferences arm64  <7aafcdb73e8e3a7690ea5b2cf667afaa> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
       0x1884a0000 -        0x1884a8fff  RTCReporting arm64  <278400bd508c38768e2972eb594ab959> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
       0x1884a9000 -        0x188516fff  CoreBrightness arm64  <95be0f7b665835619b8a4fca3388ec48> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
       0x188517000 -        0x188522fff  libAudioStatistics.dylib arm64  <3d794f8dcc493d2195d6929f4d09b38d> /usr/lib/libAudioStatistics.dylib
       0x188523000 -        0x188a72fff  AudioToolbox arm64  <5856a9cad5ad3f88ae48a2c580dccc0c> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
       0x188a73000 -        0x188ca3fff  QuartzCore arm64  <66977459f63f39ac96813aef68ff0eaf> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
       0x188ca4000 -        0x188caffff  MediaAccessibility arm64  <78f4363eea97331495885cfaddd39d12> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
       0x188cb0000 -        0x188da2fff  libiconv.2.dylib arm64  <28fec549f7f6396483fb3b04c800adcb> /usr/lib/libiconv.2.dylib
       0x188da3000 -        0x188dbffff  NetworkStatistics arm64  <73ff6f9af8f43ec5bbb4772b6d7c6671> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
       0x188dc0000 -        0x188dd5fff  MPSCore arm64  <f17598623cb432f2a175ce166396bbea> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
       0x188dd6000 -        0x188e3afff  MPSImage arm64  <b860f467ef823f7f9c1e54002d4a2d31> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
       0x188e3b000 -        0x188e5bfff  MPSMatrix arm64  <9d69c1f2cff932ce82dd6fea51bfa313> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
       0x188e5c000 -        0x188e6afff  CoreAUC arm64  <707e9d20bc113658afececb44cd65468> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
       0x188e6b000 -        0x1894eefff  MediaToolbox arm64  <47df3e1782983a2babda38fcaf1539ac> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
       0x1894ef000 -        0x1895b5fff  MPSNeuralNetwork arm64  <ad66eabd1b0232539656f3699ece6c1c> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
       0x1895b6000 -        0x1895b6fff  MetalPerformanceShaders arm64  <968c8d8650a6345e99c11a24d4908a14> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
       0x1895b7000 -        0x1899eafff  FaceCore arm64  <d2dbc5ac047a3a3086d71339f3e4baad> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
       0x1899eb000 -        0x1899f8fff  GraphVisualizer arm64  <6babaa2dbd4237638afddfbe7a50eef6> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
       0x1899f9000 -        0x189b9efff  libFosl_dynamic.dylib arm64  <8dade3ca46eb36ba918cabaae25e7279> /usr/lib/libFosl_dynamic.dylib
       0x189b9f000 -        0x189e04fff  CoreImage arm64  <fb0038da9f393be4bf10a072d87f06fa> /System/Library/Frameworks/CoreImage.framework/CoreImage
       0x189e05000 -        0x189ff3fff  CoreMotion arm64  <d4e50e15fed83c6c8910b3f176fb9d75> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
       0x189ff4000 -        0x18a022fff  CoreBluetooth arm64  <0a6e2ddd19833f11aef2db9eac09b767> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
       0x18a023000 -        0x18a045fff  PlugInKit arm64  <58516352e5423efcae9a5e91b2f0dd01> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
       0x18a046000 -        0x18a270fff  Celestial arm64  <9b7337f0725c3eda8d2c4b65555e95d7> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
       0x18a271000 -        0x18a2f3fff  Quagga arm64  <881da54d257d32bab10fe8f51c9267a1> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
       0x18a2f4000 -        0x18a3edfff  AVFAudio arm64  <767d3ec2f13a303cb1892207c94db016> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
       0x18a3ee000 -        0x18a5dcfff  AVFoundation arm64  <237969258f323f1eb2562d4dd4f95aef> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
       0x18a5dd000 -        0x18a600fff  CacheDelete arm64  <8510e8ab56db3d5995706cc99293a006> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
       0x18a601000 -        0x18a626fff  StreamingZip arm64  <c16c7b4c281a3649ac6e446cd24faba1> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
       0x18a627000 -        0x18a638fff  CoreEmoji arm64  <0fed33cbda37338b9a43e1ef58c8e0f2> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
       0x18a639000 -        0x18a687fff  CoreLocationProtobuf arm64  <7c704f35846b3bb3abd87bbeac17725e> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
       0x18a688000 -        0x18a68ffff  SymptomDiagnosticReporter arm64  <f2889f7d3709300b9705b2f211eb795f> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
       0x18a690000 -        0x18af90fff  GeoServices arm64  <b78713b86cac34b19772734e7a101333> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
       0x18af91000 -        0x18afa8fff  MobileAsset arm64  <135ac14d29573717a5aca07db0a1066e> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
       0x18afa9000 -        0x18afeafff  Lexicon arm64  <26e262cea357360f896ec150d8e7e0fe> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
       0x18afeb000 -        0x18affbfff  libcmph.dylib arm64  <8b492aa79dc5318481752d5cba68e84b> /usr/lib/libcmph.dylib
       0x18affc000 -        0x18b118fff  LanguageModeling arm64  <c297b33f937532a1bdfb93eaeac4585f> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
       0x18b119000 -        0x18b130fff  libmarisa.dylib arm64  <948c4447eef032a2bd7fdb0d5860359c> /usr/lib/libmarisa.dylib
       0x18b131000 -        0x18b1cbfff  CoreLocation arm64  <4f98821d01ee39e3b2cda430fb77ff49> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
       0x18b1cc000 -        0x18b1ccfff  PhoneNumbers arm64  <3aa5a16bf8123be8b4f1ea9ab4293e80> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
       0x18b1cd000 -        0x18b1d8fff  libChineseTokenizer.dylib arm64  <19ddc4b9d0f13f2183631824651c70c9> /usr/lib/libChineseTokenizer.dylib
       0x18b1d9000 -        0x18b286fff  libmecab_em.dylib arm64  <0a7c2fd4dd613449a0bdae35e1c05621> /usr/lib/libmecab_em.dylib
       0x18b287000 -        0x18b288fff  libThaiTokenizer.dylib arm64  <235c653d8a4f3a778f71258342a49c87> /usr/lib/libThaiTokenizer.dylib
       0x18b289000 -        0x18b28dfff  libgermantok.dylib arm64  <21224ee62107366c8c6c1af241c5b9b5> /usr/lib/libgermantok.dylib
       0x18b28e000 -        0x18b2e6fff  CoreNLP arm64  <631fdf115f0c3047a3ca6dd7b28c073b> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
       0x18b2e7000 -        0x18b4a5fff  MobileSpotlightIndex arm64  <cd13d8305e4230e6b001ff9d173470c3> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
       0x18b4a6000 -        0x18b505fff  CoreSpotlight arm64  <1d631a5f5b8834c48d6719d79b772bc8> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
       0x18b512000 -        0x18bee4fff  JavaScriptCore arm64  <f8ccf929435534c7bafa70746e9b95f9> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
       0x18bee5000 -        0x18beeafff  libheimdal-asn1.dylib arm64  <1dc1aa4421fe3ddea53a07080c5058c6> /usr/lib/libheimdal-asn1.dylib
       0x18beeb000 -        0x18bf65fff  libate.dylib arm64  <bb4173dd632f3d9baf425608ec3ad1a7> /usr/lib/libate.dylib
       0x18bf66000 -        0x18c008fff  TextureIO arm64  <57a2d0b6d5fd36de9f35834757dd6e1e> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
       0x18c009000 -        0x18c0d3fff  CoreUI arm64  <69a9ab41133d3819be7437b4d9fc58c3> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
       0x18c0d4000 -        0x18c0ddfff  MobileIcons arm64  <4a020d6be6443a5cb093a703e301507f> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
       0x18c0de000 -        0x18c0ecfff  AppleFSCompression arm64  <e91d533eee543737900020f2b6dd1209> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
       0x18c0ed000 -        0x18c146fff  TextInput arm64  <4eb2ccd7f165345f9253c62faf5de39f> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
       0x18c1a6000 -        0x18c23bfff  FileProvider arm64  <29753c5b5f3e32b2881f8c44ddcf4cd9> /System/Library/Frameworks/FileProvider.framework/FileProvider
       0x18c415000 -        0x18c429fff  libAccessibility.dylib arm64  <f9278e55ebdc34528a01f614a78def92> /usr/lib/libAccessibility.dylib
       0x18c42a000 -        0x18c882fff  libwebrtc.dylib arm64  <cbe7d01cc0113edcb4be72bfb604ce8d> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
       0x18c883000 -        0x18c8e3fff  ContactsFoundation arm64  <8e3781f5e5a23366907c2fdc447ab008> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
       0x18c8e4000 -        0x18dc90fff  WebCore arm64  <17b029bf848431a4b7613b41708aca64> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
       0x18dc91000 -        0x18de03fff  WebKitLegacy arm64  <eb2a2de9272a39b3a671d66f07c2fb87> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
       0x18de04000 -        0x18de2cfff  DataAccessExpress arm64  <14e9e1270dca3e0c90bf867c08dbc188> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
       0x18de2d000 -        0x18dec5fff  AddressBookLegacy arm64  <6ad817e759b23b499aa3eccfde7d766c> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
       0x18dec6000 -        0x18df1dfff  ProtectedCloudStorage arm64  <5a4c02583e573b2abfdb24da350b7e98> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
       0x18df1e000 -        0x18df4afff  UserNotifications arm64  <1acc9bc755ae33708ad7a5eeadf6b8ec> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
       0x18df4b000 -        0x18df56fff  AppleIDAuthSupport arm64  <e320d30ed9eb361295151481bd624549> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
       0x18df57000 -        0x18dfa5fff  AuthKit arm64  <7ea243ecc77b3aa7b24375b3e1d079d5> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
       0x18dfd0000 -        0x18e023fff  DocumentManager arm64  <ccce6da1d4c638ea97d53cdf51377e7c> /System/Library/Frameworks/UIKit.framework/Frameworks/DocumentManager.framework/DocumentManager
       0x18e024000 -        0x18f0a9fff  UIKit arm64  <63bb42d77c7a3152a4a305f534779a61> /System/Library/Frameworks/UIKit.framework/UIKit
       0x18f0aa000 -        0x18f0bbfff  DocumentManagerCore arm64  <591ab729d9e53d3c818125db9a5a252a> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
       0x18f0bc000 -        0x18f0c0fff  HangTracer arm64  <f66e4e75e8073b9290d9723d324edb88> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
       0x18f0c1000 -        0x18f113fff  PhysicsKit arm64  <5506b2a20d883442a4cad88e1b49475b> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
       0x18f114000 -        0x18f116fff  StudyLog arm64  <cc3048f6ddea3203be8c9078e8334198> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
       0x18f117000 -        0x18f1f7fff  UIFoundation arm64  <fa727d25bd7432f3afe426784ff9cdd1> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
       0x18f1f8000 -        0x18f304fff  CloudKit arm64  <b6e98437c800397bb600258e4876eff5> /System/Library/Frameworks/CloudKit.framework/CloudKit
       0x18f305000 -        0x18f305fff  IntentsFoundation arm64  <bddd7668dee33f8894f87e72b5179805> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
       0x18f306000 -        0x18f3cffff  Network arm64  <231cd3af11133afbb61078d2e0a72813> /System/Library/PrivateFrameworks/Network.framework/Network
       0x18f3d0000 -        0x18f5dafff  Intents arm64  <464982043f213c9a9b6e863c59fe30d2> /System/Library/Frameworks/Intents.framework/Intents
       0x18f5db000 -        0x18f5f6fff  libresolv.9.dylib arm64  <1243b6c2a9b93b79898311cb8d37d87a> /usr/lib/libresolv.9.dylib
       0x18f5f7000 -        0x18f5f9fff  CoreDuetDebugLogging arm64  <40fcd2a0492a3138ab50daa0fc539408> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
       0x18f5fa000 -        0x18f62efff  libtidy.A.dylib arm64  <f8dae748d73237b985dd34f9ef9f953f> /usr/lib/libtidy.A.dylib
       0x18f62f000 -        0x18f759fff  CoreDuet arm64  <8391cd7b01893c7bb5567c9566d16c48> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
       0x18f75a000 -        0x18f778fff  CoreDuetContext arm64  <aad357044daa31bab4f12fa570ae8386> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
       0x18f779000 -        0x18f78dfff  CoreDuetDaemonProtocol arm64  <c414be876f203f2c98812d573be9bafa> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
       0x18f78e000 -        0x18f7f9fff  IMFoundation arm64  <6b6422289ce939baafbfe0508edc2b13> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
       0x18f7fa000 -        0x18f828fff  vCard arm64  <b0a50e4baac93faa8dcdeb7d37e521d1> /System/Library/PrivateFrameworks/vCard.framework/vCard
       0x18f829000 -        0x18f934fff  Contacts arm64  <4e8acc9e76de3e49a6264964058223e4> /System/Library/Frameworks/Contacts.framework/Contacts
       0x18f935000 -        0x18f936fff  DiagnosticLogCollection arm64  <aa5b7374194e3a0ebd05d5213e33f94b> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
       0x18f937000 -        0x18f938fff  Marco arm64  <db4311c1bca83d24afacd3db6518f2b3> /System/Library/PrivateFrameworks/Marco.framework/Marco
       0x18f939000 -        0x18f93ffff  MessageProtection arm64  <6dc7651d32053fbf96d333c60519bc43> /System/Library/PrivateFrameworks/MessageProtection.framework/MessageProtection
       0x18f940000 -        0x18fc46fff  StoreServices arm64  <eed397d3163f358db76c1d5ebaf7e4f6> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
       0x18fc47000 -        0x18fc5ffff  Engram arm64  <edec7faf180d37b2a646533a7ad7069e> /System/Library/PrivateFrameworks/Engram.framework/Engram
       0x18fc60000 -        0x18fd52fff  IDSFoundation arm64  <41b4c422367139d4ab112879dd6f6ee3> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
       0x18fd53000 -        0x18fd5efff  CaptiveNetwork arm64  <68930edfd9593c61be8952bd70f75bf9> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
       0x18fd5f000 -        0x18fd8dfff  EAP8021X arm64  <0b795c120aaa38a1a91860a611284c58> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
       0x18fd8e000 -        0x18fdc8fff  MobileWiFi arm64  <29fe25fde1de390ba1fc5e51850a17d3> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
       0x18fdc9000 -        0x18fdcbfff  OAuth arm64  <1ca9fd6c48a437948124d95ae53825e7> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
       0x18fdcc000 -        0x18fdcefff  CommonAuth arm64  <35c1af3f71213eaeb19292fda822e67a> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
       0x18fdcf000 -        0x18fe3dfff  Heimdal arm64  <f744238528d13568a383cd02c2c3c17a> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
       0x18fe3e000 -        0x18fe67fff  GSS arm64  <39131c5b25f33207829d786ea5d2837e> /System/Library/Frameworks/GSS.framework/GSS
       0x18fe68000 -        0x18fe7ffff  ApplePushService arm64  <d5e2e4944c4d3e1faa66dab4d1f90d6f> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
       0x18fe80000 -        0x18ff18fff  AccountsDaemon arm64  <303267dfcfa23f4eba9af44f724879be> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
       0x18ff19000 -        0x18ff37fff  AppleIDSSOAuthentication arm64  <a2ad71e90a133bbbaeab3ab0d1ff4ff7> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
       0x18ff38000 -        0x18ffaafff  AppleAccount arm64  <cd5e7605d3b2364291dd1a1c18369b8d> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
       0x18ffab000 -        0x1900befff  CoreUtils arm64  <572166133ddc3056aa0f87d05fc39b12> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
       0x1900bf000 -        0x1901d8fff  IDS arm64  <e8c5adf666fa395487717253f7dabe1e> /System/Library/PrivateFrameworks/IDS.framework/IDS
       0x1901d9000 -        0x1901fafff  MediaServices arm64  <58cd7ac73c8d3fbea1130cbd4c8d6064> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
       0x1901fb000 -        0x19035ffff  MediaRemote arm64  <f214ad97f14b3e4fa92d19875f7beedc> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
       0x190360000 -        0x190376fff  UserManagement arm64  <37e9f071230432efb4de36fccf3974d6> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
       0x190387000 -        0x1903b7fff  Bom arm64  <1687a8ce9c5030df8b0b6338bd5f168e> /System/Library/PrivateFrameworks/Bom.framework/Bom
       0x1903b8000 -        0x1903bcfff  CommunicationsFilter arm64  <59084d88ea733e4ab9f6d81ebeea61ac> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
       0x1903bd000 -        0x1903e2fff  FTAWD arm64  <4e5e93f600b73542bd17d45153d0f4ca> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
       0x1903e3000 -        0x190436fff  FTServices arm64  <d10443472e333174badf6c90bed39b9c> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
       0x190437000 -        0x190489fff  WirelessProximity arm64  <ced3be636c6838769f8f07a7b2ed1685> /System/Library/PrivateFrameworks/WirelessProximity.framework/WirelessProximity
       0x19048a000 -        0x19049efff  ProactiveEventTracker arm64  <684b2a827fd03675a51d5f33139b1978> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
       0x19049f000 -        0x1904f0fff  ChunkingLibrary arm64  <118a49d396bd312cb2a149a061813c8d> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
       0x1904f1000 -        0x1904fdfff  libnetworkextension.dylib arm64  <969fc737cd7c3812a8e11b396fd14f1f> /usr/lib/libnetworkextension.dylib
       0x1904fe000 -        0x190522fff  AddressBook arm64  <6bf7a3ae474d3d32bc8f7bab92e4e544> /System/Library/Frameworks/AddressBook.framework/AddressBook
       0x1912fb000 -        0x191490fff  NetworkExtension arm64  <75cb9b101c8936d0a49ccf229b36bc00> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
       0x191491000 -        0x191894fff  SiriTTS arm64  <85bc1195f02b350cad0c507fc0e9b859> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
       0x191895000 -        0x1918eefff  SAObjects arm64  <e499a9dd9ed03f02a0ac397841fa0977> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
       0x1918ef000 -        0x19192cfff  VoiceServices arm64  <1b46a00eef7d3174a3f3f63568c71e65> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
       0x19195e000 -        0x191a41fff  AssistantServices arm64  <b311b53535383151a673756484cba7b7> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
       0x191a42000 -        0x191a49fff  AssetCacheServices arm64  <065bdc6672843b94985ca785a4889c2c> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
       0x191a4a000 -        0x191b04fff  NetworkServiceProxy arm64  <7270a6a9ae8036ab88d882352bb51e47> /System/Library/PrivateFrameworks/NetworkServiceProxy.framework/NetworkServiceProxy
       0x191b05000 -        0x191bfafff  MMCS arm64  <36d1198f00a63b389e137333dd53251f> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
       0x191c08000 -        0x191c79fff  CoreDAV arm64  <2b8c3a76866d37389d07f97118dc177e> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
       0x191c7a000 -        0x191caefff  iCalendar arm64  <00a6da1e12ad3aa9a40e09d0e98c1a65> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
       0x191caf000 -        0x191cbdfff  PersonaKit arm64  <50c8e7f6befb3d6dbc8f4b8560c5536e> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
       0x191cbe000 -        0x191d18fff  CalendarFoundation arm64  <88351d14d0c53df78d7bef9d37732014> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
       0x191d19000 -        0x191d46fff  PhotosFormats arm64  <1ac9d31535f034229cd2e62a85cc70cf> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
       0x191d47000 -        0x191de3fff  CalendarDatabase arm64  <aea5cc07347a35e7ac7b035bec99bcb8> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
       0x191de4000 -        0x191e35fff  CalendarDaemon arm64  <5a4f13d8fcac3a888ab10c31789b736f> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
       0x191e36000 -        0x191f54fff  CloudPhotoLibrary arm64  <3090eb778bf83102b9693a3819c8d657> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
       0x191f55000 -        0x192039fff  EventKit arm64  <0084b9612435327aba71161ba7ba1254> /System/Library/Frameworks/EventKit.framework/EventKit
       0x19203a000 -        0x192064fff  AssetsLibraryServices arm64  <698f27791d7034a689c77fd45f1cef73> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
       0x192065000 -        0x192099fff  ACTFramework arm64  <30c48c06532734ffb365afdd8c3b9f14> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework
       0x19209a000 -        0x1920bafff  DCIMServices arm64  <8c9a59ca94a23c0599e0b5f89f9d8990> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
       0x1920bb000 -        0x1921f5fff  CoreMediaStream arm64  <f8cf05ed94a43506a5adc8fffe6d8d34> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
       0x1921f6000 -        0x1921fdfff  XPCKit arm64  <92f06031b48134d9b54bc9ec5b7f1a7a> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
       0x1921fe000 -        0x1922e4fff  CameraKit arm64  <91088223dc9734c7b79b6af1c8ed6ca7> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit
       0x1922e5000 -        0x1922fdfff  CloudPhotoServices arm64  <72e95f7d4dc934d3b162de9b862b5999> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
       0x1922fe000 -        0x192309fff  CoreRecents arm64  <32ef08ca2b40314282ee7ef190a22580> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
       0x19230a000 -        0x192328fff  MediaStream arm64  <4be5138a6f033789a3febfc7d1fb0463> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
       0x192329000 -        0x19274bfff  PhotoLibraryServices arm64  <6489f89144ee3db0b91b46b8644370b9> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
       0x19280f000 -        0x19293cfff  SearchFoundation arm64  <605cb19d691d397d96ea1d4283ee47d3> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
       0x192944000 -        0x1929edfff  iTunesStore arm64  <e0be60e8ccd63484b6da6dea8dda6bf6> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
       0x192b61000 -        0x192b68fff  CoreTime arm64  <ef89af2891023b5ba25f7c5238a65f81> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
       0x192d20000 -        0x192d56fff  DifferentialPrivacy arm64  <e8cd80cc069e3861b5b4801ecbf03175> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
       0x193139000 -        0x19313cfff  MobileSystemServices arm64  <94279498cdbc3128a9dbdfec9a2b11ff> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
       0x193466000 -        0x19346afff  CoreOptimization arm64  <6e61942f08953dd79fd44cc9d4d744f1> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
       0x19346b000 -        0x1934a8fff  SafariCore arm64  <e48385ff069e3aee9750fa167847ae2a> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
       0x1934a9000 -        0x193503fff  CorePrediction arm64  <cbba5beaa97f3f4f8d1803b796592eb1> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
       0x193504000 -        0x193601fff  Navigation arm64  <6e9d43be24e83bd69946d2c753eac763> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
       0x193602000 -        0x19361afff  ContactsDonation arm64  <850e4dad3a1e35cbb43225944027046f> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
       0x1936f3000 -        0x19374bfff  ContactsUICore arm64  <a2781bb6bc043f6cbc0203433093616b> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
       0x19374c000 -        0x1938b0fff  ContactsUI arm64  <8db1cf7a61153acf8930085673dc45ee> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
       0x1938b1000 -        0x19398dfff  CorePDF arm64  <22a974d195923e16a509bd49b06b1fdc> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
       0x193bef000 -        0x193f9efff  WebKit arm64  <78b19dea30573176a37ee0092e22b716> /System/Library/Frameworks/WebKit.framework/WebKit
       0x194059000 -        0x19405efff  ConstantClasses arm64  <54dae35faf09384087e3b0b13b2e119f> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
       0x19405f000 -        0x194067fff  CertUI arm64  <b699133afdc9395d8d5042b70a656476> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
       0x194150000 -        0x1941ecfff  MediaPlatform arm64  <b1a2014666ea35abaf09c4e2b9464729> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
       0x1941ed000 -        0x19424cfff  WebBookmarks arm64  <f8ccbfd103623f2dbcec8e19359e3920> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
       0x19424d000 -        0x194253fff  DAAPKit arm64  <1489e0c7529436419e775108edc2851e> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
       0x194346000 -        0x19461efff  MediaLibraryCore arm64  <02248f50390733a9b45fe8969af53700> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
       0x194620000 -        0x19489efff  MusicLibrary arm64  <6ddc4b85c8e63282ab77faa15ab06b14> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
       0x19489f000 -        0x194f27fff  VectorKit arm64  <80e45f0d02973b81a25b9f8933b359ed> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
       0x194f28000 -        0x195165fff  MapKit arm64  <b159fe592a273823897c1700c7a9a619> /System/Library/Frameworks/MapKit.framework/MapKit
       0x195166000 -        0x1952defff  iTunesCloud arm64  <ba5787ebac97338a9cc3126d539ca42a> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
       0x1952df000 -        0x19537ffff  HomeSharing arm64  <8d47fbe5e22a3508aea12b531cebe07e> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
       0x1954ef000 -        0x19594bfff  MediaPlayer arm64  <9cd3159587c4334cb1b0c1d9000647f3> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
       0x19594c000 -        0x195971fff  MobileInstallation arm64  <d0101b2690a23497b076bf9228df2639> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
       0x195972000 -        0x195978fff  EmailAddressing arm64  <4f7608603bbb3369aad9abb08f62d8d7> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
       0x195979000 -        0x19597bfff  MessageSupport arm64  <602ecf8e71b53f969946ea63085fee81> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
       0x19597f000 -        0x1959dafff  MIME arm64  <899cda88811c3fa4952615b77fc80a77> /System/Library/PrivateFrameworks/MIME.framework/MIME
       0x195a0b000 -        0x195a43fff  Notes arm64  <872aa8ea8d383e66940ef74179811fc0> /System/Library/PrivateFrameworks/Notes.framework/Notes
       0x195b4c000 -        0x195ba7fff  DataAccess arm64  <b43109e66f9c3507ad72d0059f5be92c> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
       0x195ba8000 -        0x195bbbfff  AssetsLibrary arm64  <0a9e8429c233352c9c9b320506037d25> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
       0x195fc1000 -        0x195fd7fff  CoreFollowUp arm64  <93dc9e73089c3d4fab530a8616e47f74> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
       0x196048000 -        0x196058fff  MailServices arm64  <b0776838b78f3e57b1ba700219f4bf90> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
       0x1960ef000 -        0x19610afff  MailSupport arm64  <2230a40fe77032559bbfd5428fd6bf12> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
       0x19610b000 -        0x19625afff  Message arm64  <7cab7cc94e783cf1b41d8ce61e16b8d1> /System/Library/PrivateFrameworks/Message.framework/Message
       0x196582000 -        0x1965bdfff  ContactsAutocomplete arm64  <c6d2f37a43453da6a96aabd2e1eed361> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
       0x19675b000 -        0x19675efff  FTClientServices arm64  <897631ca933b36f7bb9ed1e8b2e657bb> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
       0x196c76000 -        0x196c81fff  SetupAssistantSupport arm64  <8e5f30aab51e3d4a8d0eb62d834ba0ae> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
       0x196c82000 -        0x196ca9fff  SetupAssistant arm64  <f00552e13f983c3fbc96ddb1eced8a4a> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
       0x19795b000 -        0x197974fff  CoreSDB arm64  <48f162a90ba236e481178e9849e35aa6> /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
       0x197975000 -        0x1979d2fff  IMSharedUtilities arm64  <6115e5af61fb3bb09f26bd60b9456e5e> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
       0x198063000 -        0x198176fff  IMDPersistence arm64  <37779776432a3599a2379d1f28fdc9cc> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
       0x198831000 -        0x198839fff  AddressBookUI arm64  <02e93e3a48663afebec669ef46ef2486> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
       0x198f99000 -        0x199139fff  IMCore arm64  <e79feb206a603f4cbe10b048b66426da> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
       0x199899000 -        0x199993fff  MessageUI arm64  <86d11145916a3a81a425402bbfe289e4> /System/Library/Frameworks/MessageUI.framework/MessageUI
       0x19aea0000 -        0x19aef5fff  CallKit arm64  <9fbaff85ecd43e1ab9c95e5622b14f78> /System/Library/Frameworks/CallKit.framework/CallKit
       0x19af55000 -        0x19afb1fff  IMAVCore arm64  <1dc9bf719d1f3019a7bc0de2f1a11fcb> /System/Library/PrivateFrameworks/IMAVCore.framework/IMAVCore
       0x19d820000 -        0x19d844fff  AppSupportUI arm64  <a834561f64d337958f11376a97856ba4> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
       0x19e57b000 -        0x19e6cffff  libGLProgrammability.dylib arm64  <b7560c85bb5c354fabbcc32378172f6c> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
       0x1a3e1d000 -        0x1a40d2fff  RawCamera arm64  <f9c361f2865338dcbbacb8cf8f910f66> /System/Library/CoreServices/RawCamera.bundle/RawCamera
       0x1a4297000 -        0x1a4348fff  AGXMetalA9 arm64  <7fde8f2cc43236b3af5b9d2f0ecbab3f> /System/Library/Extensions/AGXMetalA9.bundle/AGXMetalA9
       0x1a4354000 -        0x1a4372fff  AppleMetalGLRenderer arm64  <4c13044583f73749b0c2f9def1cea2b8> /System/Library/Extensions/AppleMetalGLRenderer.bundle/AppleMetalGLRenderer
       0x1a4382000 -        0x1a4396fff  libCGInterfaces.dylib arm64  <ad5b2e34ffdd36c4afc9dbbaa93a146f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
       0x1a4397000 -        0x1a47dcfff  AudioCodecs arm64  <70e54b5be4ae32529eb647dee45639c0> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
       0x1a509b000 -        0x1a517dfff  GLEngine arm64  <54df1e2d0f073bfc8144f2889e03c9aa> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
       0x1a6813000 -        0x1a683afff  CoreServicesInternal arm64  <f1e975f233a335eab52a486ec25520a9> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
       0x1a6e09000 -        0x1a6e1afff  libGSFontCache.dylib arm64  <50b74f1d848d3bb693fedc5ec5abcdd4> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
       0x1a6e1b000 -        0x1a6e4dfff  libTrueTypeScaler.dylib arm64  <61cf1230be373f8c8defd2cfe3e8fd79> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
       0x1a777c000 -        0x1a777cfff  libmetal_timestamp.dylib arm64  <f18a626680ea3501b7fdf6042433c155> /System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libmetal_timestamp.dylib
       0x1a85da000 -        0x1a85ddfff  InternationalSupport arm64  <3b40414b65b035ebac8c2f2ecd3be78e> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
       0x1aa34f000 -        0x1aa354fff  TextInputUI arm64  <c60ab0c23a5235fca90ad0601ab45c21> /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
       0x1ac371000 -        0x1ac3a2fff  libclosured.dylib arm64  <aefc8840686d30a88277d7efcb70abaf> /usr/lib/closure/libclosured.dylib
       0x1ac3a3000 -        0x1ac3f5fff  libstdc++.6.dylib arm64  <4df1d316c21733febe1bf87c069dafb4> /usr/lib/libstdc++.6.dylib

Extra Information:

Stack Dump (0x000000016c9fed10-0x000000016c9fee00):

50ED9F6C01000000C4074D8401000000B0782DC001000000E0E930C00100000108000300000000000000000000000000B82B4106010000000200000000000000A0ED9F6C01000000D874D10401000000E0F09F6C0100000080EDC1B5010000007F00000000000000582B41060100000030000000000000000200000000000000B82B410601000000007A241E0100000020EE9F6C010000005072D1040100000040FFE6C001000000307A241E010000002082241E0100000024006EC0DF49888B00000000000000000040C2B50100000004000000000000000F00000000000000D84CC2B5010000000030C2B501000000

Notable Addresses:
{
    "stack at 0x16c9fed68": {
        "address": 7344352640,
        "class": "OS_dispatch_queue_root",
        "ivars": {},
        "type": "objc_object"
    }
}

Application Stats:
{
    "active_time_since_last_crash": 0,
    "active_time_since_launch": 0,
    "application_active": false,
    "application_in_foreground": true,
    "background_time_since_last_crash": 0,
    "background_time_since_launch": 0,
    "launches_since_last_crash": 1,
    "sessions_since_last_crash": 1,
    "sessions_since_launch": 1
}

CrashDoctor Diagnosis: Attempted to dereference garbage pointer 0x8000000004.
Originated at or in a subcall of _mh_execute_header


More information about the gstreamer-devel mailing list