You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cordova.apache.org by kant2002 <gi...@git.apache.org> on 2014/07/27 15:45:24 UTC

[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

GitHub user kant2002 opened a pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21

    CB-7204 Fixed race condition when hiding splash

    

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/kant2002/cordova-plugin-splashscreen master

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #21
    
----
commit 1ea1161425320abfcd51a0f2a09438bd4e9bc7f0
Author: Andrey Kurdyumov <ka...@gmail.com>
Date:   2014-07-27T13:44:41Z

    CB-7204 Fixed race condition in hiding splash

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by jacobg <gi...@git.apache.org>.
Github user jacobg commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-88049413
  
    Ever since I added the splashscreen plugin to my app, I (and customers) have been getting this crash occasionally:
    
    ```
    1	libobjc.A.dylib	objc_msgSend + 22
    2	CoreFoundation	CFRelease + 598
    3	QuartzCore	CA::release_objects(X::List<void const*>*) + 14
    4	QuartzCore	-[CAAnimation dealloc] + 52
    5	libobjc.A.dylib	objc_object::sidetable_release(bool) + 164
    6	libobjc.A.dylib	(anonymous namespace)::AutoreleasePoolPage::pop(void*) + 402
    7	CoreFoundation	__CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 12
    8	CoreFoundation	__CFRunLoopDoTimer + 648
    9	CoreFoundation	__CFRunLoopRun + 1416
    10	CoreFoundation	CFRunLoopRunSpecific + 474
    11	CoreFoundation	CFRunLoopRunInMode + 104
    12	WebCore	RunWebThread(void*) + 416
    13	libsystem_pthread.dylib	_pthread_body + 136
    14	libsystem_pthread.dylib	_pthread_start + 116
    15	libsystem_pthread.dylib	thread_start + 6
    ```
    
    I applied the fix committed by this pull requested, but am still getting the same crash. Is anyone else still seeing an issue?
    



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by shazron <gi...@git.apache.org>.
Github user shazron commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-91347597
  
    Filed a new issue: https://issues.apache.org/jira/browse/CB-8836


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by jacobg <gi...@git.apache.org>.
Github user jacobg commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-91339236
  
    Hmm. Can it be that it would not crash every time? AutoHideSplashScreen is false, and navigator.splashscreen.hide is called in javascript.
    
    Thanks.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by shazron <gi...@git.apache.org>.
Github user shazron commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-91337249
  
    I've updated my gist with a fix:
    https://gist.github.com/shazron/e45705f76bef4448139a/daddb1f1fefc6171589b2c79bb9333efe6603ed6


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by shazron <gi...@git.apache.org>.
Github user shazron commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-91339823
  
    Yes it definitely can not crash every time -- but it's a certainty that it would eventually. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by shazron <gi...@git.apache.org>.
Github user shazron commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-89458111
  
    This could be it:
    1. https://github.com/apache/cordova-plugin-splashscreen/blob/d2e62a551c950041cb4c9683624a04d931f4bee3/src/ios/CDVSplashScreen.m#L295-L296
    2. https://github.com/apache/cordova-plugin-splashscreen/blob/d2e62a551c950041cb4c9683624a04d931f4bee3/src/ios/CDVSplashScreen.m#L300
    
    All three instances in the blocks create strong references to self, which should be weak.
    Here is my attempt at a patch: https://gist.github.com/shazron/e45705f76bef4448139a
    
    Try it out.



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by joshbuchea <gi...@git.apache.org>.
Github user joshbuchea commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-50948393
  
    What's the behavior of the issue this is supposed to fix?
    
    I'm having issues with the plugin not honoring AutoHideSplashScreen in iOS 7.1 & PhoneGap 3.5.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by shazron <gi...@git.apache.org>.
Github user shazron commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-91346209
  
    No, thank you for the reports, that has helped solve the issue. 
    
    I'll pull the changes in anyway. Admittedly this is sloppy work on our part where we didn't consider this well-known situation (which requires some domain knowledge, and static analysis doesn't catch this (yet)).


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by kant2002 <gi...@git.apache.org>.
Github user kant2002 commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-55703938
  
    Sorry, I reread your comment and realize that my earlier comment is probably off-topic.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by shazron <gi...@git.apache.org>.
Github user shazron commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-91343883
  
    Yes, definitely. I'll let you try it out for bit?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by jacobg <gi...@git.apache.org>.
Github user jacobg commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-89891961
  
    Thanks so much @shazron. I will try your patch.
    
    Here is a raw crash log:
    
    ```
    Incident Identifier: FF007664-79D7-4895-99C8-F93D8884B9A4
    CrashReporter Key:   63AE145A-1D57-4AD3-A112-2B916B03F12D
    Hardware Model:      iPad2,5
    Process:         F [9562]
    Path:            /private/var/mobile/Containers/Bundle/Application/1E0EE398-6F76-45C2-B1B5-FF5D2ED5CEB9/F.app/F
    Identifier:      com.f.t
    Version:         1.8.1.1
    Code Type:       ARM
    Parent Process:  launchd [1]
    
    Date/Time:       2015-03-28T13:44:25Z
    OS Version:      iPhone OS 8.1.2 (12B440)
    Report Version:  104
    
    Exception Type:  SIGSEGV
    Exception Codes: SEGV_ACCERR at 0x6f6a76b3
    Crashed Thread:  7
    
    Thread 0:
    0   libsystem_kernel.dylib               0x38772518 mach_msg_trap + 20
    1   CoreFoundation                       0x2a56059b __CFRunLoopServiceMachPort + 144
    2   CoreFoundation                       0x2a55eb61 __CFRunLoopRun + 1014
    3   CoreFoundation                       0x2a4abb31 CFRunLoopRunSpecific + 474
    4   CoreFoundation                       0x2a4ab943 CFRunLoopRunInMode + 104
    5   GraphicsServices                     0x31862051 GSEventRunModal + 134
    6   UIKit                                0x2daa16f1 UIApplicationMain + 1438
    7   F                            0x000fd1a3 main (main.m:32)
    8   libdyld.dylib                        0x386c0aaf start + 0
    
    Thread 1:
    0   libsystem_kernel.dylib               0x387722c8 kevent64 + 24
    1   libdispatch.dylib                    0x38694b7b _dispatch_mgr_thread$VARIANT$mp + 36
    
    Thread 2:
    0   libsystem_kernel.dylib               0x387869cc __workq_kernreturn + 8
    1   libsystem_pthread.dylib              0x38802b78 start_wqthread + 6
    
    Thread 3:
    0   libsystem_kernel.dylib               0x387869cc __workq_kernreturn + 8
    1   libsystem_pthread.dylib              0x38802b78 start_wqthread + 6
    
    Thread 4:
    0   libsystem_kernel.dylib               0x387869cc __workq_kernreturn + 8
    1   libsystem_pthread.dylib              0x38802b78 start_wqthread + 6
    
    Thread 5:
    0   libsystem_kernel.dylib               0x387869cc __workq_kernreturn + 8
    1   libsystem_pthread.dylib              0x38802b78 start_wqthread + 6
    
    Thread 6:
    0   CFNetwork                            0x2a09c1e8 SPDYConnectionCache::_onqueue_findOrCreateSPDYConnectionCacheEntry(HTTPConnectionCacheKey const*) + 0
    1   CFNetwork                            0x2a072f91 TubeManager::_onqueue_newTubeReady(Tube*, __CFError*) + 394
    2   CFNetwork                            0x2a072de3 ___ZN11TubeManager12newTubeReadyEP4TubeP9__CFError_block_invoke + 16
    3   CFNetwork                            0x29ff8d71 RunloopBlockContext::_invoke_block(void const*, void*) + 58
    4   CoreFoundation                       0x2a4ab5a1 CFArrayApplyFunction + 34
    5   CFNetwork                            0x29ff8c2b RunloopBlockContext::perform() + 180
    6   CFNetwork                            0x29ff8af1 MultiplexerSource::perform() + 214
    7   CFNetwork                            0x29ff898d MultiplexerSource::_perform(void*) + 46
    8   CoreFoundation                       0x2a560fd7 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 12
    9   CoreFoundation                       0x2a5603eb __CFRunLoopDoSources0 + 220
    10  CoreFoundation                       0x2a55ea69 __CFRunLoopRun + 766
    11  CoreFoundation                       0x2a4abb31 CFRunLoopRunSpecific + 474
    12  CoreFoundation                       0x2a4ab943 CFRunLoopRunInMode + 104
    13  CFNetwork                            0x2a06078f +[NSURLConnection(Loader) _resourceLoadLoop:] + 484
    14  Foundation                           0x2b2ad99b __NSThread__main__ + 1116
    15  libsystem_pthread.dylib              0x38804e67 _pthread_body + 136
    16  libsystem_pthread.dylib              0x38804ddb _pthread_start + 116
    17  libsystem_pthread.dylib              0x38802b84 thread_start + 6
    
    Thread 7 Crashed:
    0   libobjc.A.dylib                      0x38130f76 objc_msgSend + 22
    1   CoreFoundation                       0x2a49f811 CFRelease + 594
    2   QuartzCore                           0x2d469fc5 CA::release_objects(X::List<void const*>*) + 14
    3   QuartzCore                           0x2d46f303 -[CAAnimation dealloc] + 52
    4   libobjc.A.dylib                      0x3813ed57 objc_object::sidetable_release(bool) + 164
    5   libobjc.A.dylib                      0x3813f1a9 (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 402
    6   CoreFoundation                       0x2a560f07 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 12
    7   CoreFoundation                       0x2a560a89 __CFRunLoopDoTimer + 654
    8   CoreFoundation                       0x2a55ecf3 __CFRunLoopRun + 1416
    9   CoreFoundation                       0x2a4abb31 CFRunLoopRunSpecific + 474
    10  CoreFoundation                       0x2a4ab943 CFRunLoopRunInMode + 104
    11  WebCore                              0x35b10c81 RunWebThread(void*) + 414
    12  libsystem_pthread.dylib              0x38804e67 _pthread_body + 136
    13  libsystem_pthread.dylib              0x38804ddb _pthread_start + 116
    14  libsystem_pthread.dylib              0x38802b84 thread_start + 6
    
    Thread 8:
    0   libsystem_kernel.dylib               0x387869cc __workq_kernreturn + 8
    1   libsystem_pthread.dylib              0x38802b78 start_wqthread + 6
    
    Thread 9:
    0   libsystem_kernel.dylib               0x387869cc __workq_kernreturn + 8
    1   libsystem_pthread.dylib              0x38802b78 start_wqthread + 6
    
    Thread 10:
    0   libsystem_kernel.dylib               0x38785b38 __psynch_cvwait + 24
    1   libsystem_pthread.dylib              0x388052f1 pthread_cond_timedwait + 42
    2   libc++.1.dylib                       0x378ef079 std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1ll, 1000000000ll> > >) + 182
    3   JavaScriptCore                       0x2b8937f1 std::__1::cv_status std::__1::condition_variable::wait_for<long long, std::__1::ratio<1ll, 1000ll> >(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::duration<long long, std::__1::ratio<1ll, 1000ll> > const&) + 198
    4   JavaScriptCore                       0x2b76ef1b JSC::BlockAllocator::blockFreeingThreadMain() + 84
    5   JavaScriptCore                       0x2b76b44f WTF::wtfThreadEntryPoint(void*) + 12
    6   libsystem_pthread.dylib              0x38804e67 _pthread_body + 136
    7   libsystem_pthread.dylib              0x38804ddb _pthread_start + 116
    8   libsystem_pthread.dylib              0x38802b84 thread_start + 6
    
    Thread 11:
    0   libsystem_kernel.dylib               0x38785b38 __psynch_cvwait + 24
    1   libsystem_pthread.dylib              0x388052b1 pthread_cond_wait + 38
    2   libc++.1.dylib                       0x378eefa9 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 34
    3   JavaScriptCore                       0x2b933b65 JSC::GCThread::waitForNextPhase() + 102
    4   JavaScriptCore                       0x2b933bc9 JSC::GCThread::gcThreadMain() + 50
    5   JavaScriptCore                       0x2b76b44f WTF::wtfThreadEntryPoint(void*) + 12
    6   libsystem_pthread.dylib              0x38804e67 _pthread_body + 136
    7   libsystem_pthread.dylib              0x38804ddb _pthread_start + 116
    8   libsystem_pthread.dylib              0x38802b84 thread_start + 6
    
    Thread 12:
    0   libsystem_kernel.dylib               0x38772518 mach_msg_trap + 20
    1   CoreFoundation                       0x2a56059b __CFRunLoopServiceMachPort + 144
    2   CoreFoundation                       0x2a55eb61 __CFRunLoopRun + 1014
    3   CoreFoundation                       0x2a4abb31 CFRunLoopRunSpecific + 474
    4   CoreFoundation                       0x2a4ab943 CFRunLoopRunInMode + 104
    5   WebCore                              0x35b39f8d WebCore::runLoaderThread(void*) + 290
    6   JavaScriptCore                       0x2b76b44f WTF::wtfThreadEntryPoint(void*) + 12
    7   libsystem_pthread.dylib              0x38804e67 _pthread_body + 136
    8   libsystem_pthread.dylib              0x38804ddb _pthread_start + 116
    9   libsystem_pthread.dylib              0x38802b84 thread_start + 6
    
    Thread 13:
    0   libsystem_kernel.dylib               0x38772568 semaphore_wait_trap + 8
    1   MediaToolbox                         0x2bf63fd3 fpa_AsyncMovieControlThread + 1964
    2   CoreMedia                            0x2ad06c77 figThreadMain + 184
    3   libsystem_pthread.dylib              0x38804e67 _pthread_body + 136
    4   libsystem_pthread.dylib              0x38804ddb _pthread_start + 116
    5   libsystem_pthread.dylib              0x38802b84 thread_start + 6
    
    Thread 14:
    0   libsystem_kernel.dylib               0x38772518 mach_msg_trap + 20
    1   CoreFoundation                       0x2a56059b __CFRunLoopServiceMachPort + 144
    2   CoreFoundation                       0x2a55eb61 __CFRunLoopRun + 1014
    3   CoreFoundation                       0x2a4abb31 CFRunLoopRunSpecific + 474
    4   CoreFoundation                       0x2a4ab943 CFRunLoopRunInMode + 104
    5   Foundation                           0x2b1e8951 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 262
    6   Foundation                           0x2b236dc5 -[NSRunLoop(NSRunLoop) run] + 78
    7   F                            0x0011ab17 +[AFURLConnectionOperation networkRequestThreadEntryPoint:] (AFURLConnectionOperation.m:169)
    8   Foundation                           0x2b2ad99b __NSThread__main__ + 1116
    9   libsystem_pthread.dylib              0x38804e67 _pthread_body + 136
    10  libsystem_pthread.dylib              0x38804ddb _pthread_start + 116
    11  libsystem_pthread.dylib              0x38802b84 thread_start + 6
    
    Thread 15:
    0   libsystem_kernel.dylib               0x3878608c __select + 20
    1   libsystem_pthread.dylib              0x38804e67 _pthread_body + 136
    2   libsystem_pthread.dylib              0x38804ddb _pthread_start + 116
    3   libsystem_pthread.dylib              0x38802b84 thread_start + 6
    
    Thread 16:
    0   libsystem_kernel.dylib               0x38772518 mach_msg_trap + 20
    1   CoreFoundation                       0x2a56059b __CFRunLoopServiceMachPort + 144
    2   CoreFoundation                       0x2a55eb61 __CFRunLoopRun + 1014
    3   CoreFoundation                       0x2a4abb31 CFRunLoopRunSpecific + 474
    4   CoreFoundation                       0x2a4ab943 CFRunLoopRunInMode + 104
    5   libAVFAudio.dylib                    0x291cf3ed GenericRunLoopThread::Entry(void*) + 130
    6   libAVFAudio.dylib                    0x291c18e7 CAPThread::Entry(CAPThread*) + 192
    7   libsystem_pthread.dylib              0x38804e67 _pthread_body + 136
    8   libsystem_pthread.dylib              0x38804ddb _pthread_start + 116
    9   libsystem_pthread.dylib              0x38802b84 thread_start + 6
    
    Thread 7 crashed with ARM Thread State:
        pc: 0x38130f76     r7: 0x02c0ce24     sp: 0x02c0cddc     r0: 0x15da6970 
        r1: 0x3506aacb     r2: 0x38a951c8     r3: 0xea261800     r4: 0x3813fb11 
        r5: 0x15da6974     r6: 0x15da6970     r8: 0x38a8ddac     r9: 0x6f6a76b3 
       r10: 0x3ae7b600    r11: 0x3ae7b900     ip: 0x0000204a     lr: 0x2a49f811 
      cpsr: 0x40000030 
    
    Binary Images:
       0xf2000 -   0x331fff  F armv7  <75144a2642ea3a8ba88ca6d491f5dc0c> /private/var/mobile/Containers/Bundle/Application/1E0EE398-6F76-45C2-B1B5-FF5D2ED5CEB9/F.app/F
    0x28e27000 - 0x28f13fff  RawCamera armv7  <31a1ae8be0ea314e8b2892fc94a3e68a> /System/Library/CoreServices/RawCamera.bundle/RawCamera
    0x28f29000 - 0x2903dfff  IMGSGX543GLDriver armv7  <1acd4dc41b453e79a6c5afae6b93b3c9> /System/Library/Extensions/IMGSGX543GLDriver.bundle/IMGSGX543GLDriver
    0x29049000 - 0x291b5fff  AVFoundation armv7  <b1b9e3bf18b23e3cb7923bfe4a7fe497> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
    0x291b6000 - 0x29214fff  libAVFAudio.dylib armv7  <5dc6f29e995d39c18712dec40a9ca7c6> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib
    0x2924f000 - 0x2924ffff  Accelerate armv7  <79b84eb74f0234e4ac81d7c906641804> /System/Library/Frameworks/Accelerate.framework/Accelerate
    0x29260000 - 0x29479fff  vImage armv7  <5ec259488c033a4f98b0f28ee14ecfc1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
    0x2947a000 - 0x29557fff  libBLAS.dylib armv7  <e5395e7ee45e353498dcb4e956bcf272> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
    0x29558000 - 0x2981bfff  libLAPACK.dylib armv7  <689f4395215e3cef8bafa5f21e288cfe> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
    0x2981c000 - 0x2982efff  libLinearAlgebra.dylib armv7  <b86c17150d2133b8baea239d17df5e28> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
    0x2982f000 - 0x298a3fff  libvDSP.dylib armv7  <bc358a699c2132a09e9150cfc2db34bb> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
    0x298a4000 - 0x298b5fff  libvMisc.dylib armv7  <1a0561dd472b3c04ad84e0c48896173d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
    0x298b6000 - 0x298b6fff  vecLib armv7  <f4dbfd05244f30b2905a5dbf06f15fc8> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
    0x298b7000 - 0x298ddfff  Accounts armv7  <90965bef7f403d9791b800e9307da469> /System/Library/Frameworks/Accounts.framework/Accounts
    0x298df000 - 0x2994ffff  AddressBook armv7  <50e85e9355c934a8b86f69b59e3f1d2a> /System/Library/Frameworks/AddressBook.framework/AddressBook
    0x29950000 - 0x29a74fff  AddressBookUI armv7  <0c6e45b5345535eebc00312bf0c01943> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
    0x29a75000 - 0x29a87fff  AssetsLibrary armv7  <ffb1bb89766e3a5b95cfeada69f4e4d2> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
    0x29c0b000 - 0x29e7cfff  AudioToolbox armv7  <0e7d115e201731ae9002e3ac0e1cf723> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
    0x29fe4000 - 0x2a16cfff  CFNetwork armv7  <91a44f5c23e4349e9532c46bcacf8793> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
    0x2a16d000 - 0x2a1eefff  CloudKit armv7  <3911d5e793ad3a6bb0a3218b99d6cdd6> /System/Library/Frameworks/CloudKit.framework/CloudKit
    0x2a1ef000 - 0x2a24dfff  CoreAudio armv7  <5857be698f7b3a3d865b418b0a80dd95> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
    0x2a268000 - 0x2a285fff  CoreBluetooth armv7  <9c118ad461f83876a2d73ed41a6d0a76> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
    0x2a286000 - 0x2a491fff  CoreData armv7  <e179cf2529fc39ccb17bc43d6a1ad54e> /System/Library/Frameworks/CoreData.framework/CoreData
    0x2a492000 - 0x2a7c2fff  CoreFoundation armv7  <8903e0338b7a3055a6da8d09d9dd819c> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
    0x2a7c3000 - 0x2a8ecfff  CoreGraphics armv7  <e945d96898fc3b109fa229c01afc6aab> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
    0x2a92c000 - 0x2a92efff  libCGXType.A.dylib armv7  <75e9cf8b311437dd9403ac0303675af3> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib
    0x2a92f000 - 0x2a939fff  libCMSBuiltin.A.dylib armv7  <c32f2fc194ea3954bfbf31496e64a69d> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib
    0x2ab21000 - 0x2ab3cfff  libRIP.A.dylib armv7  <a161b80e0fb230d0a17b0abdbf1e9c09> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
    0x2ab3d000 - 0x2ac4efff  CoreImage armv7  <5fa13521194435b0aa122590592bde9e> /System/Library/Frameworks/CoreImage.framework/CoreImage
    0x2ac4f000 - 0x2aca6fff  CoreLocation armv7  <74ede6cbed043590aa008c98ec0292d5> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
    0x2acd8000 - 0x2ad72fff  CoreMedia armv7  <e686ff922549369ebf5aad7d9b1cd122> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
    0x2ad73000 - 0x2ae32fff  CoreMotion armv7  <262ac8188a9e34d8bc260b836c19916a> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
    0x2ae33000 - 0x2ae91fff  CoreTelephony armv7  <2c9a0ea2bc4631f09f0ad3482279ed2a> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
    0x2ae92000 - 0x2af59fff  CoreText armv7  <eed94d72acb13e71881d91d8eab797bc> /System/Library/Frameworks/CoreText.framework/CoreText
    0x2af5a000 - 0x2af6ffff  CoreVideo armv7  <6c8fef3be5df3be49e848caafb61f3d4> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
    0x2af70000 - 0x2b066fff  EventKit armv7  <8ed440c37b143d16af37c7ffd318669d> /System/Library/Frameworks/EventKit.framework/EventKit
    0x2b1dd000 - 0x2b3dffff  Foundation armv7  <6fcf1d26cba338be8494994f08313889> /System/Library/Frameworks/Foundation.framework/Foundation
    0x2b40c000 - 0x2b42bfff  GSS armv7  <ed7492b8ec053ebdaacb3ab1e24ad3fa> /System/Library/Frameworks/GSS.framework/GSS
    0x2b4c0000 - 0x2b516fff  IOKit armv7  <57f43286391832bf833d098bd0b62595> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x2b517000 - 0x2b759fff  ImageIO armv7  <7a956ae39b1332b3b6ca5323e4690b6d> /System/Library/Frameworks/ImageIO.framework/ImageIO
    0x2b75a000 - 0x2baa3fff  JavaScriptCore armv7  <94fd9947ee3c3f35bd319b7546252b5c> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
    0x2bd7c000 - 0x2bd84fff  MediaAccessibility armv7  <ac5de26eeeb93c8c8febc8360071cc5c> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
    0x2bd85000 - 0x2bf5efff  MediaPlayer armv7  <5351b003a49a361391f1b280a837d97a> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
    0x2bf5f000 - 0x2c2dafff  MediaToolbox armv7  <fe73a1aebb0b36129799d6965cf5e6a3> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
    0x2c39a000 - 0x2c406fff  Metal armv7  <209361201b49352a848591a82e8a8c72> /System/Library/Frameworks/Metal.framework/Metal
    0x2c407000 - 0x2c496fff  MobileCoreServices armv7  <4a9e490a4ed53612a238c0d760e38b91> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
    0x2c58b000 - 0x2c5bcfff  OpenAL armv7  <e8f63258516339f0a710d433b87ebe21> /System/Library/Frameworks/OpenAL.framework/OpenAL
    0x2ce89000 - 0x2cf60fff  GLEngine armv7  <24c72152aeff311d8c66b2aecef82499> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
    0x2cf61000 - 0x2cf69fff  OpenGLES armv7  <0e7ab2b493eb3e51b541842bda102761> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
    0x2cf6b000 - 0x2cf6bfff  libCVMSPluginSupport.dylib armv7  <754a49b6b063344288d7163e81e6efcd> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
    0x2cf6c000 - 0x2cf6efff  libCoreFSCache.dylib armv7  <387bf7c1911a3e749f83037d6655a0e9> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
    0x2cf6f000 - 0x2cf72fff  libCoreVMClient.dylib armv7  <9ac8ebec447238cab588905e8173abec> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
    0x2cf73000 - 0x2cf7bfff  libGFXShared.dylib armv7  <a8cdc3dc15ce36d5a98e86677be92474> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
    0x2cf7c000 - 0x2cfbbfff  libGLImage.dylib armv7  <fbe6d2e0bd513965aff8eb090786e6b3> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
    0x2cfbc000 - 0x2d0f6fff  libGLProgrammability.dylib armv7  <b10f8e21d436364faee593f67f7e7590> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
    0x2d45e000 - 0x2d5affff  QuartzCore armv7  <fb4d51b6117a343cbeedc0045821a7d3> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
    0x2d5b0000 - 0x2d603fff  QuickLook armv7  <e98f1038f2be34f8996edb4266ce0da9> /System/Library/Frameworks/QuickLook.framework/QuickLook
    0x2d7f0000 - 0x2d830fff  Security armv7  <255df08b5ec837ba9a07a59fb7122687> /System/Library/Frameworks/Security.framework/Security
    0x2d9d4000 - 0x2da30fff  SystemConfiguration armv7  <054ebf2b18913f589c139e058bae2ec9> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
    0x2da33000 - 0x2e2d6fff  UIKit armv7  <39ee823e1e053a58a24f2c4ddb28a1a9> /System/Library/Frameworks/UIKit.framework/UIKit
    0x2e2d7000 - 0x2e33efff  VideoToolbox armv7  <c5c531ac886c3ccdb103d77da4647eb0> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
    0x2e33f000 - 0x2e524fff  WebKit armv7  <fca0c7015f083e63a6de7f5421c24889> /System/Library/Frameworks/WebKit.framework/WebKit
    0x2e820000 - 0x2e82bfff  AOSNotification armv7  <0596c0572cbb33798fbb5abd839d750b> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification
    0x2e980000 - 0x2e9ccfff  AccountsDaemon armv7  <1bdf9e93608e30eaa0f622d65e2b1e17> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
    0x2e9cd000 - 0x2e9eefff  AccountsUI armv7  <f99c66167ba237b2bdadbd2a0ce7cf9a> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI
    0x2e9ef000 - 0x2e9f3fff  AggregateDictionary armv7  <bf6e9572174f3a09985abe1a3ed3d052> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
    0x2ebb9000 - 0x2ebe3fff  AirPlaySupport armv7  <75be790008cd3fed80322dc0406f8a0a> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport
    0x2eddc000 - 0x2ee1efff  AppSupport armv7  <451dd95cedd037b7b124522fdb2fb545> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
    0x2ee1f000 - 0x2ee66fff  AppleAccount armv7  <48a6b73143363685bef956ffe10f7127> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
    0x2ef4e000 - 0x2ef8bfff  AppleJPEG armv7  <105c3957b1323c49a31e94c43f643b61> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
    0x2ef96000 - 0x2efa8fff  ApplePushService armv7  <b88bd0d1314432dea65f7de3cae40178> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
    0x2efa9000 - 0x2efaffff  AppleSRP armv7  <c320a73d635938c4998bcf2ec77997e4> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP
    0x2efe4000 - 0x2efedfff  AssertionServices armv7  <23d8209940e13b43abf99cfc04a22682> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
    0x2efee000 - 0x2f006fff  AssetsLibraryServices armv7  <e3ae7d99952335d5bc70354872118e9e> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
    0x2f007000 - 0x2f02bfff  AssistantServices armv7  <f8e48537d2043209b2c2b2d6ed352a94> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
    0x2f05b000 - 0x2f05ffff  BTLEAudioController armv7  <600bfbfc528a34378b0b976b908b49fc> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController
    0x2f060000 - 0x2f077fff  BackBoardServices armv7  <090e9ea5f5ea3b179298b23c0de69cd7> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
    0x2f07a000 - 0x2f0affff  BaseBoard armv7  <d051b61623163e5db3572f35442b4fb8> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
    0x2f0b0000 - 0x2f0b6fff  BluetoothManager armv7  <e3b031c114123d17ba5ddda8cbe78723> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
    0x2f0b7000 - 0x2f0ddfff  Bom armv7  <ad0a4c0c0a9f320c90845a8af7ef6941> /System/Library/PrivateFrameworks/Bom.framework/Bom
    0x2f15c000 - 0x2f163fff  CacheDelete armv7  <af3da44fa94d39e28277fa210720b146> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
    0x2f1a8000 - 0x2f1d1fff  CalendarFoundation armv7  <0c198129b9343c0bbd34a2fab1e0a04c> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
    0x2f2df000 - 0x2f2e7fff  CaptiveNetwork armv7  <4bf8c2da6cae3b32b0d79da0063ea5b6> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
    0x2f2e8000 - 0x2f40afff  Celestial armv7  <01a159ec3c0f36d89970ee8ff7d0082c> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
    0x2f418000 - 0x2f430fff  CertInfo armv7  <e666b317be84333c9e764d4cc11f7f3e> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo
    0x2f431000 - 0x2f436fff  CertUI armv7  <4b9c782eb37c39539dceb50ef8ce1031> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
    0x2f561000 - 0x2f582fff  ChunkingLibrary armv7  <524a86c48bb23111b9806d7989dfb828> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
    0x2f930000 - 0x2f9dbfff  CloudPhotoLibrary armv7  <7526c5dd5c4e301db4e88ea72be08c61> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
    0x2fa2c000 - 0x2fa2efff  CommonAuth armv7  <b84b2b2966a83bfe95779cda3fbde0b5> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
    0x2fa2f000 - 0x2fa3ffff  CommonUtilities armv7  <2c365dc9d8283a62b5d26bde20e908d3> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
    0x2fa40000 - 0x2fa44fff  CommunicationsFilter armv7  <600820839b07343e88217f822fd87497> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
    0x2fab5000 - 0x2fab9fff  ConstantClasses armv7  <e13a3f4544163ccf965efb936d22710c> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
    0x2faba000 - 0x2faf2fff  ContentIndex armv7  <a3a89bf59db53a41830869428fba0b88> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
    0x2faf3000 - 0x2faf6fff  CoreAUC armv7  <bd82bbb4214d31ba824f0d2796989976> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
    0x2fb1b000 - 0x2fb6ffff  CoreDAV armv7  <9acc66c8a9433c32a11ce98847bc7b99> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
    0x2fb70000 - 0x2fb8afff  CoreDuet armv7  <c2784c5d68853bd18c53ab449fbe8a08> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
    0x2fb8f000 - 0x2fb9efff  CoreDuetDaemonProtocol armv7  <834a5b4ade9e323d99b9190557b33f91> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
    0x2fba5000 - 0x2fba7fff  CoreDuetDebugLogging armv7  <6dfa638a467c3db09dae686312ab014e> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
    0x2fcf5000 - 0x2fdf5fff  CoreMediaStream armv7  <4ca4d60df4293effb1462e5f55d86a37> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
    0x2fdf6000 - 0x2fe91fff  CorePDF armv7  <1056dea427c2372ebdb67e704aa016c8> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
    0x2ff74000 - 0x2ff92fff  CoreServicesInternal armv7  <fade5aa36a5f3e13884312dcce2ce920> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
    0x30190000 - 0x30210fff  CoreUI armv7  <f93d1cf65f763e2ca507335e4ca94713> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
    0x30211000 - 0x3027afff  CoreUtils armv7  <bd9650a7f3753160ac938617b8220a51> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
    0x3027b000 - 0x30280fff  CrashReporterSupport armv7  <2bf025aa00f039d59e317e4bbe839e2c> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
    0x30281000 - 0x30287fff  DAAPKit armv7  <7b4b751331be32fca24ed7fd30590add> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
    0x30288000 - 0x30292fff  DCIMServices armv7  <6632c45afad038189a8cba33e14913a3> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
    0x30293000 - 0x302d8fff  DataAccess armv7  <f0d4fe5bfcf339aeb7aff606b4d677d2> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
    0x304ca000 - 0x304ebfff  DataAccessExpress armv7  <b62ccf0334e538d7a0701d97c651978e> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
    0x304f6000 - 0x3050efff  DataDetectorsCore armv7  <dcd42b9f7bc93b22aa0ec3d4ffa8962b> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
    0x30510000 - 0x30529fff  DataDetectorsUI armv7  <e3b01736f3dc36bea2db1264a3d02d41> /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
    0x3052a000 - 0x30530fff  DataMigration armv7  <0d2533e6d6953ca0a13dca0f1c56956d> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
    0x3053a000 - 0x3053bfff  DiagnosticLogCollection armv7  <0999a3d19f1c3bd191bb788578dfc4e8> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
    0x3053c000 - 0x30556fff  DictionaryServices armv7  <ac194a01d12138c2ae5863e9e6c7c3d3> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
    0x30575000 - 0x30594fff  EAP8021X armv7  <22701a5a231b3690bd628d3b03777d98> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
    0x306c7000 - 0x30aeafff  FaceCore armv7  <cd09c9e6ffaf38d786332ff7b24e91f3> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
    0x30b0f000 - 0x30b0ffff  FontServices armv7  <af1240e62fd931898782f3650b1396a2> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
    0x30b10000 - 0x30be4fff  libFontParser.dylib armv7  <f1f035ec893036f5b3768f138f12a53b> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x30be5000 - 0x30bf1fff  libGSFontCache.dylib armv7  <18d22c3b851036efb9e4b8e17df422ac> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
    0x30cd4000 - 0x30ceffff  FrontBoardServices armv7  <163cfd1e31893650ba487c810bbe7a20> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
    0x31255000 - 0x3125cfff  libGPUSupportMercury.dylib armv7  <f35f4aac2acc3014a3333b070029d002> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
    0x315d4000 - 0x315eafff  GenerationalStorage armv7  <3c6bb4fc1b663ec3bb79709587935963> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
    0x315eb000 - 0x31858fff  GeoServices armv7  <b53000bf129b3017b80da4a8817db150> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
    0x31859000 - 0x31869fff  GraphicsServices armv7  <ee8b5d298a8236858aa4287ca6f2e0b2> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
    0x3190b000 - 0x3195afff  Heimdal armv7  <3b415a7157fc32b082cbc139b1601e14> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
    0x319f0000 - 0x31a6ffff  HomeSharing armv7  <cbdb51d2d07935ddbdc7d5ab21068909> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
    0x31ace000 - 0x31b24fff  IDS armv7  <75c8d418d5b43c0ca8552c9be00a7cd4> /System/Library/PrivateFrameworks/IDS.framework/IDS
    0x31b25000 - 0x31b47fff  IDSFoundation armv7  <5b7681220a993228a4aa076c9d39de43> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
    0x31cf8000 - 0x31d5cfff  IMFoundation armv7  <020b1ee36b5a3f7690cfc494a6e2dc2d> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
    0x31d64000 - 0x31d67fff  IOAccelerator armv7  <4da2a2cf04893925ab5329d1de2b6575> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
    0x31d6a000 - 0x31d70fff  IOMobileFramebuffer armv7  <08269cc472483b6eb829555aa6ddc685> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
    0x31d71000 - 0x31d76fff  IOSurface armv7  <4201a5dacbbf3c0f83e2aadb55ac3415> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
    0x31d77000 - 0x31d78fff  IOSurfaceAccelerator armv7  <88b723f5bfe03571a396cc49741620ca> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
    0x31e14000 - 0x31e1afff  IntlPreferences armv7  <e15d44fb05c23b3fb6e3cfbd4b477e57> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
    0x31e1b000 - 0x31e51fff  LanguageModeling armv7  <41bfc44ca9cf38edaf462a42fc5a0753> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
    0x31e8d000 - 0x31ec9fff  MIME armv7  <83e86791adb934b0923e133c2b237be6> /System/Library/PrivateFrameworks/MIME.framework/MIME
    0x31eca000 - 0x31f24fff  MMCS armv7  <4f754952c03e3fde8675a62f67fc4327> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
    0x31f6d000 - 0x31f79fff  MailServices armv7  <de34150464b639c39391b217044766d5> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
    0x31fad000 - 0x3204dfff  ManagedConfiguration armv7  <0e1b7d85d68e3713aca7ae5e6198d277> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
    0x32057000 - 0x32058fff  Marco armv7  <fa5b05c7bf033ceb94486dce9e07c697> /System/Library/PrivateFrameworks/Marco.framework/Marco
    0x32059000 - 0x320d0fff  MediaControlSender armv7  <78c75f325be63b6bb35bd991c141aa3e> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender
    0x3216f000 - 0x32181fff  MediaRemote armv7  <9cd03aaa29d63f8a8957cfe7dd6f8184> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
    0x32182000 - 0x32191fff  MediaServices armv7  <be9a8d82dc173515ae7d697333df31fb> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
    0x32192000 - 0x321aafff  MediaStream armv7  <81c042c18c153823b276a0db6187222d> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
    0x32213000 - 0x322f0fff  Message armv7  <31328b2d35c53051b95af159c04d52cb> /System/Library/PrivateFrameworks/Message.framework/Message
    0x322f6000 - 0x322f8fff  MessageSupport armv7  <d1f893f435263492b06a8e760e9c971a> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
    0x3230a000 - 0x32317fff  MobileAsset armv7  <564968174a713055ab46ade7a21a6276> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
    0x3233e000 - 0x32347fff  MobileBluetooth armv7  <65537c8b75e339f786bc768e786b7aa3> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
    0x32363000 - 0x3236afff  MobileIcons armv7  <eaec71786ade3fd6b8020b685bc27f6d> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
    0x3236b000 - 0x32372fff  MobileInstallation armv7  <615d9a6675ee39c9a49f4293ac02f505> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
    0x32373000 - 0x3237ffff  MobileKeyBag armv7  <b98f16e34717344e8e3df6ae7ad4eb35> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
    0x323ac000 - 0x323affff  MobileSystemServices armv7  <c5fdefa4cea23a0fbe856e052b1645fd> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
    0x323d1000 - 0x323defff  MobileWiFi armv7  <e18b965671ab3a97a018ad79502708f4> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
    0x3241d000 - 0x325bcfff  MusicLibrary armv7  <604d2b90939a3042813fb021ea3af7fc> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
    0x32656000 - 0x3265bfff  Netrb armv7  <5f55aa01b0e830d1836eebe5f526c488> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
    0x3265c000 - 0x32662fff  NetworkStatistics armv7  <ac0e65da55a13b7b83063ada9aa8c8ac> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
    0x32663000 - 0x32680fff  Notes armv7  <c8271e69ca6a375cbbbdbd4e6e02b4d0> /System/Library/PrivateFrameworks/Notes.framework/Notes
    0x32686000 - 0x32688fff  OAuth armv7  <a37bdb65bcf536d685a023e9b9efe258> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
    0x32de0000 - 0x32e1cfff  OpenCL armv7  <a5d8fcfcc6123ca3acfd5063c8b7fcc8> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
    0x32f0d000 - 0x32f34fff  PersistentConnection armv7  <dfef66a09fe33166800f1c9e5e33ad7b> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
    0x3309e000 - 0x3330bfff  PhotoLibraryServices armv7  <63e8bcaf6be4333faf93d6b3c4078d9e> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
    0x3330c000 - 0x33315fff  PhotosFormats armv7  <242081a32ed63076b97915b3e29bbbdb> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
    0x33316000 - 0x33360fff  PhysicsKit armv7  <302982e6d8f63d4f967083b07f4792c6> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
    0x33361000 - 0x33377fff  PlugInKit armv7  <ec5cbbea9b26345e8b84d40b06cc5ce6> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
    0x33378000 - 0x3337ffff  PowerLog armv7  <45594755e8e230e2a46d3bdf0cc87ae4> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
    0x3357d000 - 0x33625fff  Preferences armv7  <c50d70e3a2a5312fa7a164c219f50317> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
    0x33626000 - 0x33663fff  PrintKit armv7  <b9774f70fe643d8ab9f00504f6b80c35> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
    0x33668000 - 0x336fcfff  ProofReader armv7  <6ffc157680a13290bbcee35a9598aae7> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
    0x336fd000 - 0x3370cfff  ProtectedCloudStorage armv7  <cef08f56af2039b5aba84b2a5a1c18b0> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
    0x3370d000 - 0x33719fff  ProtocolBuffer armv7  <a6b722673856304bb5d4a81d8a823c30> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
    0x3374c000 - 0x337bafff  Quagga armv7  <a30e9231f6653d0d81f895084e159dc1> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
    0x339cd000 - 0x33a59fff  SAObjects armv7  <8d5e63e487ce30e2b68c758674c4c3b9> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
    0x33bc6000 - 0x33be0fff  SpringBoardServices armv7  <ae711fd982403c14961bd7342b4d20fa> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
    0x33f4c000 - 0x34064fff  StoreServices armv7  <87932f351ad530e9a514c2b0f5359b95> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
    0x34136000 - 0x34138fff  TCC armv7  <4603e107a0da36afb0577925d23ad485> /System/Library/PrivateFrameworks/TCC.framework/TCC
    0x3417f000 - 0x341bcfff  TelephonyUtilities armv7  <ade85ee5efa03510ba1cc6cfd94671ae> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
    0x3506c000 - 0x35094fff  TextInput armv7  <856f200d87a734c69b5414483a5f84f0> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
    0x35148000 - 0x3520dfff  UIFoundation armv7  <77e408fd6bdd3ebd994f2e6701cbafdc> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
    0x3522f000 - 0x35232fff  UserFS armv7  <eaa14007b6683b07ae6871e6f9969148> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
    0x359ab000 - 0x359c9fff  VoiceServices armv7  <b5c81289a0fb32deabbc414f7b122a48> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
    0x35a52000 - 0x35a78fff  WebBookmarks armv7  <d1744b3978af3ebe8e88592347d1825e> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
    0x35a8e000 - 0x365fefff  WebCore armv7  <548ccac32b9f375c823163d9bc4a7f98> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
    0x365ff000 - 0x366bdfff  WebKitLegacy armv7  <c912b28bafca3628bcf0feb67d70068b> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
    0x36858000 - 0x3685efff  XPCKit armv7  <faa56d80c61c3b05a2d0acfbbb4a9e94> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
    0x3685f000 - 0x36867fff  XPCObjects armv7  <508be1d1f4f43d4da7919d9be63b95d0> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects
    0x36a51000 - 0x36a75fff  iCalendar armv7  <0185552de4c4320b90fab16549d906e0> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
    0x36c69000 - 0x36ca4fff  iTunesStore armv7  <e8571b7b5fa636f497b57ca8a40e097d> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
    0x373de000 - 0x373e6fff  libAccessibility.dylib armv7  <f0b8bb003a22320b99677fe4ef14d9c1> /usr/lib/libAccessibility.dylib
    0x37518000 - 0x3752efff  libCRFSuite.dylib armv7  <746f523326833d11a24e2142871aeaca> /usr/lib/libCRFSuite.dylib
    0x37560000 - 0x37663fff  libFosl_dynamic.dylib armv7  <5c61b56d9a8037d3b7c3615d42e33891> /usr/lib/libFosl_dynamic.dylib
    0x3767b000 - 0x3767cfff  libMobileCheckpoint.dylib armv7  <57b64e3f74b138c8b99befea71a86bbc> /usr/lib/libMobileCheckpoint.dylib
    0x3767d000 - 0x37694fff  libMobileGestalt.dylib armv7  <9770005d080e37bfb257218f383403a6> /usr/lib/libMobileGestalt.dylib
    0x376ba000 - 0x376bbfff  libSystem.B.dylib armv7  <d6821a14f9b53bd9b13b6596a5a28ef8> /usr/lib/libSystem.B.dylib
    0x3772c000 - 0x37770fff  libTelephonyUtilDynamic.dylib armv7  <55ab7f3a82ce3296801bacc3d5d82a7a> /usr/lib/libTelephonyUtilDynamic.dylib
    0x37880000 - 0x378a2fff  libarchive.2.dylib armv7  <9c5747f3bde23eb9904f25f4d2a48482> /usr/lib/libarchive.2.dylib
    0x378a3000 - 0x378a3fff  libassertion_extension.dylib armv7  <f29450b2eb6d397896adcf74d33beb24> /usr/lib/libassertion_extension.dylib
    0x378d2000 - 0x378defff  libbsm.0.dylib armv7  <fc5847733d0b3040a6f78db015002c29> /usr/lib/libbsm.0.dylib
    0x378df000 - 0x378e8fff  libbz2.1.0.dylib armv7  <43c20d2a3ae630b2b00af23b29c1cf4a> /usr/lib/libbz2.1.0.dylib
    0x378e9000 - 0x37933fff  libc++.1.dylib armv7  <04463e09c37b388fb4f0d9b578ff27af> /usr/lib/libc++.1.dylib
    0x37934000 - 0x3794ffff  libc++abi.dylib armv7  <201e1c5ea8a53c70aa976d54f4518c2e> /usr/lib/libc++abi.dylib
    0x37951000 - 0x3795efff  libcmph.dylib armv7  <bc6842a838a13b8e9837a3ddfba2edc9> /usr/lib/libcmph.dylib
    0x3795f000 - 0x37967fff  libcupolicy.dylib armv7  <a951b132d31d31a7b7fb1233dd8b8477> /usr/lib/libcupolicy.dylib
    0x3798e000 - 0x379a6fff  libextension.dylib armv7  <ff613df2137d3c1888ed1615ed64e517> /usr/lib/libextension.dylib
    0x37ad7000 - 0x37adafff  libheimdal-asn1.dylib armv7  <0dd1fe3b2362376a9af33b267a6219d0> /usr/lib/libheimdal-asn1.dylib
    0x37adb000 - 0x37bc8fff  libiconv.2.dylib armv7  <a0d4cae016673389ad357ea1033c1f4d> /usr/lib/libiconv.2.dylib
    0x37bc9000 - 0x37d37fff  libicucore.A.dylib armv7  <538b3775a2e2314ea196e48929be2eeb> /usr/lib/libicucore.A.dylib
    0x37d44000 - 0x37d44fff  liblangid.dylib armv7  <3399f30bf7ea3551b32b052dc3a87aad> /usr/lib/liblangid.dylib
    0x37d45000 - 0x37d4ffff  liblockdown.dylib armv7  <3bfa793f65d93897ac94a9b697303fcd> /usr/lib/liblockdown.dylib
    0x37d50000 - 0x37d65fff  liblzma.5.dylib armv7  <0ede283640b036dbbcbbf042f3771b24> /usr/lib/liblzma.5.dylib
    0x380e1000 - 0x380f5fff  libmis.dylib armv7  <52bc0b0ba1843be58d928607c9bee017> /usr/lib/libmis.dylib
    0x3811e000 - 0x38318fff  libobjc.A.dylib armv7  <fcccdef901003a469d4b5263d611846a> /usr/lib/libobjc.A.dylib
    0x383cd000 - 0x383e3fff  libresolv.9.dylib armv7  <f99e0bc1c4ba33ad99a3389faf59ba72> /usr/lib/libresolv.9.dylib
    0x3840e000 - 0x384b3fff  libsqlite3.dylib armv7  <a81902eff78c39308cc8040889887d2e> /usr/lib/libsqlite3.dylib
    0x38501000 - 0x38528fff  libtidy.A.dylib armv7  <abe9491c2435315fab7fa38577d67d15> /usr/lib/libtidy.A.dylib
    0x38529000 - 0x38531fff  libtzupdate.dylib armv7  <89b89dbcd90c3f168195d17048483b72> /usr/lib/libtzupdate.dylib
    0x38535000 - 0x385ebfff  libxml2.2.dylib armv7  <953ce5aaa1833fc098761e2888d38f14> /usr/lib/libxml2.2.dylib
    0x385ec000 - 0x3860dfff  libxslt.1.dylib armv7  <3373d602995e38a3b6a224205b0d1f1c> /usr/lib/libxslt.1.dylib
    0x3860e000 - 0x3861afff  libz.1.dylib armv7  <5a3030aa2bd43c3db1b41e49b65d8852> /usr/lib/libz.1.dylib
    0x3861b000 - 0x3861ffff  libcache.dylib armv7  <6019d220fb3e3fa69a198f520232debe> /usr/lib/system/libcache.dylib
    0x38620000 - 0x38629fff  libcommonCrypto.dylib armv7  <e508e2b2b9253230bb6602ea93d184ea> /usr/lib/system/libcommonCrypto.dylib
    0x3862a000 - 0x3862efff  libcompiler_rt.dylib armv7  <ffb897c303913d1db3285b5e8356e5d2> /usr/lib/system/libcompiler_rt.dylib
    0x3862f000 - 0x38635fff  libcopyfile.dylib armv7  <fa6addf1824235a9a978f4e8f1d885ed> /usr/lib/system/libcopyfile.dylib
    0x38636000 - 0x38682fff  libcorecrypto.dylib armv7  <852075abb4e5331ea68af0c15b15d9ea> /usr/lib/system/libcorecrypto.dylib
    0x38683000 - 0x386befff  libdispatch.dylib armv7  <d56533a0119f32fa8d7d07fedd50b93c> /usr/lib/system/libdispatch.dylib
    0x386bf000 - 0x386c0fff  libdyld.dylib armv7  <5704c61f64203d06ae3b61600f902d16> /usr/lib/system/libdyld.dylib
    0x386c1000 - 0x386c1fff  libkeymgr.dylib armv7  <45a6025e9a58300e94c36b4ed262c6cd> /usr/lib/system/libkeymgr.dylib
    0x386c2000 - 0x386c2fff  liblaunch.dylib armv7  <5456bea7a1063c2da6cbe4038a71ed04> /usr/lib/system/liblaunch.dylib
    0x386c3000 - 0x386c6fff  libmacho.dylib armv7  <5f0fa3d21ae331739966a3ccc8020380> /usr/lib/system/libmacho.dylib
    0x386c7000 - 0x386c8fff  libremovefile.dylib armv7  <01f437d328da35deab8aabf436d82e7a> /usr/lib/system/libremovefile.dylib
    0x386c9000 - 0x386dafff  libsystem_asl.dylib armv7  <46fb91bd43e737c7a8638967c6efe467> /usr/lib/system/libsystem_asl.dylib
    0x386db000 - 0x386dbfff  libsystem_blocks.dylib armv7  <783efecc85a832ac962bea5bc4d365d5> /usr/lib/system/libsystem_blocks.dylib
    0x386dc000 - 0x3873efff  libsystem_c.dylib armv7  <ce110d5651ec34fc96f8648ccd34a18c> /usr/lib/system/libsystem_c.dylib
    0x3873f000 - 0x38741fff  libsystem_configuration.dylib armv7  <c8635900dafa339daa83039ee4c6f7dd> /usr/lib/system/libsystem_configuration.dylib
    0x38742000 - 0x38743fff  libsystem_coreservices.dylib armv7  <4e58541adedc3c798fe75b1945ed38cf> /usr/lib/system/libsystem_coreservices.dylib
    0x38744000 - 0x38750fff  libsystem_coretls.dylib armv7  <fb441163ce283f7eb8a0a05992804873> /usr/lib/system/libsystem_coretls.dylib
    0x38751000 - 0x38757fff  libsystem_dnssd.dylib armv7  <0a86f809f51a3ca3906ccc81b4fa7ec1> /usr/lib/system/libsystem_dnssd.dylib
    0x38758000 - 0x38770fff  libsystem_info.dylib armv7  <f79c213fe29e30a88c05e23d880fe479> /usr/lib/system/libsystem_info.dylib
    0x38771000 - 0x3878bfff  libsystem_kernel.dylib armv7  <04e9aa4f30c63ff1998c1c03c1ad05ac> /usr/lib/system/libsystem_kernel.dylib
    0x3878c000 - 0x387acfff  libsystem_m.dylib armv7  <60534e3dc04f38748f93a6ee287b8b21> /usr/lib/system/libsystem_m.dylib
    0x387ad000 - 0x387bffff  libsystem_malloc.dylib armv7  <d0158624b3b6398682dd68fb5709d25c> /usr/lib/system/libsystem_malloc.dylib
    0x387c0000 - 0x387edfff  libsystem_network.dylib armv7  <f93abe74828030a9b835d091b703e5b2> /usr/lib/system/libsystem_network.dylib
    0x387ee000 - 0x387f3fff  libsystem_networkextension.dylib armv7  <ceda56c88ed13df39d43f0667a39967a> /usr/lib/system/libsystem_networkextension.dylib
    0x387f4000 - 0x387fbfff  libsystem_notify.dylib armv7  <e23e38b2994238538926efe399f6a73a> /usr/lib/system/libsystem_notify.dylib
    0x387fc000 - 0x38801fff  libsystem_platform.dylib armv7  <b04135119e133a9a8360ed9dd5e9c170> /usr/lib/system/libsystem_platform.dylib
    0x38802000 - 0x38808fff  libsystem_pthread.dylib armv7  <d352c982e1d53a7bbf3c37def4c8f314> /usr/lib/system/libsystem_pthread.dylib
    0x38809000 - 0x3880bfff  libsystem_sandbox.dylib armv7  <d4056efc02e83417b56b8d5258d5d2cb> /usr/lib/system/libsystem_sandbox.dylib
    0x3880c000 - 0x3880ffff  libsystem_stats.dylib armv7  <fa1003dfd7c43294a378371a44d518ba> /usr/lib/system/libsystem_stats.dylib
    0x38810000 - 0x38815fff  libsystem_trace.dylib armv7  <e07faea11db63c47bc6c5862a62c926a> /usr/lib/system/libsystem_trace.dylib
    0x38816000 - 0x38816fff  libunwind.dylib armv7  <057b81c42ccf3d9dbfa7fd9a35ee0dab> /usr/lib/system/libunwind.dylib
    0x38817000 - 0x38832fff  libxpc.dylib armv7  <6d3e948a39bd3548aa9038575933bdef> /usr/lib/system/libxpc.dylib
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by kant2002 <gi...@git.apache.org>.
Github user kant2002 commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-58344161
  
    Yes. I probably agree with using `finished` parameter for the fix. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by jacobg <gi...@git.apache.org>.
Github user jacobg commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-91342982
  
    Great thanks @shazron !


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by shazron <gi...@git.apache.org>.
Github user shazron commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-55677107
  
    I'm thinking the proper fix is to check whether finished == YES here, then call destroyViews:
    https://github.com/apache/cordova-plugin-splashscreen/blob/cd61952efc68365138115cb1d5fbefa0695198d1/src/ios/CDVSplashScreen.m#L250-L251



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by jacobg <gi...@git.apache.org>.
Github user jacobg commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-91344385
  
    Sounds good. I'm having trouble repro'ing the crashes; I've only personally seen it twice after a zillion attempts. But I'm definitely getting the reports from customers! I guess I'll submit an updated app to the App Store, and I'll let you know whether the crashes go away. Thanks!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by shazron <gi...@git.apache.org>.
Github user shazron commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-91335908
  
    Ugh - it's related.
    Basically, when calling this:
    https://gist.github.com/shazron/e45705f76bef4448139a#file-gistfile1-m-L15
    
    ...it calls this:
    https://github.com/apache/cordova-plugin-splashscreen/blob/d2e62a551c950041cb4c9683624a04d931f4bee3/src/ios/CDVSplashScreen.m#L108-L119
    
    ... and it crashes because the active thread it is on is not the main thread. All UIKit operations (which the calls in destroyViews are) must be called on the main thread, or they will crash.



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by jacobg <gi...@git.apache.org>.
Github user jacobg commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-101761529
  
    Hi @shazron: I'm still getting the same crash from users after applied the latest fix. Any ideas? Thanks.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by shazron <gi...@git.apache.org>.
Github user shazron commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-55830716
  
    Not sure what you meant exactly by your last comment. So is my proposed fix would be the better way in your opinion?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by kant2002 <gi...@git.apache.org>.
Github user kant2002 commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-55702064
  
    When you are really fast this is not working. New view created before call to `[self destroyViews];` happens inside callback and application crash when it is executed second time. You could try it yourself, just run application and hide it during opening transition multiple times. 
    
    Basically this is what happens:
    ```
    // Pause
    // Resume
    [self createViews]
    [self destroyViews]
    // Pause
    // Resume
    [self createViews]
    [self destroyViews]
    ```
    
    where you expect following conditions
    ```
    // Pause
    // Resume
    [self createViews]
    // Pause
    // Resume
    [self createViews]
    [self destroyViews]
    [self destroyViews]
    ```
    
    I know that this is not proper fix, since it will potentially(?) cause memory leak during that condition (not remember fully now, but when I discover that I deep belief that memory will be leacked).
    To proper implement fix, I have to capture view which has to be destroyed inside callback that way if `[self createViews]` would be called and some handlers and views(?) would be overridden and leaked.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by kant2002 <gi...@git.apache.org>.
Github user kant2002 commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-50960520
  
    Probably another place to fix is 
    https://github.com/apache/cordova-plugin-splashscreen/blob/cd61952efc68365138115cb1d5fbefa0695198d1/src/ios/CDVSplashScreen.m#L220 where should be used OSAtomicCompareAndSwap, does not test this case, maybe this would be realfix.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by shazron <gi...@git.apache.org>.
Github user shazron commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-89449427
  
    @jacobg not too sure what's going on here. Post the full crash log somewhere? (shot in the dark). I'll review the code again.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by jacobg <gi...@git.apache.org>.
Github user jacobg commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-91343025
  
    Are you planning to commit this?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by pppglowacki <gi...@git.apache.org>.
Github user pppglowacki commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-129428816
  
    @jacobg @shazron looks like we are also getting a similar crash. Did someone figure this out?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by jacobg <gi...@git.apache.org>.
Github user jacobg commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-91333840
  
    I just got the following new crash group. Do you think it's the same issue?
    
    ```
    Incident Identifier: DD4D6021-EC75-4FFC-949E-2156E433A5F6
    CrashReporter Key:   BBD0C285-A009-4E30-A3EB-38E0B08CFB08
    Hardware Model:      iPhone5,3
    Process:         F [2051]
    Path:            /private/var/mobile/Containers/Bundle/Application/3A6CB4B1-D61E-4128-A28C-4F6046CEECA6/F.app/F
    Identifier:      com.f.t
    Version:         1.8.1.1
    Code Type:       ARM
    Parent Process:  launchd [1]
    
    Date/Time:       2015-04-09T19:00:49Z
    OS Version:      iPhone OS 8.2 (12D508)
    Report Version:  104
    
    Exception Type:  SIGSEGV
    Exception Codes: SEGV_ACCERR at 0x10
    Crashed Thread:  2
    
    Thread 0:
    0   libsystem_kernel.dylib               0x34021b9c __psynch_mutexwait + 24
    1   WebCore                              0x31464711 _WebTryThreadLock(bool) + 42
    2   WebCore                              0x31464f2d WebThreadLock + 78
    3   UIKit                                0x2939e28d -[UIWebView stringByEvaluatingJavaScriptFromString:] + 14
    4   F                            0x00285395 -[CDVCommandDelegateImpl evalJsHelper2:] + 86
    5   Foundation                           0x2682a89f __NSThreadPerformPerform + 384
    6   CoreFoundation                       0x25abbfbf __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 12
    7   CoreFoundation                       0x25abb3cf __CFRunLoopDoSources0 + 216
    8   CoreFoundation                       0x25ab9a35 __CFRunLoopRun + 770
    9   CoreFoundation                       0x25a073b1 CFRunLoopRunSpecific + 474
    10  CoreFoundation                       0x25a071c3 CFRunLoopRunInMode + 104
    11  GraphicsServices                     0x2d034201 GSEventRunModal + 134
    12  UIKit                                0x2907143d UIApplicationMain + 1438
    13  F                            0x000a21a3 main (main.m:32)
    14  libdyld.dylib                        0x33f57aaf start + 0
    
    Thread 1:
    0   libsystem_kernel.dylib               0x3400e5a4 syscall_thread_switch + 8
    1   libsystem_malloc.dylib               0x3404b753 szone_free_definite_size + 424
    2   libdispatch.dylib                    0x33f3e729 _dispatch_queue_drain + 1466
    3   libdispatch.dylib                    0x33f3e845 _dispatch_mgr_queue_drain + 34
    4   libdispatch.dylib                    0x33f43027 _dispatch_mgr_invoke + 76
    5   libdispatch.dylib                    0x33f37d3b _dispatch_mgr_thread + 36
    
    Thread 2 Crashed:
    0   libobjc.A.dylib                      0x339e5708 objc_release + 8
    1   F                            0x0027ace3 -[CDVPluginResult .cxx_destruct] + 64
    2   libobjc.A.dylib                      0x339cada1 object_cxxDestructFromClass(objc_object*, objc_class*) + 114
    3   libobjc.A.dylib                      0x339d45f7 objc_destructInstance + 32
    4   libobjc.A.dylib                      0x339d461b object_dispose + 12
    5   libobjc.A.dylib                      0x339e5d5f objc_object::sidetable_release(bool) + 164
    6   libobjc.A.dylib                      0x339e61a9 (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 402
    7   libdispatch.dylib                    0x33f404d1 _dispatch_root_queue_drain + 1722
    8   libdispatch.dylib                    0x33f413c3 _dispatch_worker_thread3 + 92
    9   libsystem_pthread.dylib              0x3409cdc1 _pthread_wqthread + 666
    10  libsystem_pthread.dylib              0x3409cb14 start_wqthread + 6
    
    Thread 3:
    0   libsystem_kernel.dylib               0x340229c0 __workq_kernreturn + 8
    1   libsystem_pthread.dylib              0x3409cb14 start_wqthread + 6
    
    Thread 4:
    0   libsystem_kernel.dylib               0x340229c0 __workq_kernreturn + 8
    1   libsystem_pthread.dylib              0x3409cb14 start_wqthread + 6
    
    Thread 5:
    0   libsystem_kernel.dylib               0x340229c0 __workq_kernreturn + 8
    1   libsystem_pthread.dylib              0x3409cb14 start_wqthread + 6
    
    Thread 6:
    0   libsystem_kernel.dylib               0x340229c0 __workq_kernreturn + 8
    1   libsystem_pthread.dylib              0x3409cb14 start_wqthread + 6
    
    Thread 7:
    0   libsystem_kernel.dylib               0x3400e474 mach_msg_trap + 20
    1   CoreFoundation                       0x25abb583 __CFRunLoopServiceMachPort + 144
    2   CoreFoundation                       0x25ab9b29 __CFRunLoopRun + 1014
    3   CoreFoundation                       0x25a073b1 CFRunLoopRunSpecific + 474
    4   CoreFoundation                       0x25a071c3 CFRunLoopRunInMode + 104
    5   CFNetwork                            0x255bb8f7 +[NSURLConnection(Loader) _resourceLoadLoop:] + 484
    6   Foundation                           0x2682a68b __NSThread__main__ + 1116
    7   libsystem_pthread.dylib              0x3409ee23 _pthread_body + 136
    8   libsystem_pthread.dylib              0x3409ed97 _pthread_start + 116
    9   libsystem_pthread.dylib              0x3409cb20 thread_start + 6
    
    Thread 8:
    0   CoreFoundation                       0x25a1c9e0 CFRunLoopAddTimer + 228
    1   CoreFoundation                       0x25a06a91 __CFSetApplyFunction_block_invoke + 10
    2   CoreFoundation                       0x25a068f0 CFBasicHashApply + 118
    3   CoreFoundation                       0x25a0683f CFSetApplyFunction + 160
    4   CoreFoundation                       0x25a1ca61 CFRunLoopAddTimer + 354
    5   WebCore                              0x3147129f WebCore::setSharedTimerFireInterval(double) + 124
    6   WebCore                              0x313fe319 WebCore::timerFired(__CFRunLoopTimer*, void*) + 22
    7   CoreFoundation                       0x25abbeef __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 12
    8   CoreFoundation                       0x25abba6b __CFRunLoopDoTimer + 648
    9   CoreFoundation                       0x25ab9cbb __CFRunLoopRun + 1416
    10  CoreFoundation                       0x25a073b1 CFRunLoopRunSpecific + 474
    11  CoreFoundation                       0x25a071c3 CFRunLoopRunInMode + 104
    12  WebCore                              0x31463483 RunWebThread(void*) + 416
    13  libsystem_pthread.dylib              0x3409ee23 _pthread_body + 136
    14  libsystem_pthread.dylib              0x3409ed97 _pthread_start + 116
    15  libsystem_pthread.dylib              0x3409cb20 thread_start + 6
    
    Thread 9:
    0   libsystem_kernel.dylib               0x340229c0 __workq_kernreturn + 8
    1   libsystem_pthread.dylib              0x3409cb14 start_wqthread + 6
    
    Thread 10:
    0   libsystem_kernel.dylib               0x34021b2c __psynch_cvwait + 24
    1   libsystem_pthread.dylib              0x3409f26d pthread_cond_wait + 38
    2   libc++.1.dylib                       0x332a4e91 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 34
    3   JavaScriptCore                       0x26d0b0ff JSC::BlockAllocator::blockFreeingThreadMain() + 212
    4   JavaScriptCore                       0x26d07597 WTF::wtfThreadEntryPoint(void*) + 12
    5   libsystem_pthread.dylib              0x3409ee23 _pthread_body + 136
    6   libsystem_pthread.dylib              0x3409ed97 _pthread_start + 116
    7   libsystem_pthread.dylib              0x3409cb20 thread_start + 6
    
    Thread 11:
    0   libsystem_kernel.dylib               0x34021b2c __psynch_cvwait + 24
    1   libsystem_pthread.dylib              0x3409f26d pthread_cond_wait + 38
    2   libc++.1.dylib                       0x332a4e91 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 34
    3   JavaScriptCore                       0x26ed2cb5 JSC::GCThread::waitForNextPhase() + 102
    4   JavaScriptCore                       0x26ed2d19 JSC::GCThread::gcThreadMain() + 50
    5   JavaScriptCore                       0x26d07597 WTF::wtfThreadEntryPoint(void*) + 12
    6   libsystem_pthread.dylib              0x3409ee23 _pthread_body + 136
    7   libsystem_pthread.dylib              0x3409ed97 _pthread_start + 116
    8   libsystem_pthread.dylib              0x3409cb20 thread_start + 6
    
    Thread 12:
    0   libsystem_kernel.dylib               0x3400e474 mach_msg_trap + 20
    1   CoreFoundation                       0x25a065eb CFRunLoopWakeUp + 112
    2   CoreFoundation                       0x25a3d907 CFRunLoopAddSource + 588
    3   CoreFoundation                       0x25a75e55 constructCFFD + 142
    4   CoreFoundation                       0x25a2cd3b fileOpen + 192
    5   CoreFoundation                       0x25a1f703 _CFStreamOpen + 76
    6   CoreFoundation                       0x25a2cc5f CFReadStreamOpen + 88
    7   CFNetwork                            0x255dead7 FileURLProtocol::_protocolInterface_startLoad(_CFCachedURLResponse const*) + 428
    8   CFNetwork                            0x25607113 ___ZN19URLConnectionLoader27_private_ScheduleOriginLoadEPK12NSURLRequestPK20_CFCachedURLResponse_block_invoke_2 + 36
    9   CFNetwork                            0x25553db5 ___ZNK19URLConnectionLoader25withExistingProtocolAsyncEU13block_pointerFvP11URLProtocolE_block_invoke + 14
    10  CFNetwork                            0x25553d8d RunloopBlockContext::_invoke_block(void const*, void*) + 58
    11  CoreFoundation                       0x25a06e1d CFArrayApplyFunction + 34
    12  CFNetwork                            0x25553c47 RunloopBlockContext::perform() + 180
    13  CFNetwork                            0x25553b0d MultiplexerSource::perform() + 214
    14  CFNetwork                            0x255539a1 MultiplexerSource::_perform(void*) + 46
    15  CoreFoundation                       0x25abbfbf __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 12
    16  CoreFoundation                       0x25abb3cf __CFRunLoopDoSources0 + 216
    17  CoreFoundation                       0x25ab9a35 __CFRunLoopRun + 770
    18  CoreFoundation                       0x25a073b1 CFRunLoopRunSpecific + 474
    19  CoreFoundation                       0x25a071c3 CFRunLoopRunInMode + 104
    20  WebCore                              0x3148cadd WebCore::runLoaderThread(void*) + 290
    21  JavaScriptCore                       0x26d07597 WTF::wtfThreadEntryPoint(void*) + 12
    22  libsystem_pthread.dylib              0x3409ee23 _pthread_body + 136
    23  libsystem_pthread.dylib              0x3409ed97 _pthread_start + 116
    24  libsystem_pthread.dylib              0x3409cb20 thread_start + 6
    
    Thread 13:
    0   libsystem_kernel.dylib               0x3400e4c4 semaphore_wait_trap + 8
    1   MediaToolbox                         0x2750fb6b fpa_AsyncMovieControlThread + 1964
    2   CoreMedia                            0x2625fc7b figThreadMain + 184
    3   libsystem_pthread.dylib              0x3409ee23 _pthread_body + 136
    4   libsystem_pthread.dylib              0x3409ed97 _pthread_start + 116
    5   libsystem_pthread.dylib              0x3409cb20 thread_start + 6
    
    Thread 14:
    0   libsystem_kernel.dylib               0x34022080 __select + 20
    1   libsystem_pthread.dylib              0x3409ee23 _pthread_body + 136
    2   libsystem_pthread.dylib              0x3409ed97 _pthread_start + 116
    3   libsystem_pthread.dylib              0x3409cb20 thread_start + 6
    
    Thread 15:
    0   libsystem_kernel.dylib               0x3400e474 mach_msg_trap + 20
    1   CoreFoundation                       0x25abb583 __CFRunLoopServiceMachPort + 144
    2   CoreFoundation                       0x25ab9b29 __CFRunLoopRun + 1014
    3   CoreFoundation                       0x25a073b1 CFRunLoopRunSpecific + 474
    4   CoreFoundation                       0x25a071c3 CFRunLoopRunInMode + 104
    5   libAVFAudio.dylib                    0x2470b3ef GenericRunLoopThread::Entry(void*) + 132
    6   libAVFAudio.dylib                    0x246fd90b CAPThread::Entry(CAPThread*) + 192
    7   libsystem_pthread.dylib              0x3409ee23 _pthread_body + 136
    8   libsystem_pthread.dylib              0x3409ed97 _pthread_start + 116
    9   libsystem_pthread.dylib              0x3409cb20 thread_start + 6
    
    Thread 16:
    0   libsystem_kernel.dylib               0x3400e474 mach_msg_trap + 20
    1   CoreFoundation                       0x25abb583 __CFRunLoopServiceMachPort + 144
    2   CoreFoundation                       0x25ab9b29 __CFRunLoopRun + 1014
    3   CoreFoundation                       0x25a073b1 CFRunLoopRunSpecific + 474
    4   CoreFoundation                       0x25a071c3 CFRunLoopRunInMode + 104
    5   Foundation                           0x267658bd -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 262
    6   Foundation                           0x267b3bbd -[NSRunLoop(NSRunLoop) run] + 78
    7   F                            0x000bfb17 +[AFURLConnectionOperation networkRequestThreadEntryPoint:] (AFURLConnectionOperation.m:169)
    8   Foundation                           0x2682a68b __NSThread__main__ + 1116
    9   libsystem_pthread.dylib              0x3409ee23 _pthread_body + 136
    10  libsystem_pthread.dylib              0x3409ed97 _pthread_start + 116
    11  libsystem_pthread.dylib              0x3409cb20 thread_start + 6
    
    Thread 17:
    0   libsystem_kernel.dylib               0x3400e474 mach_msg_trap + 20
    1   CoreFoundation                       0x25abb583 __CFRunLoopServiceMachPort + 144
    2   CoreFoundation                       0x25ab9b29 __CFRunLoopRun + 1014
    3   CoreFoundation                       0x25a073b1 CFRunLoopRunSpecific + 474
    4   CoreFoundation                       0x25a071c3 CFRunLoopRunInMode + 104
    5   AudioToolbox                         0x251be527 GenericRunLoopThread::Entry(void*) + 132
    6   AudioToolbox                         0x251a66d5 CAPThread::Entry(CAPThread*) + 206
    7   libsystem_pthread.dylib              0x3409ee23 _pthread_body + 136
    8   libsystem_pthread.dylib              0x3409ed97 _pthread_start + 116
    9   libsystem_pthread.dylib              0x3409cb20 thread_start + 6
    
    Thread 2 crashed with ARM Thread State:
        pc: 0x339e5708     r7: 0x005a8ce0     sp: 0x005a8cdc     r0: 0x14dc2370 
        r1: 0x00000000     r2: 0x3432e1b8     r3: 0x14db6970     r4: 0x14db6970 
        r5: 0x369df0e8     r6: 0x0027aca1     r8: 0x339d8241     r9: 0x14d99c48 
       r10: 0x369e8451    r11: 0x14db6970     ip: 0x25a23281     lr: 0x0027ace3 
      cpsr: 0x20000030 
    
    Link Register Analysis:
      Symbol: -[CDVPluginResult .cxx_destruct] + 64
      Description: We have determined that the link register (lr) is very likely to contain the return address of frame #0's calling function, and have inserted it into the crashing thread's backtrace as frame #1 to aid in analysis. This determination was made by applying a heuristic to determine whether the crashing function was likely to have created a new stack frame at the time of the crash.
      Type: 1
    
    Binary Images:
       0x97000 -   0x2d6fff  F armv7  <75144a2642ea3a8ba88ca6d491f5dc0c> /private/var/mobile/Containers/Bundle/Application/3A6CB4B1-D61E-4128-A28C-4F6046CEECA6/F.app/F
    0x24360000 - 0x2444dfff  RawCamera armv7s  <adacc97a559031c9aa41dfbebd447646> /System/Library/CoreServices/RawCamera.bundle/RawCamera
    0x24464000 - 0x24579fff  IMGSGX543RC2GLDriver armv7s  <15672de47a2f350c838769dea315452b> /System/Library/Extensions/IMGSGX543RC2GLDriver.bundle/IMGSGX543RC2GLDriver
    0x24585000 - 0x246f1fff  AVFoundation armv7s  <339e734775eb39b982ec0c089a752320> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
    0x246f2000 - 0x24750fff  libAVFAudio.dylib armv7s  <ef35407264a93f56a53a36dc11b72544> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib
    0x2478a000 - 0x2478afff  Accelerate armv7s  <b170327a82973885aba35a81ee82882b> /System/Library/Frameworks/Accelerate.framework/Accelerate
    0x2479b000 - 0x249b6fff  vImage armv7s  <e6895345bbd03617a31c13774e775579> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
    0x249b7000 - 0x24a9dfff  libBLAS.dylib armv7s  <153f3233991f3c47b762ef1743c32e0a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
    0x24a9e000 - 0x24d62fff  libLAPACK.dylib armv7s  <aa5471640b8b3bb3b4dd3fad5ed697db> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
    0x24d63000 - 0x24d74fff  libLinearAlgebra.dylib armv7s  <1ea6ed99c4863d4085eb884e9a616903> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
    0x24d75000 - 0x24df1fff  libvDSP.dylib armv7s  <708711e55e7c3d67a44ca33803d225af> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
    0x24df2000 - 0x24e04fff  libvMisc.dylib armv7s  <3c7e8723a7233076a6a0ff239e4c58eb> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
    0x24e05000 - 0x24e05fff  vecLib armv7s  <0a8061e9131332f28e903a478d0b6e36> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
    0x24e06000 - 0x24e2dfff  Accounts armv7s  <09f1e91f2f903f0d9e91ea22c584cfba> /System/Library/Frameworks/Accounts.framework/Accounts
    0x24e2f000 - 0x24e9dfff  AddressBook armv7s  <fdcde0e632433fccbf0f758694bb5e40> /System/Library/Frameworks/AddressBook.framework/AddressBook
    0x24e9e000 - 0x24fc7fff  AddressBookUI armv7s  <4a01e230f037317d82a10b210d2a292a> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
    0x24fc8000 - 0x24fdafff  AssetsLibrary armv7s  <3fcc2aed41f7349089ac37874db2215a> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
    0x24fdb000 - 0x2515ffff  AudioCodecs armv7s  <5d54db27741039e99ab63c351839b92e> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
    0x25160000 - 0x253d4fff  AudioToolbox armv7s  <c9e12d7ce99833ce969b53099cd194ba> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
    0x2553f000 - 0x256c8fff  CFNetwork armv7s  <d52bddca8cf330959bc40eb43e26d30d> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
    0x256c9000 - 0x2574afff  CloudKit armv7s  <aefe5795b29833608d0fa6ca7ffc2218> /System/Library/Frameworks/CloudKit.framework/CloudKit
    0x2574b000 - 0x257aafff  CoreAudio armv7s  <bb6bc21edca73eb49d2631266ba46d82> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
    0x257c5000 - 0x257e2fff  CoreBluetooth armv7s  <6ab741ad5acc333786f134f936878578> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
    0x257e3000 - 0x259eefff  CoreData armv7s  <7415681a633b37b293ad2fbe776b3396> /System/Library/Frameworks/CoreData.framework/CoreData
    0x259ef000 - 0x25d1cfff  CoreFoundation armv7s  <9924d9f1b68836cfa0dc45ad776a10ba> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
    0x25d1d000 - 0x25e47fff  CoreGraphics armv7s  <e50b5639d14a39d0b83449cd48707fcc> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
    0x25e87000 - 0x25e89fff  libCGXType.A.dylib armv7s  <c816f78ae8113d599d194d04d501c6e1> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib
    0x25e8a000 - 0x25e94fff  libCMSBuiltin.A.dylib armv7s  <a5011cd35faa344d983be6e9224983c5> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib
    0x2607c000 - 0x26097fff  libRIP.A.dylib armv7s  <c2266f3ec31c38798f113d59c5102db7> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
    0x26098000 - 0x261a6fff  CoreImage armv7s  <44b768c0b39c3197b6ecc5bed08cd0af> /System/Library/Frameworks/CoreImage.framework/CoreImage
    0x261a7000 - 0x261fffff  CoreLocation armv7s  <27f6fb3e7d053990989c057d0876bd8b> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
    0x26231000 - 0x262ccfff  CoreMedia armv7s  <3afe18bd92493ccb94501e9ffb07eb89> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
    0x262cd000 - 0x263aafff  CoreMotion armv7s  <c6e4968c002738f18dbf7169c232b994> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
    0x263ab000 - 0x26409fff  CoreTelephony armv7s  <580b75cd06563449931429e0fc6dd16b> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
    0x2640a000 - 0x264d6fff  CoreText armv7s  <b8f896f010923eaebd88f04d9fa92db5> /System/Library/Frameworks/CoreText.framework/CoreText
    0x264d7000 - 0x264ecfff  CoreVideo armv7s  <982f9388857d38dd98d7f4b793cefd74> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
    0x264ed000 - 0x265e2fff  EventKit armv7s  <5b8e871f5568346099b77f9e6974ef9a> /System/Library/Frameworks/EventKit.framework/EventKit
    0x2675a000 - 0x2695dfff  Foundation armv7s  <c5d6421377e13c2e8bf4cbd917d874b1> /System/Library/Frameworks/Foundation.framework/Foundation
    0x2698a000 - 0x269a9fff  GSS armv7s  <3b3cf67b07403c02a0002d795ea46fbf> /System/Library/Frameworks/GSS.framework/GSS
    0x26a5d000 - 0x26ab2fff  IOKit armv7s  <c23ce2b864ec3c9ca424fab1145e6241> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x26ab3000 - 0x26cf5fff  ImageIO armv7s  <7c57f7fe7e1c3604a8d86053c716cdf2> /System/Library/Frameworks/ImageIO.framework/ImageIO
    0x26cf6000 - 0x27044fff  JavaScriptCore armv7s  <7adced020bfc37a595c0811423f9fde8> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
    0x27322000 - 0x2732afff  MediaAccessibility armv7s  <4cea4ac5cfd4303a86b331c10e7ce8a6> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
    0x2732b000 - 0x2750afff  MediaPlayer armv7s  <3a4bc2cfd8653621ad5944b42cad8fdc> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
    0x2750b000 - 0x27885fff  MediaToolbox armv7s  <b3cab8f05a4e32e193e5e1da502727a3> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
    0x27945000 - 0x279b1fff  Metal armv7s  <00a89ca37d0834898a8e81b76357fcd1> /System/Library/Frameworks/Metal.framework/Metal
    0x279b2000 - 0x27a45fff  MobileCoreServices armv7s  <01ea079439393391821634683ccb412a> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
    0x27b3c000 - 0x27b6dfff  OpenAL armv7s  <6e48355ff76d31c480f0ad0caed1daf7> /System/Library/Frameworks/OpenAL.framework/OpenAL
    0x2844b000 - 0x28522fff  GLEngine armv7s  <907a1b4d43423257842ff5eda47b05ad> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
    0x28523000 - 0x2852bfff  OpenGLES armv7s  <02aa6ebd148a3449a5fb73365d45ea87> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
    0x2852d000 - 0x2852dfff  libCVMSPluginSupport.dylib armv7s  <18deef6946913a25969285502316b674> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
    0x2852e000 - 0x28530fff  libCoreFSCache.dylib armv7s  <d252e7981a543f6580ba951a037d2590> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
    0x28531000 - 0x28534fff  libCoreVMClient.dylib armv7s  <405d9912249e3a3a9e60bfb9edcb19d8> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
    0x28535000 - 0x2853dfff  libGFXShared.dylib armv7s  <248be3146cab319292bd30806d11f792> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
    0x2853e000 - 0x28580fff  libGLImage.dylib armv7s  <1e9a22a10aa2364ebdcb68d7f8a153e6> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
    0x28581000 - 0x286bcfff  libGLProgrammability.dylib armv7s  <ca9b9311cdd73009b811892bf4dbe21d> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
    0x28a29000 - 0x28b7bfff  QuartzCore armv7s  <87f4d4be177f3a9c8c251da670dcf45b> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
    0x28b7c000 - 0x28bcffff  QuickLook armv7s  <ab076503a86c325f80e2c50d05ffe636> /System/Library/Frameworks/QuickLook.framework/QuickLook
    0x28dbe000 - 0x28dfffff  Security armv7s  <7434b508472d355298f93d5e8a5e725e> /System/Library/Frameworks/Security.framework/Security
    0x28fa3000 - 0x29000fff  SystemConfiguration armv7s  <53b886e1d32f32a2b6c0cb2e0d93ccf2> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
    0x29003000 - 0x298a9fff  UIKit armv7s  <81da17cbaad83ba5acaa630781446352> /System/Library/Frameworks/UIKit.framework/UIKit
    0x298aa000 - 0x29911fff  VideoToolbox armv7s  <867315c8522039d3aeb629502059f6d6> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
    0x29941000 - 0x29b27fff  WebKit armv7s  <8fd2d7a7389c3efa89700e371946577f> /System/Library/Frameworks/WebKit.framework/WebKit
    0x29e58000 - 0x29e63fff  AOSNotification armv7s  <d3e35dcc6918381aa0745eedc97f80a4> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification
    0x29fbd000 - 0x2a00dfff  AccountsDaemon armv7s  <65fd994bdc603127acb44c690381e141> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
    0x2a00e000 - 0x2a02ffff  AccountsUI armv7s  <88a4f07ebb583241b94abaa4db1856a4> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI
    0x2a030000 - 0x2a034fff  AggregateDictionary armv7s  <1f4aae1e74f230488125530b315d01f6> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
    0x2a1fd000 - 0x2a228fff  AirPlaySupport armv7s  <c727539915aa32bc80dd90711c9d309c> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport
    0x2a42e000 - 0x2a46cfff  AppSupport armv7s  <baba5ec9cb6c3b5e8097412705a57bd7> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
    0x2a46d000 - 0x2a4b5fff  AppleAccount armv7s  <018fcce59c923c9ab9e2ea148fe1f2a4> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
    0x2a59e000 - 0x2a5dbfff  AppleJPEG armv7s  <7ccf7d8822283911a26b7500b3b437b2> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
    0x2a5e6000 - 0x2a5f8fff  ApplePushService armv7s  <32ae1ae398cc3f0e9ec0426ca0870d34> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
    0x2a5f9000 - 0x2a5fffff  AppleSRP armv7s  <8b69881099043bf2bd8b3ce229ad1b32> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP
    0x2a634000 - 0x2a63dfff  AssertionServices armv7s  <f55c714a5a013c528dfbe7c0d1689b91> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
    0x2a63e000 - 0x2a656fff  AssetsLibraryServices armv7s  <2eeb5c26a5243db08a8fc5ae68d154e7> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
    0x2a657000 - 0x2a68dfff  AssistantServices armv7s  <4231dc07a0b33cebaec3320a6ac7cf88> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
    0x2a6bd000 - 0x2a6c1fff  BTLEAudioController armv7s  <09bd58dd309a35fcbd0797970b740e6b> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController
    0x2a6c2000 - 0x2a6d9fff  BackBoardServices armv7s  <205d23f721fd35e584853e2d487af9b3> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
    0x2a6dc000 - 0x2a711fff  BaseBoard armv7s  <d780982e45423486ab6b6b6ad21abd23> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
    0x2a712000 - 0x2a718fff  BluetoothManager armv7s  <753fc00efc263cd9a98eb33ac6898fc5> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
    0x2a719000 - 0x2a73ffff  Bom armv7s  <e4cf22bce7a53599bcccdaf89140fdc0> /System/Library/PrivateFrameworks/Bom.framework/Bom
    0x2a811000 - 0x2a818fff  CacheDelete armv7s  <796e062ad6f13a1db26efcc99360cefc> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
    0x2a85d000 - 0x2a886fff  CalendarFoundation armv7s  <98f804e98b9a3cd8b8db61afb60fa766> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
    0x2a99d000 - 0x2a9a5fff  CaptiveNetwork armv7s  <10fccd2e42fe35919ec80d881c735054> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
    0x2a9a6000 - 0x2aac8fff  Celestial armv7s  <9738f5492d733592a8c0e70100d4fe8b> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
    0x2aad6000 - 0x2aaeefff  CertInfo armv7s  <81941a4b91e435e987daf432e43faef3> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo
    0x2aaef000 - 0x2aaf4fff  CertUI armv7s  <8f7c4dfd3aca3ef789dbb4551f65a122> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
    0x2ac31000 - 0x2ac52fff  ChunkingLibrary armv7s  <4b029225b4033493aa979657e5503a16> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
    0x2b001000 - 0x2b0acfff  CloudPhotoLibrary armv7s  <d0d018f2c56130dc8ed830e5acd55c42> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
    0x2b0fd000 - 0x2b0fffff  CommonAuth armv7s  <592c71c8a6fe3c1a880313f6f345137a> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
    0x2b100000 - 0x2b110fff  CommonUtilities armv7s  <f3e078abb75f3788b1d2b2a564eb786e> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
    0x2b111000 - 0x2b115fff  CommunicationsFilter armv7s  <e7342616fbc730888bf4c6db4ccaa4e2> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
    0x2b1d6000 - 0x2b1dafff  ConstantClasses armv7s  <44624a0f6f633645a00a3cf9a30b4c23> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
    0x2b1db000 - 0x2b213fff  ContentIndex armv7s  <c76c9897423c3a4cb583f0c28ff83f3a> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
    0x2b214000 - 0x2b217fff  CoreAUC armv7s  <a9b4259de0743f539097e0a709ae357b> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
    0x2b244000 - 0x2b298fff  CoreDAV armv7s  <fe5b9ce965bd3b2093c337b03be22d1d> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
    0x2b299000 - 0x2b2b9fff  CoreDuet armv7s  <b44ee1884aa53ad4be7a2ad93a7ca163> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
    0x2b2bf000 - 0x2b2cffff  CoreDuetDaemonProtocol armv7s  <589ab858f78e3372bbfc55036a1f372a> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
    0x2b2d6000 - 0x2b2d8fff  CoreDuetDebugLogging armv7s  <a54577d565b83022ad7da2e3c5a5a8f1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
    0x2b427000 - 0x2b527fff  CoreMediaStream armv7s  <ffce49555072331aa985ad018b0b79ef> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
    0x2b528000 - 0x2b5c3fff  CorePDF armv7s  <93e4925313663cbf970beb535d829f1b> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
    0x2b6a6000 - 0x2b6c4fff  CoreServicesInternal armv7s  <ecd55295b62d386c90ae564978272244> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
    0x2b8c4000 - 0x2b944fff  CoreUI armv7s  <9c6bc8f4fa783388b8c09596402bd051> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
    0x2b945000 - 0x2b9affff  CoreUtils armv7s  <8054b84ba8a33c148b9689dd3f88aac6> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
    0x2b9b0000 - 0x2b9b5fff  CrashReporterSupport armv7s  <95aaae72f9fc3756b5bca68275245fab> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
    0x2b9b6000 - 0x2b9bbfff  DAAPKit armv7s  <e682b52c60cc310f98d26a84c01832e3> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
    0x2b9bc000 - 0x2b9c6fff  DCIMServices armv7s  <6da01edd76dc3d448f02f74114c16de6> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
    0x2b9c7000 - 0x2ba0cfff  DataAccess armv7s  <fb7cb30047e43d408f3d35837346d1e4> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
    0x2bbfe000 - 0x2bc1ffff  DataAccessExpress armv7s  <d0e876ba262039c5ab0f92acb607eb12> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
    0x2bc2a000 - 0x2bc41fff  DataDetectorsCore armv7s  <ea197848c06839fe99069b46f98de1f7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
    0x2bc43000 - 0x2bc5cfff  DataDetectorsUI armv7s  <0e05b9f491413566bf6ee17fc763d747> /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
    0x2bc5d000 - 0x2bc63fff  DataMigration armv7s  <94908a4ed7b034ac8e30c1cae7e4feab> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
    0x2bc6d000 - 0x2bc6efff  DiagnosticLogCollection armv7s  <9d84890eefe132548cfeaf1f411dcb82> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
    0x2bc6f000 - 0x2bc89fff  DictionaryServices armv7s  <e13a04ece193371f8dc1bea3773fb476> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
    0x2bca8000 - 0x2bcc7fff  EAP8021X armv7s  <15c71e8b120b3b6c9c232de6dff4055c> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
    0x2be04000 - 0x2c227fff  FaceCore armv7s  <9731ccedf231369ba7da37d22b807286> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
    0x2c290000 - 0x2c290fff  FontServices armv7s  <68f4057f3bc0315088973b27f3183287> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
    0x2c291000 - 0x2c366fff  libFontParser.dylib armv7s  <63d94b0574793ee9998ce725153a6f54> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x2c385000 - 0x2c394fff  libGSFontCache.dylib armv7s  <d9ec77b2334a3eacba956a7343890a8a> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
    0x2c478000 - 0x2c493fff  FrontBoardServices armv7s  <6a0538ed555e396bbecb9183314da66a> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
    0x2c9fc000 - 0x2ca03fff  libGPUSupportMercury.dylib armv7s  <3cba335ec6e236d3be2e9de92a4575e3> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
    0x2cd7c000 - 0x2cd92fff  GenerationalStorage armv7s  <39f3748c838438a3842b9a5ec5b6c62b> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
    0x2cd93000 - 0x2d02afff  GeoServices armv7s  <d5489b4c67a93e3680f902bc1955cfc0> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
    0x2d02b000 - 0x2d03bfff  GraphicsServices armv7s  <c552c842c10431dfba8141dffd9beb52> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
    0x2d15d000 - 0x2d1acfff  Heimdal armv7s  <89658112834d3b0b99406319de0ddc69> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
    0x2d275000 - 0x2d2f9fff  HomeSharing armv7s  <3c8e2e302d0339558b66726ed22436cf> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
    0x2d358000 - 0x2d3b7fff  IDS armv7s  <c48a45fd39883c57b85320bd7a70668e> /System/Library/PrivateFrameworks/IDS.framework/IDS
    0x2d3b8000 - 0x2d3e3fff  IDSFoundation armv7s  <ed2d37f9d0bf39818eb7d200b0244dd2> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
    0x2d597000 - 0x2d5fbfff  IMFoundation armv7s  <a4ac416845d838d4ad7505a4e4c9dca4> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
    0x2d603000 - 0x2d606fff  IOAccelerator armv7s  <a92bf62bbbc837f5959f8d2d0eee3afd> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
    0x2d609000 - 0x2d60ffff  IOMobileFramebuffer armv7s  <3f879ba3ba5633a1b111433ba49bc775> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
    0x2d610000 - 0x2d615fff  IOSurface armv7s  <4bf18307118c3bc3a9917d3f773988d3> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
    0x2d616000 - 0x2d617fff  IOSurfaceAccelerator armv7s  <f11999f87f65300a92f60c505dac2986> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
    0x2d6b3000 - 0x2d6b9fff  IntlPreferences armv7s  <accfbce79e30359180248894c678cc6d> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
    0x2d6ba000 - 0x2d6f0fff  LanguageModeling armv7s  <65b32d31324e3a2daf3fd629a907a389> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
    0x2d76b000 - 0x2d7a7fff  MIME armv7s  <98740de075f53965a75c73b437df39e5> /System/Library/PrivateFrameworks/MIME.framework/MIME
    0x2d7a8000 - 0x2d802fff  MMCS armv7s  <bbe274f8019036c2bcfd1422eb2470ba> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
    0x2d851000 - 0x2d85dfff  MailServices armv7s  <910aeb57c97631f6a6b2caea7ce975a6> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
    0x2d890000 - 0x2d92ffff  ManagedConfiguration armv7s  <67a0f6f150623b4e88b16fc847338994> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
    0x2d93e000 - 0x2d93ffff  Marco armv7s  <183a524e828a38a1967db1cebf9641c7> /System/Library/PrivateFrameworks/Marco.framework/Marco
    0x2d940000 - 0x2d9b8fff  MediaControlSender armv7s  <309c78d824963df3a7de696b6232e781> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender
    0x2da53000 - 0x2da67fff  MediaRemote armv7s  <bc65fb89e4a73ff0934f0e482147f4ee> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
    0x2da68000 - 0x2da7afff  MediaServices armv7s  <1b8727bbee1b3a4285f0bfefa8de9995> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
    0x2da7b000 - 0x2da93fff  MediaStream armv7s  <27d170e32e813a3ab2efbb9fccc63d21> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
    0x2daf8000 - 0x2dbd5fff  Message armv7s  <57ac6626694e34e691ff3cec4692f104> /System/Library/PrivateFrameworks/Message.framework/Message
    0x2dbdb000 - 0x2dbddfff  MessageSupport armv7s  <b4d71df6d17f355293c2a1d9ecc45a6b> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
    0x2dbef000 - 0x2dbfcfff  MobileAsset armv7s  <c0713b14b8b4330cb3bc8485a3b4b422> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
    0x2dc23000 - 0x2dc2cfff  MobileBluetooth armv7s  <154a9ed4a113346ebf210ace642cffd3> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
    0x2dc48000 - 0x2dc50fff  MobileIcons armv7s  <004226de78993bd6b86fdcdb46623677> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
    0x2dc51000 - 0x2dc58fff  MobileInstallation armv7s  <4df1bd55e76c3145afcd9b3abbec22ac> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
    0x2dc59000 - 0x2dc65fff  MobileKeyBag armv7s  <08adbb5fd2ef39f1bfbfa41f1eb54c1e> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
    0x2dc92000 - 0x2dc95fff  MobileSystemServices armv7s  <ca2adcf15ce834c989c4af2bc7c4ae79> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
    0x2dcb7000 - 0x2dcc4fff  MobileWiFi armv7s  <36db4443a9913096a55123474eaaa027> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
    0x2dd03000 - 0x2ded2fff  MusicLibrary armv7s  <074c7ae7112d3dd3a18b4adf8cb1d0f1> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
    0x2e050000 - 0x2e05efff  NanoPreferencesSync armv7s  <3e3baa16a90c3da0b208c47748c36100> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
    0x2e05f000 - 0x2e072fff  NanoRegistry armv7s  <74f4c04e9cc033639828b558f3b1b505> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
    0x2e087000 - 0x2e08cfff  Netrb armv7s  <c7112f327abf3d48aaedc024a5ca2c33> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
    0x2e08d000 - 0x2e093fff  NetworkStatistics armv7s  <457ccadd5a1b3dada1f9236340e33c61> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
    0x2e094000 - 0x2e0b1fff  Notes armv7s  <14da6174e1113217a97451d5881adcd7> /System/Library/PrivateFrameworks/Notes.framework/Notes
    0x2e0b7000 - 0x2e0b9fff  OAuth armv7s  <31e2239fe22c393d81b0a9453fe5fcb3> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
    0x2e814000 - 0x2e850fff  OpenCL armv7s  <880c2f8b8b3e3aa5bb847a5bf5feedcc> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
    0x2e985000 - 0x2e9acfff  PersistentConnection armv7s  <be24a077478c369fb6a60c13387e6504> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
    0x2eb17000 - 0x2ed83fff  PhotoLibraryServices armv7s  <3ea4f407a5483844a835853ef7c6e122> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
    0x2ed84000 - 0x2ed8dfff  PhotosFormats armv7s  <3f11a79e1c41381ca136377572994d38> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
    0x2ed8e000 - 0x2edd8fff  PhysicsKit armv7s  <04636f225d533b12ada3ec7c8091af69> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
    0x2edd9000 - 0x2edeffff  PlugInKit armv7s  <2d06163c8f53393ea165c280538e23d7> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
    0x2edf0000 - 0x2edf7fff  PowerLog armv7s  <5c785e14cb1e33ed8a77ab49962bbd86> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
    0x2effe000 - 0x2f0adfff  Preferences armv7s  <5a06c9b79248347f8e2685c3a7039852> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
    0x2f0ae000 - 0x2f0ebfff  PrintKit armv7s  <939d13136b4b3189bbfd9b4cecdbf4a8> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
    0x2f0f0000 - 0x2f184fff  ProofReader armv7s  <325b83e61c11377fb73dc906d1290cc2> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
    0x2f185000 - 0x2f194fff  ProtectedCloudStorage armv7s  <df6216ff5f543d67ac8f750db7ff2ea2> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
    0x2f195000 - 0x2f1a1fff  ProtocolBuffer armv7s  <07b1f39a87a4328998ca0c0e45a99128> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
    0x2f1d6000 - 0x2f245fff  Quagga armv7s  <243d25491bf73018aa0aa5238fbb6541> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
    0x2f533000 - 0x2f5c8fff  SAObjects armv7s  <45378b9b1ac2318b96c95ea98f8a5399> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
    0x2f7bb000 - 0x2f7d5fff  SpringBoardServices armv7s  <67583143a2da3e69885b4f987366ab5a> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
    0x2fb47000 - 0x2fc73fff  StoreServices armv7s  <8a5a058ba2003680b4bfc8f34a061adf> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
    0x2fd44000 - 0x2fd46fff  TCC armv7s  <80a05e480ea53d26a4f31123beed8afb> /System/Library/PrivateFrameworks/TCC.framework/TCC
    0x2fd9a000 - 0x2fddffff  TelephonyUtilities armv7s  <997799acc591303b94e3802ed95a1343> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
    0x309a3000 - 0x309cbfff  TextInput armv7s  <c1ca800641f335a19e817ed327e38246> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
    0x30a88000 - 0x30b4afff  UIFoundation armv7s  <f26ac9e2df5b3b0ca86df5b79f3bd7f8> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
    0x30b71000 - 0x30b74fff  UserFS armv7s  <23943f5513333bdfafe65297f2f08e55> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
    0x312ed000 - 0x3130bfff  VoiceServices armv7s  <1fb46eee95e33905868312efa8070869> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
    0x313a4000 - 0x313cafff  WebBookmarks armv7s  <e5f0f8d22b673f448c28cc04817e21d6> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
    0x313e0000 - 0x31f60fff  WebCore armv7s  <e9f5aaac26533d58845011802e906140> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
    0x31f61000 - 0x3201ffff  WebKitLegacy armv7s  <6d126fab646433b5b70e53fca3bc3909> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
    0x321c9000 - 0x321cffff  XPCKit armv7s  <43d8bffab44734feacc683811255e619> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
    0x321d0000 - 0x321d8fff  XPCObjects armv7s  <3db1acbcfc593ad982187ae0af01d993> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects
    0x323c3000 - 0x323e7fff  iCalendar armv7s  <126f92193371363ea4ca89295c5465ae> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
    0x32407000 - 0x32442fff  iTunesStore armv7s  <e37d5437eb8c3ee8ba8fe110e5df39cf> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
    0x32c70000 - 0x32c78fff  libAccessibility.dylib armv7s  <6e34291faad43781a17464523142c7a1> /usr/lib/libAccessibility.dylib
    0x32ecc000 - 0x32ee2fff  libCRFSuite.dylib armv7s  <81bb6391c1643d038ea597f57762d71f> /usr/lib/libCRFSuite.dylib
    0x32f15000 - 0x33019fff  libFosl_dynamic.dylib armv7s  <2fc617cd0aee379988c3863964aaf1ad> /usr/lib/libFosl_dynamic.dylib
    0x33033000 - 0x3304afff  libMobileGestalt.dylib armv7s  <9ba6174d5d1b31698d70c4855b6078da> /usr/lib/libMobileGestalt.dylib
    0x33070000 - 0x33071fff  libSystem.B.dylib armv7s  <02104bfb10f13d22a1cd5bf04ba0c10e> /usr/lib/libSystem.B.dylib
    0x330e2000 - 0x33126fff  libTelephonyUtilDynamic.dylib armv7s  <7788f77375dd3756a934364b512c4137> /usr/lib/libTelephonyUtilDynamic.dylib
    0x33236000 - 0x33258fff  libarchive.2.dylib armv7s  <3e3a22a4d4603e20967a04898efb99ba> /usr/lib/libarchive.2.dylib
    0x33259000 - 0x33259fff  libassertion_extension.dylib armv7s  <362ff6610704394bb58ab4c1492fb307> /usr/lib/libassertion_extension.dylib
    0x33288000 - 0x33294fff  libbsm.0.dylib armv7s  <ab7814c202aa3a978d5fc4066d507ded> /usr/lib/libbsm.0.dylib
    0x33295000 - 0x3329efff  libbz2.1.0.dylib armv7s  <b174e42e490732959f042109e83b4068> /usr/lib/libbz2.1.0.dylib
    0x3329f000 - 0x332e9fff  libc++.1.dylib armv7s  <85cef3e4e8453efda7a44d09a528ca73> /usr/lib/libc++.1.dylib
    0x332ea000 - 0x33305fff  libc++abi.dylib armv7s  <f854f7b9943835089d64cdb166fb7944> /usr/lib/libc++abi.dylib
    0x33307000 - 0x33314fff  libcmph.dylib armv7s  <006a8f6104073fd59f65f0ee76b7e8f7> /usr/lib/libcmph.dylib
    0x33315000 - 0x3331dfff  libcupolicy.dylib armv7s  <1536179fc38339e3a413d4ed3e835285> /usr/lib/libcupolicy.dylib
    0x33344000 - 0x3335dfff  libextension.dylib armv7s  <db293f05a78935cb9b9d576d4acef7c1> /usr/lib/libextension.dylib
    0x3337c000 - 0x3337ffff  libheimdal-asn1.dylib armv7s  <70ce5b437d51333e831f09b6d70996db> /usr/lib/libheimdal-asn1.dylib
    0x33380000 - 0x3346dfff  libiconv.2.dylib armv7s  <579ad521cf163395bf9b360b8700b569> /usr/lib/libiconv.2.dylib
    0x3346e000 - 0x335dcfff  libicucore.A.dylib armv7s  <b57df05026d73ec0aac4a815217f6185> /usr/lib/libicucore.A.dylib
    0x335e9000 - 0x335e9fff  liblangid.dylib armv7s  <1c7a4628d4f93f57b0e9122aad9a41bc> /usr/lib/liblangid.dylib
    0x335ea000 - 0x335f4fff  liblockdown.dylib armv7s  <6bcacfdd347535f8aca89e45d19be50e> /usr/lib/liblockdown.dylib
    0x335f5000 - 0x3360afff  liblzma.5.dylib armv7s  <d503bc52f6ab336a951c7498fb2818c6> /usr/lib/liblzma.5.dylib
    0x33984000 - 0x33999fff  libmis.dylib armv7s  <d76f316f54883fb0a44fe4178069d126> /usr/lib/libmis.dylib
    0x339c5000 - 0x33bbffff  libobjc.A.dylib armv7s  <8529d172d0d4376295751bc1657c184d> /usr/lib/libobjc.A.dylib
    0x33c74000 - 0x33c8afff  libresolv.9.dylib armv7s  <db3fa6e2c18b38b38a25828c2eb2eb94> /usr/lib/libresolv.9.dylib
    0x33cb5000 - 0x33d66fff  libsqlite3.dylib armv7s  <c71c02e14d9e3f20b1e54eef5c0bfeec> /usr/lib/libsqlite3.dylib
    0x33db4000 - 0x33ddafff  libtidy.A.dylib armv7s  <97fd6bd77752374fb766bbbc31d83b6f> /usr/lib/libtidy.A.dylib
    0x33ddb000 - 0x33de3fff  libtzupdate.dylib armv7s  <e2906e95adfe33b48c7a9314c73fc515> /usr/lib/libtzupdate.dylib
    0x33de7000 - 0x33e9dfff  libxml2.2.dylib armv7s  <fad7ce69d3b03c2f97f39dc70fd1b35e> /usr/lib/libxml2.2.dylib
    0x33e9e000 - 0x33ebffff  libxslt.1.dylib armv7s  <eed3c48ecd8c3f688357c7e9634c28a5> /usr/lib/libxslt.1.dylib
    0x33ec0000 - 0x33eccfff  libz.1.dylib armv7s  <9e6cb733a633391eaf5eeccd9b9ab4d4> /usr/lib/libz.1.dylib
    0x33ecd000 - 0x33ed1fff  libcache.dylib armv7s  <464e89321abb31a29f42b476cd75786d> /usr/lib/system/libcache.dylib
    0x33ed2000 - 0x33edbfff  libcommonCrypto.dylib armv7s  <0c2911b8dc653852913d4402f021a6c6> /usr/lib/system/libcommonCrypto.dylib
    0x33edc000 - 0x33ee0fff  libcompiler_rt.dylib armv7s  <2e4a01eff3dd333b99ab14b54580aecd> /usr/lib/system/libcompiler_rt.dylib
    0x33ee1000 - 0x33ee7fff  libcopyfile.dylib armv7s  <d365247190fe3bafbadb0e3a35b988fd> /usr/lib/system/libcopyfile.dylib
    0x33ee8000 - 0x33f34fff  libcorecrypto.dylib armv7s  <e93edd093a633c40af2fcf9de68a813b> /usr/lib/system/libcorecrypto.dylib
    0x33f35000 - 0x33f55fff  libdispatch.dylib armv7s  <d047f787bfc33eb08eaf3a34f82a1eb5> /usr/lib/system/libdispatch.dylib
    0x33f56000 - 0x33f57fff  libdyld.dylib armv7s  <d76438e6086a38eb8d9e38b7d3a4fedd> /usr/lib/system/libdyld.dylib
    0x33f58000 - 0x33f58fff  libkeymgr.dylib armv7s  <d961518f774a38ce80d87302f5f2d270> /usr/lib/system/libkeymgr.dylib
    0x33f59000 - 0x33f59fff  liblaunch.dylib armv7s  <94848ea6b094336d893c38753795f5ac> /usr/lib/system/liblaunch.dylib
    0x33f5a000 - 0x33f5dfff  libmacho.dylib armv7s  <a7e04a25a2143498be67845bc23fff4a> /usr/lib/system/libmacho.dylib
    0x33f5e000 - 0x33f5ffff  libremovefile.dylib armv7s  <99984750ecaf3483976db606e4a6d763> /usr/lib/system/libremovefile.dylib
    0x33f60000 - 0x33f71fff  libsystem_asl.dylib armv7s  <983391f3b4763ae59c7730f0b80dbb0b> /usr/lib/system/libsystem_asl.dylib
    0x33f72000 - 0x33f72fff  libsystem_blocks.dylib armv7s  <9024447e02ef3270b46771adc93133c9> /usr/lib/system/libsystem_blocks.dylib
    0x33f73000 - 0x33fd6fff  libsystem_c.dylib armv7s  <a84f366484fd3d21b3b0ee60ac01ac59> /usr/lib/system/libsystem_c.dylib
    0x33fd7000 - 0x33fd9fff  libsystem_configuration.dylib armv7s  <80e2c84c178837c5b91e591f6a4d7201> /usr/lib/system/libsystem_configuration.dylib
    0x33fda000 - 0x33fdbfff  libsystem_coreservices.dylib armv7s  <9290fc392177307faa8403f9aa89553f> /usr/lib/system/libsystem_coreservices.dylib
    0x33fdc000 - 0x33fe8fff  libsystem_coretls.dylib armv7s  <6a0f500cccaf3e848179ce8bae2a0880> /usr/lib/system/libsystem_coretls.dylib
    0x33fe9000 - 0x33feffff  libsystem_dnssd.dylib armv7s  <12b8450299ab3104bf59e0e4852c63c4> /usr/lib/system/libsystem_dnssd.dylib
    0x33ff0000 - 0x3400cfff  libsystem_info.dylib armv7s  <f37a73a834bb355ca035e82f81de2d26> /usr/lib/system/libsystem_info.dylib
    0x3400d000 - 0x34027fff  libsystem_kernel.dylib armv7s  <31ae14feacbd345cb0a6f3041834e3ea> /usr/lib/system/libsystem_kernel.dylib
    0x34028000 - 0x34047fff  libsystem_m.dylib armv7s  <0c284ff2f4d130299a6cf38fe5ff8303> /usr/lib/system/libsystem_m.dylib
    0x34048000 - 0x3405afff  libsystem_malloc.dylib armv7s  <5c198ca70fa7378da137cd816decbbf8> /usr/lib/system/libsystem_malloc.dylib
    0x3405b000 - 0x34088fff  libsystem_network.dylib armv7s  <c1e9979a8c973feeb4acbce97e80508a> /usr/lib/system/libsystem_network.dylib
    0x34089000 - 0x3408efff  libsystem_networkextension.dylib armv7s  <6d884e2846e83abf8208027e115dddea> /usr/lib/system/libsystem_networkextension.dylib
    0x3408f000 - 0x34096fff  libsystem_notify.dylib armv7s  <787d39efb46b3b4d94fb3cc95b618779> /usr/lib/system/libsystem_notify.dylib
    0x34097000 - 0x3409bfff  libsystem_platform.dylib armv7s  <badd9ef3da483107966fde4120b12fe2> /usr/lib/system/libsystem_platform.dylib
    0x3409c000 - 0x340a2fff  libsystem_pthread.dylib armv7s  <2d3aa96e56a73fcdb25f3e0a536e6eeb> /usr/lib/system/libsystem_pthread.dylib
    0x340a3000 - 0x340a5fff  libsystem_sandbox.dylib armv7s  <8cb953de567c3fbcad59887f5afbfb41> /usr/lib/system/libsystem_sandbox.dylib
    0x340a6000 - 0x340a9fff  libsystem_stats.dylib armv7s  <d882f76e1481348aaeae6fb274046cee> /usr/lib/system/libsystem_stats.dylib
    0x340aa000 - 0x340affff  libsystem_trace.dylib armv7s  <4bc82d65e90b3ecbb8317222946ff47f> /usr/lib/system/libsystem_trace.dylib
    0x340b0000 - 0x340b0fff  libunwind.dylib armv7s  <b95c6662d06a3a9988fe6265a26ddc42> /usr/lib/system/libunwind.dylib
    0x340b1000 - 0x340ccfff  libxpc.dylib armv7s  <0db6e5db4d633912804338bee3b1ea27> /usr/lib/system/libxpc.dylib
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by kant2002 <gi...@git.apache.org>.
Github user kant2002 commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-50960218
  
    When very quickly open and show application, there possibility of the application crash.
    This is caused by following code:
    https://github.com/apache/cordova-plugin-splashscreen/blob/cd61952efc68365138115cb1d5fbefa0695198d1/src/ios/CDVSplashScreen.m#L242
    
    When [UIView transitionWithView... animation:] started executing and application closed before completion handler is invoked, that transition started executed second time and we have two calls [self destroyViews] which would be executed twice and cause the crash. Hopefully this is clear


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] cordova-plugin-splashscreen pull request: CB-7204 Fixed race condi...

Posted by shazron <gi...@git.apache.org>.
Github user shazron commented on the pull request:

    https://github.com/apache/cordova-plugin-splashscreen/pull/21#issuecomment-91338139
  
    Actually, this needs to be wrapped as well:
    https://gist.github.com/shazron/e45705f76bef4448139a/daddb1f1fefc6171589b2c79bb9333efe6603ed6#file-gistfile1-m-L9-L10
    
    Updated gist:
    https://gist.github.com/shazron/e45705f76bef4448139a/e6e1820943197e48fd6baf44b765ebdea0252b04


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org