RoboCode crashes with SeedGenerator thread creation error?

Hello everyone.
I recently came across a game called RoboCode. It seems to be a tank battle simulator where you write the AI in Java.
Unfortunately, it won't start on my Windows computers. I get this error:
Exception in thread "SeedGenerator Thread" java.lang.InternalError: internal error: SeedGenerator thread creation error.
        at sun.security.provider.SeedGenerator$ThreadedSeedGenerator.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)Anyone got any idea why? I haven't the foggiest clue how to fix it or get around it - or even what it means.
Thanks,
-Kramy

I'm awaiting a reply right now.
But if Google couldn't turn up much, then it probably isn't a very common error? ;)

Similar Messages

  • Thread creation error: Not enough storage is available to process this command

    Two user in my company have this problem, I have already used the solution on the community but would come back after 2 to 3 weeks. They all have the message "Thread creation error: Not enough storage is available to process this command". I tried increase the virtual memory to 4Gb, update one client to the latest, reset IRPStackSize, delete temp folder.  one client is 7.5.XX with windows 7 and another is 6.20.0.104 with Windows XP,My machine is also 6.20 with windows 7 but I dont have this problem.   

    Version previous to 7.6 worked fine. After update I have got this message and mostly of Skype GUI turns black or vanishes. No possibility of making more than one call before crash, It is amazing that a thread started about two weeks ago has no technical answer, at least. What do I do with my credits and my appointments? Throw them away?

  • Thread creation error: Not enough storage space

    Hi,
      Recently (the past week or so), my desktop client for Skype has been crashing regularly. This is accompanied by large (over 1.2GB) amounts of memory usage. At semi-regular intervals (say every few hours), Skype will post an error with the text "Thread creation error: Not enough storage space..."
    I am using the latest build of Skype. I am not performing any Skype logging. This error is clearly an ongoing issue which has not been addressed, as prior threads have discussed this as well.

    Errors like this have been addressed and continue to be addressed.  Being that the errors are related to memory leakage of one form or the other, the problem can have several sources and be agitated by several programs.  I personally run the latest version on all my machines in a 24/7 capacity and have not run into the problem.  Some versions in the past created a similar error for me, yet the latest has not.  If you've already updated your IE's flash and that has not alleviated the problem, the only other solution is running an earlier release that doesn't crash for you or restart Skype more often.  I've had virtual video devices trigger this behavior by simply launching the video settings once.  The virtual device even when not in use continued to consume memory under Skype until it crashed.  So if you use any virtual audio/video components you may want to remove them to see if that changes anything.  Some people have also blocked ads when those were the source.
    http://community.skype.com/t5/Windows-desktop-clie​nt/low-storage/m-p/3974193/highlight/true#M344826

  • SQL Toolkit crashing with multiple threads

    Hello everyone and Happy New Year!
    I was hoping someone might be able to shed some light on this problem. I am updating an older application to use multiple threads. Actually the thread that is causing a problem right now is created by using an Asynchronous timer.
    I am using CVI 2010, and I think the SQL toolkit is version 2.2.
    If I execute an SQL statement from the main thread, there is no problem.
    stat = DBInit (DB_INIT_MULTITHREADED);
    hdbc = DBConnect( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=sample.mdb;Mode=ReadWrite|Share Deny None" );
    hstmt = DBActivateSQL( hdbc, "SELECT * FROM SAMPLES" );
    DBDeactivateSQL(hstmt);
    DBDisconnect(hdbc);
    If I add code to do the same functions in a timer callback, it causes a stack overflow error.
    .. start main thread
    stat = DBInit (DB_INIT_MULTITHREADED);
    NewAsyncTimer (5.0, -1, 1, &gfn_quicktest, 0);
     .. end main thread
    .. and then the timer callback
    int CVICALLBACK gfn_quicktest (int reserved, int timerId, int event, void *callbackData, int eventData1, int eventData2)
    int hdbc = DBConnect( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=params\\sample.mdb;Mode=ReadWrite|Share Deny None" );
    int hstmt = DBActivateSQL( hdbc, "SELECT * FROM SAMPLES" );
    DBDeactivateSQL(hstmt);
    DBDisconnect(hdbc);
    return 0;
    The program crashes with a stack overflow error when the DBActivateSQL statement is called.
    I understand that the ODBC driver for Access may not support multithreading, but I am only connecting to that database from the same thread with those 2 statements only so it should be fine ?
    Any insight would be appreciated,
    Thanks,
    Ed.
    Solved!
    Go to Solution.

    I just tried this using the sample access database that comes with CVI. It uses a DSN instead of mdb. It worked fine though. I don't see any reason multithreading would be a problem here if you are opening and closing the connection in the same code segment. I do notice that you are using params in the asyn callback connection string. Where does this come from? Maybe try using the sample database and see if that works.
    National Instruments
    Product Support Engineer

  • I have Windows 8.1 installed on my Macbook Pro Retina (Late 2013) and it keeps on crashing with a WHEA_UNCORRECTABLE_ERROR BSOD error

    I have Windows 8.1 installed on my Macbook Pro Retina (Late 2013) and it keeps on crashing with a WHEA_UNCORRECTABLE_ERROR BSOD error. Is this an issue with the bootcamp driver not compatible with Windows 8.1? or is there something I can do to fix this.
    I also keep getting WHEA-Logger Event-ID 19 warning events in the Windows Event Logs with the following details.
    A corrected hardware error has occurred.
    Reported by component: Processor Core
    Error Source: Corrected Machine Check
    Error Type: Cache Hierarchy Error
    Processor APIC ID: 3
    The details view of this entry contains further information.

    likely win8.1 dont have official bootcamp support yet
    1/3 of my logins into win8.1 result in a fatal bluescreen
    was the same deal when I installed win8 before official support
    and when the drivers with official support was released the issue went away

  • Jdk 1.4.2.07  crashes with "stack too small" error

    http://forum.java.sun.com/thread.jspa?threadID=756468
    Cross posting this problem from the HotSpot internals forum:
    I am using jdk 1.4.2.07 and run into the following error with the VM crashing with a defunct process:"Fatal: Stack size too small. Use 'java -Xss' to increase default stack size." on Linux. Does this imply a JVM bug given that this happens only when the VM attempts to launch a large number of threads (Tomcat).
    It looks like in the absence of the Xss VM parameter, the JVM picks up the stack size based on the Linux process limits. In my case it was set to 2048k. Why would the VM crash when starting more than a threshold number of threads? My assumption is that the VM allocates the stack size to every thread. As the number of threads launched by the VM were to increase, there would be a state in which the VM would not be able to acquire more memory from the system. I have tried the latest version of the JDK 1.4.2 but it did not help.
    Any suggestions?
    Thanks

    http://forum.java.sun.com/thread.jspa?threadID=756468
    Cross posting this problem from the HotSpot internals forum:
    I am using jdk 1.4.2.07 and run into the following error with the VM crashing with a defunct process:"Fatal: Stack size too small. Use 'java -Xss' to increase default stack size." on Linux. Does this imply a JVM bug given that this happens only when the VM attempts to launch a large number of threads (Tomcat).
    It looks like in the absence of the Xss VM parameter, the JVM picks up the stack size based on the Linux process limits. In my case it was set to 2048k. Why would the VM crash when starting more than a threshold number of threads? My assumption is that the VM allocates the stack size to every thread. As the number of threads launched by the VM were to increase, there would be a state in which the VM would not be able to acquire more memory from the system. I have tried the latest version of the JDK 1.4.2 but it did not help.
    Any suggestions?
    Thanks

  • [SOLVED] Gnome 3.8 apps crash with X Window System Error

    So far this applications are affected:
    - gnome-terminal (when clicking on menu)
    - gnome-control-center (when choosing Users or Date & Time and some other tiles, choosing account in GOA)
    - epiphany (when clicking on new tab button)
    They crash with following error in console:
    (gnome-control-center:12717): Gdk-ERROR **: The program 'gnome-control-center' received an X Window System error.
    This probably reflects a bug in the program.
    The error was 'BadImplementation (server does not implement operation)'.
    (Details: serial 3583 error_code 17 request_code 148 minor_code 46)
    (Note to programmers: normally, X errors are reported asynchronously;
    that is, you will receive the error a while after causing it.
    To debug your program, run it with the GDK_SYNCHRONIZE environment
    variable to change this behavior. You can then get a meaningful
    backtrace from your debugger if you break on the gdk_x_error() function.)
    dmesg show only this line:
    [14505.289265] traps: gnome-control-c[12717] trap int3 ip:7fc494139ead sp:7fff3986e5e0 error:0
    Running with gdb:
    Program received signal SIGTRAP, Trace/breakpoint trap.
    0x00007ffff13caead in g_logv () from /usr/lib/libglib-2.0.so.0
    (gdb) backtrace
    #0 0x00007ffff13caead in g_logv () from /usr/lib/libglib-2.0.so.0
    #1 0x00007ffff13cb092 in g_log () from /usr/lib/libglib-2.0.so.0
    #2 0x00007ffff2825e60 in ?? () from /usr/lib/libgdk-3.so.0
    #3 0x00007ffff2830801 in ?? () from /usr/lib/libgdk-3.so.0
    #4 0x00007ffff5332976 in _XError () from /usr/lib/libX11.so.6
    #5 0x00007ffff532fbc1 in ?? () from /usr/lib/libX11.so.6
    #6 0x00007ffff532fc05 in ?? () from /usr/lib/libX11.so.6
    #7 0x00007ffff5330495 in _XEventsQueued () from /usr/lib/libX11.so.6
    #8 0x00007ffff5332f28 in _XData32 () from /usr/lib/libX11.so.6
    #9 0x00007ffff530d46e in XChangeProperty () from /usr/lib/libX11.so.6
    #10 0x00007ffff283bcfb in ?? () from /usr/lib/libgdk-3.so.0
    #11 0x00007ffff2d4609c in ?? () from /usr/lib/libgtk-3.so.0
    #12 0x00007ffff2d4a8ca in gtk_window_set_icon_name () from /usr/lib/libgtk-3.so.0
    #13 0x000000000044ba23 in ?? ()
    #14 0x00007fffe3358eb8 in ffi_call_unix64 () from /usr/lib/libffi.so.6
    #15 0x00007fffe3358820 in ffi_call () from /usr/lib/libffi.so.6
    #16 0x00007ffff168ac98 in g_cclosure_marshal_generic () from /usr/lib/libgobject-2.0.so.0
    #17 0x00007ffff168a458 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
    #18 0x00007ffff169b40d in ?? () from /usr/lib/libgobject-2.0.so.0
    #19 0x00007ffff16a3219 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
    #20 0x00007ffff16a3462 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
    #21 0x000000000044d3bc in ?? ()
    #22 0x00007ffff168d2b0 in g_cclosure_marshal_VOID__BOXEDv () from /usr/lib/libgobject-2.0.so.0
    #23 0x00007ffff168a687 in ?? () from /usr/lib/libgobject-2.0.so.0
    #24 0x00007ffff16a2778 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
    #25 0x00007ffff16a3462 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
    #26 0x00007ffff2bf293c in ?? () from /usr/lib/libgtk-3.so.0
    My graphic card (iI guess this has something to do with xorg):
    AMD Mobility Radeon HD 4550 (using catalyst legacy driver 13.1 with Xorg 1.12)
    Last edited by szorti (2013-04-24 08:40:26)

    I did a little test:
    - upgraded to xorg 1.14
    - switched from catalyst to xf86-video-ati drive
    Most of the errors dissappeared (GOA still crashes).
    But now i can only see message tray using keyboard shortcut (super + m). I read that I need to move my mouse fast to the botton edge of my screen - does not work - instead it show up randomly when i moved mouse near the bottom edge.
    I don't want to use the open source drivers (slow and laggy with multi monitor setup I'm using). I hope gnome devs will fix this bugs soon.
    SOLUTION (to still use catalyst):
    I found out that this is an Xorg 1.12 bug.
    Bug: http://lists.debian.org/debian-x/2012/12/msg00133.html
    To solve this use patch from this bugreport to compile xorg 1.12
    I used this aur packages:
    1. https://aur.archlinux.org/packages/xf86 … evdev1.12/
    2. https://aur.archlinux.org/packages/xorg-server1.12/ - I have edited PKGBUILD to include patch from bug report above
    PKGBUILD and patch:
    https://gist.github.com/winglot/5450630
    Last edited by szorti (2013-04-24 08:40:10)

  • Late 2013 15 Retina MBP Crashing with Sleep Wake Failure Error

    My 15 inch MBP keeps shutting down 'because of a problem'. The following crash report appears in the console:
    Date/Time:       2013-11-17 14:21:25 -0800
    OS Version:      10.9 (Build 13A3017)
    Architecture:    x86_64
    Report Version:  18
    Event:           Sleep Wake Failure
    Steps:           50
    Hardware model:  MacBookPro11,3
    Active cpus:     8
    Powerstats for:  kernel_task
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 34 samples
    Primary state:   34 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 34 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 34 samples Unknown
    *34 call_continuation + 23 (mach_kernel) [0xffffff80002d6b37]
       *7  idle_thread + 24 (mach_kernel) [0xffffff80002378c8]
         *7  processor_idle + 170 (mach_kernel) [0xffffff800023757a]
           *7  machine_idle + 478 (mach_kernel) [0xffffff80002dd28e]
       *7  ??? (mach_kernel + 1003063) [0xffffff80002f4e37]
         *7  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
           *7  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
             *7  ??? (mach_kernel + 223563) [0xffffff800023694b]
               *7  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *5  ??? (mach_kernel + 303450) [0xffffff800024a15a]
         *4  IOService::pmDriverCallout(IOService*) + 75 (mach_kernel) [0xffffff80006984ab]
           *4  IOService::driverSetPowerState() + 281 (mach_kernel) [0xffffff800069f759]
             *4  IOPCIDevice::setPowerState(unsigned long, IOService*) + 60 (IOPCIFamily) [0xffffff7f807f3f3e]
               *4  IOPCIBridge::setDevicePowerState(IOPCIDevice*, unsigned int, unsigned long, unsigned long) + 499 (IOPCIFamily) [0xffffff7f807ec3b7]
                 *4  IOPCIBridge::tunnelsWait(IOPCIDevice*) + 152 (IOPCIFamily) [0xffffff7f807ecb44]
                   *4  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                     *4  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                       *4  ??? (mach_kernel + 223563) [0xffffff800023694b]
                         *4  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
         *1  IOService::watchdog_timer_expired(void*, void*) + 39 (mach_kernel) [0xffffff8000698337]
           *1  IOPMrootDomain::sleepWakeDebugTrig(bool) + 503 (mach_kernel) [0xffffff80006e67c7]
             *1  stack_snapshot_from_kernel + 123 (mach_kernel) [0xffffff80005af95b]
       *4  ??? (mach_kernel + 2301597) [0xffffff8000431e9d]
         *4  msleep + 114 (mach_kernel) [0xffffff80005e0c32]
           *4  ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
             *4  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
               *4  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                 *4  ??? (mach_kernel + 223563) [0xffffff800023694b]
                   *4  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *2  ??? (mach_kernel + 2285476) [0xffffff800042dfa4]
         *2  msleep + 114 (mach_kernel) [0xffffff80005e0c32]
           *2  ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
             *2  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
               *2  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                 *2  ??? (mach_kernel + 223563) [0xffffff800023694b]
                   *2  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *2  ??? (mach_kernel + 2285278) [0xffffff800042dede]
         *2  msleep + 114 (mach_kernel) [0xffffff80005e0c32]
           *2  ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
             *2  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
               *2  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                 *2  ??? (mach_kernel + 223563) [0xffffff800023694b]
                   *2  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  ??? (mach_kernel + 328209) [0xffffff8000250211]
         *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
           *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
             *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  mapping_replenish + 402 (mach_kernel) [0xffffff80002c7f62]
         *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
           *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
             *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  ??? (mach_kernel + 2298909) [0xffffff800043141d]
         *1  msleep + 114 (mach_kernel) [0xffffff80005e0c32]
           *1  ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
             *1  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
               *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                 *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
                   *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  ??? (mach_kernel + 4433410) [0xffffff800063a602]
         *1  mach_msg_receive + 162 (mach_kernel) [0xffffff800021dee2]
           *1  ipc_mqueue_receive + 66 (mach_kernel) [0xffffff80002168a2]
             *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
               *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
                 *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  ??? (mach_kernel + 4398266) [0xffffff8000631cba]
         *1  msleep + 114 (mach_kernel) [0xffffff80005e0c32]
           *1  ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
             *1  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
               *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                 *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
                   *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  rtThreadNativeMain(void*, int) + 33 (VBoxDrv) [0xffffff7f8089bfe1]
         *1  rtThreadMain + 47 (VBoxDrv) [0xffffff7f808990ef]
           *1  rtTimerThread(RTTHREADINT*, void*) + 62 (VBoxDrv) [0xffffff7f8089963e]
             *1  rtSemEventWait(RTSEMEVENTINTERNAL*, unsigned int, int) + 309 (VBoxDrv) [0xffffff7f8089ac35]
               *1  lck_spin_sleep + 78 (mach_kernel) [0xffffff800022d06e]
                 *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                   *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
                     *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  ??? (mach_kernel + 1002143) [0xffffff80002f4a9f]
         *1  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
           *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
             *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
               *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
    *0xffffff7f807e7000 - 0xffffff7f80802fff  IOPCIFamily (214) <D7DDC654-8A3E-33FC-B5ED-E756535EBD4D> /System/Library/Extensions/IOPCIFamily.kext/IOPCIFamily
    *0xffffff7f80882000 - 0xffffff7f808a1fff  org.virtualbox.kext.VBoxDrv 3.2.10 (3.2.10) <5A4BF9DF-9F5B-41C2-40D1-04F56733E322> /Library/Extensions/VBoxDrv.kext/Contents/MacOS/VBoxDrv
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  revisiond
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 2 samples
    Primary state:   2 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 2 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 2 samples Unknown
    *2 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *2 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2042277) [0xffffff80003f29a5]
               *1 VNOP_READ + 225 (mach_kernel) [0xffffff80003fcdf1]
                 *1 spec_read + 253 (mach_kernel) [0xffffff800040becd]
                   *1 cdev_read + 99 (AppleFSCompressionTypeDataless) [0xffffff7f826fe9ab]
                     *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                       *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                         *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                           *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                             *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                               *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
         *1 fsctl + 282 (mach_kernel) [0xffffff80003edc0a]
           *1 ??? (mach_kernel + 2023341) [0xffffff80003edfad]
             *1 ??? (mach_kernel + 2031259) [0xffffff80003efe9b]
               *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                 *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                   *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                     *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                       *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                         *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x10d8b9000 -        0x10d90cff7  revisiond (160.2) <B051EA4F-18DD-3542-8893-C426B9CA23F6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Supp ort/revisiond
    *0xffffff7f826fd000 - 0xffffff7f826feff7  com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 56 (1.0.0d1) <39250897-347B-3440-9AA4-DD9E2F057F42> /System/Library/Extensions/AppleFSCompressionTypeDataless.kext/Contents/MacOS/A ppleFSCompressionTypeDataless
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  Google Chrome He
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 2 samples
    Primary state:   2 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 2 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 2 samples Unknown
    *2 hndl_unix_scall + 216 (mach_kernel) [0xffffff80002f32b8]
       *2 unix_syscall + 471 (mach_kernel) [0xffffff800063d497]
         *2 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *2 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *2 soreceive + 2306 (mach_kernel) [0xffffff8000614362]
               *2 sbwait + 297 (mach_kernel) [0xffffff800061a269]
                 *2 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                   *2 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                     *2 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                       *2 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                         *2 ??? (mach_kernel + 223563) [0xffffff800023694b]
                           *2 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
                 0xe1000 -                ???  ??? <C51C9A60-3ED7-3ECC-A017-98AE51E0A03C>
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  securityd
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2042277) [0xffffff80003f29a5]
               *1 VNOP_READ + 225 (mach_kernel) [0xffffff80003fcdf1]
                 *1 spec_read + 253 (mach_kernel) [0xffffff800040becd]
                   *1 ??? (mach_kernel + 3834185) [0xffffff80005a8149]
                     *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                       *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                         *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                           *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                             *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                               *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x105d09000 -        0x105dc3ff3  securityd (55199) <660C2D1B-F823-3178-A4D7-43020907B240> /usr/sbin/securityd
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  authd
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2042277) [0xffffff80003f29a5]
               *1 VNOP_READ + 225 (mach_kernel) [0xffffff80003fcdf1]
                 *1 spec_read + 253 (mach_kernel) [0xffffff800040becd]
                   *1 ??? (mach_kernel + 3834185) [0xffffff80005a8149]
                     *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                       *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                         *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                           *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                             *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                               *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x10b933000 -        0x10b94affb  com.apple.authd 1.0 (55471) <ECB4D4B4-B7A0-3191-9249-A0A92F91ADB9> /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/ Contents/MacOS/authd
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  coreservicesd
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2134647) [0xffffff8000409277]
               *1 tsleep + 92 (mach_kernel) [0xffffff80005e0ccc]
                 *1 ??? (mach_kernel + 4065706) [0xffffff80005e09aa]
                   *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                     *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                       *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x102387000 -        0x102387ffe  coreservicesd (1077.13) <495DE889-9F8E-34E6-B4AC-A4A5214C199A> /System/Library/CoreServices/coreservicesd
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  fseventsd
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2134647) [0xffffff8000409277]
               *1 tsleep + 92 (mach_kernel) [0xffffff80005e0ccc]
                 *1 ??? (mach_kernel + 4065706) [0xffffff80005e09aa]
                   *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                     *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                       *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x104cef000 -        0x104d07ff7  fseventsd (1077.13) <6C970211-6610-3B11-894B-3E7E17974E3E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/Support/fseventsd
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  stackshot
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 __sigwait_nocancel + 480 (mach_kernel) [0xffffff80005dd1a0]
           *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
             *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
               *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                 *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                   *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                     *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x105ffa000 -        0x105fffff7  stackshot (29) <A98539D3-2C52-3E5D-88A8-299A7930810C> /usr/libexec/stackshot
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  mtmd
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 fsctl + 282 (mach_kernel) [0xffffff80003edc0a]
           *1 ??? (mach_kernel + 2023341) [0xffffff80003edfad]
             *1 ??? (mach_kernel + 2031259) [0xffffff80003efe9b]
               *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                 *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                   *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                     *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                       *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                         *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x10b018000 -        0x10b047fff  mtmd (83) <243CD1AA-D0B5-3A36-96B6-A6C45F19E7BF> /System/Library/CoreServices/backupd.bundle/Contents/Resources/mtmd
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  mds
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2134647) [0xffffff8000409277]
               *1 tsleep + 92 (mach_kernel) [0xffffff80005e0ccc]
                 *1 ??? (mach_kernel + 4065706) [0xffffff80005e09aa]
                   *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                     *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                       *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x103c2a000 -        0x103d86fff  mds (800.12) <ECAC8950-9CB9-3BB6-A6A7-7F3DF0E7F23B> /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  WindowServer
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_mach_scall64 + 22 (mach_kernel) [0xffffff80002f35e6]
       *1 ??? (mach_kernel + 823981) [0xffffff80002c92ad]
         *1 mach_msg_overwrite_trap + 195 (mach_kernel) [0xffffff800021e003]
           *1 ipc_kmsg_send + 117 (mach_kernel) [0xffffff80002139b5]
             *1 ipc_kobject_server + 241 (mach_kernel) [0xffffff8000226bb1]
               *1 ??? (mach_kernel + 745608) [0xffffff80002b6088]
                 *1 is_io_connect_method + 415 (mach_kernel) [0xffffff80006cabcf]
                   *1 IOUserClient::externalMethod(unsigned int, IOExternalMethodArguments*, IOExternalMethodDispatch*, OSObject*, void*) + 782 (mach_kernel) [0xffffff80006cd17e]
                     *1 shim_io_connect_method_structureI_structureO + 266 (mach_kernel) [0xffffff80006cc61a]
                       *1 IOAccelGLContext::set_surface_get_config_status(IOAccelGLContextSetSurfaceData* , IOAccelGLContextGetConfigStatus*, unsigned long long, unsigned long long*) + 602 (IOAcceleratorFamily) [0xffffff7f81c65484]
                         *1 IOAccelGLContext::get_config(unsigned int*) + 100 (IOAcceleratorFamily) [0xffffff7f81c66bfa]
                           *1 IOGraphicsAccelerator::acceleratorWaitEnabled() + 108 (IOAcceleratorFamily) [0xffffff7f81c79f04]
                             *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                               *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                                 *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                                   *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x101a98000 -        0x101a98ffd  WindowServer (599.7) <3962C9A3-3D52-3D3B-BA42-C4670C12982C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
    *0xffffff7f81c4f000 - 0xffffff7f81c7bffc  com.apple.iokit.IOAcceleratorFamily 98.9 (98.9) <60FCBADD-27EE-349C-AC29-C758C944A2AE> /System/Library/Extensions/IOAcceleratorFamily.kext/Contents/MacOS/IOAccelerato rFamily
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  Notify
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 accept_nocancel + 442 (mach_kernel) [0xffffff800061de8a]
           *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
             *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
               *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                 *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                   *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                     *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x100000000 -                ???  ??? <BDEA8C11-D470-3C05-B788-9A9F6DE139E9>
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  SpotifyWebHelper
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall + 216 (mach_kernel) [0xffffff80002f32b8]
       *1 unix_syscall + 471 (mach_kernel) [0xffffff800063d497]
         *1 poll_nocancel + 802 (mach_kernel) [0xffffff80005f0ef2]
           *1 kqueue_scan + 367 (mach_kernel) [0xffffff80005c323f]
             *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
               *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                 *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
                  0x1000 -                ???  ??? <08F33705-43C2-3416-B336-5D1C776428FB>
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  Google Chrome
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall + 216 (mach_kernel) [0xffffff80002f32b8]
       *1 unix_syscall + 471 (mach_kernel) [0xffffff800063d497]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 4142335) [0xffffff80005f34ff]
               *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                 *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                   *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                     *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                       *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                         *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
                 0x80000 -                ???  ??? <61AEFDE9-5171-3ADC-B13D-4DC90D9B6B58>
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  Spotify
    Start time:      1969-12-31 16:00:00 -0800
    End time:        1969-12-31 16:00:00 -0800
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, Suppressed, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall + 216 (mach_kernel) [0xffffff80002f32b8]
       *1 unix_syscall + 471 (mach_kernel) [0xffffff800063d497]
         *1 poll_nocancel + 802 (mach_kernel) [0xffffff80005f0ef2]
           *1 kqueue_scan + 367 (mach_kernel) [0xffffff80005c323f]
             *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
               *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                 *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
                  0x1000 -                ???  ??? <87DAD843-E575-3F28-9BF7-9151A4A0F010>
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    ================================================================
    UUID: 42E6B883-9170-4F1F-B1B9-BBB0B568DDD7
    cps: 2
    Code: 0000002a 27006c00
    Stackshot reason: Watchdog

    It appears I'm having the identical problem with my four day old late 2013 15" MBP shutting down and restarting with a Sleep Wake Failure. Based on this and related threads I've looked for rascally legacy software:
    -Sound Flower
    -Norton
    -Virtual Box
    But none of those usual suspects appear to be present. Another thread had sugested turning off "Power Nap" in the "Energy Saver" section of "System Preferences" which I just did but won't know the results until tomorrow as it seems to only misbehave when I'm not paying attention to it.
    Date/Time:       2013-11-18 23:12:47 -0500
    OS Version:      10.9 (Build 13A3017)
    Architecture:    x86_64
    Report Version:  18
    Event:           Sleep Wake Failure
    Steps:           51
    Hardware model:  MacBookPro11,3
    Active cpus:     8
    Powerstats for:  kernel_task
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 32 samples
    Primary state:   32 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 32 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 32 samples Unknown
    *32 call_continuation + 23 (mach_kernel) [0xffffff80002d6b37]
       *7  ??? (mach_kernel + 1003063) [0xffffff80002f4e37]
         *7  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
           *7  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
             *7  ??? (mach_kernel + 223563) [0xffffff800023694b]
               *7  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *6  idle_thread + 24 (mach_kernel) [0xffffff80002378c8]
         *6  processor_idle + 170 (mach_kernel) [0xffffff800023757a]
           *6  machine_idle + 478 (mach_kernel) [0xffffff80002dd28e]
       *5  ??? (mach_kernel + 303450) [0xffffff800024a15a]
         *4  IOService::pmDriverCallout(IOService*) + 75 (mach_kernel) [0xffffff80006984ab]
           *4  IOService::driverSetPowerState() + 281 (mach_kernel) [0xffffff800069f759]
             *4  IOPCIDevice::setPowerState(unsigned long, IOService*) + 60 (IOPCIFamily) [0xffffff7f808c5f3e]
               *4  IOPCIBridge::setDevicePowerState(IOPCIDevice*, unsigned int, unsigned long, unsigned long) + 499 (IOPCIFamily) [0xffffff7f808be3b7]
                 *4  IOPCIBridge::tunnelsWait(IOPCIDevice*) + 152 (IOPCIFamily) [0xffffff7f808beb44]
                   *4  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                     *4  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                       *4  ??? (mach_kernel + 223563) [0xffffff800023694b]
                         *4  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
         *1  IOService::watchdog_timer_expired(void*, void*) + 39 (mach_kernel) [0xffffff8000698337]
           *1  IOPMrootDomain::sleepWakeDebugTrig(bool) + 503 (mach_kernel) [0xffffff80006e67c7]
             *1  stack_snapshot_from_kernel + 123 (mach_kernel) [0xffffff80005af95b]
       *4  ??? (mach_kernel + 2301597) [0xffffff8000431e9d]
         *4  msleep + 114 (mach_kernel) [0xffffff80005e0c32]
           *4  ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
             *4  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
               *4  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                 *4  ??? (mach_kernel + 223563) [0xffffff800023694b]
                   *4  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *2  ??? (mach_kernel + 2285476) [0xffffff800042dfa4]
         *2  msleep + 114 (mach_kernel) [0xffffff80005e0c32]
           *2  ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
             *2  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
               *2  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                 *2  ??? (mach_kernel + 223563) [0xffffff800023694b]
                   *2  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *2  ??? (mach_kernel + 2285278) [0xffffff800042dede]
         *2  msleep + 114 (mach_kernel) [0xffffff80005e0c32]
           *2  ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
             *2  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
               *2  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                 *2  ??? (mach_kernel + 223563) [0xffffff800023694b]
                   *2  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  ??? (mach_kernel + 328209) [0xffffff8000250211]
         *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
           *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
             *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  mapping_replenish + 402 (mach_kernel) [0xffffff80002c7f62]
         *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
           *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
             *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  ??? (mach_kernel + 2298909) [0xffffff800043141d]
         *1  msleep + 114 (mach_kernel) [0xffffff80005e0c32]
           *1  ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
             *1  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
               *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                 *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
                   *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  ??? (mach_kernel + 4433410) [0xffffff800063a602]
         *1  mach_msg_receive + 162 (mach_kernel) [0xffffff800021dee2]
           *1  ipc_mqueue_receive + 66 (mach_kernel) [0xffffff80002168a2]
             *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
               *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
                 *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  ??? (mach_kernel + 4398266) [0xffffff8000631cba]
         *1  msleep + 114 (mach_kernel) [0xffffff80005e0c32]
           *1  ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
             *1  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
               *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                 *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
                   *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
       *1  ??? (mach_kernel + 1002143) [0xffffff80002f4a9f]
         *1  lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
           *1  thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
             *1  ??? (mach_kernel + 223563) [0xffffff800023694b]
               *1  machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
    *0xffffff7f808b9000 - 0xffffff7f808d4fff  IOPCIFamily (214) <D7DDC654-8A3E-33FC-B5ED-E756535EBD4D> /System/Library/Extensions/IOPCIFamily.kext/IOPCIFamily
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  Google Chrome He
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 3 samples
    Primary state:   3 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 3 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 3 samples Unknown
    *1 hndl_mach_scall + 216 (mach_kernel) [0xffffff80002f3398]
       *1 ??? (mach_kernel + 823661) [0xffffff80002c916d]
         *1 mach_msg_overwrite_trap + 195 (mach_kernel) [0xffffff800021e003]
           *1 ipc_kmsg_send + 117 (mach_kernel) [0xffffff80002139b5]
             *1 ipc_kobject_server + 241 (mach_kernel) [0xffffff8000226bb1]
               *1 ??? (mach_kernel + 745608) [0xffffff80002b6088]
                 *1 is_io_connect_method + 415 (mach_kernel) [0xffffff80006cabcf]
                   *1 IOUserClient::externalMethod(unsigned int, IOExternalMethodArguments*, IOExternalMethodDispatch*, OSObject*, void*) + 429 (mach_kernel) [0xffffff80006cd01d]
                     *1 IOAccelSharedUserClient::s_new_resource(IOAccelSharedUserClient*, void*, IOExternalMethodArguments*) + 146 (IOAcceleratorFamily) [0xffffff7f81cb564e]
                       *1 IOAccelSharedUserClient::new_resource(IOAccelNewResourceArgs*, IOAccelNewResourceReturnData*, unsigned long long, unsigned int*) + 201 (IOAcceleratorFamily) [0xffffff7f81cb4df7]
                         *1 IOGraphicsAccelerator::acceleratorWaitEnabled() + 108 (IOAcceleratorFamily) [0xffffff7f81cc1f04]
                           *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                             *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                               *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                                 *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
    *1 hndl_unix_scall + 216 (mach_kernel) [0xffffff80002f32b8]
       *1 unix_syscall + 471 (mach_kernel) [0xffffff800063d497]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 soreceive + 2306 (mach_kernel) [0xffffff8000614362]
               *1 sbwait + 297 (mach_kernel) [0xffffff800061a269]
                 *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                   *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                     *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                       *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                         *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                           *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
    *1 call_continuation + 23 (mach_kernel) [0xffffff80002d6b37]
       *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
         *1 ??? (mach_kernel + 223200) [0xffffff80002367e0]
           *1 ml_set_interrupts_enabled + 27 (mach_kernel) [0xffffff80002d604b]
      Binary Images:
                 0xed000 -                ???  ??? <ECA4164D-4FEE-35DC-BF7E-669439D660B9>
    *0xffffff7f81c97000 - 0xffffff7f81cc3ffc  com.apple.iokit.IOAcceleratorFamily 98.9 (98.9) <60FCBADD-27EE-349C-AC29-C758C944A2AE> /System/Library/Extensions/IOAcceleratorFamily.kext/Contents/MacOS/IOAccelerato rFamily
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  Dropbox
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 3 samples
    Primary state:   3 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 3 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 3 samples Unknown
    *3 hndl_unix_scall + 216 (mach_kernel) [0xffffff80002f32b8]
       *3 unix_syscall + 471 (mach_kernel) [0xffffff800063d497]
         *2 poll_nocancel + 802 (mach_kernel) [0xffffff80005f0ef2]
           *2 kqueue_scan + 367 (mach_kernel) [0xffffff80005c323f]
             *2 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
               *2 ??? (mach_kernel + 223563) [0xffffff800023694b]
                 *2 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
         *1 recvfrom_nocancel + 224 (mach_kernel) [0xffffff800061f570]
           *1 ??? (mach_kernel + 4323134) [0xffffff800061f73e]
             *1 soreceive + 2306 (mach_kernel) [0xffffff8000614362]
               *1 sbwait + 297 (mach_kernel) [0xffffff800061a269]
                 *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                   *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                     *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                       *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                         *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                           *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
                  0x1000 -                ???  ??? <7F79FBE9-98A6-6542-D873-85E6A780C639>
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  revisiond
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 2 samples
    Primary state:   2 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 2 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 2 samples Unknown
    *2 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *2 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2042277) [0xffffff80003f29a5]
               *1 VNOP_READ + 225 (mach_kernel) [0xffffff80003fcdf1]
                 *1 spec_read + 253 (mach_kernel) [0xffffff800040becd]
                   *1 cdev_read + 99 (AppleFSCompressionTypeDataless) [0xffffff7f827339ab]
                     *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                       *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                         *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                           *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                             *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                               *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
         *1 fsctl + 282 (mach_kernel) [0xffffff80003edc0a]
           *1 ??? (mach_kernel + 2023341) [0xffffff80003edfad]
             *1 ??? (mach_kernel + 2031259) [0xffffff80003efe9b]
               *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                 *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                   *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                     *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                       *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                         *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x10cd40000 -        0x10cd93ff7  revisiond (160.2) <B051EA4F-18DD-3542-8893-C426B9CA23F6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Supp ort/revisiond
    *0xffffff7f82732000 - 0xffffff7f82733ff7  com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 56 (1.0.0d1) <39250897-347B-3440-9AA4-DD9E2F057F42> /System/Library/Extensions/AppleFSCompressionTypeDataless.kext/Contents/MacOS/A ppleFSCompressionTypeDataless
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  dbfseventsd
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 2 samples
    Primary state:   2 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 2 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 2 samples Unknown
    *2 hndl_unix_scall + 216 (mach_kernel) [0xffffff80002f32b8]
       *2 unix_syscall + 471 (mach_kernel) [0xffffff800063d497]
         *2 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *2 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2134647) [0xffffff8000409277]
               *1 tsleep + 92 (mach_kernel) [0xffffff80005e0ccc]
                 *1 ??? (mach_kernel + 4065706) [0xffffff80005e09aa]
                   *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                     *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                       *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
             *1 ??? (mach_kernel + 4142335) [0xffffff80005f34ff]
               *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                 *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                   *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                     *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                       *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                         *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
                  0x1000 -                ???  ??? <6E6421C9-0E72-73AF-1821-754B84B964AF>
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  securityd
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2042277) [0xffffff80003f29a5]
               *1 VNOP_READ + 225 (mach_kernel) [0xffffff80003fcdf1]
                 *1 spec_read + 253 (mach_kernel) [0xffffff800040becd]
                   *1 ??? (mach_kernel + 3834185) [0xffffff80005a8149]
                     *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                       *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                         *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                           *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                             *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                               *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x1072f9000 -        0x1073b3ff3  securityd (55199) <660C2D1B-F823-3178-A4D7-43020907B240> /usr/sbin/securityd
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  authd
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2042277) [0xffffff80003f29a5]
               *1 VNOP_READ + 225 (mach_kernel) [0xffffff80003fcdf1]
                 *1 spec_read + 253 (mach_kernel) [0xffffff800040becd]
                   *1 ??? (mach_kernel + 3834185) [0xffffff80005a8149]
                     *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                       *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                         *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                           *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                             *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                               *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x108ee7000 -        0x108efeffb  com.apple.authd 1.0 (55471) <ECB4D4B4-B7A0-3191-9249-A0A92F91ADB9> /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/ Contents/MacOS/authd
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  coreservicesd
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2134647) [0xffffff8000409277]
               *1 tsleep + 92 (mach_kernel) [0xffffff80005e0ccc]
                 *1 ??? (mach_kernel + 4065706) [0xffffff80005e09aa]
                   *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                     *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                       *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x10a330000 -        0x10a330ffe  coreservicesd (1077.13) <495DE889-9F8E-34E6-B4AC-A4A5214C199A> /System/Library/CoreServices/coreservicesd
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  fseventsd
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2134647) [0xffffff8000409277]
               *1 tsleep + 92 (mach_kernel) [0xffffff80005e0ccc]
                 *1 ??? (mach_kernel + 4065706) [0xffffff80005e09aa]
                   *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                     *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                       *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x107f73000 -        0x107f8bff7  fseventsd (1077.13) <6C970211-6610-3B11-894B-3E7E17974E3E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/Support/fseventsd
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  stackshot
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 __sigwait_nocancel + 480 (mach_kernel) [0xffffff80005dd1a0]
           *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
             *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
               *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                 *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                   *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                     *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x107781000 -        0x107786ff7  stackshot (29) <A98539D3-2C52-3E5D-88A8-299A7930810C> /usr/libexec/stackshot
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  mtmd
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 fsctl + 282 (mach_kernel) [0xffffff80003edc0a]
           *1 ??? (mach_kernel + 2023341) [0xffffff80003edfad]
             *1 ??? (mach_kernel + 2031259) [0xffffff80003efe9b]
               *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                 *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                   *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                     *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                       *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                         *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x106da3000 -        0x106dd2fff  mtmd (83) <243CD1AA-D0B5-3A36-96B6-A6C45F19E7BF> /System/Library/CoreServices/backupd.bundle/Contents/Resources/mtmd
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  mds
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 2134647) [0xffffff8000409277]
               *1 tsleep + 92 (mach_kernel) [0xffffff80005e0ccc]
                 *1 ??? (mach_kernel + 4065706) [0xffffff80005e09aa]
                   *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                     *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                       *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x101b37000 -        0x101c93fff  mds (800.12) <ECAC8950-9CB9-3BB6-A6A7-7F3DF0E7F23B> /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  Google Chrome
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, Suppressed, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall + 216 (mach_kernel) [0xffffff80002f32b8]
       *1 unix_syscall + 471 (mach_kernel) [0xffffff800063d497]
         *1 read_nocancel + 127 (mach_kernel) [0xffffff80005eecbf]
           *1 ??? (mach_kernel + 4124334) [0xffffff80005eeeae]
             *1 ??? (mach_kernel + 4142335) [0xffffff80005f34ff]
               *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
                 *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
                   *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                     *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                       *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                         *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
                 0x9e000 -                ???  ??? <2C6A4924-61E0-31B7-9D3B-19D93B688DFF>
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    Powerstats for:  CCC User Agent
    Start time:      1969-12-31 19:00:00 -0500
    End time:        1969-12-31 19:00:00 -0500
    Microstackshots: 1 samples
    Primary state:   1 samples Non-Frontmost App, Non-Background Priority, User mode
    User Activity:   0 samples Idle, 0 samples Active, 1 samples Unknown
    Power Source:    0 samples on Battery, 0 samples on AC, 1 samples Unknown
    *1 hndl_unix_scall64 + 22 (mach_kernel) [0xffffff80002f35c6]
       *1 unix_syscall64 + 499 (mach_kernel) [0xffffff800063d753]
         *1 accept_nocancel + 442 (mach_kernel) [0xffffff800061de8a]
           *1 msleep + 114 (mach_kernel) [0xffffff80005e0c32]
             *1 ??? (mach_kernel + 4065797) [0xffffff80005e0a05]
               *1 lck_mtx_sleep + 78 (mach_kernel) [0xffffff800022d17e]
                 *1 thread_block_reason + 204 (mach_kernel) [0xffffff8000235d4c]
                   *1 ??? (mach_kernel + 223563) [0xffffff800023694b]
                     *1 machine_switch_context + 354 (mach_kernel) [0xffffff80002d7982]
      Binary Images:
             0x100000000 -                ???  ??? <FA63BC55-E539-3106-9214-228511C81A0F>
    *0xffffff8000200000 - 0xffffff80007a377a  mach_kernel (2422.75.4) <C51C3998-66EA-3C1B-A46E-90943DA76DF4> /mach_kernel
    ================================================================
    UUID: E450F921-D135-43F9-BB52-AA3F85844BF9
    Graphics: Intel Iris Pro, Intel Iris Pro, Built-In, 1024 MB
    Graphics: NVIDIA GeForce GT 750M, NVIDIA GeForce GT 750M, PCIe, 2048 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x02FE, 0x000000000000000000000000000000000000
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x02FE, 0x000000000000000000000000000000000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (6.30.223.154.47)
    Bluetooth: Version 4.2.1f2 12982, 3 services, 23 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en0
    Serial ATA Device: APPLE SSD SM0512F, 500.28 GB
    USB Device: Internal Memory Card Reader
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: USB2.0 Hub
    USB Device: My Book 1130
    USB Device: Keyboard Hub
    USB Device: Apple Keyboard
    USB Device: iPhone
    USB Device: Hub
    USB Device: Expansion
    USB Device: SoundSticks
    USB Device: Hub
    USB Device: Display iSight
    USB Device: Apple LED Cinema Display
    USB Device: Display Audio
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1

  • Flash Builder 4.6 keeps crashing with "Adobe AIR.dll_unloaded" error

    Hi, Flash Builder Experts~~
    Please help me~~
    I' m using Flash Builder 4.6 and keep encountering Windows error "FlashBuilder.exe has stop working" anytime.
    Anytime means editing, building, switching workspace, closing Flash Builder.
    Windows Event Viewer recognized this error as "Application Error" and detail information as following:
    Faulting application FlashBuilder.exe, version 0.0.0.0, time stamp 0x4b707bdf, faulting module Adobe AIR.dll_unloaded, version 0.0.0.0, time stamp 0x4e741f2e, exception code 0xc0000005, fault offset 0x624bdff4, process id 0x19ec, application start time 0x01ce9ee098db209a.
    My system spec as following:
    OS Type: Windows Server 2008 Enterprise Service Pack 1 (32-bit)
    Processor: 4 Processors     
    Memory: 16GB 
    Flash Builder version as following:
    Flash Builder Edition: Flash Builder 4.6  (with SDK 3.6.0/4.5.0/4.5.1/4.6.0)
    java.version: 1.6.0_16 
    Flash Builder.ini JVM configuration
    vmargs
    -Xms512m
    -Xmx1024m
    -XX:MaxPermSize=256m
    -XX:PermSize=64m
    Error dll file:
    File name: C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll
    File version: 2.5.1.17730  
    File size:9254 KB
    Currently my colleage and I will encounter this error about 4~5 times a day, and its very frustrating
    If there is any suggestion ? Maybe I can update this dll file to newer version??
    Thanks for reading this discussion~~

    I've been seeing what sounds like a similar problem (Windows application "BEX" error when attempting to close Flash Builder via its [X] icon).
    (Win 7 Enterprise, SP1, 64-bit, i5 + 8GB RAM), Flash Builder 4.6, Java 1.7.0_07)
    I tried the following:
    -- Launching Tour de Flex (from the task bar icon), and then updating AIR to the latest version
    -- Right-clicking on the Flash Builder task bar icon and then selecting "Run as Administrator"
    -- Right-clicking on the Flash Builder task bar icon and then selecting "Troubleshoot compatability", then applying the compatability fixes it suggested.
    Somewhere along the way, the problem went away. I then ran the compatability troubleshooter again and (I think) removed the compatability changes (since windows security was asking me whether I want to let the application update my computer every time I launched FlashBuilder--annoying!).
    The problem still appears to be fixed--but only with a whole ten minutes testing. I'll just have to see if the above is really a fix/work-around.

  • JVM crash with HotSpot Virtual Machine Error, Internal Error

    I got following error after hours' running of weblogic:
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Error ID: 4349254E560E43505000F4
    # Problematic Thread: prio=1 tid=0x808e1d8 nid=0x29db runnable
    my sever environment
    OS: Redhat6.2(Kernel 2.2.14-5.0 on an i686)
    JDK: java version "1.3.1_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01)
    Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode)
    WLS: weblogic6.1 sp2
    could you help me? very urgent. thanks.

    it works well now . thanks
    "Bernie Wong" <[email protected]> wrote:
    Try this. I was helping a friend who had the same error id/internal error
    on
    WLS 6.1 SP2, 1.3.1_01 on W2K. He was consistently getting the Error ID:
    4349254E560E43505000F4 five minutes into testing his appl.
    Set -XX:MaxPermSize=128m.
    The problem disappeared.
    Please let me know if that helped you.
    "shang zhengjun" <[email protected]> wrote in message
    news:3cfdab48$[email protected]..
    I got following error after hours' running of weblogic:
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Error ID: 4349254E560E43505000F4
    # Problematic Thread: prio=1 tid=0x808e1d8 nid=0x29db runnable
    my sever environment
    OS: Redhat6.2(Kernel 2.2.14-5.0 on an i686)
    JDK: java version "1.3.1_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01)
    Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode)
    WLS: weblogic6.1 sp2
    could you help me? very urgent. thanks.

  • Windows 8 crashing with system service exception error

    Hello, recently there's a crash in my Windows 8 laptop, showing "System service exception"
    Here is the mini dump file, thank you very much .
    https://skydrive.live.com/redir?resid=6CC679D98D5062BB!808&authkey=!AN9mfT9tsHsHmjk&ithint=file%2c.dmp

    Hi,
    Bug Check 0x3B: SYSTEM_SERVICE_EXCEPTION
    http://msdn.microsoft.com/en-us/library/windows/hardware/ff558949(v=vs.85).aspx
    This error has been linked to excessive paged pool usage and may occur due to user-mode graphics drivers crossing over and passing bad data to the kernel code.
    the dump file doesn't give us detailed information about what driver causes this issue, thus I sugegst you try
    Driver verifier (for detailed infromation
    here)
    Roger Lu
    TechNet Community Support

  • Windows 8.1: Thread Creation Error: Not enough St...

    I have done all the steps
    1) Reset the Internet Explorer 
    2) Currently haivng the latest version of Skype (7.5.64.102)
    3) Latest and updated version of Windows 8.1 
    4) Internet Explorer version 11.0.9600.17801
    Event Viewer 
    : Faulting application name: Skype.exe, version: 7.5.64.102, time stamp: 0x556dd607 Faulting module name: mshtml.dll, version: 11.0.9600.17801, time stamp: 0x5536793e Exception code: 0x4000001f Fault offset: 0x00db3608 Faulting process id: 0xcbc Faulting application start time: 0x01d09e3af411afc9 Faulting application path: C:\Program Files (x86)\Skype\Phone\Skype.exe Faulting module path: C:\Windows\SYSTEM32\mshtml.dll Report Id: 9f878ed6-0a37-11e5-bedd-a4db3020abbb Faulting package full name: Faulting package-relative application ID:
    Thanks
    Abhishek Alekar

    Please,  run the DirectX diagnostics tool.
    Go to Windows Start  and in the Run box type dxdiag.exe and press the OK button. This will start the DirectX diagnostics program. Run this diagnostics and save the results to a file. Please, attach this file to your post.
    Be aware that you will have to zip this file before attaching it here.

  • Ical crashes with error log

    When i'm trying to start Ical on my Imac with intel i3 10.6.8, sice today it crasshes.
    The next error log is shown after Ical was closed:
    Process:         iCal [229]
    Path:            /Applications/iCal.app/Contents/MacOS/iCal
    Identifier:      com.apple.iCal
    Version:         4.0.4 (1395.7)
    Build Info:      iCal-13950700~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2012-07-06 10:33:32.316 +0200
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          6840 sec
    Crashes Since Last Report:           9
    Per-App Interval Since Last Report:  1214 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      1388268B-54D2-4ED1-A67D-081D3B0333F2
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  4  Dispatch queue: com.apple.root.default-priority
    Application Specific Information:
    abort() called
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Thread <NSThread: 0x1169a7180>{name = (null), num = 42} is not prepared to receive inter-thread messages.  You must invoke +prepareForInterThreadMessages first.'
    *** Call stack at first throw:
              0   CoreFoundation                      0x00007fff81858784 __exceptionPreprocess + 180
              1   libobjc.A.dylib                     0x00007fff869b6f03 objc_exception_throw + 45
              2   CoreFoundation                      0x00007fff818585a7 +[NSException raise:format:arguments:] + 103
              3   CoreFoundation                      0x00007fff81858534 +[NSException raise:format:] + 148
              4   DAVKit                              0x00007fff830794fd postMessage + 214
              5   DAVKit                              0x00007fff83077185 -[AYOperation notifyWithName:infos:] + 253
              6   DAVKit                              0x00007fff83078edd +[AYOperation _dispatchNextOperationInQueue] + 512
              7   DAVKit                              0x00007fff8307814b __+[AYOperation _queueOneBlock]_block_invoke_1 + 94
              8   libSystem.B.dylib                   0x00007fff87ac2d64 _dispatch_call_block_and_release + 15
              9   libSystem.B.dylib                   0x00007fff87aa12d1 _dispatch_worker_thread2 + 239
              10  libSystem.B.dylib                   0x00007fff87aa0c08 _pthread_wqthread + 353
              11  libSystem.B.dylib                   0x00007fff87aa0aa5 start_wqthread + 13
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff869b3d5e _class_getInstanceSize + 22
    1   libobjc.A.dylib                         0x00007fff869b3dde _internal_class_createInstanceFromZone + 47
    2   com.apple.CoreFoundation                0x00007fff817d0b39 +[NSObject(NSObject) allocWithZone:] + 25
    3   com.apple.AppKit                        0x00007fff8961a9fa -[NSTableView drawRect:] + 628
    4   com.apple.AppKit                        0x00007fff89610cc5 -[NSView _drawRect:clip:] + 3390
    5   com.apple.AppKit                        0x00007fff8960f938 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1325
    6   com.apple.AppKit                        0x00007fff8960fca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    7   com.apple.AppKit                        0x00007fff8960fca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    8   com.apple.AppKit                        0x00007fff8960fca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    9   com.apple.AppKit                        0x00007fff8960e00a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 767
    10  com.apple.AppKit                        0x00007fff8960eed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    11  com.apple.AppKit                        0x00007fff8960eed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    12  com.apple.AppKit                        0x00007fff8960eed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    13  com.apple.AppKit                        0x00007fff8960db2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
    14  com.apple.AppKit                        0x00007fff8960a3de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    15  com.apple.AppKit                        0x00007fff89583c0e -[NSView displayIfNeeded] + 969
    16  com.apple.AppKit                        0x00007fff8957eaba _handleWindowNeedsDisplay + 678
    17  com.apple.CoreFoundation                0x00007fff81817b07 __CFRunLoopDoObservers + 519
    18  com.apple.CoreFoundation                0x00007fff817f3434 __CFRunLoopRun + 468
    19  com.apple.CoreFoundation                0x00007fff817f2d8f CFRunLoopRunSpecific + 575
    20  com.apple.HIToolbox                     0x00007fff84bc77ee RunCurrentEventLoopInMode + 333
    21  com.apple.HIToolbox                     0x00007fff84bc7551 ReceiveNextEventCommon + 148
    22  com.apple.HIToolbox                     0x00007fff84bc74ac BlockUntilNextEventMatchingListInMode + 59
    23  com.apple.AppKit                        0x00007fff89553eb2 _DPSNextEvent + 708
    24  com.apple.AppKit                        0x00007fff89553801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    25  com.apple.AppKit                        0x00007fff8951968f -[NSApplication run] + 395
    26  com.apple.AppKit                        0x00007fff895123b0 NSApplicationMain + 364
    27  com.apple.iCal                          0x00000001000027cc 0x100000000 + 10188
    28  com.apple.iCal                          0x00000001000a4654 0x100000000 + 673364
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff87a9fc0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff87aa1add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff87aa17b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff87aa12de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff87aa0c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff87aa0aa5 start_wqthread + 13
    Thread 2:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff87aca932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff81815468 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff87abffd6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff87abfe89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff87ac1a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff87ac18f9 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff87ac1863 usleep + 57
    3   com.apple.AppKit                        0x00007fff8969f3a1 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation                    0x00007fff83b36114 __NSThread__main__ + 1429
    5   libSystem.B.dylib                       0x00007fff87abffd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff87abfe89 thread_start + 13
    Thread 4 Crashed:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x00007fff87af99ce __semwait_signal_nocancel + 10
    1   libSystem.B.dylib                       0x00007fff87af98d0 nanosleep$NOCANCEL + 129
    2   libSystem.B.dylib                       0x00007fff87b563ce usleep$NOCANCEL + 57
    3   libSystem.B.dylib                       0x00007fff87b75a00 abort + 93
    4   libstdc++.6.dylib                       0x00007fff8697b5d2 __tcf_0 + 0
    5   libobjc.A.dylib                         0x00007fff869bab39 _objc_terminate + 100
    6   libstdc++.6.dylib                       0x00007fff86979ae1 __cxxabiv1::__terminate(void (*)()) + 11
    7   libstdc++.6.dylib                       0x00007fff86979b16 __cxxabiv1::__unexpected(void (*)()) + 0
    8   libstdc++.6.dylib                       0x00007fff86979bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    9   libobjc.A.dylib                         0x00007fff869b6fa2 object_getIvar + 0
    10  com.apple.CoreFoundation                0x00007fff818585a7 +[NSException raise:format:arguments:] + 103
    11  com.apple.CoreFoundation                0x00007fff81858534 +[NSException raise:format:] + 148
    12  com.apple.DAVKit                        0x00007fff830794fd postMessage + 214
    13  com.apple.DAVKit                        0x00007fff83077185 -[AYOperation notifyWithName:infos:] + 253
    14  com.apple.DAVKit                        0x00007fff83078edd +[AYOperation _dispatchNextOperationInQueue] + 512
    15  com.apple.DAVKit                        0x00007fff8307814b __+[AYOperation _queueOneBlock]_block_invoke_1 + 94
    16  libSystem.B.dylib                       0x00007fff87ac2d64 _dispatch_call_block_and_release + 15
    17  libSystem.B.dylib                       0x00007fff87aa12d1 _dispatch_worker_thread2 + 239
    18  libSystem.B.dylib                       0x00007fff87aa0c08 _pthread_wqthread + 353
    19  libSystem.B.dylib                       0x00007fff87aa0aa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff87aa0a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff87aa0e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff87aa0aa5 start_wqthread + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x00000001037a8b20  rcx: 0x00000001037a8ad8  rdx: 0x0000000000000001
      rdi: 0x0000000000000c03  rsi: 0x0000000000000000  rbp: 0x00000001037a8b10  rsp: 0x00000001037a8ad8
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0x0000000000000246
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff87af99ce  rfl: 0x0000000000000247  cr2: 0x0000000058a43000
    Binary Images:
           0x100000000 -        0x1002d6fef  com.apple.iCal 4.0.4 (1395.7) <063A7FEF-C2D3-246E-D6CB-C9A3E75DFB4B> /Applications/iCal.app/Contents/MacOS/iCal
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80005fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff80006000 -     0x7fff80006ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff80083000 -     0x7fff801e3ff7  com.apple.syncservices 5.2 (578.3) <F86C878E-8B5E-DBCE-8592-7AF88DE53261> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff801e4000 -     0x7fff80244fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8027c000 -     0x7fff80507fef  com.apple.JavaScriptCore 6534.52 (6534.52.7) <C8340CAE-B6AC-BCBB-24AB-A6B8B1276C23> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff80508000 -     0x7fff80646fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff80647000 -     0x7fff80670ff7  com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <778F7753-F0DD-5B89-0908-B2EC9B66B30A> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff80681000 -     0x7fff807a9ff7  com.apple.MediaToolbox 0.484.60 (484.60) <F921A5E6-E260-03B4-1458-E5814FA1924D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff807b9000 -     0x7fff807e4ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff807e5000 -     0x7fff80828ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff80829000 -     0x7fff80940fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff80964000 -     0x7fff80965ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff80c65000 -     0x7fff80ce2fef  com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff80ce3000 -     0x7fff80d7dfff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff80d7e000 -     0x7fff80da6fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff80da7000 -     0x7fff80da7ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff80da8000 -     0x7fff80dbdff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8162c000 -     0x7fff8164dfff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff8164e000 -     0x7fff816ccff7  com.apple.CoreText 151.12 (???) <5BE797B7-C903-B664-ADD9-7514B1A6EF9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff816f2000 -     0x7fff816f8fff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff816f9000 -     0x7fff81734fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff81735000 -     0x7fff817a6ff7  com.apple.AppleVAFramework 4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff817a7000 -     0x7fff8191efe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8191f000 -     0x7fff81960fff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8196a000 -     0x7fff819dcfef  com.apple.CoreSymbolication 2.0 (23) <06F8561E-4B36-7BF6-31BA-64091B3D8058> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff819dd000 -     0x7fff81b7afef  com.apple.WebKit 6534.52 (6534.52.7) <CE3B2C17-67CD-E5DA-1580-B08B10A8FFBB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff81b7b000 -     0x7fff81b81ff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff81b82000 -     0x7fff81ba7ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff81ba8000 -     0x7fff823b2fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff823b3000 -     0x7fff82468fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff82491000 -     0x7fff824a2fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff824a3000 -     0x7fff8255cfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff825f2000 -     0x7fff8263dfef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8263e000 -     0x7fff82685ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff82686000 -     0x7fff82686ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff826af000 -     0x7fff82dabff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff82dac000 -     0x7fff82de9fff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff82dea000 -     0x7fff82fa8ff7  com.apple.ImageIO.framework 3.0.5 (3.0.5) <4CF96F2C-B7BB-4C57-E352-3C678CA2B2B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff82fa9000 -     0x7fff83049fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8304a000 -     0x7fff83094ff7  com.apple.DAVKit 4.0.3 (732.2) <7DC4C8B4-9259-2D5D-BDA5-82F0DE3C95CA> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
        0x7fff83095000 -     0x7fff83096fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff83097000 -     0x7fff830a9fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff830aa000 -     0x7fff830cdfff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff830ce000 -     0x7fff8317efff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8317f000 -     0x7fff833e8fff  com.apple.QuartzComposer 4.2 ({156.30}) <C05B97F7-F543-C329-873D-097177226D79> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff833e9000 -     0x7fff833ecfff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff833ed000 -     0x7fff833edff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff833ee000 -     0x7fff8341ffff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff83420000 -     0x7fff8342dfff  com.apple.NSServerNotificationCenter 3.0 (3.0) <FF7063D0-A25F-C22E-FA20-3225ADF089E2> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
        0x7fff8342e000 -     0x7fff834bafef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff834bb000 -     0x7fff83504fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8350d000 -     0x7fff83518ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff83519000 -     0x7fff8352dfff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8352e000 -     0x7fff83638ff7  com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff83639000 -     0x7fff83837fe7  com.apple.CalendarStore 4.0.4 (997.7) <9A357B3C-F083-BEAA-4094-B00B423DDE47> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff83838000 -     0x7fff838bafff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff838bb000 -     0x7fff838c6fff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff838c7000 -     0x7fff838cdff7  com.apple.AOSNotification 1.2.0 (124) <19CCCD17-6888-58F3-17B6-7DC5D49276A4> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff838ce000 -     0x7fff838dafff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff838e1000 -     0x7fff838e1ff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff838e2000 -     0x7fff838e2ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff838e3000 -     0x7fff8391cff7  com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff8391d000 -     0x7fff83965ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff83966000 -     0x7fff83b24fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff83b25000 -     0x7fff83da7fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff83da8000 -     0x7fff83e08ff7  com.apple.ExchangeWebServices 1.3 (61) <7DB2989C-1362-8688-C73E-8405734A6566> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff83e09000 -     0x7fff83e46ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff83e47000 -     0x7fff83eb1fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff83eb2000 -     0x7fff83ebcfff  com.apple.DisplayServicesFW 2.3.3 (289) <97F62F36-964A-3E17-2A26-A0EEF63F4BDE> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff83eee000 -     0x7fff83f07fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff83fd3000 -     0x7fff83fd4ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff83fd5000 -     0x7fff8403dfff  com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff8403e000 -     0x7fff84485fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff84486000 -     0x7fff84543fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff84544000 -     0x7fff84663fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff84664000 -     0x7fff84673fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff84674000 -     0x7fff8467aff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8467d000 -     0x7fff84684fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff84685000 -     0x7fff846a5fef  com.apple.DotMacSyncManager 2.0.3 (446.9) <E8F9E7E2-A696-4111-C4FF-20AB5DFBC3FC> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
        0x7fff846a6000 -     0x7fff84a43fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff84a56000 -     0x7fff84a5aff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff84a5b000 -     0x7fff84a68fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff84a69000 -     0x7fff84a72ff7  com.apple.aps.framework 1.2 (1.2) <2E09D42F-2021-C995-44D0-B80AAAAA99E5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff84b99000 -     0x7fff84e97fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff84e98000 -     0x7fff84e9fff7  com.apple.KerberosHelper 2.1 (1.0) <8BCCEA2D-7CE7-1B3E-F371-AB8485A1588F> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff84ea0000 -     0x7fff84ea4ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff84ea5000 -     0x7fff84f34fff  com.apple.PDFKit 2.5.1 (2.5.1) <38BEE9BB-3716-49BA-7E14-687FE9E066EB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff84f35000 -     0x7fff84f68ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff84f69000 -     0x7fff84fa3fff  com.apple.bom 10.0 (164) <E5C9AFBD-68C1-197E-72B0-B43295DC87DC> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff84fa4000 -     0x7fff84fa4ff7  com.apple.quartzframework 1.5 (1.5) <5BFE5998-26D9-0AF1-1522-55C78E41F778> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff84fa5000 -     0x7fff84fb6ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff84fb7000 -     0x7fff84fb8fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff84fb9000 -     0x7fff84fcffe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff84fd0000 -     0x7fff8501cfff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8501d000 -     0x7fff85060fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff85061000 -     0x7fff850c3fe7  com.apple.datadetectorscore 2.0 (80.7) <34592AFF-B1B8-2277-B013-70193E4E1691> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff850c4000 -     0x7fff85109fff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff8527c000 -     0x7fff852bafe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff852bb000 -     0x7fff8530aff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff8530b000 -     0x7fff8530eff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8530f000 -     0x7fff85413ff7  com.apple.PubSub 1.0.5 (65.28) <0C94CB22-B6B6-F37A-A4FD-A33BB2A29996> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8542d000 -     0x7fff85433ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff85464000 -     0x7fff85466fef  com.apple.ExceptionHandling 1.5 (10) <F2867B93-A56A-974F-9556-266BCE394057> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
        0x7fff85467000 -     0x7fff85472fff  com.apple.dotMacLegacy 3.2 (266) <80F00DE2-4C50-0FD9-5C6E-3EAA1599277B> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
        0x7fff85473000 -     0x7fff85550fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8557e000 -     0x7fff857c0fe7  com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff857c1000 -     0x7fff85802fef  com.apple.CoreMedia 0.484.60 (484.60) <6B73A514-C4D5-8DC7-982C-4E4F0231ED77> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff85803000 -     0x7fff85832ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff85833000 -     0x7fff86865fef  com.apple.WebCore 6534.52 (6534.52.11) <78740DDE-7B9C-92EC-9CF6-C8DD1815B609> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff86898000 -     0x7fff86928fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff86929000 -     0x7fff8692efff  libGIF.dylib ??? (???) <1888A176-22D5-C663-22D0-336D9D213BD6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8692f000 -     0x7fff869acfef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff869ad000 -     0x7fff86a63ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff86a64000 -     0x7fff86a67ff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff86a68000 -     0x7fff86a75ff7  com.apple.AppleFSCompression 24.4 (1.0) <56B27685-B6A7-7FD7-85F3-402C4E0C988E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff86a76000 -     0x7fff86ac9ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff86aca000 -     0x7fff86d04fef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff86d05000 -     0x7fff86d0afff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff86d0b000 -     0x7fff86d87ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff86d88000 -     0x7fff86e0dff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff86e0e000 -     0x7fff86e57ff7  com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff876a0000 -     0x7fff8771ffe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff87720000 -     0x7fff87720ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff87751000 -     0x7fff8778bfff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <539EBFDD-96D6-FB07-B128-40232C408757> /usr/lib/libcups.2.dylib
        0x7fff8778c000 -     0x7fff87871fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff87872000 -     0x7fff878defe7  com.apple.CorePDF 1.4 (1.4) <06AE6D85-64C7-F9CC-D001-BD8BAE31B6D2> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff87997000 -     0x7fff8799cff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff87a6a000 -     0x7fff87a85ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff87a86000 -     0x7fff87c47fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff87c48000 -     0x7fff8814eff7  com.apple.VideoToolbox 0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8814f000 -     0x7fff88284fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff88351000 -     0x7fff88694fff  com.apple.MessageFramework 4.5 (1084) <C291835F-FD0E-443D-05BA-3DC0A1634E0C> /System/Library/Frameworks/Message.framework/Versions/B/Message
        0x7fff88695000 -     0x7fff886e4fef  libTIFF.dylib ??? (???) <2DDC5A18-35EE-5B59-10D8-0F6925DB3858> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff886e5000 -     0x7fff887a7fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff888a1000 -     0x7fff888c8ff7  libJPEG.dylib ??? (???) <921A3A14-A69B-F393-1678-5A5D32D4BDF2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff888c9000 -     0x7fff88907fef  com.apple.DebugSymbols 1.1 (70) <C3D11461-E118-09DB-D9D7-8972B3FD160F> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff88b0f000 -     0x7fff88b66fff  com.apple.Symbolication 1.1 (67) <73B6FC15-9E05-69E2-2955-14F82F9BC337> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff88b67000 -     0x7fff88b69fff  libRadiance.dylib ??? (???) <E08CD209-E3E4-2753-AF8A-90DD12ED556F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff88b6a000 -     0x7fff88b87ff7  libPng.dylib ??? (???) <A6D093D2-CA9D-2035-9C11-0AE98585C6F1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff88bcb000 -     0x7fff88be2fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff88c18000 -     0x7fff88d32fff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff88d33000 -     0x7fff88d49fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff88d4a000 -     0x7fff88d9fff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff88da0000 -     0x7fff88e61fef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff88e62000 -     0x7fff88ea9fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff88eaa000 -     0x7fff88f7efe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff88f7f000 -     0x7fff88f8efef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff88f9b000 -     0x7fff893defef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C

    Mail account > network account, yes.
    This is the log of the Console
    The error with unauthorized accounts/passwords, comes because on the account we changed the password.
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.290 [iCal:2175] ERROR (AYOPERATION): <[Request 0x118033f80] PROPFIND /principals/__uids__/395E4C1F-CEE4-4330-BC11-3B72AEF1C5AE/ (for <DAVSession 0x1019c4c90(SERVER ADDRESS)>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101ba1f90 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b862b0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.315 [iCal:2175] ERROR (AYOPERATION): <[Request 0x118033f80] PROPFIND /principals/__uids__/1E9C1426-DFDD-451F-BCAC-BEA41D33CCD7/ (for <DAVSession 0x1163442c0 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x116540cf0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x10196ef00 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.419 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/7EB9A32E-0940-4A7D-BF8E-980C3C5F6596/ (for <DAVSession 0x1019e4590 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bacae0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bc6df0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.524 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/B8AD2ED7-5056-477D-B316-C102AAA199C4/ (for <DAVSession 0x1163135a0 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bbc870 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b86080 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.627 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/4ACD2BC1-37BC-4BAE-9C16-A3DEE043B52F/ (for <DAVSession 0x11635b270 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x118002460 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b86080 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.732 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/CA598031-091D-4757-86D1-BAF64BEAEB51/ (for <DAVSession 0x1019eda00 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bad9e0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b24a50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.960 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1165001d0] PROPFIND /principals/__uids__/16C46998-F75D-4A35-9E84-11978C2FDE67/ (for <DAVSession 0x11635b890 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b69c10 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x11702fa40 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:40 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:40.977 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/AC8C4E8C-7190-45E9-94A3-67079CB2E7DE/ (for <DAVSession 0x1163f9380 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101ba3720 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b9ca50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.040 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/37A0E0D6-C383-4071-8005-086B147D8B68/ (for <DAVSession 0x11635c220 https://mail.trinite.nl/>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b83990 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b9ca50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.144 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/A477C8B6-6413-4E11-A5B3-684917E3D51C/ (for <DAVSession 0x116359440 https://mail.trinite.nl/>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b7f450 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101ba66e0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.248 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/0E703019-155D-4B74-8054-5C30F354DC49/ (for <DAVSession 0x116347860 https://mail.trinite.nl/>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b7def0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b6eb50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.351 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/F2118006-FB38-4B57-AD2A-DAF2AD75011F/ (for <DAVSession 0x11631e800 https://mail.trinite.nl/>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b72a50 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b77030 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.461 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/A41A50F1-3D87-4A9E-AE6F-F3B43F003963/ (for <DAVSession 0x116359930 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bc55c0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b8d8f0 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.630 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/2DEDB61B-CF41-4E0A-A959-A26F1FCC59EC/ (for <DAVSession 0x10193c990 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b73b10 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b70200 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:41 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:41.668 [iCal:2175] ERROR (AYOPERATION): <[Request 0x116508c00] PROPFIND /principals/__uids__/5F06B255-AD07-4D0A-9366-129FA31A6354/ (for <DAVSession 0x10198ac50 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101b77720 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x101bbe840 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:42 PM          iCal[2175]          CalDAV CalDAVAccountRefreshQueueableOperation failed: status 'HTTP/1.1 401 Unauthorized' request:
    <?xml version="1.0" encoding="utf-8"?>
    <x0:propfind xmlns:x1="urn:ietf:params:xml:ns:caldav" xmlns:x0="DAV:" xmlns:x2="http://calendarserver.org/ns/">
    <x0:prop>
      <x0:principal-collection-set/>
      <x1:calendar-home-set/>
      <x1:calendar-user-address-set/>
      <x1:schedule-inbox-URL/>
      <x1:schedule-outbox-URL/>
      <x2:dropbox-home-URL/>
      <x2:xmpp-uri/>
      <x2:notification-URL/>
      <x0:displayname/>
      <x0:principal-URL/>
      <x0:supported-report-set/>
    </x0:prop>
    </x0:propfind>
    ... response:
    HTTP/1.1 401 Unauthorized
    Date: Fri, 06 Jul 2012 14:22:40 GMT
    Server: Twisted/8.2.0 TwistedWeb/8.2.0
    Content-Length: 141
    Dav: 1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-principal-property-search
    Content-Type: text/html
    Www-Authenticate: digest nonce="655567066705680629856015390420100222343823624532540240874", realm="/Search", algorithm="md5"
    Cache-Control: max-age=60
    Expires: Fri, 06 Jul 2012 14:23:40 GMT
    Ms-Author-Via: DAV
    X-Frame-Options: SameOrigin
    X-Ua-Compatible: IE=EmulateIE7
    Keep-Alive: timeout=15, max=500
    Connection: Keep-Alive
    7/6/12 4:22:42 PM          iCal[2175]          CalDAV CalDAVAccountRefreshQueueableOperation failed: status 'HTTP/1.1 401 Unauthorized' request:
    <?xml version="1.0" encoding="utf-8"?>
    <x0:propfind xmlns:x1="urn:ietf:params:xml:ns:caldav" xmlns:x0="DAV:" xmlns:x2="http://calendarserver.org/ns/">
    <x0:prop>
      <x0:principal-collection-set/>
      <x1:calendar-home-set/>
      <x1:calendar-user-address-set/>
      <x1:schedule-inbox-URL/>
      <x1:schedule-outbox-URL/>
      <x2:dropbox-home-URL/>
      <x2:xmpp-uri/>
      <x2:notification-URL/>
      <x0:displayname/>
      <x0:principal-URL/>
      <x0:supported-report-set/>
    </x0:prop>
    </x0:propfind>
    ... response:
    HTTP/1.1 401 Unauthorized
    Date: Fri, 06 Jul 2012 14:22:40 GMT
    Server: Twisted/8.2.0 TwistedWeb/8.2.0
    Content-Length: 141
    Dav: 1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-principal-property-search
    Content-Type: text/html
    Www-Authenticate: digest nonce="86233837381709637792687613964965059846593283836775444391", realm="/Search", algorithm="md5"
    Cache-Control: max-age=60
    Expires: Fri, 06 Jul 2012 14:23:40 GMT
    Ms-Author-Via: DAV
    X-Frame-Options: SameOrigin
    X-Ua-Compatible: IE=EmulateIE7
    Keep-Alive: timeout=15, max=500
    Connection: Keep-Alive
    7/6/12 4:22:43 PM          iCal[2175]          CalDAV CalDAVAccountRefreshQueueableOperation failed: status 'HTTP/1.1 401 Unauthorized' request:
    <?xml version="1.0" encoding="utf-8"?>
    <x0:propfind xmlns:x1="urn:ietf:params:xml:ns:caldav" xmlns:x0="DAV:" xmlns:x2="http://calendarserver.org/ns/">
    <x0:prop>
      <x0:principal-collection-set/>
      <x1:calendar-home-set/>
      <x1:calendar-user-address-set/>
      <x1:schedule-inbox-URL/>
      <x1:schedule-outbox-URL/>
      <x2:dropbox-home-URL/>
      <x2:xmpp-uri/>
      <x2:notification-URL/>
      <x0:displayname/>
      <x0:principal-URL/>
      <x0:supported-report-set/>
    </x0:prop>
    </x0:propfind>
    ... response:
    HTTP/1.1 401 Unauthorized
    Date: Fri, 06 Jul 2012 14:22:41 GMT
    Server: Twisted/8.2.0 TwistedWeb/8.2.0
    Content-Length: 141
    Dav: 1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-principal-property-search
    Content-Type: text/html
    Www-Authenticate: digest nonce="558077760900657414480520995007282074272601601878391817905", realm="/Search", algorithm="md5"
    Cache-Control: max-age=60
    Expires: Fri, 06 Jul 2012 14:23:41 GMT
    Ms-Author-Via: DAV
    X-Frame-Options: SameOrigin
    X-Ua-Compatible: IE=EmulateIE7
    Keep-Alive: timeout=15, max=500
    Connection: Keep-Alive
    7/6/12 4:22:45 PM          [0x0-0x9f09f].com.apple.iCal[2175]          16:22:45.672 [iCal:2175] ERROR (AYOPERATION): <[Request 0x1160ebd70] PROPFIND /principals/__uids__/395E4C1F-CEE4-4330-BC11-3B72AEF1C5AE/ (for <DAVSession 0x1019c4c90 SERVER ADDRESS>)> is setting its error twice (current is Error Domain=DAVErrorDomain Code=3 UserInfo=0x11702b170 "The operation couldn’t be completed. (DAVErrorDomain error 3.)" and new is Error Domain=DAVErrorDomain Code=3 UserInfo=0x117071440 "The operation couldn’t be completed. (DAVErrorDomain error 3.)")
    7/6/12 4:22:45 PM          iCal[2175]          CalDAV CalDAVRefreshDelegateListQueueableOperation failed: status 'HTTP/1.1 401 Unauthorized' request:
    <?xml version="1.0" encoding="utf-8"?>
    <x0:propfind xmlns:x0="DAV:">
    <x0:prop>
      <x0:group-membership/>
    </x0:prop>
    </x0:propfind>
    ... response:
    HTTP/1.1 401 Unauthorized
    Date: Fri, 06 Jul 2012 14:22:45 GMT
    Server: Twisted/8.2.0 TwistedWeb/8.2.0
    Content-Length: 141
    Dav: 1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability, inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, calendarserver-principal-property-search
    Content-Type: text/html
    Www-Authenticate: digest nonce="467035962767024934544068053588574762419090495224343160582", realm="/Search", algorithm="md5"
    Cache-Control: max-age=60
    Expires: Fri, 06 Jul 2012 14:23:45 GMT
    Ms-Author-Via: DAV
    X-Frame-Options: SameOrigin
    X-Ua-Compatible: IE=EmulateIE7
    Keep-Alive: timeout=15, max=500
    Connection: Keep-Alive

  • Various programs keep crashing with an error like Exception Type: EXC_BAD_ACCESS (SIGSEGV), and Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000000

    I have various programmes that crash across the board with a similar error code like the following. I remember I've had this before, also on my previous MacBook Pro. I already tested memory using two second party programmes, and the (new Apple diagnostics..., which doesn't provide an overview over what's been found/not found??). I would tend to exclude the possibility that my memory fails always after half a year into a new computer. A (non-clean) reinstall (which preserved settings now (since Yosemite??), did not offer any relief. I am very disinclined to do a complete, clean reinstall, as it would take me at least a week or two to get the computer back into my work flow. Cleaning caches etc. did likewise not offer relief... Any suggestions? what is this apple main-thread and how to debug it? Again, this happens to at least 12 different programmes.
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:      KERN_INVALID_ADDRESS at 0x0000000000000018
    Many thanks.

    Dear Linc,
    @1: I may have emptied since most of the crashes, I copy here what appears after entering search string: 'crash':
    07/01/2015 10:38:28.279 com.apple.xpc.launchd[1]: (com.apple.ReportCrash) The DrainMessagesOnCrash key is not yet implemented. If you rely on this key, please file a bug.
    07/01/2015 10:38:28.279 com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Self) The DrainMessagesOnCrash key is not yet implemented. If you rely on this key, please file a bug.
    07/01/2015 10:38:32.433 Cinch[331]: 6   CMCrashReporter                     0x00060be5 +[CMCrashReporterGlobal isRunningLeopard] + 25
    07/01/2015 10:38:38.586 Dropbox[339]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    07/01/2015 10:38:58.000 kernel[0]: Sandbox: assistantd(443) deny mach-lookup com.apple.CrashReporterSupportHelper
    07/01/2015 10:38:58.438 assistantd[443]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7f7f6a7402c0 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    07/01/2015 10:38:58.000 kernel[0]: Sandbox: com.apple.geod(445) deny mach-lookup com.apple.CrashReporterSupportHelper
    07/01/2015 10:38:58.504 com.apple.geod[445]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7fb8b280da20 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    07/01/2015 10:49:54.365 com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Root[495]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash.DirectoryService
    07/01/2015 13:22:12.042 assistantd[7077]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7fdaf4201bb0 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    07/01/2015 13:22:12.219 sandboxd[280]: ([7077]) assistantd(7077) deny mach-lookup com.apple.CrashReporterSupportHelper
    07/01/2015 13:44:45.487 assistantd[8006]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7f9c0a41e160 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    07/01/2015 13:44:45.741 sandboxd[280]: ([8006]) assistantd(8006) deny mach-lookup com.apple.CrashReporterSupportHelper
    07/01/2015 13:56:02.724 Things[8125]: Call stack:
      0   AppKit                              0x00007fff93a4ba9c -[NSThemeFrame addSubview:] + 107
      1   Things                              0x00000001079b95c1 Things + 710081
      2   Things                              0x0000000107926d50 Things + 109904
      3   AppKit                              0x00007fff933a4745 -[NSWindowTemplate nibInstantiate] + 567
      4   AppKit                              0x00007fff9337973b -[NSIBObjectData instantiateObject:] + 309
      5   AppKit                              0x00007fff9385bd01 -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 452
      6   AppKit                              0x00007fff9336df05 loadNib + 384
      7   AppKit                              0x00007fff938dbf80 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:options:withZone:ownerBundle:] + 313
      8   AppKit                              0x00007fff938dc67d +[NSBundle(NSNibLoadingInternal) _loadNibFile:externalNameTable:options:withZone:] + 150
      9   AppKit                              0x00007fff935adfed -[NSWindowController loadWindow] + 313
      10  AppKit                              0x00007fff935b3684 -[NSWindowController window] + 80
      11  AppKit                              0x00007fff935b4821 -[NSWindowController showWindow:] + 36
      12  Things                              0x000000010799ef13 Things + 601875
      13  Things                              0x00000001079a7864 Things + 637028
      14  HockeySDK                           0x0000000107bb00f0 -[BITCrashReportManager startManager] + 371
      15  CoreFoundation                      0x00007fff89bf3cbc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
      16  CoreFoundation                      0x00007fff89ae51b4 _CFXNotificationPost + 3140
      17  Foundation                          0x00007fff92453ea1 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66
      18  AppKit                              0x00007fff9339210b -[NSApplication _postDidFinishNotification] + 291
      19  AppKit                              0x00007fff93391e76 -[NSApplication _sendFinishLaunchingNotification] + 191
      20  AppKit                              0x00007fff9338ec76 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 574
      21  AppKit                              0x00007fff9338e6b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
      22  Foundation                          0x00007fff92473458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
      23  Foundation                          0x00007fff924732c9 _NSAppleEventManagerGenericHandler + 102
      24  AE                                  0x00007fff8c69e99c _Z20aeDispatchAppleEventPK6AEDescPS_jPh + 531
      25  AE                                  0x00007fff8c69e719 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 31
      26  AE                                  0x00007fff8c69e623 aeProcessAppleEvent + 295
      27  HIToolbox                           0x00007fff973b837e AEProcessAppleEvent + 56
      28  AppKit                              0x00007fff9338ad76 _DPSNextEvent + 2665
      29  AppKit                              0x00007fff93389e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
      30  AppKit                              0x00007fff9337de23 -[NSApplication run] + 594
      31  AppKit                              0x00007fff933692d4 NSApplicationMain + 1832
      32  Things                              0x000000010790e2b4 Things + 8884
      33  ???                                 0x0000000000000001 0x0 + 1
    @2:
    the last one noted there seems to be Aperture, even though there have been crashes certainly after I used that:
    Process:               Aperture [1268]
    Path:                  /Volumes/*/Aperture.app/Contents/MacOS/Aperture
    Identifier:            com.apple.Aperture
    Version:               3.6 (3.6)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Aperture [1268]
    User ID:               501
    Date/Time:             2014-12-25 17:11:57.551 +0000
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        anonymised
    Sleep/Wake UUID:       E4 anonymised
    Time Awake Since Boot: 22000 seconds
    Time Since Wake:       4000 seconds
    Crashed Thread:        19  Dispatch queue: com.apple.photoapps.volumeMgr
    Exception Type:        EXC_BAD_ACCESS (SIGBUS)
    Exception Codes:       0x000000000000000a, 0x000000010d3dd5ab
    VM Regions Near 0x10d3dd5ab:
        VM_ALLOCATE            000000010d28a000-000000010d28b000 [    4K] r--/rw- SM=SHM 
    --> mapped file            000000010d28b000-000000010d80e000 [ 5644K] r-x/rwx SM=COW  Object_id=c83507bb
        mapped file            000000010d80e000-000000010d957000 [ 1316K] rw-/rwx SM=COW  Object_id=c6e6ec6b
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreServices.CarbonCore 0x00007fff8f4b07e1 FileIDTree_VolumeMessageProcessed_rpc + 105
    3   com.apple.CoreFoundation       0x00007fff8fbc5a0d __CFMachPortPerform + 285
    4   com.apple.CoreFoundation       0x00007fff8fbc58d9 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
    5   com.apple.CoreFoundation       0x00007fff8fbc584b __CFRunLoopDoSource1 + 475
    6   com.apple.CoreFoundation       0x00007fff8fbb73c7 __CFRunLoopRun + 2375
    7   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    8   com.apple.HIToolbox           0x00007fff9627443f RunCurrentEventLoopInMode + 235
    9   com.apple.HIToolbox           0x00007fff962741ba ReceiveNextEventCommon + 431
    10  com.apple.HIToolbox           0x00007fff96273ffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    11  com.apple.AppKit               0x00007fff8df496d1 _DPSNextEvent + 964
    12  com.apple.AppKit               0x00007fff8df48e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    13  ???                           0x000000010cccea81 0 + 4509723265
    14  com.apple.AppKit               0x00007fff8df3ce23 -[NSApplication run] + 594
    15  ???                           0x000000010e0b439a 0 + 4530586522
    16  ???                           0x000000010c8720b4 0 + 4505149620
    17  ???                           0x000000010c871a44 0 + 4505147972
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff951c322e kevent64 + 10
    1   libdispatch.dylib             0x00007fff8eacba6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff951c2132 __psynch_cvwait + 10
    1   com.apple.Foundation           0x00007fff9160a400 -[NSCondition waitUntilDate:] + 343
    2   com.apple.Foundation           0x00007fff916002b8 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    3   ???                           0x000000010ed5e7c7 0 + 4543866823
    4   ???                           0x000000010ed5e320 0 + 4543865632
    5   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8fbb7b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8fbb6fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff8e0ac7a7 _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   libclh.dylib                   0x00007fff96099318 cuosEventWait + 184
    3   libclh.dylib                   0x00007fff95a9f593 intHandlerMain + 323
    4   libclh.dylib                   0x00007fff9609a119 cuosPosixThreadStartFunc(void*) + 41
    5   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 11:: QTKit: listenOnDelegatePort
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8fbb7b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8fbb6fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    5   com.apple.CoreFoundation       0x00007fff8fc6ced1 CFRunLoopRun + 97
    6   com.apple.QTKit               0x00007fff99dcb948 listenOnDelegatePort + 372
    7   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 12:: QTKit: listenOnNotificationPort
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8fbb7b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8fbb6fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    5   com.apple.CoreFoundation       0x00007fff8fc6ced1 CFRunLoopRun + 97
    6   com.apple.QTKit               0x00007fff99dcbdf3 listenOnNotificationPort + 340
    7   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 13:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8fbb7b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8fbb6fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8fbb6838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff8c032d20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff91638b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 14:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff951c23f6 __select + 10
    1   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   libclh.dylib                   0x00007fff96099318 cuosEventWait + 184
    3   libclh.dylib                   0x00007fff95a9f593 intHandlerMain + 323
    4   libclh.dylib                   0x00007fff9609a119 cuosPosixThreadStartFunc(void*) + 41
    5   libsystem_pthread.dylib       0x00007fff8c2512fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8c251279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8c24f4b1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff951c2946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8c24f4a1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff951c2946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8c24f4a1 start_wqthread + 13
    Thread 18:: Dispatch queue: NSWorkspace Volume Observer Queue
    0   libsystem_kernel.dylib         0x00007fff951bd52e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff951bc69f mach_msg + 55
    2   com.apple.CoreServices.CarbonCore 0x00007fff8f4b07e1 FileIDTree_VolumeMessageProcessed_rpc + 105
    3   com.apple.CoreServices.CarbonCore 0x00007fff8f4aea33 ___FSAddVolumeObserverOnQueue_block_invoke_2 + 205
    4   libdispatch.dylib             0x00007fff8eac8c13 _dispatch_client_callout + 8
    5   libdispatch.dylib             0x00007fff8ead387e _dispatch_source_latch_and_call + 721
    6   libdispatch.dylib             0x00007fff8eacc62b _dispatch_source_invoke + 412
    7   libdispatch.dylib             0x00007fff8eacc154 _dispatch_queue_drain + 571
    8   libdispatch.dylib             0x00007fff8eacdecc _dispatch_queue_invoke + 202
    9   libdispatch.dylib             0x00007fff8eacb6b7 _dispatch_root_queue_drain + 463
    10  libdispatch.dylib             0x00007fff8ead9fe4 _dispatch_worker_thread3 + 91
    11  libsystem_pthread.dylib       0x00007fff8c2516cb _pthread_wqthread + 729
    12  libsystem_pthread.dylib       0x00007fff8c24f4a1 start_wqthread + 13
    Thread 19 Crashed:: Dispatch queue: com.apple.photoapps.volumeMgr
    0   ???                           0x000000010d3dd5ab 0 + 4517123499
    1   com.apple.DiskArbitration     0x00007fff90ab5648 _DASessionCallback + 265
    2   com.apple.DiskArbitration     0x00007fff90ab5538 __DASessionSetDispatchQueue_block_invoke_2 + 56
    3   libdispatch.dylib             0x00007fff8eac8c13 _dispatch_client_callout + 8
    4   libdispatch.dylib             0x00007fff8ead387e _dispatch_source_latch_and_call + 721
    5   libdispatch.dylib             0x00007fff8eacc62b _dispatch_source_invoke + 412
    6   libdispatch.dylib             0x00007fff8eacc154 _dispatch_queue_drain + 571
    7   libdispatch.dylib             0x00007fff8eacdecc _dispatch_queue_invoke + 202
    8   libdispatch.dylib             0x00007fff8eacb6b7 _dispatch_root_queue_drain + 463
    9   libdispatch.dylib             0x00007fff8ead9fe4 _dispatch_worker_thread3 + 91
    10  libsystem_pthread.dylib       0x00007fff8c2516cb _pthread_wqthread + 729
    11  libsystem_pthread.dylib       0x00007fff8c24f4a1 start_wqthread + 13
    Thread 20:
    Thread 19 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff90ab5898  rbx: 0x00007fa228126400  rcx: 0x00007fff90ab59f4  rdx: 0x0000600000090900
      rdi: 0x00006080004494e0  rsi: 0x0000600000a70100  rbp: 0x00000001180a5cb0  rsp: 0x00000001180a5c48
       r8: 0x0000000000000080   r9: 0xbaddc0dedeadbead  r10: 0x00007fa224466e40  r11: 0x0000000000000002
      r12: 0x0000000000000003  r13: 0x000061800008dbb0  r14: 0x0000600000a70100  r15: 0x00006080004494e0
      rip: 0x000000010d3dd5ab  rfl: 0x0000000000010203  cr2: 0x000000010d3dd5ab
      Logical CPU:     3
    Error Code:      0x00000014
    Trap Number:     14
    Binary Images:
                     0 - 0xffffffffffffffff +Aperture (???) /Volumes/*/Aperture.app/Contents/MacOS/Aperture
                     0 - 0xffffffffffffffff +PhotoFoundation (???) /Volumes/*/Aperture.app/Contents/Frameworks/PhotoFoundation.framework/Versions/ A/PhotoFoundation
                     0 - 0xffffffffffffffff +RedRock (???) /Volumes/*/Aperture.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRoc k
                     0 - 0xffffffffffffffff +iLifePageLayoutCore (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifePageLayoutCore.framework/Versi ons/A/iLifePageLayoutCore
                     0 - 0xffffffffffffffff +iLifePhotoStreamConfiguration (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifePhotoStreamConfiguration.frame work/Versions/A/iLifePhotoStreamConfiguration
                     0 - 0xffffffffffffffff +iLifeAssetManagement (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeAssetManagement.framework/Vers ions/A/iLifeAssetManagement
                     0 - 0xffffffffffffffff +AccountConfigurationPlugin (???) /Volumes/*/Aperture.app/Contents/Frameworks/AccountConfigurationPlugin.framewor k/Versions/A/AccountConfigurationPlugin
                     0 - 0xffffffffffffffff +MobileMe (???) /Volumes/*/Aperture.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobil eMe
                     0 - 0xffffffffffffffff +ProKit (???) /Volumes/*/Aperture.app/Contents/Frameworks/ProKit.framework/Versions/A/ProKit
                     0 - 0xffffffffffffffff +iLifeSlideshow (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/A /iLifeSlideshow
                     0 - 0xffffffffffffffff +iLifeFaceRecognition (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/iLifeFaceRecognition
                     0 - 0xffffffffffffffff +PrintServices (???) /Volumes/*/Aperture.app/Contents/Frameworks/PrintServices.framework/Versions/A/ PrintServices
                     0 - 0xffffffffffffffff +ProUtils (???) /Volumes/*/Aperture.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProUt ils
                     0 - 0xffffffffffffffff +Geode (???) /Volumes/*/Aperture.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
                     0 - 0xffffffffffffffff +ProXTCore (???) /Volumes/*/Aperture.app/Contents/Frameworks/ProXTCore.framework/Versions/A/ProX TCore
                     0 - 0xffffffffffffffff +iLifeSQLAccess (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/A /iLifeSQLAccess
                     0 - 0xffffffffffffffff +Tellus (???) /Volumes/*/Aperture.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
                     0 - 0xffffffffffffffff +Tessera (???) /Volumes/*/Aperture.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesser a
                     0 - 0xffffffffffffffff +eOkaoCom.dylib (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/Resources/eOkaoCom.dylib
                     0 - 0xffffffffffffffff +eOkaoPt.dylib (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/Resources/eOkaoPt.dylib
                     0 - 0xffffffffffffffff +eOkaoDt.dylib (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/Resources/eOkaoDt.dylib
                     0 - 0xffffffffffffffff +eOkaoFr.dylib (???) /Volumes/*/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/Vers ions/A/Resources/eOkaoFr.dylib
                     0 - 0xffffffffffffffff +TaskView (???) /Volumes/*/Aperture.app/Contents/PlugIns/TaskView.bundle/Contents/MacOS/TaskVie w
                     0 - 0xffffffffffffffff +FacebookPublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/M acOS/FacebookPublisher
                     0 - 0xffffffffffffffff +FlickrPublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Mac OS/FlickrPublisher
                     0 - 0xffffffffffffffff +MobileMePublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/M acOS/MobileMePublisher
                     0 - 0xffffffffffffffff +SharedPhotoStreamPublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/SharedPhotoStreamPublisher.publisher/C ontents/MacOS/SharedPhotoStreamPublisher
                     0 - 0xffffffffffffffff +SmugMugPublisher (???) /Volumes/*/Aperture.app/Contents/PlugIns/SmugMugPublisher.publisher/Contents/Ma cOS/SmugMugPublisher
                     0 - 0xffffffffffffffff +Facebook (???) /Volumes/*/Aperture.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents/ MacOS/Facebook
                     0 - 0xffffffffffffffff +Flickr (???) /Volumes/*/Aperture.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/Ma cOS/Flickr
                     0 - 0xffffffffffffffff +SmugMug (???) /Volumes/*/Aperture.app/Contents/PlugIns/SmugMug.accountconfigplugin/Contents/M acOS/SmugMug
           0x10d1b5000 -        0x10d1e2fff  com.apple.iTunesLibrary (12.0.1 - 12.0.1.26) <8EEB7003-E3B0-3149-81B6-F5D70F97466C> /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
           0x10e080000 -        0x10e08bff7  com.apple.PluginManager (1.7.6 - 55) <0E0F6415-A474-3FC8-8C8E-33867E31F391> /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
           0x10f0e3000 -        0x10f1fbfff  com.apple.mobiledevice (757.1.5.0.2 - 757.1.5.0.2) <364C6894-934B-3844-A77F-7DFEC21F8AEE> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
           0x10f279000 -        0x10f2aeff7  libssl.0.9.8.dylib (52) <70680606-475F-3C89-BB5F-E274253DC7C6> /usr/lib/libssl.0.9.8.dylib
           0x10f2c6000 -        0x10f2c8ff7  com.apple.LibraryRepair (1.0 - 1) <7D0695B1-BCC9-3ED2-9688-14806C8ED284> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
           0x10f4c7000 -        0x10f51aff7  com.apple.NyxAudioAnalysis (12.5 - 12.5) <D1DAF825-1680-3D27-9F20-B1316C0A7C03> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
           0x118003000 -        0x118004fe5 +cl_kernels (???) <0A48AF2D-C3D6-4260-9FD2-9BB66B01CA20> cl_kernels
           0x11843a000 -        0x11843fff7  libgermantok.dylib (17) <47EF3D93-B111-3218-AF60-E33F506D57E8> /usr/lib/libgermantok.dylib
           0x11d722000 -        0x11d726ff3  libFontRegistryUI.dylib (134) <9C55337C-4D65-34C8-9BB9-90399B420A6F> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x11da6f000 -        0x11da6ffe7 +cl_kernels (???) <7E713AF1-D6EB-4975-86EB-6F84BE214B39> cl_kernels
           0x11e6ec000 -        0x11e7d2fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x11e814000 -        0x11e8f4ff7  unorm8_rgba.dylib (2.4.5) <A8805102-8A21-3A5E-AE22-63C0DEC8CB6F> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
        0x123400000000 -     0x1234004f7ff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.0.86 - 10.0.0) <03454F0A-EEE2-3B25-8DB2-A32FA24CE699> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD5000GraphicsGLDriver
        0x123440000000 -     0x123440864fff  com.apple.GeForceGLDriver (10.0.43 - 10.0.0) <4E749711-614F-32F8-8373-1F0307082D7B> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff61749000 -     0x7fff6177f837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff8a906000 -     0x7fff8a992fff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff8a993000 -     0x7fff8a99eff7  com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8a9c6000 -     0x7fff8a9cafff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8a9cb000 -     0x7fff8aa86ff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8aa87000 -     0x7fff8aa93ff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8ab41000 -     0x7fff8ab48ff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8ab5b000 -     0x7fff8ab5dfff  libRadiance.dylib (1231) <BDD94A52-DE53-300C-9180-5D434272989F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8ab73000 -     0x7fff8ab97ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8ab98000 -     0x7fff8abb3ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff8abc0000 -     0x7fff8acb4ff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8ad57000 -     0x7fff8b026ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8b027000 -     0x7fff8b0a4ff7  com.apple.iLifeMediaBrowser (2.9.0 - 675) <2E008E85-B3EA-391C-9D79-6275AC70EDDB> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff8b0a5000 -     0x7fff8b0c2ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8b0c3000 -     0x7fff8b0c8ff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8b0c9000 -     0x7fff8b0cdfff  com.apple.LoginUICore (3.0 - 3.0) <D76AB05B-B627-33EE-BA8A-515D85275DCD> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8b0ce000 -     0x7fff8b0cffff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8b18e000 -     0x7fff8b22ddf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff8b247000 -     0x7fff8b249fff  com.apple.ExceptionHandling (1.5 - 10) <C3A6EB3D-C0B3-371F-99D8-AF5495498091> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
        0x7fff8b3bc000 -     0x7fff8b462fff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8b463000 -     0x7fff8b555ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff8b556000 -     0x7fff8b5caff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8b5cb000 -     0x7fff8b5dafff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8b5f7000 -     0x7fff8b5fbfff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff8b5fc000 -     0x7fff8b603fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8b619000 -     0x7fff8b6a2fff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8b6a3000 -     0x7fff8b724ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8b725000 -     0x7fff8b730ff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff8b731000 -     0x7fff8b742ff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
        0x7fff8b743000 -     0x7fff8b750ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff8b751000 -     0x7fff8b76ffff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <C763B730-D6BC-31D3-951A-898BB49C5A3E> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8b770000 -     0x7fff8b775ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff8b776000 -     0x7fff8b77bff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff8b77c000 -     0x7fff8b7cdff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8b7f6000 -     0x7fff8b802ff7  libGPUSupportMercury.dylib (11.0.7) <C04F6E18-3043-3096-A6E6-F6431ADC41D3> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
        0x7fff8b803000 -     0x7fff8b80eff7  com.apple.DirectoryService.Framework (10.10 - 187) <813211CD-725D-31B9-ABEF-7B28DE2CB224> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8b80f000 -     0x7fff8b811fff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8b829000 -     0x7fff8b843ff7  libextension.dylib (55.1) <ECBDCC15-FA19-3578-961C-B45FCC994BAF> /usr/lib/libextension.dylib
        0x7fff8b844000 -     0x7fff8b895ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b896000 -     0x7fff8b92cffb  com.apple.CoreMedia (1.0 - 1562.19) <F79E0E9D-4ED1-3ED1-827A-C3C5377DB1D7> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8b92d000 -     0x7fff8bd04fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8bd09000 -     0x7fff8bd0dfff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
        0x7fff8bd0e000 -     0x7fff8bd39fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff8bd4f000 -     0x7fff8bf34267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff8bf35000 -     0x7fff8bf37ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <D7516965-DB40-3235-9D00-C724F7D2BC02> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff8bf38000 -     0x7fff8bf6aff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8bf6b000 -     0x7fff8bf74ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8bf75000 -     0x7fff8bf86fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff8bf87000 -     0x7fff8bf91ff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8bf92000 -     0x7fff8c195ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8c1f2000 -     0x7fff8c24dfef  libTIFF.dylib (1231) <115791FB-8C49-3410-AC23-56F4B1CFF124> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8c24e000 -     0x7fff8c257fff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8c258000 -     0x7fff8c2d0ff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8c2d1000 -     0x7fff8c2d8ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8c2d9000 -     0x7fff8c2fafff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8c2fb000 -     0x7fff8c32bfff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff8c32c000 -     0x7fff8c32cff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff8c32d000 -     0x7fff8c338fdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8c35e000 -     0x7fff8c5d8fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8c5d9000 -     0x7fff8c601fff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff8c75e000 -     0x7fff8c890ff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8c891000 -     0x7fff8c8cafff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8c8ee000 -     0x7fff8c8f0fff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8c92f000 -     0x7fff8c946ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff8c947000 -     0x7fff8c94ffff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff8c950000 -     0x7fff8c951ff7  MetadataLib.dylib (6.2) <BE9131AC-7D9C-3678-A053-2873442A3DF3> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
        0x7fff8c952000 -     0x7fff8c95afff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff8c95b000 -     0x7fff8c9c2ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8c9c3000 -     0x7fff8ca64ff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <EDC78AEE-28E7-324C-9947-41A0814A8154> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8cbb4000 -     0x7fff8cfe4fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8cfe5000 -     0x7fff8cfe9fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8cfea000 -     0x7fff8d10cff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8d10d000 -     0x7fff8d19eff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
        0x7fff8d19f000 -     0x7fff8d34efff  GLEngine (11.0.7) <3CB7447A-1A1D-3D55-A6A4-4814B49F6678> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff8d34f000 -     0x7fff8d350ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff8dcc5000 -     0x7fff8dcc7ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff8dcc8000 -     0x7fff8dcc8ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff8dcc9000 -     0x7fff8df09ff7  com.apple.AddressBook.framework (9.0 - 1499) <8D5C9530-4D90-32C7-BB5E-3A686FE36BE9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8df0a000 -     0x7fff8df24ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8df25000 -     0x7fff8ea66fff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8ea67000 -     0x7fff8ea78ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff8ea79000 -     0x7fff8eac6ff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8eac7000 -     0x7fff8eaf1ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff8eaf2000 -     0x7fff8ec50ff3  com.apple.avfoundation (2.0 - 889.10) <4D1735C4-D055-31E9-8051-FED29F41F4F6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8ec51000 -     0x7fff8ec8cfff  com.apple.AOSAccounts (1.3.1 - 1.8.19) <1EF4B780-3474-331E-9104-6CE796D8C930> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
        0x7fff8ecce000 -     0x7fff8eccffff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff8ecd0000 -     0x7fff8ecd1fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8edb2000 -     0x7fff8edb4ffb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8edb5000 -     0x7fff8edbdffb  com.apple.CloudServices (1.0 - 1) <D278BECB-AEC3-3D32-BEC8-E949EB89D66B> /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi ces
        0x7fff8edbe000 -     0x7fff8edd4ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8ede4000 -     0x7fff8edfeff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8edff000 -     0x7fff8ee05ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8ee06000 -     0x7fff8ee77ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8ee78000 -     0x7fff8f028ff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8f057000 -     0x7fff8f091ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8f329000 -     0x7fff8f376fff  com.apple.ImageCaptureCore (6.0 - 6.0) <93B4D878-A86B-3615-8426-92E4C79F8482> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8f377000 -     0x7fff8f385ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff8f386000 -     0x7fff8f3b9ff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8f44c000 -     0x7fff8f477fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8f478000 -     0x7fff8f75fffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8f760000 -     0x7fff8f878ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8f879000 -     0x7fff8f8deff7  com.apple.ids (10.0 - 1000) <12E5717E-8D63-3B70-BB46-A60AFB02CCAE> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8f8df000 -     0x7fff8f8e2ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8f8e3000 -     0x7fff8f911fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8f912000 -     0x7fff8f92eff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8fa02000 -     0x7fff8fa16ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8fb45000 -     0x7fff8fedbfff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8fedc000 -     0x7fff8fedcfff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff90815000 -     0x7fff90861ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff90862000 -     0x7fff90863fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff90864000 -     0x7fff908c9fff  com.apple.framework.internetaccounts (2.1 - 210) <DC8D9230-B7C8-3100-8B2F-399B51A4483A> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff90925000 -     0x7fff90950ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff90951000 -     0x7fff90963ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff90964000 -     0x7fff9097dff7  com.apple.CalendarAgentLink (8.0 - 250) <0F3CCA9C-645D-3A1A-A959-F4F8D31F9B1A> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff9098d000 -     0x7fff9098ffff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff909b9000 -     0x7fff909c2fff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff909c3000 -     0x7fff90a99ff3  com.apple.DiskImagesFramework (10.10 - 389.1) <7DE2208C-BD55-390A-8167-4F9F11750C4B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff90a9a000 -     0x7fff90ab2fff  com.apple.CalendarStore (8.0 - 1479) <42CC3B45-7916-3C2C-8F07-E40D96C9FEDB> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff90ab3000 -     0x7fff90ab8fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff90ac4000 -     0x7fff90ac6ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff90add000 -     0x7fff90ae1fff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
        0x7fff90aef000 -     0x7fff90b1fffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff90b45000 -     0x7fff90b48fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff90b49000 -     0x7fff90cd8fff  libGLProgrammability.dylib (11.0.7) <AF37E7F3-16C8-3747-9CC6-A442C0153DC6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff90cd9000 -     0x7fff90cdcfff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff90cdd000 -     0x7fff90d30ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2B

  • TS4337 i am using OS 10.9 and my calendar is crashing with the following error message:

    Process:         Calendar [1115]
    Path:            /Applications/Calendar.app/Contents/MacOS/Calendar
    Identifier:      com.apple.iCal
    Version:         7.0 (1835)
    Build Info:      iCal-1835000000000000~25
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [162]
    Responsible:     Calendar [1115]
    User ID:         501
    Date/Time:       2013-11-17 13:36:58.510 -0800
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  3CEF96A4-5D1B-6A86-A08F-A5FBDC888416
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Application Specific Information:
    Could not create XPC connection to the CalendarAgent, connection interrupted or invalidated more than 5 times
    Application Specific Signatures:
    CalPersistence nil connection (CalPersistenceCreationDomain - 3)
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.iCal                          0x000000010f9f8089 0x10f9c9000 + 192649
    1   libdispatch.dylib                       0x00007fff8b4c51d7 _dispatch_call_block_and_release + 12
    2   libdispatch.dylib                       0x00007fff8b4c22ad _dispatch_client_callout + 8
    3   libdispatch.dylib                       0x00007fff8b4c9f03 _dispatch_main_queue_callback_4CF + 333
    4   com.apple.CoreFoundation                0x00007fff90b00839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    5   com.apple.CoreFoundation                0x00007fff90abbb14 __CFRunLoopRun + 1636
    6   com.apple.CoreFoundation                0x00007fff90abb275 CFRunLoopRunSpecific + 309
    7   com.apple.HIToolbox                     0x00007fff8f1e9f0d RunCurrentEventLoopInMode + 226
    8   com.apple.HIToolbox                     0x00007fff8f1e9cb7 ReceiveNextEventCommon + 479
    9   com.apple.HIToolbox                     0x00007fff8f1e9abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    10  com.apple.AppKit                        0x00007fff8859728e _DPSNextEvent + 1434
    11  com.apple.AppKit                        0x00007fff885968db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    12  com.apple.AppKit                        0x00007fff8858a9cc -[NSApplication run] + 553
    13  com.apple.AppKit                        0x00007fff88575803 NSApplicationMain + 940
    14  com.apple.iCal                          0x000000010f9cb2cd 0x10f9c9000 + 8909
    15  libdyld.dylib                           0x00007fff8c05e5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8db4e662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8b4c443d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8b4c4152 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: CalLogNodeQueue-F5D02FA0-4CCE-441A-9362-E88BC6455875
    0   libsystem_c.dylib                       0x00007fff8f6e0126 __vfprintf + 17635
    1   libsystem_c.dylib                       0x00007fff8f70437b __v2printf + 471
    2   libsystem_c.dylib                       0x00007fff8f6ea007 _vsnprintf + 623
    3   libsystem_c.dylib                       0x00007fff8f6ea0bc vsnprintf + 80
    4   libsystem_c.dylib                       0x00007fff8f717bbb __snprintf_chk + 128
    5   libsystem_asl.dylib                     0x00007fff91fd7776 asl_string_append_char_no_encoding + 143
    6   libsystem_asl.dylib                     0x00007fff91fd7b00 asl_string_append_internal + 568
    7   libsystem_asl.dylib                     0x00007fff91fdd536 asl_msg_to_string_raw + 358
    8   libsystem_asl.dylib                     0x00007fff91fd53bb _asl_send_message + 1637
    9   com.apple.CoreFoundation                0x00007fff90aee24d __CFLogCString + 861
    10  com.apple.CoreFoundation                0x00007fff90aedeb7 _CFLogvEx + 263
    11  com.apple.Foundation                    0x00007fff9137ecbc NSLogv + 79
    12  com.apple.Foundation                    0x00007fff9137ec48 NSLog + 148
    13  com.apple.CalendarFoundation            0x00007fff8c03cf40 -[CalLogNSLogWriter write:] + 73
    14  com.apple.CalendarFoundation            0x00007fff8c03b3da __30-[CalLogNode processEnvelope:]_block_invoke + 317
    15  libdispatch.dylib                       0x00007fff8b4c22ad _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff8b4c3166 _dispatch_barrier_sync_f_invoke + 39
    17  com.apple.CalendarFoundation            0x00007fff8c03b294 -[CalLogNode processEnvelope:] + 105
    18  com.apple.CoreFoundation                0x00007fff90acd639 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 137
    19  com.apple.CoreFoundation                0x00007fff90accddf -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 319
    20  com.apple.CalendarFoundation            0x00007fff8c03b1f4 __32-[CalLogMaster processEnvelope:]_block_invoke + 117
    21  libdispatch.dylib                       0x00007fff8b4c51d7 _dispatch_call_block_and_release + 12
    22  libdispatch.dylib                       0x00007fff8b4c22ad _dispatch_client_callout + 8
    23  libdispatch.dylib                       0x00007fff8b4c468f _dispatch_queue_drain + 451
    24  libdispatch.dylib                       0x00007fff8b4c59dd _dispatch_queue_invoke + 110
    25  libdispatch.dylib                       0x00007fff8b4c3fa3 _dispatch_root_queue_drain + 75
    26  libdispatch.dylib                       0x00007fff8b4c5193 _dispatch_worker_thread2 + 40
    27  libsystem_pthread.dylib                 0x00007fff8b4bbef8 _pthread_wqthread + 314
    28  libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8db49b16 syscall_thread_switch + 10
    1   libsystem_platform.dylib                0x00007fff89abef30 _os_lock_handoff_lock_slow + 79
    2   libobjc.A.dylib                         0x00007fff9423f9bb _objc_rootReleaseWasZero_slow + 27
    3   libobjc.A.dylib                         0x00007fff9423ca43 _objc_rootReleaseWasZero + 167
    4   libobjc.A.dylib                         0x00007fff9423e105 objc_release + 53
    5   libobjc.A.dylib                         0x00007fff9423d65a (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 502
    6   libdispatch.dylib                       0x00007fff8b4c40ea _dispatch_root_queue_drain + 402
    7   libdispatch.dylib                       0x00007fff8b4c5193 _dispatch_worker_thread2 + 40
    8   libsystem_pthread.dylib                 0x00007fff8b4bbef8 _pthread_wqthread + 314
    9   libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8db4de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b4bbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8db4de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b4bbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8db4de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b4bbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8db4de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b4bbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8db4de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b4bbf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b4befb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8db49a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8db48d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff90abc315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff90abb939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff90abb275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff887371ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff8b4ba899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8b4ba72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8b4befc9 thread_start + 13
    Thread 10:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff8db4da3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8f712e60 nanosleep + 200
    2   libsystem_c.dylib                       0x00007fff8f712d52 usleep + 54
    3   com.apple.AppKit                        0x00007fff887fb2ad -[NSUIHeartBeat _heartBeatThread:] + 2132
    4   com.apple.Foundation                    0x00007fff913a170b __NSThread__main__ + 1318
    5   libsystem_pthread.dylib                 0x00007fff8b4ba899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b4ba72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b4befc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00006080000b9f31  rbx: 0x0000608000673fc0  rcx: 0x0000000000000001  rdx: 0x00006080000b9f30
      rdi: 0x00006080000b9f20  rsi: 0x0000000008000100  rbp: 0x00007fff502353b0  rsp: 0x00007fff50235390
       r8: 0x00000000000003ff   r9: 0xffff9f7fffd9ed3f  r10: 0x00007fa42a06a6f0  r11: 0x00007fff79e233a0
      r12: 0x00007fff9423b080  r13: 0x00007fff50235410  r14: 0x00007fff7a036ea0  r15: 0x00007fff7972c170
      rip: 0x000000010f9f8089  rfl: 0x0000000000010202  cr2: 0x0000000113c23000
    Logical CPU:     2
    Error Code:      0x00000000
    Trap Number:     6
    Binary Images:
           0x10f9c9000 -        0x10fcbbfff  com.apple.iCal (7.0 - 1835) <20A61364-02EC-38DA-AE61-188CE421DD34> /Applications/Calendar.app/Contents/MacOS/Calendar
           0x11178c000 -        0x11178ffff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x1117c6000 -        0x1117c7fff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1365) <260EDDAA-A812-3097-BE14-A63EA4BEDD31> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x1134d2000 -        0x1134d6ff7  com.apple.DirectoryServicesSource (8.0 - 1365) <2F2D5BAA-F006-3701-922C-37EF076DE3D1> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x1134e8000 -        0x1134e9ff9 +cl_kernels (???) <5CC607E6-04A1-45F3-B535-26F5BBD5F766> cl_kernels
           0x1134f2000 -        0x11353eff6  com.apple.AddressBook.CardDAVPlugin (10.9 - 424) <C5AC5902-39C2-3A08-9967-5EAA000228EE> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x113595000 -        0x11367bfef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x1136d1000 -        0x1136d2fe4 +cl_kernels (???) <7910F292-0479-4452-8856-6CC803B2DECA> cl_kernels
           0x113b17000 -        0x113b18ffa +cl_kernels (???) <E0763150-14C2-40B0-A4DB-2C84F987F8BC> cl_kernels
        0x7fff62396000 -     0x7fff623c9817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff8833a000 -     0x7fff8833dfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8833e000 -     0x7fff8839eff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8839f000 -     0x7fff883baff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff883f0000 -     0x7fff88424fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff88425000 -     0x7fff88426ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff88427000 -     0x7fff88428ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff88429000 -     0x7fff8842aff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff88548000 -     0x7fff88565fff  com.apple.facetimeservices (10.0 - 1000) <9B4815BA-4305-381D-A178-F79E10B2C6E9> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff8856b000 -     0x7fff88572ff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff88573000 -     0x7fff890e7ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff890e8000 -     0x7fff890e9fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff890ea000 -     0x7fff8951dffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8951e000 -     0x7fff895a7fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff895b2000 -     0x7fff8963dfff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
        0x7fff89640000 -     0x7fff89687fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff89688000 -     0x7fff896b7ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff896b8000 -     0x7fff89910ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff89911000 -     0x7fff899c9ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff899dd000 -     0x7fff899ddffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff899de000 -     0x7fff89a39ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff89a44000 -     0x7fff89aa7ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff89aab000 -     0x7fff89abaff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff89abb000 -     0x7fff89abbfff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff89abc000 -     0x7fff89ac2ff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
        0x7fff89ac3000 -     0x7fff89adcff3  liblzma.5.dylib (5) <6479DC70-3290-35A0-8EA0-056D366A13A2> /usr/lib/liblzma.5.dylib
        0x7fff89add000 -     0x7fff89adfff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff89ae0000 -     0x7fff89bb1ff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff89c1d000 -     0x7fff89c42ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff89c43000 -     0x7fff89c4afff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff89c4b000 -     0x7fff89c51fff  com.apple.AddressBook.ContactsFoundation (8.0 - 1365) <CFB1A744-8096-3FAB-B55E-2E6C410A0376> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff89c52000 -     0x7fff89cedff7  com.apple.PDFKit (2.9 - 2.9) <AD968A31-6567-30A7-A699-154C88DB56D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff89cee000 -     0x7fff8a086fff  com.apple.SceneKit (4.0 - 197) <1FEE4A1D-5B13-3774-8FE1-B79FD81CD1E5> /System/Library/Frameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff8a158000 -     0x7fff8a159fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff8a15a000 -     0x7fff8a18bfff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8a18c000 -     0x7fff8a18efff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff8a18f000 -     0x7fff8a2fdff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8a2fe000 -     0x7fff8a300fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8a301000 -     0x7fff8a309ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8a30a000 -     0x7fff8a436fff  com.apple.MediaControlSender (1.9 - 190.4) <F5E934E1-D004-3C84-815A-961319F8C522> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8a437000 -     0x7fff8a751ff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8a77a000 -     0x7fff8a797ff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8a798000 -     0x7fff8ad08fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8ad09000 -     0x7fff8ad33ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8ad34000 -     0x7fff8ad64fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8ad65000 -     0x7fff8b039fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8b03a000 -     0x7fff8b03cff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff8b06f000 -     0x7fff8b0a8ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8b101000 -     0x7fff8b106ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff8b107000 -     0x7fff8b10eff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff8b10f000 -     0x7fff8b11bff7  com.apple.KerberosHelper (4.0 - 1.0) <6D64703B-D7A3-3EF7-89AB-16F7F89333FC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8b132000 -     0x7fff8b15eff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <36C562FF-5D91-318C-A19C-6B4453FB78B9> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8b15f000 -     0x7fff8b1b8fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b1b9000 -     0x7fff8b1c6fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8b1c7000 -     0x7fff8b208fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8b209000 -     0x7fff8b20eff7  com.apple.EmailAddressing (7.0 - 1822) <E1DE6982-76CC-3DFC-939D-DDA0ED1D5403> /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAdd ressing
        0x7fff8b20f000 -     0x7fff8b23bfff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8b23c000 -     0x7fff8b4b8ff7  com.apple.RawCamera.bundle (5.01 - 718) <6CC4A1E5-A89A-369D-96C4-7A5ED40B487B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8b4b9000 -     0x7fff8b4c0ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8b4c1000 -     0x7fff8b4dbfff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
        0x7fff8b4dc000 -     0x7fff8b4f0fff  com.apple.aps.framework (4.0 - 4.0) <F529A05B-FB03-397E-B06A-3A60B808FA11> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8b4f1000 -     0x7fff8b52bff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8b52c000 -     0x7fff8b57eff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff8b57f000 -     0x7fff8b8f5ffa  com.apple.JavaScriptCore (9537 - 9537.65) <7E76880C-832E-385B-9591-ACCF57A68385> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8b8f6000 -     0x7fff8b8faff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8b8fb000 -     0x7fff8b8fdffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff8b8fe000 -     0x7fff8bb9fff5  com.apple.VectorKit (1.0 - 716.19.8) <ACC97486-3F9F-3A1F-B0B0-B1F39CB4AADB> /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit
        0x7fff8bba0000 -     0x7fff8bbabff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8bbac000 -     0x7fff8bbadff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8bbae000 -     0x7fff8bbbaff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8bbbb000 -     0x7fff8bbbbfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8bbbc000 -     0x7fff8bc7eff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8bde6000 -     0x7fff8be15fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8be16000 -     0x7fff8be56ff7  com.apple.CalDAV (7.0 - 155.1) <6912C282-D362-3473-90E3-655A36C0CC21> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff8be57000 -     0x7fff8be9cff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
        0x7fff8be9d000 -     0x7fff8bea5ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8bea6000 -     0x7fff8bef4fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff8bef7000 -     0x7fff8bf04ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8bf05000 -     0x7fff8bf05fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <664A1157-0D98-3680-8C3B-091980DA7BC4> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
        0x7fff8bf06000 -     0x7fff8bf10ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8bf11000 -     0x7fff8bf15fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff8bf3c000 -     0x7fff8bf54ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8bf55000 -     0x7fff8bfc4ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8bfc5000 -     0x7fff8bfdeff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8bfdf000 -     0x7fff8c036fff  com.apple.ViewBridge (1.0 - 46) <C49FDC96-7087-3B2F-AEC3-039F7B2CB50C> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8c037000 -     0x7fff8c037fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8c038000 -     0x7fff8c056ff7  com.apple.CalendarFoundation (7.0 - 111) <D5CEE7AE-3325-3E7E-924B-12834AE7D218> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
        0x7fff8c057000 -     0x7fff8c05aff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8c05b000 -     0x7fff8c05eff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
        0x7fff8c05f000 -     0x7fff8c05ffff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8c060000 -     0x7fff8c087ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8c088000 -     0x7fff8c08bfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8c08c000 -     0x7fff8c4dafff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8c4db000 -     0x7fff8c4f1fff  com.apple.geokit (2.2 - 2.2) <20D34071-9831-36CF-B7FC-0013ABF4B210> /System/Library/PrivateFrameworks/GeoKit.framework/Versions/A/GeoKit
        0x7fff8c4f2000 -     0x7fff8c4f7fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8c505000 -     0x7fff8c534ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8c55c000 -     0x7fff8c5a9ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8c5c2000 -     0x7fff8c5faff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8c5fb000 -     0x7fff8c60dfff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8c65d000 -     0x7fff8c660fff  com.apple.AppleSystemInfo (3.0 - 3.0) <4D032152-AA40-350E-BB96-44BC55C5C69C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8c661000 -     0x7fff8c766fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8c767000 -     0x7fff8c773ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8c774000 -     0x7fff8c786ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8c787000 -     0x7fff8c788ffc  com.apple.SafariServices.framework (9537 - 9537.71) <02DF88AE-193A-3139-A991-CC26FB0C5048> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff8c789000 -     0x7fff8c7e1ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8c7e2000 -     0x7fff8c807ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8c808000 -     0x7fff8c808fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8c844000 -     0x7fff8c88dfff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8c88e000 -     0x7fff8c892ff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8c893000 -     0x7fff8c898fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8c899000 -     0x7fff8cc74ffb  com.apple.Altitude (1.0 - 347.6.3) <F0AC2688-DF8E-389B-8F9E-ECCF22AD225B> /System/Library/PrivateFrameworks/Altitude.framework/Versions/A/Altitude
        0x7fff8cc75000 -     0x7fff8cca3ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8cca4000 -     0x7fff8cd08ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8cd09000 -     0x7fff8cd1ffff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8cd5c000 -     0x7fff8cd66ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
        0x7fff8cd67000 -     0x7fff8d68305f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8d686000 -     0x7fff8d691ff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <F8566D1F-450F-3571-911F-75C68E45919F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8d693000 -     0x7fff8d8dbfff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8d908000 -     0x7fff8db37ff7  com.apple.CalendarPersistence (7.0 - 130) <8B3FAA74-A95C-3319-BD3C-970051BEB5DC> /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/Cale ndarPersistence
        0x7fff8db38000 -     0x7fff8db54ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8db55000 -     0x7fff8dd0dff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
        0x7fff8dd0e000 -     0x7fff8df51fff  com.apple.AddressBook.framework (8.0 - 1365) <816242B1-D45E-3B5D-BC98-BB23458D5367> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8df75000 -     0x7fff8df8dff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8df8e000 -     0x7fff8df8fffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8df90000 -     0x7fff8dfeffff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8dff0000 -     0x7fff8e016fff  com.apple.iCalendar (7.0 - 162) <2B270453-6FFD-3AD3-B40B-51715BE66B33> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff8e017000 -     0x7fff8e05cff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8e05d000 -     0x7fff8e05eff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff8e05f000 -     0x7fff8e07bfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8e07c000 -     0x7fff8e0c4ff7  com.apple.ExchangeWebServices (4.0 - 193) <867EDAF0-5863-397E-BA75-855878D68949> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff8e0c5000 -     0x7fff8e0faffc  com.apple.LDAPFramework (2.4.28 - 194.5) <7E31A674-C6AB-33BE-BD5E-F5E3C6E22894> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8e0fb000 -     0x7fff8e16effb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8e16f000 -     0x7fff8e182fff  com.apple.iCal.CalendarDraw (7.0 - 1726) <F60180A8-4EFC-3A4C-859D-9411ADCAF9C5> /System/Library/PrivateFrameworks/CalendarDraw.framework/Versions/A/CalendarDra w
        0x7fff8e183000 -     0x7fff8e18dff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8e18e000 -     0x7fff8e1b5ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff8e1b6000 -     0x7fff8f002ff5  com.apple.WebCore (9537 - 9537.70) <7A90E9D3-4F26-3049-9C96-C6B8CB1395C8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8f003000 -     0x7fff8f0c6ff7  com.apple.backup.framework (1.5 - 1.5) <92C8038F-CC00-3202-90D8-3C3AEC90986F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8f0d3000 -     0x7fff8f1baff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff8f1bb000 -     0x7fff8f465ffd  com.apple.HIToolbox (2.1 - 695) <C4DE35FF-D0AC-35C3-A7E6-F54CD153825C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8f466000 -     0x7fff8f468fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8f469000 -     0x7fff8f4baff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8f4bb000 -     0x7fff8f5f0ffa  com.apple.WebKit (9537 - 9537.71) <8A07478D-B2CA-3724-81E4-ADC10E1AD3EA> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8f5f1000 -     0x7fff8f5fdff7  com.apple.CalendarAgentLink (7.0 - 138) <B8B63D14-D853-3478-B001-BC67B7E9F993> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff8f5fe000 -     0x7fff8f62bff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8f62c000 -     0x7fff8f696ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8f697000 -     0x7fff8f720ff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
        0x7fff8f721000 -     0x7fff8f80ffff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8f810000 -     0x7fff8f811fff  com.apple.AddressBook.ContactsData (8.0 - 1365) <61090508-4CC3-3F57-9B0C-D8527947D35D> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff8f907000 -     0x7fff8f918ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff8f919000 -     0x7fff8f934ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8f935000 -     0x7fff8f997ff7  com.apple.WhitePagesFramework (10.7.0 - 141.0) <F95E1174-37B7-300C-8ECE-E67A711B6721> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff8faff000 -     0x7fff8fafffff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8fb00000 -     0x7fff8fb01fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8fb02000 -     0x7fff8fb0afff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8fb0b000 -     0x7fff8fb24ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8fb25000 -     0x7fff8fb63ff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8fb64000 -     0x7fff8fb66fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8fb6a000 -     0x7fff8fb6efff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff8fb6f000 -     0x7fff8fb97ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff8fb98000 -     0x7fff8fc82fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8fe95000 -     0x7fff90126ff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff90127000 -     0x7fff90130fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff90131000 -     0x7fff90155fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff90156000 -     0x7fff9017aff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff9017b000 -     0x7fff90192fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff90193000 -     0x7fff901a3ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff901a4000 -     0x7fff901f7ff7  com.apple.ical.EventKit (2.0 - 152) <34FD327F-0E27-3B0F-B801-0C8FF2B4814A> /System/Library/Frameworks/EventKit.framework/Versions/A/EventKit
        0x7fff901f8000 -     0x7fff9071cfff  com.apple.QuartzComposer (5.1 - 316) <B20E93C3-8517-3E5C-83B6-C312C839C5D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff907b7000 -     0x7fff9086bfff  com.apple.MapKit (1.0 - 10) <AE6CAB40-BCA5-35AC-BD80-1E513916F1F4> /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit
        0x7fff9089d000 -     0x7fff9089ffff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff908a0000 -     0x7fff9092fff7  com.apple.Metadata (10.7.0 - 800.12) <04486C95-3E49-36C4-89B6-925E925BB417> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff90930000 -     0x7fff90937fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff90938000 -     0x7fff90a03fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff90a4b000 -     0x7fff90c30ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90c31000 -     0x7fff90c4fff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff90c50000 -     0x7fff90c9efff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff90c9f000 -     0x7fff90ca8ff7  libcldcpuengine.dylib (2.3.58) <A2E1ED7B-FC7E-31F6-830A-FF917689766B> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff90ca9000 -     0x7fff90d05fff  com.apple.coredav (1.0.1 - 229.6) <6D2B49E8-E81D-36C7-BC24-FD54FA35E5BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff90d06000 -     0x7fff90e36ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff91273000 -     0x7fff91278fff  com.apple.WeatherKit (1.0 - 19) <C9E48D8B-786C-3243-9BE2-84202F561171> /System/Library/PrivateFrameworks/WeatherKit.framework/Versions/A/WeatherKit
        0x7fff91279000 -     0x7fff912c8ff7  com.apple.framework.internetaccounts (2.1 - 210) <C77069C7-928C-315C-AA61-D90543901F20> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff912c9000 -     0x7fff912f8fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff9133a000 -     0x7fff91639fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9163a000 -     0x7fff9163bff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff9163c000 -     0x7fff916c8ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff916c9000 -     0x7fff9192aff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff919ab000 -     0x7fff919b5fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff919b6000 -     0x7fff919c3ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff919c4000 -     0x7fff919ceff7  com.apple.corerecents (1.0 - 1) <6C3ACB55-6FA5-3266-80D3-592B7258F5E7> /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/CoreRecents
        0x7fff919cf000 -     0x7fff919ddfff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff91a07000 -     0x7fff91de8ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff91de9000 -     0x7fff91fa4ff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff91fae000 -     0x7fff91fb7ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff91fb8000 -     0x7fff91fc0fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff91fc1000 -     0x7fff91fc3ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff91fc4000 -     0x7fff91fd1ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff91fd2000 -     0x7fff91fe3ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff9209e000 -     0x7fff9209efff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff9209f000 -     0x7fff92105fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff9210d000 -     0x7fff92117ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff922a6000 -     0x7fff922cffff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff922dd000 -     0x7fff922e3fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff922e4000 -     0x7fff92351fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff92619000 -     0x7fff9265bff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff926af000 -     0x7fff92702fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff92708000 -     0x7fff92878ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff92879000 -     0x7fff92890ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff92891000 -     0x7fff928ddffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff928de000 -     0x7fff929cfff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff929d0000 -     0x7fff929d3ffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff92a24000 -     0x7fff92a2dfff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff92a2e000 -     0x7fff92a52fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
        0x7fff92a53000 -     0x7fff92d3dfff  com.apple.CoreServices.CarbonCore (1077.13 - 1077.13) <21324540-8B84-3333-ADB8-D3D5181D4639> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff92d7d000 -     0x7fff92d86fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff92d87000 -     0x7fff92e0fff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff92e10000 -     0x7fff92e12ff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
        0x7fff92e13000 -     0x7fff92e1bff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff92e32000 -     0x7fff92e39ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
        0x7fff92e3a000 -     0x7fff92e3cff7  com.apple.SecCodeWrapper (3.0 - 1) <F5107AD0-20CD-328C-8B2E-74CB6F3169F6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff92e3d000 -     0x7fff92e58ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
        0x7fff93417000 -     0x7fff9341affc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff9341b000 -     0x7fff934fafff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff934fb000 -     0x7fff9353afff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff9353b000 -     0x7fff9362afff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff9362b000 -     0x7fff93630ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff93631000 -     0x7fff93702ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff93727000 -     0x7fff93867fff  com.apple.QTKit (7.7.3 - 2826) <7A110F61-D4DD-3C84-950D-E5F486DE5765> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff9412c000 -     0x7fff94134ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff94135000 -     0x7fff94146ff7  com.apple.idsfoundation (10.0 - 1000) <0BC25100-092B-3C5A-8245-F7C963380785> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff94147000 -     0x7fff9414bff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
        0x7fff9414c000 -     0x7fff94188fff  com.apple.ids (10.0 - 1000) <22502AAF-CC59-33EC-9ACF-106315206701> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff94236000 -     0x7fff943e3f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff943e4000 -     0x7fff94400fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff94414000 -     0x7fff94474

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

Maybe you are looking for