Shutting down a thread

I'm just wondering... I've been working on a project for some time now, but it has become rather important now that I be able to shutdown the program rather quickly when desired. The problem, however, is that my main class is a thread that runs on a loop similar to...
ServerSocket server = New ServerSocket(5000);
while (shouldRun==true) {
Socket connection=server.acceptAnd so when I enter a shutdown command (in a different thread):
shouldRun=false;
mainThread.interrupt();However, it seems to me that interrupting the thread doesn't occur immediately, and in fact in many cases, the program will not shut down until I initiate another connection - at which point it closes immediately. I'm just wondering if there's a way to immediately close down a thread or program, as I know Thread.stop(); is deprecated.
Ultimately, however, if I am forced to go this road, it wouldn't be the end of the world if the thread didn't close down nicely, but rather abruptly ended (as if I killed the process in Unix manually, which is what I've been doing). I do, after all, save all my information before initiating shutdown procedures... Of course, it would be good if it shutdown nicely, if at all possible, but either way is acceptable so long as it shuts down.
Any suggestions?
(If, for example, there was a way to test if a connection had been requested without locking the thread UNTIL one was requested, that would solve the problem entirely, as I could run my main thread on a loop every two seconds, for example, test if there was a connection, and quit if a shutdown was requested. - I don't know if there is a way to do that, however. Or perhaps if a new connection could notify a sleeping thread without devoting a thread to solely listening for connections? then I could wake the thread up when I wanted to shutdown. That seems even less likely, however...)
Let me know if any more explanation is needed, I've tried to be as clear as possible.
In any case, Thanks in advance,
-Jess

Hmm... I could have sworn that was the first thing I tried... perhaps I'm halucinating. Oh well, thanks for your help.

Similar Messages

  • Weblogic Server Shutting down execute threads

    Weblogic 5.1 SP9 on Solaris.
    After upgrading to SP9 from SP8 we are observing a new message in our log during
    the START UP PROCESS. It seems that after performing a GC and during the creation
    of the connection pools we are receiving a message "Shutting down execute threads".
    Though Weblogic starts up ok after this and performs ok we are still concerned
    on what execute threads are shutting down?
    Any help in an explanation would be appreciated.
    <I> <GC> GC: After free/total=505281560/531955712 (94%)
    GC: After free/total=505281560/531955712 (94%)Wed Aug 08 18:08:33 EDT 2001:<I> <WebLogicServer> Shutting down execute threads
    Wed Aug 08 18:08:33 EDT 2001:<I> <WebLogicServer> Shutdown completed
    Wed Aug 08 18:08:33 EDT 2001:<I> <WebLogicServer> Shutdown completed

    could you post complete the log file
    right from the server startup to until WLS
    listens on http & SSL ports?
    Kumar
    Andy wrote:
    Weblogic 5.1 SP9 on Solaris.
    After upgrading to SP9 from SP8 we are observing a new message in our log during
    the START UP PROCESS. It seems that after performing a GC and during the creation
    of the connection pools we are receiving a message "Shutting down execute threads".
    Though Weblogic starts up ok after this and performs ok we are still concerned
    on what execute threads are shutting down?
    Any help in an explanation would be appreciated.
    <I> <GC> GC: After free/total=505281560/531955712 (94%)
    GC: After free/total=505281560/531955712 (94%)Wed Aug 08 18:08:33 EDT 2001:<I> <WebLogicServer> Shutting down execute threads
    Wed Aug 08 18:08:33 EDT 2001:<I> <WebLogicServer> Shutdown completed
    Wed Aug 08 18:08:33 EDT 2001:<I> <WebLogicServer> Shutdown completed

  • Shutting down rogue threads: impossible?

    While designing a system that accepts 'plugins' that are sent by untrusted users, I ran across this problem:
    Imagine a malicious user intentionally sends this plugin:
    public void init()
    int[][] a = new int[123456][10]; //allocate tons of memory.
    while ( true ) ; //waste tons of CPU cycles.
    I want to 'defend' against this kind of thing, whether done intentionally or not.
    So far, I have found out the following things:
    A) There is no java-based profiler information. In other words, there is no such thing as a thread.getCpuLoad() kind of method. There is the JVMPI, so for now I guess I'll write various JNI libraries that will make the JVMPI interface callable from java.
    B) Even if the thread is identified, there is no way at all to destroy it. Thread.destroy() is unimplemented (returns NoSuchMethodError). Thread.suspend() still works, eventhough it is deprecated, and will stop a thread when doing something like while ( true ) ;. However, I have not found a way of reclaiming any allocated memory. Removing all references to the thread object and then running the garbage collector didn't help.
    C) There does not appear to be any thread kill functionality in JVMPI, though I might have missed something.
    D) There does not appear to be a relatively simple way to start up a new 'lite' JVM to run the untrusted code in. Starting up an entire new java executable through Runtime.getRuntime.process() might work, but the endgoal is to get tons of these little plugins running in their own threads. One JVM can actually handle this admirably, but I doubt one system can handle 70 to 80 concurrent JVMs.
    leading me to the conclusion:
    There is no way to really 'sandbox' untrusted code. Even if you can prevent them from opening files and such, they can perform a DoS attack bij allocating large amounts of memory and getting stuck in while ( true ) ; loops. Even if this behaviour is detected, there is no way to guard against it happening aside from suspending the thread and accepting the memory as unreclaimable until the JVM is restarted.
    I really hope there is a better solution than suspending and writing off the used memory, but if there is no way to really kill a thread, perhaps this can be worked on ASAP for the next release? destroy() exists. It needs implementation.
    Incidentally, there is no risk here of contaminating the state or causing deadlocks due to monitors being locked 'forever', as each such 'plugin' uses its own loader and cannot exchange data between the main system or any other plugin, except through serialized/deserialized stuff. While I understand the dangers of just cutting threads off, in this case, I have already taken precautions that one 'plugin' can't mess in any way with another.
    I did a 'test run' and wrote exactly such an applet. While it didn't hang the web-browser (Opera), it did cause Opera to use up all free CPU cycles, and there was no way to stop Opera from using up all CPU (or reclaiming the memory), short of completely exiting the browser.
    Didn't test with IE, or netscape.
    (That's Opera using JDK1.4 as JVM).
    I could of course be mistaken in all this and completely missed a way to completely kill an unresponsive thread, so I am hopefully awaiting corrections.
    --Reinier Zwitserloot.

    Weird.
    rogueThread.stop();
    rogueThread = null;
    System.gc();
    drops CPU use down to 0, and reduces the memory footprint back down to the original minimum. In other words, seems to do all the required functionality.
    I got the impression from the documentation explaining why stop/suspend/resume are deprecated that it wouldn't work unless the Thread was stuck in some kind of IO blocking call.
    Thanks a bunch!
    NB: Would anybody know of a code sample which won't respond to a stop and/or suspend? this quote from the deprecation explanation has me worried:
    "It should be noted that in all situations where a waiting thread doesn't respond to Thread.interrupt, it wouldn't respond to Thread.stop either."

  • Thread problems - shutting down.

    Okay, I've got my multi-threaded server program working just fine and all is well...until I shut down the server.
    By some quirky twist of fate, java chat servers seem to be a popular education assignment in the last two weeks, which will probably put some people off answering this simply because of all the clueless posts on the subject recently. :)
    Anyway, a little background on how I'm doing things first.
    At the top there is the Server object, which is implementing Runnable. This instances the ClientManager, creates the ServerSocket and then kicks off its own thread and loops in the run() method waiting for connections while a boolean is true. If it gets a connection it calls the ClientManager addConnection() method and passes it the received client socket.
    The ClientManager holds a List of ClientConnections and provides methods to add and remove ClientConnections. The ClientManager also runs in its own thread by implementing the Runnable interface and uses its run() method to loop through checking for incoming messages from each client.
    A ClientConnection object also runs in its own thread via the Runnable interface. This checks for incoming messages from the client and stores the String ready to be received by the ClientManager and broadcast to all ClientConnections.
    So, you've got the Server running in its own thread, the ClientManager running in its own thread and the ClientManager maintaining a List of ClientConnections, each running in its own thread.
    I'm starting my threads like this:-
    // Constructor.
    Public SomeObject() {
        start();
    // Runnable method.
    Public void start() {
        // threadObject is private class variable.
        bThreadActive = true;
        this.threadObject = new Thread(this);
        threadObject.setDaemon(true);
        threadObject.start();
    }I'm running my threadded object like this: -
    Public void run() {
        do {
            // Do work here.
        } while(bThreadActive);
        // Activates the shutdown method for this object.
        shutdownObject();
    }I'm shutting down my threads like this: -
    Public void shutdown() {
        this.bThreadActive = false;
    // The main shutdown code.
    Public void shutdownObject() {
        // Kill thread object.
        this.threadObject = null;
        // Do other stuff.
    }Which I think should work fine. Anything wrong with the above?
    I'm getting problems with NullPointerExceptions with the Server object at the point where it tries to shutdown the ClientManager. This works by shutting down all ClientConnections in the List first and then emptying the List before killing its own thread. Also, the Server object seems to shutdown before the ClientManager. And other such weirdness.
    I know you're all going to ask for specific code and a stacktrace, which I'll provide....I just want to check that my method for using threads as above is correct first, so I can rule that out - mostly because I suspect I'm missing some vital piece of knowledge on using threads....things are not working as I expect.
    Anyway, a quick answer on the above and then I'll start posting more specific info.
    Thanks all :)

    Ooops....my mistake. I was calling shutdown() twice. Once from the GUI code and automatically from after the loop in the run() method. Funny how the stacktrace doesn't drill down any further than the method that makes this call.
    Okay, its almost all working perfectly, except for this part....
        //  Start accepting client connections from the server service.
        public void run() {
             while(bThreadActive) {
                 if (sockServer != null) {
                     if (!sockServer.isClosed()) {
                         try {
                             sockClient = sockServer.accept();
                             if (sockClient != null) {
                                 this.clientManager.addClientConnection(sockClient);
                                 this.pOutput.printOutput("Connection accepted from: " + sockClient.getInetAddress().getHostAddress());
                         } catch (IOException ioe) {
                             if (bThreadActive) {
                                 this.pOutput.printOutput("ERROR: Could not accept incoming client connection");
                         } catch (NullPointerException npe) {
                             // Leave this for now.
             shutdown();
        // Shutdown the server service and disconnect all client connections.
        public void shutdown() {
            try {
                clientManager.stopThread();
                sockServer.close();
                threadServer = null;
            } catch (NullPointerException npe) {
                npe.printStackTrace();
            } catch (IOException ioe) {
                pOutput.printOutput("ERROR: Could not cleanly shutdown the server socket");
            pOutput.printOutput("Server service shut down successfully");
        // Stop the server thread (automatically shuts down).
        public synchronized void stopThread() {
            bThreadActive = false;
        }When I call the above like this from the GUI object...
        // Stop the server.
        private void stopServer() {
             try {
                  server.stopThread();
                  setGUIMode(MODE_DISCONNECTED);
             } catch (NullPointerException npe) {
                  npe.printStackTrace();
        }...the string "Server service shut down successfully" from the completion of the shutdown() method never appears, so it looks as though its not executing.
    But if I do this instead in the stopServer() method and remove the shutdown() call in the run() method, it works......but I get two (sometimes three) outputs of "Server service shut down successfully" which makes me think its being run twice somehow.....once before the ClientManager has been shutdown and once after or twice after.
    Server service shut down successfully
    Shutting down Client Manager...
    All client connections disconnected
    Client Manager successfully shutdown
    Server service shut down successfully
    Server service shut down successfully
    Any ideas?

  • JNI native threads causing JRE to fail to shut down?

    Hello,
    I am using JNI to communicate with a COM object. I am reasonably certain at this point that my JNI code is handling this properly and the third party COM library is releasing the object in question. We allocate and release hundreds of these objects and we aren't observing any memory leaks. Likewise in our handling of events we receive from the COM object. We attach the thread to Java, deliver the event, and then detach the thread from Java, with very careful error handling around the event delivery to ensure that whatever else happens the detach gets called. This code is very robust and stable in operation and has been working at load in the field for over a year now without any customer problems in the JNI area.
    However, since day one, when I go to shut down the application, the JNI isn't winding down properly. As it happens, since the JRE is running a Tomcat, driven by a wrapper service, the wrapper eventually gives up waiting and shoots the JRE in the head, but the user experience of stopping the wrapper service is ugly and we'd like to clean that up. The JNI code, of course, runs as shared code in the Tomcat.
    It is possible that the third-party library, which does network communications, is keeping a thread pool for use with any of the COM objects even after all COM objects are released. This would be experienced as a one-time hit when the first object is allocated and not as a continual leak, so we'd be unlikely to notice it otherwise.
    Will native non-Java threads running in the JRE but not allocated by the JRE itself cause the JRE to hang on until they've spontaneously decided to clean themselves up? Threads that have never been attached to the JVM? How about threads that were briefly attached to the JVM but then detached? Any worse?
    Ralph

    Hi Ralph,
    I will need some more information regarding this issue.
    1. What platform are you on?
    2. Which JRockit version are you running?
    3. If you remove the wrapper service, does JRockit freeze without exiting properly?
    As a general recommendation I would try to upgrade to the latest JRockit version. It can be downloaded from the OTN http://www.oracle.com/technology/software/products/jrockit/index.html
    You may also try some verbose printouts to debug the issue a little further. Try
    -Xverbose:thread=debug,jni=debug
    This might give us some more insight in what is going on.
    Also when JRockit freezes you can output a Java stack trace using our 'jrcmd' tool which you can find in the same folder as the java executable. Run this tool without any parameters and it will output identifiers (numbers) for every running JRockit instance on your machine. Run the same tool again, this time append the identifier you believe is the one running the Tomcat and add the command 'print_threads', ie
    jrcmd <some_id_here> print_threads
    This may show what JRockit is waiting for.
    Cheers,
    /Henrik

  • Child process admin thread is shutting down.

    Hi,
    Operating on a web server with the following error message, Child Process is a phenomenon that restart.
    I would like to know what the cause.
    Version - Sun Java System Web Server 6.1
    errors
    [09/Nov/2011:12:31:00] catastrophe ( 7647): Server crash detected (signal SIGBUS)
    [09/Nov/2011:12:31:00] info ( 7647): Crash occurred in NSAPI SAF flex-log
    [09/Nov/2011:12:31:00] info ( 7647): Crash occurred in function flex_init from module /netscape/servers/bin/https/lib/libns-httpd40.so
    [09/Nov/2011:12:31:00] failure (16223): Child process admin thread is shutting down
    [09/Nov/2011:13:42:06] catastrophe (16514): Server crash detected (signal SIGSEGV)
    [09/Nov/2011:13:42:06] info (16514): Crash occurred in NSAPI SAF flex-log
    [09/Nov/2011:13:42:06] info (16514): Crash occurred in function flex_init from module /netscape/servers/bin/https/lib/libns-httpd40.so
    [09/Nov/2011:13:42:06] failure (16223): Child process admin thread is shutting down
    Edited by: 896618 on 2011. 11. 10 오후 9:21

    thanks for the response chris. in answer to your questions - no there are no NSAPI plugins installed and we are getting zero helpful output from the log files.
    /server-root/logs/errors is the only log file that has relevant output at the time of the crashes. our own application logs and the sytem's syslogs have nothing relevant at those times.
    the o/p from the errors log is basically :
    [19/Dec/2002:02:05:39] config ( 5815): [GC
    [19/Dec/2002:02:05:39] config ( 5815): 154915K->129640K(249216K)
    [19/Dec/2002:02:05:39] config ( 5815): , 0.0299277 secs]
    [19/Dec/2002:02:05:39] config ( 5815):
    [19/Dec/2002:02:05:59] failure ( 5814): Child process admin thread is shutting down
    at which point it resets itself. we have a load balanced system and the resets aren't noticed at the front end but i'm beginning to tear my hair out.
    We have the exact same s/w configuration on 2 x Netra T1s and they've been running fine for over a year. We have 2 brand spanking new Fire V100s & the only significant h/w difference between the machines being L2 cache (512k v 2Mb). i would've thought that a bottleneck would throw up errors all over the place and result in a noticeably slower system which isn't the case.
    our next step is to throw in an extra 512Mb RAM and see does that increase the time between resets - currently 24-36hrs. i have a niggling suspicion it may be memory related.
    any other ideas?

  • IPlanet 6.1-SP6 auto re-starting with Child admin thread shutting down

    We are running the same application everywhere without any issues. Just migrated to new machine/environment and whenever the client (browser) tries to acess a JSP, the web-server automatically re-starts itself with message Child admin thread is shutting down.
    We are using Solaris OS 9, with Sun Cluster 3.1, JDK both 1.3.1_04 and 1.4.2_06.
    Any help will be highly appreciated.

    Issue is resolved, there was an issue with classpath settings in jvm12.conf

  • Shutting down a panel in one thread from another thread.

    For various reasons, I have a program with two threads (actually more than two, but only two are concerned here). One is the main panel that runs at startup, another is a Virtual O'Scope panel with a real-time display. Everything works more or less well, until it's time to exit the program.
    The main program starts by calling a routine to display the VO'scope; this routine calls CmtScheduleThreadPoolFunctionAdv to schedule the VOscope thread with the function VOscopePanelMain.
    VOscopePanelMain initializes things, displays the VOscope panel, and then calls RunUserInterface(); to process events in the VOscope panel.
    When it comes time to close the window, closing the panel (the X box in the upper right corner) triggers the panel callback CB_VoscopePanel, which processes the EVENT_CLOSE: event by calling QuitUserInterface(0); which, in turn, causes RunUserInterface to return to VOscopePanelMain, which then shuts things down, closes the panel properly, and exits. So far so good.
    int CVICALLBACK CB_VoscopePanel (int panel, int event, void *callbackData,
            int eventData1, int eventData2)
        int    iPanelHeight, iPanelWidth, iV2ControlLeft, iV2ControlWidth, iWidth,
            iT2ControlTop, iT2ControlHeight, iHeight, iLeft, iGap, iScreenTop, iScreenLeft,
            iTop, iBoxWidth;
        switch (event) {
            break;
        case EVENT_GOT_FOCUS: //happens when first displayed or refreshed
        case EVENT_PANEL_SIZE: //size the controls on the panel
           ... do stuff here;
            break;
        case EVENT_CLOSE:
            QuitUserInterface(0);  //stop VOscopePanelMain, which in turn closes the panel and cleans stuff up.
            break;
        return 0;
    However, I also want the panel to stop when I close the main program. The only way that I know how to do this cleanly is to have the main program (which has closed all of its panels and is in the process of shutting down) call VOSCOPE_Close_VOScope () which, in turn, calls CallPanelCallback (iHandle_VOscope, EVENT_CLOSE, 0, 0, 0); (which forces a call to CB_VoscopePanel above with the EVENT_CLOSE event), which should call QuitUserInterface, which should cause the RunUserInterface in VOscopePanelMain to return and let it continue to shut down. In addition, after calling CallPanelCallback, the shutdown routine calls CmtWaitForThreadPoolFunctionCompletion to wait for the VOscopePanelMain thread to actually quit and clean up before proceeding.
    But, of course, it doesn't since, and it took me a while to realize this. The call to QuitUserInterface isn't coming from inside of the VOscopePanelMain thread, it's coming from the main panel's thread - which is already in the process of shutting down. So, the main panel thread is telling itself to quit, VOscopePanelMain never gets the QuitUserInterface message, and things stall.
    So: how do I have one thread tell a panel in another thread to cleanly close? Or do I have to get complicated and either replace RunUserInterface in VOscopePanelMain with a loop that processes events manually and looks for a flag, or figure out something with a thread-safe queue? Any help appreciated.
    Attachments:
    Voscope.c ‏76 KB

    Sorry for delay in answering, it took me a while to find time to build up a working example.
    The attached program spawns a thread in a new thread pool and permit you to choose whether to close it from the main thread or the spawned thread itself.
    It appears that in such a minimal configuration the process works as expected. There may be some different configuration in your actual program that prevents this.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?
    Attachments:
    ThreadPoolWithGUI.zip ‏7 KB

  • "Shut Down your Mac" window appear

    Hello, just now window with message that I need to turn my Mac was appeared, there was instruction that I need to hold power button for a few seconds. I made it and recived error report:
    [quote]
    Interval Since Last Panic Report:  5436007 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    3B48A598-F87D-45DC-9C54-E8FCEC514F82
    Sun Feb 10 22:39:29 2013
    panic(cpu 3 caller 0xffffff80002c4794): Kernel trap at 0xffffff7f80e10b23, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x000000040002bdeb, CR3: 0x000000006e3b302f, CR4: 0x00000000000606e0
    RAX: 0x000000040002bd93, RBX: 0xffffff8019f9fd10, RCX: 0x000000040002bd93, RDX: 0xffffff800d464d10
    RSP: 0xffffff807f85bae0, RBP: 0xffffff807f85baf0, RSI: 0xffffff8019f9fd10, RDI: 0xffffff800d464d10
    R8:  0x0000000000000000, R9:  0x0000000000000000, R10: 0xffffff800e058400, R11: 0xffffff7f80db6c30
    R12: 0xffffff8019f9fd10, R13: 0xffffff800e058400, R14: 0xffffff800d53bc00, R15: 0xffffff800e058400
    RFL: 0x0000000000010203, RIP: 0xffffff7f80e10b23, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x000000040002bdeb, Error code: 0x0000000000000000, Faulting CPU: 0x3
    Backtrace (CPU 3), Frame : Return Address
    0xffffff807f85b790 : 0xffffff8000220792
    0xffffff807f85b810 : 0xffffff80002c4794
    0xffffff807f85b9c0 : 0xffffff80002da55d
    0xffffff807f85b9e0 : 0xffffff7f80e10b23
    0xffffff807f85baf0 : 0xffffff7f80e0d2f2
    0xffffff807f85bb10 : 0xffffff7f80e0e5df
    0xffffff807f85bb40 : 0xffffff800063dd21
    0xffffff807f85bba0 : 0xffffff7f80e0bfb8
    0xffffff807f85bbe0 : 0xffffff800063baeb
    0xffffff807f85bc20 : 0xffffff7f80e0bf16
    0xffffff807f85bc40 : 0xffffff8000656fbb
    0xffffff807f85bd80 : 0xffffff80002a3f08
    0xffffff807f85be80 : 0xffffff8000223096
    0xffffff807f85beb0 : 0xffffff80002148a9
    0xffffff807f85bf10 : 0xffffff800021bbd8
    0xffffff807f85bf70 : 0xffffff80002aef10
    0xffffff807f85bfb0 : 0xffffff80002daec3
          Kernel Extensions in backtrace:
             com.apple.iokit.IOAudioFamily(1.8.6f18)[8D690452-BF17-3DA0-BCAD-F1BCF1495926]@0 xffffff7f80e03000->0xffffff7f80e2ffff
                dependency: com.apple.kext.OSvKernDSPLib(1.3)[CF50CA5A-4AF6-3E28-B84B-9619535445E7]@0xfffff f7f80dfd000
    BSD process name corresponding to current thread: coreaudiod
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Kernel UUID: FF3BB088-60A4-349C-92EA-CA649C698CE5
    System model name: iMac12,1 (Mac-942B5BF58194151B)
    System uptime in nanoseconds: 182546829266205
    last loaded kext at 165547627665565: com.apple.filesystems.msdosfs          1.7.1 (addr 0xffffff7f80798000, size 57344)
    last unloaded kext at 166466121855806: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f80795000, size 12288)
    loaded kexts:
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleBluetoothMultitouch          70.12
    com.apple.driver.IOBluetoothA2DPAudioDriver          4.0.8f17
    com.apple.driver.IOBluetoothSCOAudioDriver          4.0.8f17
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AGPM          100.12.75
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.2.5a5
    com.apple.driver.AppleMikeyDriver          2.2.5a5
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.kext.ATIFramebuffer          7.3.2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleSMCPDRC          5.0.0d8
    com.apple.iokit.IOBluetoothSerialManager          4.0.8f17
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.3
    com.apple.driver.ApplePolicyControl          3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin          5.0.0d8
    com.apple.driver.AppleLPC          1.6.0
    com.apple.ATIRadeonX3000          7.3.2
    com.apple.driver.AppleBacklight          170.2.2
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHD3000Graphics          7.3.2
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.SCSITaskUserClient          3.2.1
    com.apple.driver.AppleUSBCardReader          3.0.6
    com.apple.iokit.IOAHCISerialATAPI          2.0.3
    com.apple.driver.AppleIRController          312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.1.0
    com.apple.driver.AppleUSBHub          5.1.0
    com.apple.driver.AirPort.Atheros40          505.67.1
    com.apple.iokit.AppleBCM5701Ethernet          3.2.4b8
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleFWOHCI          4.9.0
    com.apple.driver.AppleAHCIPort          2.3.1
    com.apple.driver.AppleUSBEHCI          5.1.0
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          195.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.4
    com.apple.security.TMSafetyNet          8
    com.apple.driver.AppleIntelCPUPowerManagement          195.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard          160.7
    com.apple.driver.AppleHIDKeyboard          160.7
    com.apple.driver.AppleMultitouchDriver          231.4
    com.apple.driver.IOBluetoothHIDDriver          4.0.8f17
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.2.5a5
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.2.5a5
    com.apple.iokit.IOHDAFamily          2.2.5a5
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d8
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.1.33
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleThunderboltEDMSink          1.1.8
    com.apple.driver.AppleThunderboltEDMSource          1.1.8
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.kext.ATI6000Controller          7.3.2
    com.apple.kext.ATISupport          7.3.2
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.driver.AppleIntelSNBGraphicsFB          7.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleThunderboltDPOutAdapter          1.8.5
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.5
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.IOBluetoothFamily          4.0.8f17
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.2.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.2.1
    com.apple.iokit.IOUSBMassStorageClass          3.0.3
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleUSBMergeNub          5.1.0
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.driver.AppleThunderboltNHI          1.6.0
    com.apple.iokit.IOThunderboltFamily          2.0.3
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IO80211Family          420.3
    com.apple.iokit.IOEthernetAVBController          1.0.1b1
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOFireWireFamily          4.4.8
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOUSBFamily          5.1.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.8
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          331.7
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: iMac12,1, BootROM IM121.0047.B1F, 4 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 1.71f22
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3231554538424655302D444A2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3231554538424655302D444A2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.67.5-P2P
    Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST3500418AS, 500,11 GB
    Serial ATA Device: OPTIARC DVD RW AD-5690H
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 5
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 3[/quote]
    Can anyone explain me what it was?

    Why would you want a start button to stop something?
    Seriously, I would not routinely shut down your Mac. It is not necessary. Just set it to sleep in System Preferences > Energy Saver.
    When you are not using it, just walk away. Things will work better that way. Most of my Macs don't get shut down except while restarting them for software updates. This might be once every couple of months.

  • When I open safari I can go into websites but after a while it will shut down out of nowhere and it always comes up with this:

    When I open safari I can go into websites but after a while it will shut down out of nowhere and it always comes up with this:
    Process:         Safari [1562]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.2 (6533.18.5)
    Build Info:      WebBrowser-75331805~6
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [118]
    Date/Time:       2012-07-18 17:24:09.405 +0800
    OS Version:      Mac OS X 10.6.4 (10F2108)
    Report Version:  6
    Interval Since Last Report:          7087 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  7069 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      52337202-F9CC-4220-922F-211E11375682
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000032
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.WebCore                    0x00007fff835ddbc7 WebCore::SecurityOrigin::canAccess(WebCore::SecurityOrigin const*) const + 39
    1   com.apple.WebCore                    0x00007fff835c51f7 WebCore::JSDOMWindow::getOwnPropertySlot(JSC::ExecState*, JSC::Identifier const&, JSC::PropertySlot&) + 151
    2   com.apple.JavaScriptCore        0x00007fff80140427 cti_op_resolve_global + 695
    3   ???                                         0x00004dbafeffad7c 0 + 85465537424764
    4   com.apple.JavaScriptCore        0x00007fff802553ac JSC::Interpreter::execute(JSC::FunctionExecutable*, JSC::ExecState*, JSC::JSFunction*, JSC::JSObject*, JSC::ArgList const&, JSC::ScopeChainNode*, JSC::JSValue*) + 508
    5   ???                                         0x0000000115a39b40 0 + 4658010944
    6   ???                                         0x000000011a57bbe0 0 + 4736924640
    7   com.apple.WebCore                    0x00007fff83d23dd0 WebCore::JSHTMLHtmlElement::~JSHTMLHtmlElement() + 0
    8   ???                                         0x8d48078948ecfebc 0 + 10180395243886411452
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                           0x00007fff8809208a kevent + 10
    1   libSystem.B.dylib                           0x00007fff88093f5d _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                           0x00007fff88093c34 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                           0x00007fff8809375e _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                           0x00007fff88093088 _pthread_wqthread + 353
    5   libSystem.B.dylib                           0x00007fff88092f25 start_wqthread + 13
    Thread 2:  QTKit: waitForServerToDie
    0   libSystem.B.dylib                           0x00007fff88092eaa __workq_kernreturn + 10
    1   libSystem.B.dylib                           0x00007fff880932bc _pthread_wqthread + 917
    2   libSystem.B.dylib                           0x00007fff88092f25 start_wqthread + 13
    Thread 3:  WebCore: IconDatabase
    0   libSystem.B.dylib                           0x00007fff880b3eb6 __semwait_signal + 10
    1   libSystem.B.dylib                           0x00007fff880b7cd1 _pthread_cond_wait + 1286
    2   com.apple.WebCore                    0x00007fff834a7cd9 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3   com.apple.WebCore                    0x00007fff834a3ddc WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4   libSystem.B.dylib                           0x00007fff880b2456 _pthread_start + 331
    5   libSystem.B.dylib                           0x00007fff880b2309 thread_start + 13
    Thread 4:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                           0x00007fff880792fa mach_msg_trap + 10
    1   libSystem.B.dylib                           0x00007fff8807996d mach_msg + 59
    2   com.apple.CoreFoundation                      0x00007fff86c7d3c2 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                      0x00007fff86c7c84f CFRunLoopRunSpecific + 575
    4   com.apple.Safari                             0x000000010002fa39 0x100000000 + 195129
    5   com.apple.Safari                             0x000000010002f9c9 0x100000000 + 195017
    6   libSystem.B.dylib                           0x00007fff880b2456 _pthread_start + 331
    7   libSystem.B.dylib                           0x00007fff880b2309 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                           0x00007fff880bcdce select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                      0x00007fff86c9ee92 __CFSocketManager + 818
    2   libSystem.B.dylib                           0x00007fff880b2456 _pthread_start + 331
    3   libSystem.B.dylib                           0x00007fff880b2309 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                           0x00007fff88092eaa __workq_kernreturn + 10
    1   libSystem.B.dylib                           0x00007fff880932bc _pthread_wqthread + 917
    2   libSystem.B.dylib                           0x00007fff88092f25 start_wqthread + 13
    Thread 7:
    0   libSystem.B.dylib                           0x00007fff880792fa mach_msg_trap + 10
    1   libSystem.B.dylib                           0x00007fff8807996d mach_msg + 59
    2   com.apple.CoreFoundation                      0x00007fff86c7d3c2 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                      0x00007fff86c7c84f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation               0x00007fff855bd4c3 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation               0x00007fff8553de8d __NSThread__main__ + 1429
    6   libSystem.B.dylib                           0x00007fff880b2456 _pthread_start + 331
    7   libSystem.B.dylib                           0x00007fff880b2309 thread_start + 13
    Thread 8:  WebCore: LocalStorage
    0   libSystem.B.dylib                           0x00007fff880b3eb6 __semwait_signal + 10
    1   libSystem.B.dylib                           0x00007fff880b7cd1 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore        0x00007fff800fe400 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                    0x00007fff837f9751 WebCore::LocalStorageThread::threadEntryPoint() + 193
    4   libSystem.B.dylib                           0x00007fff880b2456 _pthread_start + 331
    5   libSystem.B.dylib                           0x00007fff880b2309 thread_start + 13
    Thread 9:  Safari: SnapshotStore
    0   libSystem.B.dylib                           0x00007fff880b3eb6 __semwait_signal + 10
    1   libSystem.B.dylib                           0x00007fff880b7cd1 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore        0x00007fff800fe400 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari                             0x00000001001be849 0x100000000 + 1828937
    4   com.apple.Safari                             0x0000000100047507 0x100000000 + 292103
    5   com.apple.Safari                             0x0000000100047385 0x100000000 + 291717
    6   libSystem.B.dylib                           0x00007fff880b2456 _pthread_start + 331
    7   libSystem.B.dylib                           0x00007fff880b2309 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000011aab1b40  rbx: 0x000000011d5feaf0  rcx: 0x0000000115a05d40  rdx: 0x0000000000000001
      rdi: 0x000000011d5feaf0  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfdbb0  rsp: 0x00007fff5fbfdba0
       r8: 0x000000000000001f   r9: 0x0000000119757ca0  r10: 0x000000000000003f  r11: 0x00007fff80140170
      r12: 0x0000000000000000  r13: 0x00007fff5fbfdc90  r14: 0x0000000115a05d40  r15: 0xffff000000000002
      rip: 0x00007fff835ddbc7  rfl: 0x0000000000010246  cr2: 0x0000000000000032
    Binary Images:
           0x100000000 -        0x1006b0fe7  com.apple.Safari 5.0.2 (6533.18.5) <E05FAB52-2DFE-EB34-6029-01D0009A60A1> /Applications/Safari.app/Contents/MacOS/Safari
           0x113000000 -        0x113494fff  com.apple.RawCamera.bundle 3.9.0 (584) <CB295E3D-6E52-4E53-D553-A7C5FF960C01> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
           0x1157fc000 -        0x1157fcfff  com.apple.JavaPluginCocoa 13.1.0 (13.1.0) <B95284E0-629F-A5B7-1F91-4463DC05A9BD> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
           0x1167d9000 -        0x1167e1ff7  com.apple.JavaVM 13.1.0 (13.1.0) <BEA9AB0D-4358-A473-843A-AC9BDC277B7F> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
           0x11699f000 -        0x1169a0fff  ATSHI.dylib ??? (???) <0C6E12AA-4D29-7892-77CA-0B9D2C1627F5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x116e97000 -        0x116e9bff7  libFontRegistryUI.dylib ??? (???) <763B8E8F-8602-2096-7CC8-CEE1F4248028> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x11d3ea000 -        0x11d4fafef  libmecab.1.0.0.dylib 2.0.0 (compatibility 2.0.0) <E321EA43-4F4C-6561-3E87-4081904D53F3> /usr/lib/libmecab.1.0.0.dylib
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <472D950D-70F8-B810-A959-9184C2AA6C74> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80082fe7  com.apple.audio.CoreAudio 3.2.5 (3.2.5) <4ADA6607-A2FD-ABE2-3A2C-A4B6259F4B10> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff80083000 -     0x7fff800ebfff  com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff800ec000 -     0x7fff802d4ff7  com.apple.JavaScriptCore 6533.18 (6533.18.1) <6297141A-CA95-4828-20E2-80473DE8D4BD> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff80497000 -     0x7fff805bfff7  com.apple.MediaToolbox 0.484.11 (484.11) <F50B5552-8527-C75D-873F-66A61D04E32A> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff805c0000 -     0x7fff8061eff7  com.apple.framework.IOKit 2.0 (???) <00376B85-C54E-F1B9-1335-5938D9D2CA4F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8061f000 -     0x7fff80622fff  com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff80623000 -     0x7fff80664fef  com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff806b1000 -     0x7fff806d4fff  com.apple.opencl 12.1 (12.1) <403E8F37-4348-B9BC-08E6-7693A995B7EC> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff806d5000 -     0x7fff806f0ff7  com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff806f1000 -     0x7fff80791fff  com.apple.LaunchServices 362.1 (362.1) <2740103A-6C71-D99F-8C6F-FA264546AD8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff807b8000 -     0x7fff807fbff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <28EB1C4B-56C3-85AA-BAB0-0163EBE51427> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff807fc000 -     0x7fff80848fff  libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
        0x7fff80849000 -     0x7fff80898fef  libTIFF.dylib ??? (???) <421F4CB7-ACC7-7E90-FC83-EBC2BCA3ECB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff80899000 -     0x7fff8089cff7  libCoreVMClient.dylib ??? (???) <CE19A78F-B76D-244A-1C04-0544B914F728> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8089d000 -     0x7fff808d5ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F4067E77-F82D-6B84-BAC7-6E8F955B88AB> /usr/lib/libssl.0.9.8.dylib
        0x7fff808d6000 -     0x7fff808ebff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff809fb000 -     0x7fff80a19fff  libPng.dylib ??? (???) <76D798A5-8C16-7FC8-E76E-5B40CA7CFDEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff80a1a000 -     0x7fff80a3aff7  com.apple.DirectoryService.Framework 3.6 (621.4) <969734C3-D21E-2F30-5CBB-D9F23D123643> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff80a3b000 -     0x7fff80af4fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <BF1A7D1F-1BB3-78BA-A29E-52384F6E4FD8> /usr/lib/libsqlite3.dylib
        0x7fff80af5000 -     0x7fff80af5ff7  com.apple.quartzframework 1.5 (1.5) <5BFE5998-26D9-0AF1-1522-55C78E41F778> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff80af6000 -     0x7fff80b33fff  com.apple.LDAPFramework 2.0 (120.1) <16383FF5-0537-6298-73C9-473AEC9C149C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff80b34000 -     0x7fff80ceafef  com.apple.ImageIO.framework 3.0.3 (3.0.3) <1B8E6256-27CD-E0E1-BF7B-AB15B3915685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff80ceb000 -     0x7fff80cf6fff  com.apple.CrashReporterSupport 10.6.3 (250) <47181442-3131-23A5-959B-C80D828B2967> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff80cf7000 -     0x7fff80d0dfff  com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff80d0e000 -     0x7fff80da8fff  com.apple.ApplicationServices.ATS 4.3 (???) <A7CD9E1F-C563-E940-130D-AA7E08C5A29F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff80da9000 -     0x7fff80ecefef  com.apple.audio.toolbox.AudioToolbox 1.6.4 (1.6.4) <D84520B3-AB7C-937C-31DF-4CC6E7FDF9D9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff81210000 -     0x7fff81210ff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff81245000 -     0x7fff8124afff  libGFXShared.dylib ??? (???) <1B50D804-966B-30D2-D0FD-B090B6FEAC7E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8124b000 -     0x7fff81364fef  libGLProgrammability.dylib ??? (???) <0E55A58B-5B42-669F-2655-90893554CA21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff81395000 -     0x7fff8141afff  com.apple.print.framework.PrintCore 6.2 (312.5) <C20F87CE-ACC1-552B-8A73-2B3846A01D80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff81490000 -     0x7fff8150dfef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff8150e000 -     0x7fff81547ff7  com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff818f3000 -     0x7fff81c8cff7  com.apple.QuartzCore 1.6.2 (227.22) <3CF27A9E-4B1A-AD21-5B40-E203D1C9350B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff81d59000 -     0x7fff81d60fff  com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff81d61000 -     0x7fff81e1eff7  com.apple.CoreServices.OSServices 357 (357) <78252D7F-0F21-5E99-E7FF-1591FB98437C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff81e1f000 -     0x7fff81e20ff7  com.apple.audio.units.AudioUnit 1.6.4 (1.6.4) <9E685534-3B08-ECC5-6BA3-42A1B5EFFCE7> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff81e21000 -     0x7fff81e26ff7  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
        0x7fff81e27000 -     0x7fff81eb7fff  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
        0x7fff81f6d000 -     0x7fff81ff9fef  SecurityFoundation ??? (???) <D844BB57-386A-0A43-249E-9BE035C2AB53> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff81ffa000 -     0x7fff820d4ff7  com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff820d5000 -     0x7fff82244fe7  com.apple.QTKit 7.6.6 (1744) <9A770A86-8DA9-A7C4-8BDC-859F2AD745F3> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff82245000 -     0x7fff82250ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff82352000 -     0x7fff8236bfff  com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8236c000 -     0x7fff82464ff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <7E4ADB5A-CC77-DCFD-3E54-2F35A2C8D95A> /usr/lib/libiconv.2.dylib
        0x7fff82465000 -     0x7fff82476fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff82477000 -     0x7fff82537fff  libFontParser.dylib ??? (???) <A4F8189D-1D5B-2F8D-E78E-6D934A8E8407> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff825ab000 -     0x7fff825bffff  libGL.dylib ??? (???) <5AD69545-D1A3-C017-C7AF-B4AFD6F08FA2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff825c0000 -     0x7fff827fbfef  com.apple.imageKit 2.0.3 (1.0) <8DA80BC9-C671-BD89-EA2E-3C632D6ECE30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff82854000 -     0x7fff8289eff7  com.apple.Metadata 10.6.3 (507.10) <7913DD85-87D4-527C-DB20-5802ECA3CC31> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff828bb000 -     0x7fff828cfff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff828d0000 -     0x7fff829e7fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <EE067D7E-15B3-F043-6FBD-10BA31FE76C7> /usr/lib/libxml2.2.dylib
        0x7fff82a25000 -     0x7fff82a54ff7  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
        0x7fff82a55000 -     0x7fff82a6bfe7  com.apple.MultitouchSupport.framework 205.34 (205.34) <01AAE66D-C2DF-4EF5-FC7B-E89E08C02A01> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff82a6c000 -     0x7fff83276fe7  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
        0x7fff83277000 -     0x7fff83279fff  com.apple.print.framework.Print 6.1 (237.1) <4513DB2F-737C-B43C-2D0E-23CD6E838014> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8327a000 -     0x7fff8337efff  com.apple.PubSub 1.0.5 (65.19) <A35D8DC1-AE9F-09F4-4620-31C3157C84DC> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8337f000 -     0x7fff833c8ff7  com.apple.securityinterface 4.0.1 (37214) <F8F2D8F4-861F-6694-58F6-3DC55C9DBF50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff833c9000 -     0x7fff833d4ff7  com.apple.HelpData 2.0.4 (34) <B44D2E2A-BC1E-CD63-F8A1-C9465491693A> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff833d5000 -     0x7fff833d9ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <A5BECE74-6C4A-E7F3-1948-667ED1A74864> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff833da000 -     0x7fff83455fff  com.apple.ISSupport 1.9.3 (51) <BE4B548C-F9C4-2464-12A6-F94A21D569C6> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff834a1000 -     0x7fff84114ff7  com.apple.WebCore 6533.18 (6533.18.1) <D0C3B3C8-EF2A-2D99-0403-8015EBFA7069> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff84115000 -     0x7fff84193fff  com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff84194000 -     0x7fff841ccfef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <E6B10A46-E64C-9248-29C1-E252410C77B1> /usr/lib/libcups.2.dylib
        0x7fff841cd000 -     0x7fff84610fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff84611000 -     0x7fff84623fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff84821000 -     0x7fff84822fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff848d9000 -     0x7fff848e8ff7  com.apple.opengl 1.6.9 (1.6.9) <BB8AEF81-0EC1-ED4C-360B-186C60AE745C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff84912000 -     0x7fff8494dfff  com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8494e000 -     0x7fff8495cff7  libkxld.dylib ??? (???) <06A51939-F1BC-7D41-2E2A-53ACB1B4A3A8> /usr/lib/system/libkxld.dylib
        0x7fff8495d000 -     0x7fff84a43fe7  com.apple.DesktopServices 1.5.8 (1.5.8) <8DFD7D6D-1DE7-C805-02F4-E6F3DF0C83F5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff84a44000 -     0x7fff84b53fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <58C1D83A-F3FC-C025-58CA-CA35419FBDA6> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff84b54000 -     0x7fff84d12fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0E53A4A6-AC06-1B61-2285-248F534EE356> /usr/lib/libicucore.A.dylib
        0x7fff84d13000 -     0x7fff84d7fff7  com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff84d80000 -     0x7fff84d8ffff  com.apple.NetFS 3.2.1 (3.2.1) <0357C371-2E2D-069C-08FB-1180512B8516> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff84d90000 -     0x7fff84dd7fef  com.apple.QuickLookFramework 2.2 (327.4) <4E1658D4-F268-2A82-C095-1D01E9EAD05F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff84dd8000 -     0x7fff8501afef  com.apple.AddressBook.framework 5.0.2 (870) <A1278575-53F2-CC00-7306-E49713FEC7C6> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8501b000 -     0x7fff851fefef  libType1Scaler.dylib ??? (???) <4C5DD699-D329-CBC4-018B-D9033DB6A3D6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
        0x7fff851ff000 -     0x7fff852b4fe7  com.apple.ColorSync 4.6.3 (4.6.3) <5A7360A8-D495-1E8D-C4B4-A363AF989ADE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff852b5000 -     0x7fff852bbfff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <C297D7C5-8227-65D5-2E88-D723038963D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff852bc000 -     0x7fff85372fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
        0x7fff85373000 -     0x7fff853a4fff  libGLImage.dylib ??? (???) <7EF50768-54F1-5883-C40F-DAF83810C3FA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8552d000 -     0x7fff857aefef  com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff857af000 -     0x7fff858edfff  com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff858ee000 -     0x7fff8590ffff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
        0x7fff85910000 -     0x7fff8598dfef  com.apple.backup.framework 1.2.2 (1.2.2) <13A0D34C-28B7-2140-ECC9-B08D10CD4AB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8598e000 -     0x7fff8599afff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <5FFC8295-2DF7-B54C-3766-756842C53731> /usr/lib/libbz2.1.0.dylib
        0x7fff8599b000 -     0x7fff859a6fff  com.apple.corelocation 12 (12) <04DFA04A-CE28-06BB-0C1F-D8F0FD491002> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff859a7000 -     0x7fff85a09fe7  com.apple.datadetectorscore 2.0 (80.7) <34592AFF-B1B8-2277-B013-70193E4E1691> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff85a0a000 -     0x7fff85a35ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff85a36000 -     0x7fff85a3aff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff85a47000 -     0x7fff85a4dff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85a4e000 -     0x7fff85a4eff7  com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff85a4f000 -     0x7fff85cd5ff7  com.apple.security 6.1.1 (37594) <5EDDC08C-C95B-2D24-E1D2-D30D233AB065> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff85cd6000 -     0x7fff85d06fef  com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff85d07000 -     0x7fff85d1dfef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff85d1e000 -     0x7fff85d53fef  com.apple.framework.Apple80211 6.2.3 (623.1) <2168CFEF-BABB-AA55-1059-5C7723B976A1> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff85d54000 -     0x7fff85d97fff  libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
        0x7fff85ddb000 -     0x7fff8610efe7  com.apple.CoreServices.CarbonCore 861.16 (861.16) <B7C1E3F2-6E95-D172-1C93-38B10CA80F21> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8610f000 -     0x7fff861befff  edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff861bf000 -     0x7fff8622fff7  com.apple.AppleVAFramework 4.10.8 (4.10.8) <C3B7EABC-66B8-E951-0E03-1E1521D5D03D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff86230000 -     0x7fff86c26fff  com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff86c30000 -     0x7fff86c30ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff86c31000 -     0x7fff86da6ff7  com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff86da7000 -     0x7fff872abfe7  com.apple.VideoToolbox 0.484.11 (484.11) <4577FF14-E6A7-AAD8-E6E6-ECA9CFCC6989> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff872ac000 -     0x7fff87515ff7  com.apple.QuartzComposer 4.1 (156.16) <D8B84962-C6E5-6812-2205-A910F707EE67> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff87516000 -     0x7fff8755eff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8755f000 -     0x7fff876dcff7  com.apple.WebKit 6533.18 (6533.18.1) <E5DE43E5-760D-8C0B-366B-C3200FB90F18> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff877a2000 -     0x7fff878acff7  com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff878ad000 -     0x7fff878bcfff  libxar.1.dylib ??? (???) <2C4E4D13-263B-6EFF-C6FD-FB8BA6DB3EF0> /usr/lib/libxar.1.dylib
        0x7fff878bd000 -     0x7fff878e3fe7  libJPEG.dylib ??? (???) <DBA0816B-7D0C-2B8D-767D-74E5198B5123> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff878e4000 -     0x7fff878e4ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff878e5000 -     0x7fff878e6fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff878e7000 -     0x7fff878ecfff  libGIF.dylib ??? (???) <0A583E66-C43B-5F61-C599-9AC6C5409D66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff878f5000 -     0x7fff878f6ff7  com.apple.TrustEvaluationAgent 1.1 (1) <74800EE8-C14C-18C9-C208-20BBDB982D40> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff878f7000 -     0x7fff8791ffff  com.apple.DictionaryServices 1.1.1 (1.1.1) <9FD709FC-23F0-F270-EAC1-C590CD516A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff87ad1000 -     0x7fff87ad7ff7  IOSurface ??? (???) <7AF7AA31-61A3-F60C-C85A-41107A4DBF06> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff87ad8000 -     0x7fff87b29fe7  com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff87b2a000 -     0x7fff87b37fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <A49676A5-D9AF-56DE-ACA6-CC0005E42398> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff87b68000 -     0x7fff87bbdfef  com.apple.framework.familycontrols 2.0.1 (2010) <66C68564-8AF3-2A03-B5B2-594CD6781CEA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff87bbe000 -     0x7fff87c89fe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <A6B2D07C-FC4D-F49E-64E5-AD4DFA830C05> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff87c8a000 -     0x7fff87cf4fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff87d56000 -     0x7fff87dd8fff  com.apple.QuickLookUIFramework 2.2 (327.4) <C35D9F62-73D0-262C-B0CE-BFF64E230588> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff87e77000 -     0x7fff87ebbfe7  com.apple.ImageCaptureCore 1.0.2 (1.0.2) <075198A5-4C6B-D945-D3EF-D13960C9F738> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff87edf000 -     0x7fff87f94fe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff87f95000 -     0x7fff87fc6fef  libTrueTypeScaler.dylib ??? (???) <0A30CA68-46AF-3E74-AE9E-693DB5A680CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff87fc7000 -     0x7fff87fd8ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff87fd9000 -    

    Version:         5.0.2 (6533.18.5)
    Build Info:      WebBrowser-75331805~6
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [118]
    Date/Time:       2012-07-18 17:24:09.405 +0800
    OS Version:      Mac OS X 10.6.4 (10F2108)
    Your system software is way out of date which is why Safari is crashing.
    Click the Apple menu icon top left corner of your screen. From the drop down menu click Software Update.
    Restart your Mac after the updates are installed.
    That should bring your Mac OS X from v10.6.4 to v10.6.8 an Safari from 5.0.2 to 5.1.7

  • Mac Shuts Down Unexpectedly in Logic Pro

    I sure hope someone can help me with this. For the last few months my Mac Pro starting shutting down unexpectedly typically when running Logic but not limited to Logic. I have updated everything that I can find. I have taken the computer in the store for support twice where they said that after testing there was no issue with the power supply or the logic board and determined that the hardware was okay. The only thing he could tell me is that he thought that it might have to do with all of the dongles on my usb hub. Before the hub was being powered by the Mac so I got a new hub that is now self powered. I thought that it might have to do with the fact that I run Logic through a Digi 002 which I know a lot of people have had stability issues with. Yesterday I also updated my Ilok and Eliscencers and it seemed to work. Today after a solid day of no crashes it was back to the same old stuff. Out of nowhere while Logic is running the audio signal abruptly stops but not to silence it holds a buzzing sound of the last audio that was processed. Then a grey screen comes down and gives me the notice that I need  to restart my computer. Upon powering back up this is the notice that came up    Interval Since Last Panic Report:  82145 sec Panics Since Last Report:          6 Anonymous UUID:                    3A1A42A4-6B76-4D5A-AE56-435F88E32ACF  Thu Aug  9 17:31:55 2012 panic(cpu 3 caller 0x28fc2e): "TLB invalidation IPI timeout: " "CPU(s) failed to respond to interrupts, unresponsive CPU bitmap: 0x80, NMIPI acks: orig: 0x0, now: 0x0"@/SourceCache/xnu/xnu-1504.15.3/osfmk/i386/pmap.c:3572 Backtrace (CPU 3), Frame : Return Address (4 potential args on stack) 0x8215baf8 : 0x21b837 (0x5dd7fc 0x8215bb2c 0x223ce1 0x0)  0x8215bb48 : 0x28fc2e (0x59a47c 0x80 0x0 0x0)  0x8215bbb8 : 0x29480b (0x9c913a0 0xbd170dc 0xad9d884 0x5)  0x8215bce8 : 0x29555c (0x9c913a0 0x38800000 0x1 0x788ee000)  0x8215bd58 : 0x2615b0 (0x9c913a0 0x38791000 0x1 0x38811000)  0x8215be88 : 0x261b4b (0x38811000 0x1 0x0 0x0)  0x8215bec8 : 0x283c4f (0xaa4c70c 0x38790000 0x1 0x38811000)  0x8215bf28 : 0x4d4007 (0xaa4c70c 0x38790000 0x1 0x81000)  0x8215bf78 : 0x4f82fb (0xaa4ba80 0xb903128 0xbd16684 0x0)  0x8215bfc8 : 0x2a251d (0xb903124 0x7fff 0x10 0xb903124)   BSD process name corresponding to current thread: Logic Pro  Mac OS version: 10K549  Kernel version: Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386 System model name: MacPro1,1 (Mac-F4208DC8)  System uptime in nanoseconds: 11840870910735 unloaded kexts: com.apple.driver.AppleFileSystemDriver     2.0 (addr 0x81aca000, size 0x12288) - last unloaded 125370560798 loaded kexts: com.bresink.driver.BRESINKx86Monitoring     9.0 - last loaded 31835711032 com.paceap.kext.pacesupport.snowleopard     5.7.2 com.digidesign.iokit.DigiDal     8.0.3f1 com.caiaq.driver.NIUSBMaschineControllerDriver     2.4.21 com.apple.filesystems.autofs     2.1.0 com.apple.driver.AppleHWSensor     1.9.3d0 com.apple.driver.AudioAUUC     1.57 com.apple.driver.AppleUpstreamUserClient     3.5.7 com.apple.driver.AppleMCCSControl     1.0.20 com.apple.Dont_Steal_Mac_OS_X     7.0.0 com.apple.kext.ATIFramebuffer     6.3.6 com.apple.ATIRadeonX1000     6.3.6 com.apple.driver.AudioIPCDriver     1.1.6 com.apple.driver.AppleHDA     2.0.5f14 com.apple.driver.AppleIntel8254XEthernet      2.1.3b1 com.apple.driver.AppleIntelMeromProfile     19 com.apple.driver.AppleMCEDriver     1.1.9 com.apple.driver.AirPortBrcm43224     428.42.4 com.apple.driver.ACPI_SMC_PlatformPlugin     4.7.0a1 com.apple.driver.AppleLPC     1.5.1 com.apple.iokit.SCSITaskUserClient     2.6.8 com.apple.BootCache     31.1 com.apple.AppleFSCompression.AppleFSCompressionTypeZlib     1.0.0d1 com.apple.iokit.IOAHCIBlockStorage     1.6.4 com.apple.driver.AppleUSBHub     4.2.4 com.apple.driver.AppleFWOHCI     4.7.3 com.apple.driver.AppleAHCIPort     2.1.7 com.apple.driver.AppleIntelPIIXATA     2.5.1 com.apple.driver.AppleUSBEHCI     4.2.4 com.apple.driver.AppleEFINVRAM     1.4.0 com.apple.driver.AppleUSBUHCI     4.2.0 com.apple.driver.AppleACPIButtons     1.3.6 com.apple.driver.AppleRTC     1.3.1 com.apple.driver.AppleHPET     1.5 com.apple.driver.AppleSMBIOS     1.7 com.apple.driver.AppleACPIEC     1.3.6 com.apple.driver.AppleAPIC     1.4 com.apple.driver.AppleIntelCPUPowerManagementClient     142.6.0 com.apple.security.sandbox     1 com.apple.security.quarantine     0 com.apple.nke.applicationfirewall      2.1.14 com.apple.driver.AppleIntelCPUPowerManagement     142.6.0 com.apple.driver.AppleProfileReadCounterAction     17 com.apple.driver.AppleProfileTimestampAction     10 com.apple.driver.AppleProfileThreadInfoAction     14 com.apple.driver.AppleProfileRegisterStateAction     10 com.apple.driver.AppleProfileKEventAction     10 com.apple.driver.AppleProfileCallstackAction     20 com.apple.iokit.IOSurface      74.2 com.apple.iokit.IOBluetoothSerialManager     2.4.5f3 com.apple.iokit.IOSerialFamily     10.0.3 com.apple.driver.DspFuncLib     2.0.5f14 com.apple.iokit.IONDRVSupport     2.2.1 com.apple.kext.ATI1900Controller     6.3.6 com.apple.kext.ATISupport     6.3.6 com.apple.iokit.IOFireWireIP     2.0.3 com.apple.iokit.IOAudioFamily     1.8.3fc2 com.apple.kext.OSvKernDSPLib     1.3 com.apple.iokit.AppleProfileFamily     41 com.apple.driver.AppleHDAController     2.0.5f14 com.apple.iokit.IOGraphicsFamily     2.2.1 com.apple.iokit.IOHDAFamily     2.0.5f14 com.apple.iokit.IO80211Family     320.1 com.apple.iokit.IONetworkingFamily     1.10 com.apple.driver.AppleSMC     3.1.0d5 com.apple.driver.IOPlatformPluginFamily      4.7.0a1 com.apple.driver.CSRUSBBluetoothHCIController     2.4.5f3 com.apple.driver.AppleUSBBluetoothHCIController     2.4.5f3 com.apple.iokit.IOBluetoothFamily     2.4.5f3 com.apple.iokit.IOUSBHIDDriver     4.2.0 com.apple.driver.AppleUSBComposite     3.9.0 com.apple.iokit.IOSCSIMultimediaCommandsDevice     2.6.8 com.apple.iokit.IOBDStorageFamily     1.6 com.apple.iokit.IODVDStorageFamily      1.6 com.apple.iokit.IOCDStorageFamily     1.6.1 com.apple.driver.XsanFilter     402.1 com.apple.iokit.IOATAPIProtocolTransport     2.5.1 com.apple.iokit.IOSCSIArchitectureModelFamily     2.6.8 com.apple.iokit.IOFireWireFamily     4.2.6 com.apple.iokit.IOUSBUserClient     4.2.4 com.apple.iokit.IOAHCIFamily     2.0.6 com.apple.iokit.IOATAFamily     2.5.1 com.apple.iokit.IOUSBFamily     4.2.4 com.apple.driver.AppleEFIRuntime     1.4.0 com.apple.iokit.IOHIDFamily     1.6.6 com.apple.iokit.IOSMBusFamily     1.1 com.apple.security.TMSafetyNet     6 com.apple.kext.AppleMatch     1.0.0d1 com.apple.driver.DiskImages     289 com.apple.iokit.IOStorageFamily     1.6.3 com.apple.driver.AppleACPIPlatform     1.3.6 com.apple.iokit.IOPCIFamily     2.6.5 com.apple.iokit.IOACPIFamily     1.3.0 Model: MacPro1,1, BootROM MP11.005D.B00, 8 processors, 3 GHz, 6 GB, SMC 1.7f10 Graphics: ATI Radeon X1900 XT, ATY,RadeonX1900, PCIe, 512 MB Memory Module: global_name AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.131.42.4) Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports Network Service: AirPort, AirPort, en2 PCI Card: ATY,RadeonX1900, sppci_displaycontroller, Slot-1 Serial ATA Device: ST3250820AS Q, 232.89 GB Serial ATA Device: ST31000528AS, 931.51 GB Parallel ATA Device: PIONEER DVD-RW  DVR-112D Parallel ATA Device: PIONEER DVD-RW  DVR-112D USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd500000 / 3 USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd540000 / 6 USB Device: Hub in Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x1002, 0xfd544000 / 10 USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52b, 0xfd544200 / 12 USB Device: Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x0204, 0xfd544100 / 11 USB Device: ProtectExecuter, 0x0819, 0x0101, 0xfd543000 / 9 USB Device: eLicenser, 0x0819, 0x0101, 0xfd542000 / 8 USB Device: eLicenser, 0x0819, 0x0101, 0xfd541000 / 7 USB Device: CodeMeter-Stick, 0x064f  (WIBU-Systems AG), 0x03e9, 0xfd530000 / 5 USB Device: iLok, 0x088e, 0x5036, 0xfd520000 / 4 USB Device: Maschine Controller, 0x17cc, 0x0808, 0xfd300000 / 2 USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8206, 0x5d200000 / 2 FireWire Device: built-in_hub, Up to 800 Mb/sec FireWire Device: Digi 002Rack, Digidesign, Up to 400 Mb/sec    Does this mean anything to anyone??? Any help would be greatly appreciated!!!   Thanks   Jimmy   Mac Pro 8 Core (2006) 3Ghz 8 Gb Ram OSX 10.6.8 Logic Pro Digidesign 002

    Mine has done this at least 3 times already. The laptop isn't connected to a power source, but it says there is still about 30% battery remaining. It has happened before with 50% and even 60%. It's not that it falls asleep, I would be in the middle of doing something and it just shuts off. I don't think it's overheating... It's a little warm, but the fan isn't 'working hard' or anything. It's not happening consistently, but it's happened enough times that it has made me concerned. Here's my battery info:
    Model Information:
    Serial Number: DP-bq20z951-397b-6c24
    Manufacturer: DP
    Device name: bq20z951
    Pack Lot Code: 0000
    PCB Lot Code: 0000
    Firmware Version: 002a
    Hardware Revision: 0005
    Cell Revision: 0100
    Charge Information:
    Charge remaining (mAh): 2272
    Fully charged: No
    Charging: Yes
    Full charge capacity (mAh): 3326
    Health Information:
    Cycle count: 124
    Condition: Good
    According to the stats... it doesn't really look like a battery problem. I really hope the warranty would cover a battery replacement though, if that's what it requires

  • IMac freezing and shutting down

    27" iMac late 2011. 3.4 GHz i7, 16 GB RAM. 251 GB SSD system disk, 2 TB SATA disk. Now running Mavericks  OS X 10.9.3 - after install of which trouble started.
    My machine freezes and/or restarts without warning. Several times a day.
    I am running VM ware fusion 4.1.4 for Win7. That was running smoothly until Mavericks.
    Now i am suspicious of fusion causing trouble :
    27/06/14 12.18.22,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    27/06/14 12.18.22,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    27/06/14 12.18.22,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    27/06/14 12.18.22,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    27/06/14 12.18.22,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    27/06/14 12.18.22,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    27/06/14 12.18.22,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    27/06/14 12.18.22,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    27/06/14 12.18.22,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    27/06/14 12.18.22,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    27/06/14 12.18.22,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    27/06/14 12.18.22,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    27/06/14 12.18.22,000 kernel[0]: Longterm timer threshold: 1000 ms
    27/06/14 12.18.22,000 kernel[0]: PMAP: PCID enabled
    27/06/14 12.18.22,000 kernel[0]: Darwin Kernel Version 13.2.0: Thu Apr 17 23:03:13 PDT 2014; root:xnu-2422.100.13~1/RELEASE_X86_64
    27/06/14 12.18.22,000 kernel[0]: vm_page_bootstrap: 4013871 free pages and 147665 wired pages
    27/06/14 12.18.22,000 kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    27/06/14 12.18.22,000 kernel[0]: zone leak detection enabled
    27/06/14 12.18.22,000 kernel[0]: "vm_compressor_mode" is 4
    27/06/14 12.18.22,000 kernel[0]: standard timeslicing quantum is 10000 us
    27/06/14 12.18.22,000 kernel[0]: standard background quantum is 2500 us
    27/06/14 12.18.22,000 kernel[0]: mig_table_max_displ = 74
    27/06/14 12.18.22,000 kernel[0]: TSC Deadline Timer supported and enabled
    27/06/14 12.18.22,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    27/06/14 12.18.22,000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    27/06/14 12.18.22,000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    27/06/14 12.18.22,000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    27/06/14 12.18.22,000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    27/06/14 12.18.22,000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    27/06/14 12.18.22,000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    27/06/14 12.18.22,000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    27/06/14 12.18.22,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    27/06/14 12.18.22,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    27/06/14 12.18.22,000 kernel[0]: calling mpo_policy_init for Sandbox
    27/06/14 12.18.22,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    27/06/14 12.18.22,000 kernel[0]: calling mpo_policy_init for Quarantine
    27/06/14 12.18.22,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    27/06/14 12.18.22,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    27/06/14 12.18.22,000 kernel[0]: The Regents of the University of California. All rights reserved.
    27/06/14 12.18.22,000 kernel[0]: MAC Framework successfully initialized
    27/06/14 12.18.22,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    27/06/14 12.18.22,000 kernel[0]: AppleKeyStore starting (BUILT: Apr 17 2014 23:36:27)
    27/06/14 12.18.22,000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    27/06/14 12.18.22,000 kernel[0]: ACPI: sleep states S3 S4 S5
    27/06/14 12.18.22,000 kernel[0]: pci (build 23:24:05 Apr 17 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    27/06/14 12.18.22,000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 1234
    27/06/14 12.18.22,000 kernel[0]: AppleIntelCPUPowerManagement: (built 23:35:25 Apr 17 2014) initialization complete
    27/06/14 12.18.22,000 kernel[0]: [ PCI configuration begin ]
    27/06/14 12.18.22,000 kernel[0]: console relocated to 0xf80010000
    27/06/14 12.18.22,000 kernel[0]: [ PCI configuration end, bridges 12, devices 17 ]
    27/06/14 12.18.22,000 kernel[0]: Thunderbolt runtime power conservation disabled.
    27/06/14 12.18.22,000 kernel[0]: mcache: 8 CPU(s), 64 bytes CPU cache line size
    27/06/14 12.18.22,000 kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    27/06/14 12.18.22,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    27/06/14 12.18.22,000 kernel[0]: rooting via boot-uuid from /chosen: 4786F4B5-B3D6-39F2-9CE8-C6CE8F26FED6
    27/06/14 12.18.22,000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    27/06/14 12.18.22,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    27/06/14 12.18.22,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    27/06/14 12.18.22,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    27/06/14 12.18.22,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    27/06/14 12.18.22,000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    27/06/14 12.18.22,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT1@1/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE SSD TS256C Media/IOGUIDPartitionScheme/Customer@2
    27/06/14 12.18.22,000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    27/06/14 12.18.22,000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID a4b197fffe8f67ce; max speed s800.
    27/06/14 12.18.22,000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    27/06/14 12.18.22,000 kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833, 2
    27/06/14 12.18.22,000 kernel[0]: USBMSC Identifier (non-unique): 201006010301 0xbda 0x301 0x126, 2
    27/06/14 12.18.22,000 kernel[0]: ath_get_caps[4044] rx chainmask mismatch actual 7 sc_chainmak 0
    27/06/14 12.18.22,000 kernel[0]: 1.030727: ath_get_caps[4019] tx chainmask mismatch actual 7 sc_chainmak 0
    27/06/14 12.18.22,000 kernel[0]: 1.035509: Atheros: mac 448.3 phy 3838.10 radio 0.0
    27/06/14 12.18.22,000 kernel[0]: 1.035518: Use hw queue 0 for WME_AC_BE traffic
    27/06/14 12.18.22,000 kernel[0]: 1.035523: Use hw queue 1 for WME_AC_BK traffic
    27/06/14 12.18.22,000 kernel[0]: 1.035528: Use hw queue 2 for WME_AC_VI traffic
    27/06/14 12.18.22,000 kernel[0]: 1.035533: Use hw queue 3 for WME_AC_VO traffic
    27/06/14 12.18.22,000 kernel[0]: 1.035538: Use hw queue 8 for CAB traffic
    27/06/14 12.18.22,000 kernel[0]: 1.035543: Use hw queue 9 for beacons
    27/06/14 12.18.22,000 kernel[0]: 1.035593: wlan_vap_create : enter. devhandle=0xaceef6b0, opmode=IEEE80211_M_STA, flags=0x1
    27/06/14 12.18.22,000 kernel[0]: 1.035627: wlan_vap_create : exit. devhandle=0xaceef6b0, opmode=IEEE80211_M_STA, flags=0x1.
    27/06/14 12.18.20,336 com.apple.launchd[1]: *** launchd[1] has started up. ***
    27/06/14 12.18.22,000 kernel[0]: 1.035655: ATH tunables:
    27/06/14 12.18.22,000 kernel[0]: 1.035658:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    27/06/14 12.18.20,336 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    27/06/14 12.18.22,000 kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    27/06/14 12.18.22,646 com.apple.SecurityServer[14]: Session 100000 created
    27/06/14 12.18.22,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    27/06/14 12.18.22,000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    27/06/14 12.18.22,812 com.apple.SecurityServer[14]: Entering service
    27/06/14 12.18.22,855 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    27/06/14 12.18.22,000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    27/06/14 12.18.22,878 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    27/06/14 12.18.22,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    27/06/14 12.18.22,000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    27/06/14 12.18.22,000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    27/06/14 12.18.22,000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    27/06/14 12.18.22,000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    27/06/14 12.18.22,000 kernel[0]: Previous Shutdown Cause: 5
    27/06/14 12.18.22,000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    27/06/14 12.18.22,000 kernel[0]: IOBluetoothUSBDFU::probe
    27/06/14 12.18.22,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8215 FirmwareVersion - 0x0207
    27/06/14 12.18.22,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x0c00 ****
    27/06/14 12.18.22,000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x0c00 ****
    27/06/14 12.18.22,000 kernel[0]: init
    27/06/14 12.18.22,000 kernel[0]: probe
    27/06/14 12.18.22,000 kernel[0]: start
    27/06/14 12.18.22,000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x0c00
    27/06/14 12.18.22,000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    27/06/14 12.18.22,000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    27/06/14 12.18.22,000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x43c0 -- 0x6000 -- 0x0c00 ****
    27/06/14 12.18.22,000 kernel[0]: hfs: mounted Macintosh HD 2 on device disk1s2
    27/06/14 12.18.23,000 kernel[0]: DSMOS has arrived
    27/06/14 12.18.23,102 mDNSResponder[49]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    27/06/14 12.18.23,112 networkd[48]: networkd.48 built Aug 24 2013 22:08:46
    27/06/14 12.18.23,200 systemkeychain[53]: done file: /var/run/systemkeychaincheck.done
    27/06/14 12.18.23,213 mDNSResponder[49]: D2D_IPC: Loaded
    27/06/14 12.18.23,213 mDNSResponder[49]: D2DInitialize succeeded
    27/06/14 12.18.23,215 mDNSResponder[49]:   4: Listening for incoming Unix Domain Socket client requests
    27/06/14 12.18.23,218 mDNSResponder[49]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDA4B004760 Clauss-iMac-580.local. (Addr) that's already in the list
    27/06/14 12.18.23,218 mDNSResponder[49]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDA4B004BF0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    27/06/14 12.18.23,218 mDNSResponder[49]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDA4B007B60 Clauss-iMac-580.local. (AAAA) that's already in the list
    27/06/14 12.18.23,219 mDNSResponder[49]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FDA4B007FF0 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    27/06/14 12.18.23,000 kernel[0]: [AGPM Controller] build GPUDict by Vendor1002Device6720
    27/06/14 12.18.23,000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    27/06/14 12.18.23,379 configd[18]: dhcp_arp_router: en1 SSID unavailable
    27/06/14 12.18.23,388 configd[18]: setting hostname to "Clauss-iMac-580.local"
    27/06/14 12.18.23,395 configd[18]: network changed: DNS*
    27/06/14 12.18.23,000 kernel[0]: en4: promiscuous mode enable succeeded
    27/06/14 12.18.23,000 kernel[0]: en3: promiscuous mode enable succeeded
    27/06/14 12.18.23,421 com.apple.launchd[1]: (com.splashtop.streamer-srioframebuffer[112]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    27/06/14 12.18.23,421 com.apple.launchd[1]: (com.splashtop.streamer-srioframebuffer[112]) Job failed to exec(3) for weird reason: 2
    27/06/14 12.18.23,421 com.apple.launchd[1]: (com.splashtop.streamer-daemon[113]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    27/06/14 12.18.23,421 com.apple.launchd[1]: (com.splashtop.streamer-daemon[113]) Job failed to exec(3) for weird reason: 2
    27/06/14 12.18.23,441 hidd[96]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    27/06/14 12.18.23,441 hidd[96]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    27/06/14 12.18.23,000 kernel[0]: VM Swap Subsystem is ON
    27/06/14 12.18.23,469 com.apple.usbmuxd[73]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    27/06/14 12.18.23,542 loginwindow[91]: Login Window Application Started
    27/06/14 12.18.23,588 digest-service[117]: label: default
    27/06/14 12.18.23,588 digest-service[117]: dbname: od:/Local/Default
    27/06/14 12.18.23,588 digest-service[117]: mkey_file: /var/db/krb5kdc/m-key
    27/06/14 12.18.23,588 digest-service[117]: acl_file: /var/db/krb5kdc/kadmind.acl
    27/06/14 12.18.23,615 awacsd[107]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    27/06/14 12.18.23,618 WindowServer[118]: Server is starting up
    27/06/14 12.18.23,625 mds[88]: (Normal) FMW: FMW 0 0
    27/06/14 12.18.23,627 airportd[111]: airportdProcessDLILEvent: en1 attached (up)
    27/06/14 12.18.23,000 kernel[0]: AtherosNewma40P2PInterface::init name <p2p0> role 1
    27/06/14 12.18.23,000 kernel[0]: AtherosNewma40P2PInterface::init() <p2p> role 1
    27/06/14 12.18.23,629 WindowServer[118]: Session 256 retained (2 references)
    27/06/14 12.18.23,629 WindowServer[118]: Session 256 released (1 references)
    27/06/14 12.18.23,633 awacsd[107]: InnerStore CopyAllZones: no info in Dynamic Store
    27/06/14 12.18.23,636 digest-service[117]: digest-request: uid=0
    27/06/14 12.18.23,646 apsd[109]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    27/06/14 12.18.23,652 WindowServer[118]: Session 256 retained (2 references)
    27/06/14 12.18.23,654 WindowServer[118]: init_page_flip: page flip mode is on
    27/06/14 12.18.23,000 kernel[0]: 3.925542: performCountryCodeOperation: Not connected, scan in progress[0]
    27/06/14 12.18.23,000 kernel[0]: 3.926379: setWOW_PARAMETERS:wowevents = 2(1)
    27/06/14 12.18.23,670 locationd[93]: NBB-Could not get UDID for stable refill timing, falling back on random
    27/06/14 12.18.23,679 digest-service[117]: digest-request: netr probe 0
    27/06/14 12.18.23,679 digest-service[117]: digest-request: init request
    27/06/14 12.18.23,687 digest-service[117]: digest-request: init return domain: BUILTIN server: CLAUSS-IMAC-580 indomain was: <NULL>
    27/06/14 12.18.23,739 locationd[93]: Location icon should now be in state 'Inactive'
    27/06/14 12.18.23,000 kernel[0]: en1: 802.11d country code set to 'DK '.
    27/06/14 12.18.23,000 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140
    27/06/14 12.18.24,000 kernel[0]: en1: BSSID changed to 90:72:40:1b:df:0e
    27/06/14 12.18.24,000 kernel[0]: AirPort: Link Up on en1
    27/06/14 12.18.24,000 kernel[0]: 5.098715: apple80211Request[10514] Unsupported ioctl 181
    27/06/14 12.18.24,000 kernel[0]: en1: BSSID changed to 90:72:40:1b:df:0e
    27/06/14 12.18.24,000 kernel[0]: AirPort: RSN handshake complete on en1
    27/06/14 12.18.24,858 WindowServer[118]: Found 39 modes for display 0x00000000 [39, 0]
    27/06/14 12.18.24,873 WindowServer[118]: Found 1 modes for display 0x00000000 [1, 0]
    27/06/14 12.18.24,890 WindowServer[118]: Found 1 modes for display 0x00000000 [1, 0]
    27/06/14 12.18.24,907 WindowServer[118]: Found 1 modes for display 0x00000000 [1, 0]
    27/06/14 12.18.24,923 WindowServer[118]: Found 1 modes for display 0x00000000 [1, 0]
    27/06/14 12.18.24,924 WindowServer[118]: mux_initialize: Couldn't find any matches
    27/06/14 12.18.24,926 WindowServer[118]: Found 39 modes for display 0x00000000 [39, 0]
    27/06/14 12.18.24,928 WindowServer[118]: Found 1 modes for display 0x00000000 [1, 0]
    27/06/14 12.18.24,928 WindowServer[118]: Found 1 modes for display 0x00000000 [1, 0]
    27/06/14 12.18.24,928 WindowServer[118]: Found 1 modes for display 0x00000000 [1, 0]
    27/06/14 12.18.24,929 WindowServer[118]: Found 1 modes for display 0x00000000 [1, 0]
    27/06/14 12.18.24,953 WindowServer[118]: WSMachineUsesNewStyleMirroring: false
    27/06/14 12.18.24,953 WindowServer[118]: Display 0x042801c0: GL mask 0x1; bounds (0, 0)[2560 x 1440], 39 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a007, S/N 0, Unit 0, Rotation 0
    UUID 0x48812e138a44e4837a3cc675a90db8b5
    27/06/14 12.18.24,953 WindowServer[118]: Display 0x003f0041: GL mask 0x20; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 5, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    27/06/14 12.18.24,954 WindowServer[118]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    27/06/14 12.18.24,954 WindowServer[118]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    27/06/14 12.18.24,954 WindowServer[118]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    27/06/14 12.18.24,954 WindowServer[118]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    27/06/14 12.18.24,954 WindowServer[118]: WSSetWindowTransform: Singular matrix
    27/06/14 12.18.24,954 WindowServer[118]: WSSetWindowTransform: Singular matrix
    27/06/14 12.18.24,954 WindowServer[118]: WSSetWindowTransform: Singular matrix
    27/06/14 12.18.24,955 WindowServer[118]: WSSetWindowTransform: Singular matrix
    27/06/14 12.18.24,957 WindowServer[118]: Display 0x042801c0: GL mask 0x1; bounds (0, 0)[2560 x 1440], 39 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a007, S/N 0, Unit 0, Rotation 0
    UUID 0x48812e138a44e4837a3cc675a90db8b5
    27/06/14 12.18.24,957 WindowServer[118]: Display 0x003f0041: GL mask 0x20; bounds (3584, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 5, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    27/06/14 12.18.24,957 WindowServer[118]: Display 0x003f0040: GL mask 0x10; bounds (3585, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    27/06/14 12.18.24,957 WindowServer[118]: Display 0x003f003f: GL mask 0x8; bounds (3586, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    27/06/14 12.18.24,957 WindowServer[118]: Display 0x003f003e: GL mask 0x4; bounds (3587, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    27/06/14 12.18.24,957 WindowServer[118]: Display 0x003f003d: GL mask 0x2; bounds (3588, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    27/06/14 12.18.24,958 WindowServer[118]: CGXPerformInitialDisplayConfiguration
    27/06/14 12.18.24,958 WindowServer[118]:   Display 0x042801c0: Unit 0; Vendor 0x610 Model 0xa007 S/N 0 Dimensions 23.50 x 13.23; online enabled built-in, Bounds (0,0)[2560 x 1440], Rotation 0, Resolution 1
    27/06/14 12.18.24,958 WindowServer[118]:   Display 0x003f0041: Unit 5; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3584,0)[1 x 1], Rotation 0, Resolution 1
    27/06/14 12.18.24,958 WindowServer[118]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3585,0)[1 x 1], Rotation 0, Resolution 1
    27/06/14 12.18.24,958 WindowServer[118]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3586,0)[1 x 1], Rotation 0, Resolution 1
    27/06/14 12.18.24,958 WindowServer[118]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3587,0)[1 x 1], Rotation 0, Resolution 1
    27/06/14 12.18.24,958 WindowServer[118]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3588,0)[1 x 1], Rotation 0, Resolution 1
    27/06/14 12.18.24,966 WindowServer[118]: GLCompositor: GL renderer id 0x01021b05, GL mask 0x0000003f, accelerator 0x000035ef, unit 0, caps QEX|MIPMAP, vram 1024 MB
    27/06/14 12.18.24,967 WindowServer[118]: GLCompositor: GL renderer id 0x01021b05, GL mask 0x0000003f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    27/06/14 12.18.24,967 WindowServer[118]: GLCompositor enabled for tile size [256 x 256]
    27/06/14 12.18.24,967 WindowServer[118]: CGXGLInitMipMap: mip map mode is on
    27/06/14 12.18.24,976 loginwindow[91]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    27/06/14 12.18.25,000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    27/06/14 12.18.25,000 kernel[0]: [BNBMouseDevice::init][80.14] init is complete
    27/06/14 12.18.25,177 WindowServer[118]: Display 0x042801c0: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    27/06/14 12.18.25,196 launchctl[131]: com.apple.findmymacmessenger: Already loaded
    27/06/14 12.18.25,196 com.apple.launchd[1]: (com.splashtop.streamer-for-root[137]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    27/06/14 12.18.25,196 com.apple.launchd[1]: (com.splashtop.streamer-for-root[137]) Job failed to exec(3) for weird reason: 2
    27/06/14 12.18.25,000 kernel[0]: [BNBMouseDevice::handleStart][80.14] returning 1
    27/06/14 12.18.25,000 kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    27/06/14 12.18.25,212 com.apple.SecurityServer[14]: Session 100005 created
    27/06/14 12.18.25,250 UserEventAgent[132]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    27/06/14 12.18.25,267 revisiond[81]: "/.vol/16777222/2/.DocumentRevisions-V100/.cs/ChunkStorage/0/0/0/254" does not exist, rowID:254
    27/06/14 12.18.25,267 revisiond[81]: There was a problem compacting SF ftRowId:254, rc:-1
    27/06/14 12.18.25,281 loginwindow[91]: Setting the initial value of the magsave brightness level 1
    27/06/14 12.18.25,309 loginwindow[91]: Login Window Started Security Agent
    27/06/14 12.18.25,369 SecurityAgent[140]: This is the first run
    27/06/14 12.18.25,369 SecurityAgent[140]: MacBuddy was run = 0
    27/06/14 12.18.25,392 WindowServer[118]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042801c0 device: 0x7f815041c430  isBackBuffered: 1 numComp: 3 numDisp: 3
    27/06/14 12.18.25,392 WindowServer[118]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7f815041c430) - enabling OpenGL
    27/06/14 12.18.25,000 kernel[0]: [AppleMultitouchDevice::start] entered
    27/06/14 12.18.25,923 parentalcontrolsd[150]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    27/06/14 12.18.26,955 WindowServer[118]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    27/06/14 12.18.26,973 WindowServer[118]: Display 0x042801c0: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    27/06/14 12.18.26,983 WindowServer[118]: Display 0x042801c0: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    27/06/14 12.18.27,034 configd[18]: network changed: DNS* Proxy
    27/06/14 12.18.27,035 UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Apple Network f776e7' making interface primary (protected network)
    27/06/14 12.18.27,035 UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    27/06/14 12.18.27,037 UserEventAgent[11]: Captive: en1: Probing 'Apple Network f776e7'
    27/06/14 12.18.27,039 configd[18]: network changed: v4(en1!:10.0.1.16) DNS+ Proxy+ SMB+
    27/06/14 12.18.27,137 UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    27/06/14 12.18.28,000 kernel[0]: [BNBTrackpadDevice::init][80.14] init is complete
    27/06/14 12.18.28,000 kernel[0]: [BNBTrackpadDevice::handleStart][80.14] returning 1
    27/06/14 12.18.28,000 kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    27/06/14 12.18.28,000 kernel[0]: [AppleMultitouchDevice::start] entered
    27/06/14 12.18.29,019 ntpd[68]: proto: precision = 1.000 usec
    27/06/14 12.18.34,000 kernel[0]: en1: BSSID changed to 90:72:40:1b:df:0f
    27/06/14 12.18.34,000 kernel[0]: AirPort: RSN handshake complete on en1
    27/06/14 12.18.38,390 awacsd[107]: Exiting
    27/06/14 12.18.41,000 kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,4301,0de1,0300,c1e1,0c00]
    27/06/14 12.18.44,733 configd[18]: network changed: v4(en0+:192.168.16.12, en1) DNS! Proxy! SMB!
    27/06/14 12.18.52,108 SecurityAgent[140]: User info context values set for clausdonvang
    27/06/14 12.18.52,286 SecurityAgent[140]: Login Window login proceeding
    27/06/14 12.18.52,478 loginwindow[91]: Login Window - Returned from Security Agent
    27/06/14 12.18.52,502 loginwindow[91]: USER_PROCESS: 91 console
    27/06/14 12.18.52,507 airportd[111]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.18.52,519 airportd[111]: _doAutoJoin: Already associated to “Apple Network f776e7”. Bailing on auto-join.
    27/06/14 12.18.52,000 kernel[0]: AppleKeyStore:Sending lock change 0
    27/06/14 12.18.52,775 com.apple.launchd.peruser.501[164]: Background: Aqua: Registering new GUI session.
    27/06/14 12.18.52,893 com.apple.launchd.peruser.501[164]: (com.spotify.webhelper) Unknown key: SpotifyPath
    27/06/14 12.18.52,894 com.apple.launchd.peruser.501[164]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    27/06/14 12.18.52,895 com.apple.launchd.peruser.501[164]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    27/06/14 12.18.52,897 launchctl[166]: com.apple.pluginkit.pkd: Already loaded
    27/06/14 12.18.52,897 launchctl[166]: com.apple.sbd: Already loaded
    27/06/14 12.18.52,942 distnoted[168]: # distnote server agent  absolute time: 33.514528208   civil time: Fri Jun 27 12:18:52 2014   pid: 168 uid: 501  root: no
    27/06/14 12.18.53,334 UserEventAgent[167]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.18.53,344 UserEventAgent[167]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.18.53,345 UserEventAgent[167]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    27/06/14 12.18.53,408 WindowServer[118]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    27/06/14 12.18.53,428 WindowServer[118]: Display 0x042801c0: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    27/06/14 12.18.53,831 sharingd[186]: Starting Up...
    27/06/14 12.18.53,942 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    27/06/14 12.18.53,942 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    27/06/14 12.18.53,942 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    27/06/14 12.18.53,942 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    27/06/14 12.18.53,943 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    27/06/14 12.18.53,943 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    27/06/14 12.18.53,943 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    27/06/14 12.18.53,943 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    27/06/14 12.18.53,943 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    27/06/14 12.18.53,943 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    27/06/14 12.18.53,943 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    27/06/14 12.18.53,943 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    27/06/14 12.18.53,943 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    27/06/14 12.18.53,943 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    27/06/14 12.18.53,957 com.apple.audio.DriverHelper[190]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    27/06/14 12.18.53,958 com.apple.audio.DriverHelper[190]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    27/06/14 12.18.53,958 com.apple.audio.DriverHelper[190]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    27/06/14 12.18.54,534 xpcproxy[202]: assertion failed: 13D65: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    27/06/14 12.18.54,562 SystemUIServer[178]: Cannot find executable for CFBundle 0x7ffb6d003a90 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    27/06/14 12.18.54,582 com.apple.IconServicesAgent[203]: IconServicesAgent launched.
    27/06/14 12.18.54,674 SystemUIServer[178]: Cannot find executable for CFBundle 0x7ffb6d004880 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    27/06/14 12.18.54,683 SystemUIServer[178]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.18.54,941 SystemUIServer[178]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.18.55,044 coreaudiod[184]: 2014-06-27 12:18:55.043757 PM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2
    27/06/14 12.18.55,357 com.apple.SecurityServer[14]: Session 100008 created
    27/06/14 12.18.55,403 xpcproxy[212]: assertion failed: 13D65: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    27/06/14 12.18.55,501 apsd[204]: Unrecognized leaf certificate
    27/06/14 12.18.57,150 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.18.57,179 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.18.57,324 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.18.57,347 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.18.57,420 com.apple.launchd.peruser.501[164]: (com.splashtop.streamer-for-user[233]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    27/06/14 12.18.57,420 com.apple.launchd.peruser.501[164]: (com.splashtop.streamer-for-user[233]) Job failed to exec(3) for weird reason: 2
    27/06/14 12.18.57,432 com.apple.IconServicesAgent[203]: main Failed to composit image for binding VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x175] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN.
    27/06/14 12.18.57,433 quicklookd[214]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN request size:128 scale: 1
    27/06/14 12.18.57,462 com.apple.IconServicesAgent[203]: main Failed to composit image for binding VariantBinding [0x25d] flags: 0x8 binding: FileInfoBinding [0x335] - extension: doc, UTI: com.microsoft.word.doc, fileType: W8BN.
    27/06/14 12.18.57,463 quicklookd[214]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: doc, UTI: com.microsoft.word.doc, fileType: W8BN request size:128 scale: 1
    27/06/14 12.18.57,972 accountsd[242]: assertion failed: 13D65: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    27/06/14 12.18.58,016 com.apple.SecurityServer[14]: Session 100012 created
    27/06/14 12.18.58,406 talagent[176]: CGSBindSurface: Invalid window 0x31
    27/06/14 12.18.58,407 WindowServer[118]: _CGXWindowRightsRelinquish: Invalid window 0x31
    27/06/14 12.18.58,407 talagent[176]: CGSConnectionRelinquishWindowRights(cid, result, reservedRights): CGError 1001 on line 875
    27/06/14 12.18.58,408 talagent[176]: CGSBindSurface: Invalid window 0x2e
    27/06/14 12.18.58,408 WindowServer[118]: _CGXWindowRightsRelinquish: Invalid window 0x2e
    27/06/14 12.18.58,408 talagent[176]: CGSConnectionRelinquishWindowRights(cid, result, reservedRights): CGError 1001 on line 875
    27/06/14 12.18.58,408 WindowServer[118]: CGXReleaseWindowList: Invalid window 49 (index 0/2)
    27/06/14 12.18.58,409 WindowServer[118]: CGXReleaseWindowList: Invalid window 46 (index 1/2)
    27/06/14 12.18.58,572 com.apple.launchd.peruser.501[164]: (com.apple.mrt.uiagent[222]) Exited with code: 255
    27/06/14 12.18.58,000 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=238[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    27/06/14 12.18.59,913 WiFiKeychainProxy[218]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    27/06/14 12.18.59,914 WiFiKeychainProxy[218]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    27/06/14 12.18.59,914 com.apple.IconServicesAgent[203]: main Failed to composit image for binding VariantBinding [0x471] flags: 0x8 binding: FileInfoBinding [0x3e1] - extension: pdf, UTI: com.adobe.pdf, fileType: ????.
    27/06/14 12.18.59,915 quicklookd[214]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: pdf, UTI: com.adobe.pdf, fileType: ???? request size:128 scale: 1
    27/06/14 12.18.59,997 Google Drive[249]: PyObjCPointer created: at 0xa0930438 of type {__CFBoolean=}
    27/06/14 12.18.59,997 Google Drive[249]: PyObjCPointer created: at 0xa0930430 of type {__CFBoolean=}
    27/06/14 12.18.59,998 Google Drive[249]: PyObjCPointer created: at 0xa0930440 of type {__CFNumber=}
    27/06/14 12.18.59,998 Google Drive[249]: PyObjCPointer created: at 0xa0930450 of type {__CFNumber=}
    27/06/14 12.18.59,998 Google Drive[249]: PyObjCPointer created: at 0xa0930460 of type {__CFNumber=}
    27/06/14 12.19.00,751 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.19.00,795 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.19.01,016 com.apple.launchd.peruser.501[164]: (com.apple.appleseed.seedusaged) Throttling respawn: Will start in 7 seconds
    27/06/14 12.19.01,804 com.apple.IconServicesAgent[203]: main Failed to composit image for binding VariantBinding [0x473] flags: 0x8 binding: FileInfoBinding [0x253] - extension: jpg, UTI: public.jpeg, fileType: JPEG.
    27/06/14 12.19.01,804 quicklookd[214]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x803] flags: 0x8 binding: FileInfoBinding [0x703] - extension: jpg, UTI: public.jpeg, fileType: JPEG request size:16 scale: 1
    27/06/14 12.19.01,889 com.apple.IconServicesAgent[203]: main Failed to composit image for binding VariantBinding [0x1c1] flags: 0x8 binding: FileInfoBinding [0x3e3] - extension: JPG, UTI: public.jpeg, fileType: ????.
    27/06/14 12.19.01,889 quicklookd[214]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xa03] flags: 0x8 binding: FileInfoBinding [0x903] - extension: JPG, UTI: public.jpeg, fileType: ???? request size:16 scale: 1
    27/06/14 12.19.02,161 sandboxd[268]: ([217]) EvernoteHelper(217) deny mach-lookup com.apple.locationd.desktop.synchronous
    27/06/14 12.19.02,446 fseventsd[46]: requested timestamp is prior to the earliest log file.  setting event-id to zero
    27/06/14 12.19.02,512 DGAgent[237]: Resolved DG link from bookmark. /Applications/Drive Genius 3.app
    27/06/14 12.19.03,000 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=279[ksadmin] final status 0x0, allowing (remove VALID) page
    27/06/14 12.19.03,181 Google Drive[249]: GsyncAppDeletegate.py : Finder debug level logs : False
    27/06/14 12.19.03,684 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.19.04,286 com.apple.time[167]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    27/06/14 12.19.04,289 com.apple.time[167]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    27/06/14 12.19.05,008 com.apple.dock.extra[213]: <NSXPCConnection: 0x7ff9126024d0>: received an undecodable message (no exported object to receive message). Dropping message.
    27/06/14 12.19.05,029 com.apple.SecurityServer[14]: Session 100013 created
    27/06/14 12.19.05,915 LKDCHelper[292]: Starting (uid=501)
    27/06/14 12.19.06,408 SLRuntimeLoader[265]: clip: empty path.
    27/06/14 12.19.06,409 SLRuntimeLoader[265]: clip: empty path.
    27/06/14 12.19.06,563 com.apple.IconServicesAgent[203]: main Failed to composit image for binding VariantBinding [0x293] flags: 0x8 binding: FileInfoBinding [0x325] - extension: JPG, UTI: public.jpeg, fileType: ????.
    27/06/14 12.19.06,564 quicklookd[214]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xc03] flags: 0x8 binding: FileInfoBinding [0xb03] - extension: JPG, UTI: public.jpeg, fileType: ???? request size:16 scale: 1
    27/06/14 12.19.06,565 com.apple.IconServicesAgent[203]: main Failed to composit image for binding VariantBinding [0x295] flags: 0x8 binding: FileInfoBinding [0x107] - extension: MOV, UTI: com.apple.quicktime-movie, fileType: ????.
    27/06/14 12.19.06,565 quicklookd[214]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xe03] flags: 0x8 binding: FileInfoBinding [0xd03] - extension: MOV, UTI: com.apple.quicktime-movie, fileType: ???? request size:16 scale: 1
    27/06/14 12.19.06,567 com.apple.IconServicesAgent[203]: main Failed to composit image for binding VariantBinding [0x297] flags: 0x8 binding: FileInfoBinding [0x327] - extension: key, UTI: com.apple.iwork.keynote.key, fileType: ????.
    27/06/14 12.19.06,567 quicklookd[214]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1003] flags: 0x8 binding: FileInfoBinding [0xf03] - extension: key, UTI: com.apple.iwork.keynote.key, fileType: ???? request size:16 scale: 1
    27/06/14 12.19.06,629 imagent[225]: [Warning] Services all disappeared, removing all dependent devices
    27/06/14 12.19.07,995 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.19.08,542 Microsoft Database Daemon[248]: CGSReenableUpdate: unbalanced enable/disable update.
    27/06/14 12.19.08,544 Microsoft Database Daemon[248]: Backtrace (at 49.1161):
    27/06/14 12.19.08,544 Microsoft Database Daemon[248]: CGSReenableUpdate:  0   CoreGraphics                        0x91bab9e7 CGSBacktraceCreate + 69
    27/06/14 12.19.08,544 Microsoft Database Daemon[248]: CGSReenableUpdate:  1   CoreGraphics                        0x91d9e710 CGSLogBacktrace + 12
    27/06/14 12.19.08,544 Microsoft Database Daemon[248]: CGSReenableUpdate:  2   CoreGraphics                        0x91c5d0b3 _ZN16CGSUpdateManager20enable_update_legacyEv + 91
    27/06/14 12.19.08,544 Microsoft Database Daemon[248]: CGSReenableUpdate:  3   CoreGraphics                        0x91c5d04f CGSReenableUpdate + 42
    27/06/14 12.19.08,545 Microsoft Database Daemon[248]: CGSReenableUpdate:  4   HIToolbox                           0x990bff23 EnableScreenUpdates + 19
    27/06/14 12.19.08,545 Microsoft Database Daemon[248]: CGSReenableUpdate:  5   Microsoft Database Daemon           0x001332ee _Z22SwapImapUIDHostToStoreP8CImapUID + 4068
    27/06/14 12.19.08,545 Microsoft Database Daemon[248]: CGSReenableUpdate:  6   Microsoft Database Daemon           0x000e07fc _ZN13CSharedMemPtrIN24DatabaseBroadcastMessage25FolderCountChangedMessageEED2Ev + 8092
    27/06/14 12.19.08,545 Microsoft Database Daemon[248]: CGSReenableUpdate:  7   Microsoft Database Daemon           0x000e750a _ZN13CSharedMemPtrIN24DatabaseBroadcastMessage25FolderCountChangedMessageEED2Ev + 36010
    27/06/14 12.19.08,545 Microsoft Database Daemon[248]: CGSReenableUpdate:  8   Microsoft Database Daemon           0x000e760f _ZN13CSharedMemPtrIN24DatabaseBroadcastMessage25FolderCountChangedMessageEED2Ev + 36271
    27/06/14 12.19.08,545 Microsoft Database Daemon[248]: CGSReenableUpdate:  9   Microsoft Database Daemon           0x000f3c72 _ZN3CPT10CountedRefIPK10__CFStringN3CFT16CFTypeRef_traitsEEaSERKS6_ + 4752
    27/06/14 12.19.08,545 Microsoft Database Daemon[248]: CGSReenableUpdate:  10  Microsoft Database Daemon           0x000f447e _ZN3CPT10CountedRefIPK10__CFStringN3CFT16CFTypeRef_traitsEEaSERKS6_ + 6812
    27/06/14 12.19.08,545 Microsoft Database Daemon[248]: CGSReenableUpdate:  11  Microsoft Database Daemon           0x000b2086 _Z28SwapDBTaskClusterStoreToHostP22OpaqueFMSwapToHostDatam + 7580
    27/06/14 12.19.08,545 Microsoft Database Daemon[248]: CGSReenableUpdate:  12  Microsoft Database Daemon           0x000b2bd4 _Z28SwapDBTaskClusterStoreToHostP22OpaqueFMSwapToHostDatam + 10474
    27/06/14 12.19.08,545 Microsoft Database Daemon[248]: CGSReenableUpdate:  13  Microsoft Database Daemon           0x000541ea _ZN5boost4bindIllllllllllNS_3_bi3argILi1EEENS2_ILi2EEENS2_ILi3EEENS2_ILi4EEENS2 _ILi5EEENS2_ILi6EEENS2_ILi7EEENS2_ILi8EEENS2_ILi9EEEEENS1_6bind_tIT_PFSD_T0_T1_T 2_T3_T4_T5_T6_T7_T8_ENS1_9list_av_9IT9_T10_T11_T12_T13_T14_T15_T16_T17_E4typeEEE SO_SQ_SR_SS_ST_SU_SV_SW_SX_SY_ + 5343
    27/06/14 12.19.08,586 Google Drive[249]: CoreText performance note: Client called CTFontCreateWithName() using name ".Lucida Grande UI" and got font with PostScript name ".LucidaGrandeUI". For best performance, only use PostScript names when calling this API.
    27/06/14 12.19.08,587 Google Drive[249]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    27/06/14 12.19.09,384 Dropbox[250]: PyObjCPointer created: at 0xbaffc88 of type {OpaqueJSContext=}
    27/06/14 12.19.09,773 parentalcontrolsd[308]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    27/06/14 12.19.09,000 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=309[ksadmin] final status 0x0, allowing (remove VALID) page
    27/06/14 12.19.10,068 sandboxd[268]: ([298]) storeagent(298) deny file-read-data /Volumes/Macintosh HD 2/clausdonvang/Library/Preferences/com.apple.WebFoundation.plist
    27/06/14 12.19.10,521 imagent[225]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    27/06/14 12.19.10,521 imagent[225]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    27/06/14 12.19.10,530 com.apple.internetaccounts[212]: [Warning] Services all disappeared, removing all dependent devices
    27/06/14 12.19.10,588 com.apple.NotesMigratorService[311]: Joined Aqua audit session
    27/06/14 12.19.13,903 soagent[208]: [Warning] Services all disappeared, removing all dependent devices
    27/06/14 12.19.13,906 soagent[208]: No active accounts, killing soagent in 10 seconds
    27/06/14 12.19.13,907 soagent[208]: No active accounts, killing soagent in 10 seconds
    27/06/14 12.19.15,000 kernel[0]: fsevents: watcher dbfseventsd (pid: 320) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    27/06/14 12.19.16,855 usernoted[180]: Notification (0) for presented_notifications missing for app_id 16!
    27/06/14 12.19.18,983 com.apple.SecurityServer[14]: Session 100003 created
    27/06/14 12.19.21,157 Dropbox[250]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    27/06/14 12.19.23,907 soagent[208]: Killing soagent.
    27/06/14 12.19.23,907 NotificationCenter[201]: SOHelperCenter main connection interrupted
    27/06/14 12.19.23,907 com.apple.dock.extra[213]: SOHelperCenter main connection interrupted
    27/06/14 12.19.23,908 imagent[225]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:208)
    27/06/14 12.19.23,908 imagent[225]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:208)
    27/06/14 12.19.28,420 Microsoft Database Daemon[248]: OTAtomicAdd32 is deprecated and will be removed soon.  Please stop using it.
    27/06/14 12.19.39,698 com.apple.time[167]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    27/06/14 12.19.51,295 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.19.52,718 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.19.57,108 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.19.59,082 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.20.00,347 Finder[179]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.20.26,007 VMware Fusion Helper[246]: BUG in libdispatch client: kevent[EVFILT_WRITE] delete: "No such file or directory" - 0x2
    27/06/14 12.20.26,025 VMware Fusion Start Menu[294]: BUG in libdispatch client: kevent[EVFILT_WRITE] delete: "No such file or directory" - 0x2
    27/06/14 12.20.26,379 com.apple.kextd[12]: kext com.vmware.kext.vmx86  9005829000 is in exception list, allowing to load
    27/06/14 12.20.26,393 com.apple.kextd[12]: kext com.vmware.kext.vmx86  9005829000 is in exception list, allowing to load
    27/06/14 12.20.26,000 kernel[0]: vmmon: Loaded @ 0xffffff7f8e8b0740: Info 0xffffff7f8e8bba20 Name com.vmware.kext.vmx86 Version 0090.05.82 build-900582 at Nov  6 2012 16:23:45
    27/06/14 12.20.26,000 kernel[0]: vmmon: Service start
    27/06/14 12.20.26,000 kernel[0]: vmmon: Instrumenting bug 151304...
    27/06/14 12.20.26,000 kernel[0]: vmmon: Initial HV check: anyNotCapable=0 anyUnlocked=0 anyEnabled=1 anyDvmmison: abTimeledr =thr0ead started.
    27/06/14 12.20.26,000 kernel[0]: vmmon: HV check: anyNotCapable=0 anyUnlocked=0 anyEnabled=1 anyDisabled=0
    27/06/14 12.20.26,000 kernel[0]: vmmon: Cycles 106
    27/06/14 12.20.26,000 kernel[0]: vmmon: Module initialized.
    27/06/14 12.20.26,000 kernel[0]: vmmon: Registering for power state changes
    27/06/14 12.20.26,453 com.apple.kextd[12]: kext com.vmware.kext.vmci  9001019000 is in exception list, allowing to load
    27/06/14 12.20.26,467 com.apple.kextd[12]: kext com.vmware.kext.vmci  9001019000 is in exception list, allowing to load
    27/06/14 12.20.26,000 kernel[0]: vmci: Loaded @ 0xffffff7f8e8bf06e: Info 0xffffff7f8e8c9a60 Name com.vmware.kext.vmci Version 90.1.1 build-900582 at Nov  6 2012 16:23:52
    27/06/14 12.20.26,000 kernel[0]: vmci: Initializing module.
    27/06/14 12.20.26,000 kernel[0]: vmci: VMCI: shared components initialized.
    27/06/14 12.20.26,000 kernel[0]: vmci: VMCI: host components initialized.
    27/06/14 12.20.26,000 kernel[0]: vmci: Module initialized.
    27/06/14 12.20.26,000 kernel[0]: vmci: Begin helper queue thread.
    27/06/14 12.20.26,526 com.apple.kextd[12]: kext com.vmware.kext.vsockets  9001059000 is in exception list, allowing to load
    27/06/14 12.20.26,541 com.apple.kextd[12]: kext com.vmware.kext.vsockets  9001059000 is in exception list, allowing to load
    27/06/14 12.20.26,000 kernel[0]: vsock: Loaded @ 0xffffff7f8e8cdd97: Info 0xffffff7f8e8d9d80 Name com.vmware.kext.vsockets Version 90.1.5 build-900582 at Nov  6 2012 16:23:59
    27/06/14 12.20.26,000 kernel[0]: vsock: Initializing module.
    27/06/14 12.20.26,000 kernel[0]: vsock: Begin workloop.
    27/06/14 12.20.26,000 kernel[0]: vsock: Module initialized.
    27/06/14 12.20.26,602 com.apple.kextd[12]: kext com.vmware.kext.vmioplug  9005829000 is in exception list, allowing to load
    27/06/14 12.20.26,615 com.apple.kextd[12]: kext com.vmware.kext.vmioplug  9005829000 is in exception list, allowing to load
    27/06/14 12.20.26,000 kernel[0]: vmioplug: Loaded @ 0xffffff7f8e8df149: Info 0xffffff7f8e8e47e0 Name com.vmware.kext.vmioplug Version 0090.05.82 build-900582 at Nov  6 2012 16:24:07
    27/06/14 12.20.26,715 com.apple.kextd[12]: kext com.vmware.kext.vmnet  9005829000 is in exception list, allowing to load
    27/06/14 12.20.26,727 com.apple.kextd[12]: kext com.vmware.kext.vmnet  9005829000 is in exception list, allowing to load
    27/06/14 12.20.26,000 kernel[0]: vmnet: Loaded @ 0xffffff7f8e8e5e0c: Info 0xffffff7f8e8ee040 Name com.vmware.kext.vmnet Version 0090.05.82 build-900582 at Nov  6 2012 16:24:04
    27/06/14 12.20.26,000 kernel[0]: vmnet: Initializing module.
    27/06/14 12.20.26,000 kernel[0]: vmnet: VMNet_Start allocated gOSMallocTag.
    27/06/14 12.20.26,000 kernel[0]: vmnet: VMNet_Start allocated vnetBigLock.
    27/06/14 12.20.26,000 kernel[0]: vmnet: Module initialized.
    27/06/14 12.20.26,771 vmnet-bridge[421]: UUID: Unable to open /dev/mem: No such file or directory
    27/06/14 12.20.26,784 vmnet-bridge[421]: Dynamic store changed
    27/06/14 12.20.26,000 kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff80381e4000.
    27/06/14 12.20.26,000 kernel[0]: vmnet: VMNetConnect: returning port 0xffffff80381e4000
    27/06/14 12.20.26,000 kernel[0]: vmnet: Hub 0 does not exist, allocating memory.
    27/06/14 12.20.26,000 kernel[0]: vmnet: Allocated hub 0xffffff8038d75000 for hubNum 0.
    27/06/14 12.20.26,000 kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:ef:f0:83
    27/06/14 12.20.26,000 kernel[0]: vmnet: Hub 0
    27/06/14 12.20.26,000 kernel[0]: vmnet: Port 0
    27/06/14 12.20.26,000 kernel[0]: vmnet: bridge-en0: media 20 dev 0xffffff802e3ae558 family 2
    27/06/14 12.20.26,000 kernel[0]: vmnet: bridge-en0: up
    27/06/14 12.20.26,000 kernel[0]: vmnet: bridge-en0: attached
    27/06/14 12.20.26,000 kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff80381e4000.
    27/06/14 12.20.26,784 vmnet-bridge[421]: Started bridge for 0, en0
    27/06/14 12.20.27,000 kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff8032aef600.
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNetConnect: returning port 0xffffff8032aef600
    27/06/14 12.20.27,000 kernel[0]: vmnet: Hub 1 does not exist, allocating memory.
    27/06/14 12.20.27,000 kernel[0]: vmnet: Allocated hub 0xffffff8038d66000 for hubNum 1.
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:f1:44:bd
    27/06/14 12.20.27,000 kernel[0]: vmnet: Hub 1
    27/06/14 12.20.27,000 kernel[0]: vmnet: Port 0
    27/06/14 12.20.27,000 kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff8032aef600.
    27/06/14 12.20.27,000 kernel[0]: vmnet: netif-vmnet1: Adding protocol 2.
    27/06/14 12.20.27,000 kernel[0]: vmnet: netif-vmnet1: SIOCSIFFLAGS: 0x8863
    27/06/14 12.20.27,300 UserEventAgent[167]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.20.27,000 kernel[0]: vmnet: netif-vmnet1: SIOCSIFFLAGS: 0x8863
    27/06/14 12.20.27,000 kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff8032d7c600.
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNetConnect: returning port 0xffffff8032d7c600
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:f2:e2:71
    27/06/14 12.20.27,000 kernel[0]: vmnet: Hub 1
    27/06/14 12.20.27,000 kernel[0]: vmnet: Port 0
    27/06/14 12.20.27,000 kernel[0]: vmnet: Port 1
    27/06/14 12.20.27,000 kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff8030695200.
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNetConnect: returning port 0xffffff8030695200
    27/06/14 12.20.27,000 kernel[0]: vmnet: Hub 8 does not exist, allocating memory.
    27/06/14 12.20.27,000 kernel[0]: vmnet: Allocated hub 0xffffff8038d79000 for hubNum 8.
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:fd:2f:4f
    27/06/14 12.20.27,000 kernel[0]: vmnet: Hub 8
    27/06/14 12.20.27,000 kernel[0]: vmnet: Port 0
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNetSetopt: Set link state UP
    27/06/14 12.20.27,000 kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff8032d7c800.
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNetConnect: returning port 0xffffff8032d7c800
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:fc:e5:0b
    27/06/14 12.20.27,000 kernel[0]: vmnet: Hub 8
    27/06/14 12.20.27,000 kernel[0]: vmnet: Port 0
    27/06/14 12.20.27,000 kernel[0]: vmnet: Port 1
    27/06/14 12.20.27,000 kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff8032d7c800.
    27/06/14 12.20.27,000 kernel[0]: vmnet: netif-vmnet8: Adding protocol 2.
    27/06/14 12.20.27,000 kernel[0]: vmnet: netif-vmnet8: SIOCSIFFLAGS: 0x8863
    27/06/14 12.20.27,331 UserEventAgent[167]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "1U��".
    27/06/14 12.20.27,000 kernel[0]: vmnet: netif-vmnet8: SIOCSIFFLAGS: 0x8863
    27/06/14 12.20.27,000 kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff8032d7ce00.
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNetConnect: returning port 0xffffff8032d7ce00
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:e3:66:bb
    27/06/14 12.20.27,000 kernel[0]: vmnet: Hub 8
    27/06/14 12.20.27,000 kernel[0]: vmnet: Port 0
    27/06/14 12.20.27,000 kernel[0]: vmnet: Port 1
    27/06/14 12.20.27,000 kernel[0]: vmnet: Port 2
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNetSetopt: Set link state DOWN
    27/06/14 12.20.27,000 kernel[0]: vmnet: VMNetSetopt: Set link state UP
    27/06/14 12.20.31,238 WindowServer[118]: disable_update_timeout: UI updates were forcibly disabled by application "VMware Fusion" for over 1.00 seconds. Server has re-enabled them.
    27/06/14 12.20.34,472 WindowServer[118]: common_reenable_update: UI updates were finally reenabled by application "VMware Fusion" after 4.23 seconds (server forcibly re-enabled them after 1.00 seconds)
    27/06/14 12.20.44,449 com.apple.InputMethodKit.UserDictionary[457]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  clausdonvang~B29FD91B-BC70-5FBB-94BC-095FC1C04733:UserDictionary
    Using local storage: 1
    27/06/14 12.20.44,000 kernel[0]: vmmon: offset 0: 80
    27/06/14 12.20.44,000 kernel[0]: vmmon: offset 1: 16
    27/06/14 12.20.44,000 kernel[0]: vmmon: offset 2: 56
    27/06/14 12.20.44,000 kernel[0]: vmmon: offset 3: 64
    27/06/14 12.20.44,000 kernel[0]: vmmon: offset 4: 76
    27/06/14 12.20.44,000 kernel[0]: vmmon: PTSC: initialized at 3398966000 Hz using reference clock, TSCs are synchronized.
    27/06/14 12.20.45,000 kernel[0]: vmmon: Cycles 60
    27/06/14 12.20.47,093 com.apple.InputMethodKit.UserDictionary[457]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  clausdonvang~B29FD91B-BC70-5FBB-94BC-095FC1C04733:UserDictionary
    Using local storage: 0
    27/06/14 12.21.33,000 kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff8033715600.
    27/06/14 12.21.33,000 kernel[0]: vmnet: VMNetConnect: returning port 0xffffff8033715600
    27/06/14 12.21.33,000 kernel[0]: en0: promiscuous mode enable succeeded
    27/06/14 12.21.33,000 kernel[0]: vmnet: bridge-en0: enabled promiscuous mode
    27/06/14 12.21.33,000 kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:e3:eb:9d
    27/06/14 12.21.33,000 kernel[0]: vmnet: Hub 0
    27/06/14 12.21.33,000 kernel[0]: vmnet: Port 0
    27/06/14 12.21.33,000 kernel[0]: vmnet: Port 1
    27/06/14 12.21.33,000 kernel[0]: vmnet: VNetUserIf_Create: created userIf at 0xffffff80381c6c00.
    27/06/14 12.21.33,000 kernel[0]: vmnet: VMNetConnect: returning port 0xffffff80381c6c00
    27/06/14 12.21.33,000 kernel[0]: vmnet: VMNET_SO_BINDTOHUB: port: paddr 00:50:56:e7:78:30
    27/06/14 12.21.33,000 kernel[0]: vmnet: Hub 0
    27/06/14 12.21.33,000 kernel[0]: vmnet: Port 0
    27/06/14 12.21.33,000 kernel[0]: vmnet: Port 1
    27/06/14 12.21.33,000 kernel[0]: vmnet: Port 2
    27/06/14 12.21.33,000 kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff80381c6c00.
    27/06/14 12.21.35,000 kernel[0]: vmnet: Failed to deep copy mbuf: 12.
    27/06/14 12.21.35,000 kernel[0]: vmnet: bridge-en0: SendToVNet copy failed: 12.
    27/06/14 12.22.23,382 mds[88]: (Normal) Volume: volume:0x7fcb2a819800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.POHkS2
    27/06/14 12.22.35,000 kernel[0]: vmnet: Failed to deep copy mbuf: 12.
    27/06/14 12.22.35,000 kernel[0]: vmnet: mbuf_dup() failed: 12.
    27/06/14 12.23.25,384 com.apple.SecurityServer[14]: Session 100017 created
    27/06/14 12.23.29,000 kernel[0]: process vmware-vmx[447] caught causing excessive wakeups. Observed wakeups rate (per sec): 269; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45167
    27/06/14 12.23.31,254 spindump[502]: Saved wakeups_resource.spin report for vmware-vmx version ??? (???) to /Library/Logs/DiagnosticReports/vmware-vmx_2014-06-27-122331_Clauss-iMac-580.wa keups_resource.spin
    27/06/14 12.23.34,409 Console[508]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    27/06/14 12.23.34,000 kernel[0]: vmnet: Failed to deep copy mbuf: 12.
    27/06/14

    Thanks a lot for you patient response. I tried for hours yesterday to make the mac crash. No luck ;-)
    Today i managed ... running virtual windows on VM ware fusion, spotify, word, excel. Finally - trying to make spotify web helper quit - the machine froze.
    From the system log : ...
    29/06/14 15.17.30,484 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.17.40,661 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.17.50,778 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.18.00,891 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.18.11,009 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.18.21,056 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.18.27,629 Spotify Helper[6317]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    29/06/14 15.18.31,174 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.18.41,359 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.18.42,253 Spotify Helper[6321]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    29/06/14 15.18.42,330 Spotify Helper[6321]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    29/06/14 15.18.51,478 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.18.55,482 Spotify Helper[6323]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    29/06/14 15.18.55,729 Spotify Helper[6323]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    29/06/14 15.19.01,594 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.19.03,975 spindump[6316]: Spotify Helper [6317] didn't gather any samples due to audio running
    29/06/14 15.19.04,030 Spotify Helper[6327]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    29/06/14 15.19.11,792 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.19.16,372 Spotify Helper[6329]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    29/06/14 15.19.16,594 Spotify Helper[6329]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    29/06/14 15.19.21,919 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.19.22,327 Spotify Helper[6331]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    29/06/14 15.19.22,390 Spotify Helper[6331]: The function `CGFontSetShouldUseMulticache' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    29/06/14 15.19.32,042 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.19.42,154 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.19.52,268 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.20.02,376 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.20.12,489 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.20.22,662 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.20.32,842 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.20.43,022 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.20.53,063 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.21.03,284 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.21.13,475 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.21.23,584 com.apple.launchd.peruser.501[162]: (com.spotify.webhelper) Throttling respawn: Will start in 9 seconds
    29/06/14 15.21.27,593 com.apple.internetaccounts[224]: Interrupted error received
    29/06/14 15.21.27,593 com.apple.ShareKitHelper[259]: Interrupted error received
    29/06/14 15.21.27,597 Dock[216]: Lost connection with usernoted.
    29/06/14 15.21.27,601 com.apple.internetaccounts[224]: xpc __securityd_create_connection_block_invoke got event: Connection interrupted
    29/06/14 15.21.27,604 UserEventAgent[11]: Captive: [UserAgentDied:142] User Agent @port=71943 Died
    29/06/14 15.21.27,606 CalendarAgent[177]: xpc __securityd_create_connection_block_invoke got event: Connection interrupted
    29/06/14 15.21.27,607 librariand[249]: server connection is invalid: Connection invalid
    29/06/14 15.21.27,614 imagent[201]: Quit - notifying about shutdown
    29/06/14 15.21.27,614 identityservicesd[202]: Quit - notifying about shutdown
    29/06/14 15.21.27,612 identityservicesd[202]: xpc __securityd_create_connection_block_invoke got event: Connection interrupted
    29/06/14 15.21.27,615 identityservicesd[202]: Quit - shutting down daemon
    29/06/14 15.21.27,618 imagent[201]: Quit - shutting down daemon
    29/06/14 15.21.27,622 WindowServer[118]: CGXFilterEventToConnection : Invalid connection
    29/06/14 15.21.27,633 distnoted[166]: Interruption - exiting now.
    29/06/14 15.21.27,633 distnoted[166]: Interruption - exiting now.
    29/06/14 15.21.27,636 com.apple.IconServicesAgent[260]: Interrupted error received
    29/06/14 15.21.27,636 com.apple.InputMethodKit.UserDictionary[2348]: shared connection error: Connection interrupted
    29/06/14 15.21.27,668 com.apple.internetaccounts[224]: /SourceCache/Accounts/Accounts-336.9/ACAccountStore.m - __60-[ACAccountStore _connectToRemoteAccountStoreUsingEndpoint:]_block_invoke - 130 - The connection to ACDAccountStore was interrupted.
    29/06/14 15.21.27,678 com.apple.launchd.peruser.501[162]: (com.apple.Dock.agent[216]) Exited with code: 1
    29/06/14 15.21.27,679 com.apple.launchd.peruser.501[162]: (com.apple.iTunesHelper.54592[231]) Exited with code: 1
    29/06/14 15.21.27,681 com.apple.InputMethodKit.UserDictionary[2348]: shared connection error: Connection interrupted
    29/06/14 15.21.27,681 com.apple.InputMethodKit.UserDictionary[2348]: ping returned unexpected reply: <error: 0x7fff70af4a50> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff70af4e98> { length = 22, contents = "Connection interrupted" }
    29/06/14 15.21.27,681 com.apple.InputMethodKit.UserDictionary[2348]: ping returned unexpected reply: <error: 0x7fff70af4b50> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff70af4e60> { length = 18, contents = "Connection invalid" }
    29/06/14 15.21.27,681 com.apple.InputMethodKit.UserDictionary[2348]: shared connection error: Connection invalid
    29/06/14 15.21.27,810 ReportCrash[6353]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    29/06/14 15.21.29,470 WindowServer[118]: CGXGetConnectionProperty: Invalid connection 112151
    29/06/14 15.21.29,470 WindowServer[118]: CGXGetConnectionProperty: Invalid connection 112151
    ... 30 of those ...
    29/06/14 15.21.29,472 WindowServer[118]: CGXOrderWindowList: Invalid window 40 (index 0/1)
    29/06/14 15.21.29,472 WindowServer[118]: CGXOrderWindowList: Invalid window 63 (index 0/1)
    ... 8 more of those ...
    29/06/14 15.21.29,473 WindowServer[118]: CGXGetConnectionProperty: Invalid connection 112151
    29/06/14 15.21.29,494 loginwindow[86]: ERROR | -[ApplicationManager kickstartJobWithLabel:usingDebugID:] | spawn_via_launchd failed for com.apple.Finder
    29/06/14 15.21.29,846 ReportCrash[6353]: Saved crash report for VMware Fusion[2685] version 4.1.4 (900582) to /Library/Logs/DiagnosticReports/VMware Fusion_2014-06-29-152129_Clauss-iMac-580.crash
    29/06/14 15.21.29,863 com.apple.internetaccounts[224]: [Warning] Bad response from daemon for setup info
    29/06/14 15.21.29,863 com.apple.internetaccounts[224]: [Warning] Bad response (null) from daemon for setup info
    29/06/14 15.21.29,863 com.apple.internetaccounts[224]: [Warning] Services all disappeared, removing all accounts
    29/06/14 15.21.29,863 com.apple.internetaccounts[224]: [Warning] Services all disappeared, removing all enabled accounts
    29/06/14 15.21.29,863 com.apple.internetaccounts[224]: [Warning] Services all disappeared, removing all dependent devices
    29/06/14 15.21.30,051 distnoted[6360]: # distnote server agent  absolute time: 96209.017514512   civil time: Sun Jun 29 15:21:30 2014   pid: 6360 uid: 501  root: no
    29/06/14 15.21.57,669 com.apple.usbmuxd[69]: stopping.
    29/06/14 15.21.57,683 com.apple.usbmuxd[6364]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    29/06/14 15.22.22,906 loginwindow[86]: ERROR | WSActivateNextApp | CPSBringNextToFront returned error code -600
    29/06/14 15.22.29,838 loginwindow[86]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (268435459)
    29/06/14 15.22.29,838 loginwindow[86]: ERROR | numberOfConsoleUsers | CGSCopySessionList returned NULL.
    29/06/14 15.22.29,838 loginwindow[86]: FAILURE: Could not look up com.apple.bsd.launchdadd.
    29/06/14 15.22.29,852 loginwindow[86]: ERROR | -[ApplicationManager(AppleEventHandling) sendQuitEventToApp:withDelay:] | sendQuitEventToApp (vmware-vmx): AESendMessage returned error -600
    29/06/14 15.22.29,855 com.apple.launchd[1]: (com.apple.internetaccounts[224]) Exited: Killed: 9
    29/06/14 15.22.29,856 com.apple.launchd[1]: (com.apple.ShareKitHelper[259]) Exited: Killed: 9
    29/06/14 15.22.29,000 kernel[0]: vmnet: VMNetDisconnect called for port 0xffffff8050a17400
    29/06/14 15.22.29,000 kernel[0]: vmnet: VMNetDisconnect called for port 0xffffff8050983800
    29/06/14 15.22.29,000 kernel[0]: en0: promiscuous mode disable succeeded
    29/06/14 15.22.29,000 kernel[0]: vmnet: bridge-en0: disabled promiscuous mode
    29/06/14 15.22.29,000 kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff8050983800.
    29/06/14 15.22.30,010 vmnet-cli[6380]: assertion failed: 13D65: libxpc.dylib + 38177 [AB40CD57-F454-3FD4-B415-63B3C0D5C624]: 0x10000003
    29/06/14 15.22.30,010 vmnet-cli[6380]: assertion failed: 13D65: libxpc.dylib + 38177 [AB40CD57-F454-3FD4-B415-63B3C0D5C624]: 0x10000003
    29/06/14 15.22.30,000 kernel[0]: vmnet: VMNetDisconnect called for port 0xffffff80312c5400
    29/06/14 15.22.30,000 kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff80312c5400.
    29/06/14 15.22.30,000 kernel[0]: vmnet: netif-vmnet1: SIOCSIFFLAGS: 0x8862
    29/06/14 15.22.30,000 kernel[0]: vmnet: VMNetDisconnect called for port 0xffffff8034c93600
    29/06/14 15.22.30,000 kernel[0]: vmnet: netif-vmnet1: SIOCPROTODETACH failed: 16.
    29/06/14 15.22.30,000 kernel[0]: vmnet: netif-vmnet1: Deleting protocol 2.
    29/06/14 15.22.30,000 kernel[0]: vmnet: netif-vmnet1: Detaching...
    29/06/14 15.22.30,067 mDNSResponder[49]: getExtendedFlags: SIOCGIFEFLAGS failed, errno = 6 (Device not configured)
    29/06/14 15.22.30,000 kernel[0]: vmnet: netif-vmnet1: Detached.
    29/06/14 15.22.30,000 kernel[0]: vmnet: Freeing hub at 0xffffff80433d4000.
    29/06/14 15.22.30,000 kernel[0]: vmnet: VMNetDisconnect called for port 0xffffff805099fe00
    29/06/14 15.22.30,000 kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff805099fe00.
    29/06/14 15.22.30,000 kernel[0]: vmnet: VMNetDisconnect called for port 0xffffff8050a2e400
    29/06/14 15.22.30,000 kernel[0]: vmnet: VNetUserIfFree: freeing userIf at 0xffffff8050a2e400.
    29/06/14 15.22.30,000 kernel[0]: vmmon: Cleaned up 224443 virtual main memory pages from VM 0xffffff8050918018.
    29/06/14 15.22.30,000 kernel[0]: vmnet: netif-vmnet8: SIOCSIFFLAGS: 0x8862
    29/06/14 15.22.30,000 kernel[0]: vmnet: VMNetDisconnect called for port 0xffffff8050a25a00
    29/06/14 15.22.30,000 kernel[0]: vmnet: netif-vmnet8: SIOCPROTODETACH failed: 16.
    29/06/14 15.22.30,000 kernel[0]: vmnet: netif-vmnet8: Deleting protocol 2.
    29/06/14 15.22.30,000 kernel[0]: vmnet: netif-vmnet8: Detaching...
    29/06/14 15.22.30,223 mDNSResponder[49]: getExtendedFlags: SIOCGIFEFLAGS failed, errno = 6 (Device not configured)
    29/06/14 15.22.30,000 kernel[0]: vmnet: netif-vmnet8: Detached.
    29/06/14 15.22.30,000 kernel[0]: vmnet: Freeing hub at 0xffffff804348a000.
    29/06/14 15.22.30,000 kernel[0]: vmmon: Cleaned up 2300 monitor anonymous pages from VM 0xffffff8050918018.
    29/06/14 15.22.30,000 kernel[0]: vmmon: Cleaned up 16593 user anonymous pages from VM 0xffffff8050918018.
    29/06/14 15.22.30,000 kernel[0]: vmnet: VMNetDisconnect called for port 0xffffff8050a2dc00
    29/06/14 15.22.30,000 kernel[0]: vmnet: bridge-en0: filter detached
    29/06/14 15.22.30,000 kernel[0]: vmnet: bridge-en0: down
    29/06/14 15.22.30,000 kernel[0]: vmnet: bridge-en0: detached
    29/06/14 15.22.30,000 kernel[0]: vmnet: Freeing hub at 0xffffff804341e000.
    29/06/14 15.22.30,000 kernel[0]: vmnet: Removing module.
    29/06/14 15.22.30,000 kernel[0]: vmnet: VMNet_Stop freeing gOSMallocTag
    29/06/14 15.22.30,000 kernel[0]: vmnet: Module removed.
    29/06/14 15.22.30,000 kernel[0]: vsock: Removing module.
    29/06/14 15.22.30,000 kernel[0]: vsock: End workloop.
    29/06/14 15.22.30,000 kernel[0]: vsock: Module removed.
    29/06/14 15.22.30,000 kernel[0]: vmci: Removing module.
    29/06/14 15.22.30,000 kernel[0]: vmci: End helper queue thread.
    29/06/14 15.22.30,000 kernel[0]: vmci: Module removed.
    29/06/14 15.22.30,000 kernel[0]: vmmon: Service stop
    29/06/14 15.22.30,000 kernel[0]: vmmon: Deregistering for power state changes
    29/06/14 15.22.30,000 kernel[0]: vmmon: Removing module.
    29/06/14 15.22.30,000 kernel[0]: vmmon: Timer thread stopping...
    29/06/14 15.22.30,000 kernel[0]: vmmon: Timer thread stopped.
    29/06/14 15.22.30,000 kernel[0]: vmmon: Module removed.
    29/06/14 15.22.30,000 kernel[0]: vmmon: Service free
    29/06/14 15.22.30,384 sessionlogoutd[6393]: sessionlogoutd Launched
    29/06/14 15.22.30,389 loginwindow[86]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (268435459)
    29/06/14 15.22.30,389 loginwindow[86]: ERROR | ScreensharingLogoutNotification | unable to get session dictionary
    29/06/14 15.22.30,389 loginwindow[86]: ERROR | ScreensharingLogoutNotification | Failed GetScreensharingPort or port returned == 0, err: 268435459
    29/06/14 15.22.30,391 sessionlogoutd[6393]: DEAD_PROCESS: 86 console
    29/06/14 15.22.30,419 airportd[106]: _doAutoJoin: Already associated to “Apple Network f776e7”. Bailing on auto-join.
    29/06/14 15.22.30,727 shutdown[6407]: reboot by _usbmuxd:
    29/06/14 15.22.30,000 kernel[0]: Kext loading now disabled.
    29/06/14 15.22.30,000 kernel[0]: Kext unloading now disabled.
    29/06/14 15.22.30,000 kernel[0]: Kext autounloading now disabled.
    29/06/14 15.22.30,000 kernel[0]: Kernel requests now disabled.
    29/06/14 15.22.30,727 shutdown[6407]: SHUTDOWN_TIME: 1404048150 727019
    29/06/14 15.22.59,000 bootlog[0]: BOOT_TIME 1404048179 0
    crash report :
    Process:         VMware Fusion [2685]
    Path:            /Applications/VMware Fusion.app/Contents/MacOS/VMware Fusion
    Identifier:      VMware Fusion
    Version:         4.1.4 (900582)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [162]
    Responsible:     VMware Fusion [2685]
    User ID:         501
    Date/Time:       2014-06-29 15:21:27.654 +0200
    OS Version:      Mac OS X 10.9.3 (13D65)
    Report Version:  11
    Anonymous UUID:  ...
    Sleep/Wake UUID: 2CA7EF45-EFD3-4F20-9E3D-B491536A1256
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGILL)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff83de0a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff83ddfd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8d76dfc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8d76d5e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8d76cf25 CFRunLoopRunSpecific + 309
    5   com.apple.HIToolbox           0x00007fff8170ba0d RunCurrentEventLoopInMode + 226
    6   com.apple.HIToolbox           0x00007fff8170b7b7 ReceiveNextEventCommon + 479
    7   com.apple.HIToolbox           0x00007fff8170b5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    8   com.apple.AppKit               0x00007fff8b38126e _DPSNextEvent + 1434
    9   com.apple.AppKit               0x00007fff8b3808bb -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    10  com.apple.AppKit               0x00007fff8b3749bc -[NSApplication run] + 553
    11  com.apple.AppKit               0x00007fff8b35f7a3 NSApplicationMain + 940
    12  com.vmware.fusion             0x0000000100004d3e 0x100000000 + 19774
    13  com.vmware.fusion             0x0000000100003f78 0x100000000 + 16248
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff83de5662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff85584421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff85584136 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.CFSocket.private
    0   libvmwarebase.dylib           0x0000000101311f21 LogAddNewMessage + 209
    1   libvmwarebase.dylib           0x000000010131278e Log + 206
    2   libvmwarebase.dylib           0x00000001013248b3 VThreadBase_InitWithTLS + 739
    3   libvmwarebase.dylib           0x0000000101324909 VThreadBase_IsInSignal + 9
    4   libvmwarebase.dylib           0x000000010131035b Log_RegisterBasicFunctions + 75
    5   libvmwarebase.dylib           0x0000000101311ec6 LogAddNewMessage + 118
    6   libvmwarebase.dylib           0x0000000101312dfe Warning + 206
    7   libvmwarebase.dylib           0x00000001016e9b67 Sig_Callback + 1495
    8   libsystem_platform.dylib       0x00007fff854fa5aa _sigtramp + 26
    9   libsystem_kernel.dylib         0x00007fff83de49aa __select + 10
    10  libsystem_pthread.dylib       0x00007fff84743899 _pthread_body + 138
    11  libsystem_pthread.dylib       0x00007fff8474372a _pthread_start + 137
    12  libsystem_pthread.dylib       0x00007fff84747fc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff83de0a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff83ddfd18 mach_msg + 64
    2   libvmwarebase.dylib           0x000000010155eba7 MachPoll_Init + 871
    3   libvmwarebase.dylib           0x00000001015f31ee VThreadHostCreateThread + 702
    4   libsystem_pthread.dylib       0x00007fff84743899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff8474372a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff84747fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff83de0a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff83ddfd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8d76dfc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8d76d5e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8d76cf25 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff8d822811 CFRunLoopRun + 97
    6   com.vmware.fusion             0x0000000100205b74 void cui::VMConfigTransaction::Set<cui::ViewMode>(cui::TransactionProperty<cui::View Mode, cui::VMConfigTransaction>&, cui::ViewMode const&) + 338180
    7   com.apple.Foundation           0x00007fff8565576b __NSThread__main__ + 1318
    8   libsystem_pthread.dylib       0x00007fff84743899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8474372a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff84747fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff83de0a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff83ddfd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8d76dfc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8d76d5e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8d76cf25 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x00007fff8b52105e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff84743899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8474372a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff84747fc9 thread_start + 13
    Thread 6:
    0   libsystem_pthread.dylib       0x00007fff84747fac start_wqthread + 0
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff83de4e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff84744f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff84747fb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff83de4e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff84744f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff84747fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000007000006  rcx: 0x00007fff5fbfe3c8  rdx: 0x0000000000000000
      rdi: 0x00007fff5fbfe500  rsi: 0x0000000007000006  rbp: 0x00007fff5fbfe410  rsp: 0x00007fff5fbfe3c8
       r8: 0x0000000000002903   r9: 0x00000000ffffffff  r10: 0x0000000000000c00  r11: 0x0000000000000206
      r12: 0x0000000000000c00  r13: 0x0000000000000000  r14: 0x00007fff5fbfe500  r15: 0x0000000000002903
      rip: 0x00007fff83de0a1a  rfl: 0x0000000000000206  cr2: 0x00007fe46251822e
    Logical CPU:     0
    Error Code:      0x0100001f
    Trap Number:     133
    Binary Images:
           0x100000000 -        0x1004abfe7 +com.vmware.fusion (4.1.4 - 900582) <9D5EDA95-6DC8-D9F5-EAFA-31BEA05F6D59> /Applications/VMware Fusion.app/Contents/MacOS/VMware Fusion
           0x10060c000 -        0x100613ff7 +libbasichttp.dylib (0) <A1DBE10C-3E51-36C0-6553-D4516919E538> /Applications/VMware Fusion.app/Contents/Frameworks/libbasichttp.dylib
           0x100619000 -        0x100664fef +libcurl.4.dylib (7) <BC03015B-1DB0-A576-F15E-C3A17E91692A> /Applications/VMware Fusion.app/Contents/Frameworks/libcurl.4.dylib
           0x100671000 -        0x100767fff +libglib-2.0.0.dylib (2201.1) <C96BD30B-FE40-2FA6-3853-68981A02F521> /Applications/VMware Fusion.app/Contents/Frameworks/libglib-2.0.0.dylib
           0x10077a000 -        0x1007c6ffa +libglibmm-2.4.1.dylib (4) <8EC61294-80CB-F17A-9C87-C02CF8698370> /Applications/VMware Fusion.app/Contents/Frameworks/libglibmm-2.4.1.dylib
           0x100803000 -        0x100805fff +libglibmm_generate_extra_defs-2.4.1.dylib (4) <364CBF9B-A0BA-3DAD-A9DE-BE99949F23E7> /Applications/VMware Fusion.app/Contents/Frameworks/libglibmm_generate_extra_defs-2.4.1.dylib
           0x10080a000 -        0x10084afef +libgobject-2.0.0.dylib (2201.1) <4C4193A7-11B5-6442-C308-ED02C8D4E716> /Applications/VMware Fusion.app/Contents/Frameworks/libgobject-2.0.0.dylib
           0x100855000 -        0x100dbcfe7 +libgvmomi.dylib (0) <ECBF25AE-A981-98DA-CCC6-6ECA641E6900> /Applications/VMware Fusion.app/Contents/Frameworks/libgvmomi.dylib
           0x100e6a000 -        0x100e98fef +libpng12.0.dylib (47) <67E436B7-06FE-886E-42CC-6AC73B44CC97> /Applications/VMware Fusion.app/Contents/Frameworks/libpng12.0.dylib
           0x100e9f000 -        0x100fe3ff3 +libprotobuf.6.dylib (7) <EB139F0E-7C6A-15C6-5FA8-6454FA7949B8> /Applications/VMware Fusion.app/Contents/Frameworks/libprotobuf.6.dylib
           0x1010e0000 -        0x1010e6fff +libsigc-2.0.0.dylib (1) <AEC0321F-9042-3A21-8D1F-F2609A70DD8C> /Applications/VMware Fusion.app/Contents/Frameworks/libsigc-2.0.0.dylib
           0x1010f2000 -        0x1012b3fef +libviewyhosted.dylib (0) <C26EC43C-ABDD-E652-A615-C0C2D0B21547> /Applications/VMware Fusion.app/Contents/Frameworks/libviewyhosted.dylib
           0x1012e7000 -        0x101841fff +libvmwarebase.dylib (0) <CCFE15EF-975E-0C4E-56AA-445416931354> /Applications/VMware Fusion.app/Contents/Frameworks/libvmwarebase.dylib
           0x10193a000 -        0x102293fef +libvmwareui.dylib (0) <B29D5B8D-5E6A-399C-A3B9-DDD70403DD4F> /Applications/VMware Fusion.app/Contents/Frameworks/libvmwareui.dylib
           0x102486000 -        0x1024aefe7 +libcds.dylib (1) <2A87179B-C7CF-2202-6C48-2B775E25E5EA> /Applications/VMware Fusion.app/Contents/Frameworks/libcds.dylib
           0x1024ba000 -        0x1024c6ff3 +libintl.8.0.2.dylib (9.2) <ADD50738-C367-59C4-E92B-6FB29516E303> /Applications/VMware Fusion.app/Contents/Frameworks/libintl.8.0.2.dylib
           0x1024cb000 -        0x1024cdfff +libgmodule-2.0.0.dylib (2201.1) <B76A2FE2-250F-DDC9-1A98-C43FD5E522EA> /Applications/VMware Fusion.app/Contents/Frameworks/libgmodule-2.0.0.dylib
           0x1024d1000 -        0x1024d3fff +libgthread-2.0.0.dylib (2201.1) <B9FA798C-7AC2-445B-A33C-D1E1464DB2D0> /Applications/VMware Fusion.app/Contents/Frameworks/libgthread-2.0.0.dylib
           0x1024d7000 -        0x102656fef +libxml2.2.dylib (10.7) <BD7300D4-40E1-795A-F1D5-8D6D29C265F2> /Applications/VMware Fusion.app/Contents/Frameworks/libxml2.2.dylib
           0x10267d000 -        0x10268afff +libboost_signals-xgcc40-mt-1_39.dylib (0) <E72A6017-8758-478B-DCCA-F757289FDB24> /Applications/VMware Fusion.app/Contents/Frameworks/libboost_signals-xgcc40-mt-1_39.dylib
           0x102695000 -        0x1027c2ff7 +libicuuc.38.0.dylib (38) <BED03BC3-15D4-7F42-2951-12C82695D7EF> /Applications/VMware Fusion.app/Contents/Frameworks/libicuuc.38.0.dylib
           0x1027fe000 -        0x1028b5fef +libovdiclient.dylib (0) <DC307C79-B93A-46DD-9132-0F9EA0E9A42F> /Applications/VMware Fusion.app/Contents/Frameworks/libovdiclient.dylib
           0x1028cf000 -        0x1028daff7 +libovdicrypto.dylib (0) <AA48B00E-15EE-9287-2411-6C9483C64270> /Applications/VMware Fusion.app/Contents/Frameworks/libovdicrypto.dylib
           0x1028e2000 -        0x10338afff +libicudata.38.0.dylib (38) <EFF6DF48-159C-1416-0E48-57DD45F62460> /Applications/VMware Fusion.app/Contents/Frameworks/libicudata.38.0.dylib
           0x10339b000 -        0x103420fff +libovditransfer.dylib (0) <8342D025-D0F4-509C-4571-0ECFDE86D27D> /Applications/VMware Fusion.app/Contents/Frameworks/libovditransfer.dylib
           0x103783000 -        0x103787ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.1 - 2.6.1f2) <E5405175-7735-3F30-97ED-F44645033DC7> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x107fdb000 -        0x107fdcffa +cl_kernels (???) <0A7ACEFA-1735-4871-8066-B38D9136C57F> cl_kernels
           0x107fea000 -        0x107febff9 +cl_kernels (???) <73B19403-5B46-4612-AEC3-719BE18F81E5> cl_kernels
           0x107ffd000 -        0x107ffefe6 +cl_kernels (???) <371A6170-F1A1-4112-B40F-CBC03652C1E6> cl_kernels
           0x10e3ff000 -        0x10e4dfff7  unorm8_rgba.dylib (2.3.58) <8252DC3E-7434-34C6-B4B9-CFD59B923D12> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x10e627000 -        0x10e70dfef  unorm8_bgra.dylib (2.3.58) <280D6FDD-8CA5-36EC-9EA1-D7DC09598E20> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x11cc38000 -        0x11cc38fe3 +cl_kernels (???) <FE76C465-3278-4221-96F0-FF4E0564092F> cl_kernels
           0x12e417000 -        0x12e418fe4 +cl_kernels (???) <766AC9BF-C8F2-4329-8F27-B87477422B14> cl_kernels
        0x123480000000 -     0x12348028bff7  com.apple.AMDRadeonX3000GLDriver (1.22.25 - 1.2.2) <EF7FEC7B-5D14-374C-9B96-0745AC470696> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
        0x7fff681f6000 -     0x7fff68229817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
        0x7fff8051d000 -     0x7fff8051effb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8051f000 -     0x7fff80523fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff80524000 -     0x7fff80563fff  libGLU.dylib (9.6.1) <AE032555-3E2F-3DBF-A26D-EA4576061605> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff80564000 -     0x7fff80565ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff80566000 -     0x7fff80579ff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff805e5000 -     0x7fff8062cff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
        0x7fff8062d000 -     0x7fff8079bff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8079c000 -     0x7fff807c5fff  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
        0x7fff807c6000 -     0x7fff807d1ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff807d2000 -     0x7fff807ddfff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff807de000 -     0x7fff8080afff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8080b000 -     0x7fff80882fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff80883000 -     0x7fff80cb6ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff80d62000 -     0x7fff80d64ff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff80d65000 -     0x7fff80db8fff  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
        0x7fff80eb8000 -     0x7fff80ec5ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff80ec6000 -     0x7fff80f39fff  com.apple.securityfoundation (6.0 - 55122.1) <D5AA4461-7406-3054-875D-0EDA3A6030EA> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff80f3a000 -     0x7fff80f3dff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
        0x7fff80f3e000 -     0x7fff80f62fff  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
        0x7fff80f63000 -     0x7fff80f7eff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff80f7f000 -     0x7fff80f91ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <E51DE5CA-9859-3C13-A24F-37EF4385C1D6> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff80f92000 -     0x7fff81132ff7  GLEngine (9.6.1) <28300FBD-E3B2-35D2-BB54-77DCE62FC371> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff81133000 -     0x7fff81135ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff81160000 -     0x7fff81184ff7  libJPEG.dylib (1043) <25723F3F-48A6-3AC5-A7A3-58E418FEBF3F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff81185000 -     0x7fff811d3ff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib
        0x7fff811d4000 -     0x7fff811d5fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff811d6000 -     0x7fff811fffff  GLRendererFloat (9.6.1) <23A2C705-F932-335D-B27B-565A30333460> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
        0x7fff81200000 -     0x7fff812eefff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8132e000 -     0x7fff8132effd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8132f000 -     0x7fff81577ff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff81578000 -     0x7fff815bdfff  libcurl.4.dylib (78.92.2) <FE790105-B56B-3972-96F4-E133764FF735> /usr/lib/libcurl.4.dylib
        0x7fff81609000 -     0x7fff81609fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff81615000 -     0x7fff81678ffb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff81679000 -     0x7fff81692ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff816dd000 -     0x7fff81987ff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff81988000 -     0x7fff81988fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff81bf3000 -     0x7fff81c05ff7  com.apple.CoreBluetooth (1.0 - 1) <67A00F44-563E-3C55-9187-34D502D84DDE> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
        0x7fff81c06000 -     0x7fff81c22fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff81c7d000 -     0x7fff81c7eff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff81c7f000 -     0x7fff81c82ffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff81c83000 -     0x7fff81c90ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff81d06000 -     0x7fff81d15ff8  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
        0x7fff81d16000 -     0x7fff81d64ff7  com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff81d65000 -     0x7fff8209bfff  com.apple.MediaToolbox (1.0 - 1273.54) <E11683F7-BB60-37EB-98B6-BD519D93CB30> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff821a0000 -     0x7fff821c5ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff821c6000 -     0x7fff8228aff7  com.apple.backup.framework (1.5.3 - 1.5.3) <088FEDED-BF5C-33F4-A51A-646C8149BDAA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8228b000 -     0x7fff822affff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff822cc000 -     0x7fff8252dfff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8252e000 -     0x7fff8252effd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff82576000 -     0x7fff8257afff  com.apple.IOAccelerator (98.20 - 98.20) <D62AE4C8-E4BD-3924-826D-7D8D07F9EDEB> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
        0x7fff8257b000 -     0x7fff82604fff  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
        0x7fff82605000 -     0x7fff82607fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff82608000 -     0x7fff826f7fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff82725000 -     0x7fff82728ff7  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
        0x7fff82729000 -     0x7fff82772fff  com.apple.CoreMedia (1.0 - 1273.54) <CAB7303A-9AB2-317A-99C3-BEAA8AE8764B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff82773000 -     0x7fff827a2ff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff827a3000 -     0x7fff8280aff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8280b000 -     0x7fff82813ff3  libCGCMS.A.dylib (599.23.13) <59F7AEED-90EB-35C2-85A6-5BC44CC9B3FA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff82814000 -     0x7fff82855fff  com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff828b9000 -     0x7fff828bcfff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff828bd000 -     0x7fff82923fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff82924000 -     0x7fff82958fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff82959000 -     0x7fff829a5ffe  com.apple.CoreMediaIO (407.0 - 4561) <040A98E4-F480-315B-BCEE-C18AF686492C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff82aa4000 -     0x7fff82b08fff  com.apple.datadetectorscore (5.0 - 354.4) <37093186-6019-3071-8D67-F3EF429F8F08> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff82b09000 -     0x7fff82c2bfff  com.apple.avfoundation (2.0 - 651.12.1) <FF001F98-E198-3B1D-A7EB-A8C48E6E34A3> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff82c2c000 -     0x7fff82c3efff  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
        0x7fff82c3f000 -     0x7fff82fb6ff6  com.apple.JavaScriptCore (9537 - 9537.75.12) <C3A7612F-34CC-3547-B01C-522D255B69ED> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff82fb7000 -     0x7fff82fc0fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff82fc1000 -     0x7fff83020fff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <7F86A7C3-7B7D-3CD7-9758-CA74FB4DE2CC> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff83021000 -     0x7fff83157ffc  com.apple.WebKit (9537 - 9537.75.14) <81BB019D-78E2-3CD9-B148-5F5EA5357D2B> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff83158000 -     0x7fff83182ff7  libsandbox.1.dylib (278.11) <BD3D8652-8871-36DB-A27D-3BE4F18428B4> /usr/lib/libsandbox.1.dylib
        0x7fff83183000 -     0x7fff8318aff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff831aa000 -     0x7fff831aefff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff835bf000 -     0x7fff8369efff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff836f7000 -     0x7fff83c1afff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff83c1b000 -     0x7fff83c4cfff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff83c4d000 -     0x7fff83c59ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff83c5a000 -     0x7fff83c5dffa  libCGXType.A.dylib (599.23.13) <E459DD26-592F-3DBD-8C47-B342ECE8FFD3> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff83c5e000 -     0x7fff83c6aff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff83c6b000 -     0x7fff83cd7fff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff83cd8000 -     0x7fff83ce9ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff83cea000 -     0x7fff83d45ffb  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
        0x7fff83d46000 -     0x7fff83d5eff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff83dcf000 -     0x7fff83debff7  libsystem_kernel.dylib (2422.100.13) <498AEBD7-4194-3CF2-AA16-D5D03FFBD8C0> /usr/lib/system/libsystem_kernel.dylib
        0x7fff83dec000 -     0x7fff83dfafff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff83e08000 -     0x7fff83e08fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff83e09000 -     0x7fff83e0bff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
        0x7fff83e0c000 -     0x7fff83e1cfff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff83e1d000 -     0x7fff83e1ffff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff84183000 -     0x7fff841b2ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff843ef000 -     0x7fff843f8ff7  libcldcpuengine.dylib (2.3.58) <E3A84FEC-4060-39C2-A469-159A443D2B6D> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff843f9000 -     0x7fff84653ffd  com.apple.security (7.0 - 55471.14.4) <1D5DA20E-DB48-3E1D-9BF5-BAA694192B25> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8468e000 -     0x7fff846e7fff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff846e8000 -     0x7fff8471dffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff84742000 -     0x7fff84749ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff84aab000 -     0x7fff84ac8ff7  com.apple.framework.Apple80211 (9.3.2 - 932.59) <DA61BF63-978E-342D-8F7F-83D0169A7F48> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff84ac9000 -     0x7fff84b9aff1  com.apple.DiskImagesFramework (10.9 - 371.1) <B26C8237-52E0-3E93-A2E2-147B57B3292E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff84b9b000 -     0x7fff84b9fff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
        0x7fff84bbc000 -     0x7fff84c0efff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff84e4c000 -     0x7fff85136fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff85174000 -     0x7fff851a4fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff851a5000 -     0x7fff851adff7  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
        0x7fff851b7000 -     0x7fff851ceffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff853a8000 -     0x7fff853e1ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff853e2000 -     0x7fff85472ff7  com.apple.Metadata (10.7.0 - 800.28) <E85AEB1B-CB17-38BC-B5C6-AAB50B47AF05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff85473000 -     0x7fff854e2ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff854ec000 -     0x7fff854f6ff7  libcsfde.dylib (380) <A5CF6F85-0537-399F-968B-1536B1235E65> /usr/lib/libcsfde.dylib
        0x7fff854f7000 -     0x7fff854fdff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff8555e000 -     0x7fff85575ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <EBC0A1F2-9054-3D39-99AE-A3F655E55D6A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff85576000 -     0x7fff8557aff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff85581000 -     0x7fff8559bfff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
        0x7fff855ef000 -     0x7fff858edfff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff858ee000 -     0x7fff858fcfff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff858fd000 -     0x7fff85904ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff86062000 -     0x7fff86066fff  com.apple.ServerInformation (2.0 - 1) <85F3EFCA-246B-30A1-8757-ECC97533D38D> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff86067000 -     0x7fff86117ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8615f000 -     0x7fff86160ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff86161000 -     0x7fff8616bff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff861ce000 -     0x7fff8621fff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff86220000 -     0x7fff86307ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff8635e000 -     0x7fff86369fff  libGPUSupportMercury.dylib (9.6.1) <A34D5C51-28E0-398A-881D-552B47D2DD3C> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
        0x7fff8636a000 -     0x7fff86370ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff86371000 -     0x7fff8637bff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8637f000 -     0x7fff863a7ffb  libRIP.A.dylib (599.23.13) <FFE421E6-CB15-3F9D-ADF4-679E26B09892> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff863a8000 -     0x7fff863cdff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff863e5000 -     0x7fff863e6fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff863e7000 -     0x7fff863eafff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff863eb000 -     0x7fff863f4fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff863f5000 -     0x7fff86410ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff864b5000 -     0x7fff864ddffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff864de000 -     0x7fff86579ff7  com.apple.PDFKit (2.9.2 - 2.9.2) <0CDC6467-9227-3D98-B4D4-660796AE9F6B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8657a000 -     0x7fff86582fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff86583000 -     0x7fff86594ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff86595000 -     0x7fff865b0ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff865b1000 -     0x7fff8674dff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff86751000 -     0x7fff8683bfff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff86851000 -     0x7fff86c9ffef  com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff86ca0000 -     0x7fff86ca4ff7  libGIF.dylib (1043) <AF0FE71A-27AB-31E0-8CEA-BC0BF2091FA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff86eec000 -     0x7fff86eeefff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff86ef9000 -     0x7fff86f8dff7  com.apple.Bluetooth (4.2.4 - 4.2.4f1) <9F1148F5-C476-3AC0-9C8F-C4D29E84C97D> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff86f8e000 -     0x7fff86ff3ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff86ff4000 -     0x7fff86ffefff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff86fff000 -     0x7fff86ffffff  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
        0x7fff87000000 -     0x7fff87018ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff87019000 -     0x7fff87048fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8704c000 -     0x7fff8704cfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86

  • UPS and shutting down servers

    Not sure if this thread should be better posted at the OS X Server forum, but let's try it
    Today I found the time to connect the UPS to our XServe via USB. It worked great, the UPS appears at ServerMonitor and also at the system preference panels energy settings.
    However the UPS has only one USB port, but we have currently two XServes. My intention is to keep the servers running as long as possible till the UPS reaches 25 % left of its energy. Then safely shutting down the servers.
    While it is easy to configure this on the server the UPS is connected, I find no setting for doing so at the other system. Basically the "master" XServe (that connects to the UPS) should shut down its "slaves" (the other XServe specifically).
    I already dealt with a quite old system some time before (Cobalt RaQ) where it was able to set this up (via the MAC addresses if I'm not wrong).
    I would look forward if someone can give me a glue how to realize this on the XServe ?

    >Okay, writing a script... I guess you don't have anything already written
    Nope, sorry.
    >The main problem would be that both servers can communicate with each other only by using their WAN IPs. So we would need to get some security (like authentication with a username and password) additionally.
    If your servers have two NICs, there's nothing preventing you from creating a private network between the two using a simple ethernet cable between them. That way they can communicate privately.
    > When I connect the UPS with an USB hub and on that hub both XServes, could this work ?
    No. USB doesn't support this kind of topology. There can only be one bus master. The other machine won't work.
    >The UPS also has a serial interface, just the XServe lacks of this "old technology"
    On the contrary. The XServe has a 9-pin serial interface on the back. It's normally configured as a console port for out-of-band management but you can configure it as a standard serial port by disabling SerialTerminalSupport (in /System/Library/StartupItems). However, the issue is then how to read the serial port. I'm guessing the software that ships with the UPS is designed to use the USB port and you may be on your own there.
    >By the way, I should mention that the UPS is a Belkin "Universal UPS".
    I don't think it makes a big difference. You'll have the same issues with any UPS vendor.
    The only other option I can think of is a network-aware UPS. Some UPSes (such as those from APC) have a network option where you can query the UPS over the network. It would then be relatively simple to query the UPS via SNMP to gauge its runtime and shut down safely. I don't know if the Belkin has this option.

  • IMovie HD '06 Keeps shutting down

    This just started yesterday. I'm working on editing a video and it keeps shutting down. This is the complete error message I get:
    Process: iMovie HD [338]
    Path: /Applications/iMovie HD.dmg.app/Contents/MacOS/iMovie HD
    Identifier: com.apple.iMovie
    Version: 6.0.3 (6.0.3)
    Build Info: iMovieApp-2670200~14
    Code Type: X86 (Native)
    Parent Process: launchd [162]
    Date/Time: 2008-02-27 13:58:37.754 -0600
    OS Version: Mac OS X 10.5.2 (9C31)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x000000000000000f
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.QuickTime 0x95fd87a7 GetTrackEnabled_priv + 19
    1 com.apple.QuickTime 0x95fd8780 GetTrackEnabled + 22
    2 ...ickTimeComponents.component 0x90e6bf4b walkTrackEditListForNewTweens + 1574
    3 ...ickTimeComponents.component 0x90e6c5c2 TweenTrackEdited + 97
    4 ...ickTimeComponents.component 0x90e6c46d TweenComponentDispatch + 170
    5 ...ple.CoreServices.CarbonCore 0x93a325cd CallComponentDispatch + 29
    6 ...ickTimeComponents.component 0x91b8185b MediaTrackEdited + 37
    7 ...ickTimeComponents.component 0x90e08c55 GenericTrackEditedAtTime + 77
    8 ...ickTimeComponents.component 0x90e0895f GenericComponentDispatch + 170
    9 ...ple.CoreServices.CarbonCore 0x93a325cd CallComponentDispatch + 29
    10 com.apple.QuickTime 0x960d018e MediaTrackEditedAtTime + 49
    11 com.apple.QuickTime 0x9610c360 DeleteTrackSegment_priv + 394
    12 com.apple.QuickTime 0x96119d9e DeleteMovieSegment_priv + 92
    13 com.apple.QuickTime 0x96119d37 DeleteMovieSegment + 36
    14 com.apple.iMovie 0x00041a19 0x1000 + 264729
    15 com.apple.iMovie 0x0013610a 0x1000 + 1265930
    16 com.apple.iMovie 0x00135f9f 0x1000 + 1265567
    17 com.apple.iMovie 0x00135e14 0x1000 + 1265172
    18 com.apple.iMovie 0x00134bb2 0x1000 + 1260466
    19 com.apple.iMovie 0x00133f01 0x1000 + 1257217
    20 com.apple.iMovie 0x00134155 0x1000 + 1257813
    21 com.apple.Foundation 0x92321c47 __NSFireTimer + 279
    22 com.apple.CoreFoundation 0x9551db5e CFRunLoopRunSpecific + 4494
    23 com.apple.CoreFoundation 0x9551dd18 CFRunLoopRunInMode + 88
    24 com.apple.HIToolbox 0x94f766a0 RunCurrentEventLoopInMode + 283
    25 com.apple.HIToolbox 0x94f764b9 ReceiveNextEventCommon + 374
    26 com.apple.HIToolbox 0x94f7632d BlockUntilNextEventMatchingListInMode + 106
    27 com.apple.AppKit 0x931057d9 _DPSNextEvent + 657
    28 com.apple.AppKit 0x9310508e -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    29 com.apple.AppKit 0x930fe0c5 -[NSApplication run] + 795
    30 com.apple.AppKit 0x930cb30a NSApplicationMain + 574
    31 com.apple.iMovie 0x00040d71 0x1000 + 261489
    32 com.apple.iMovie 0x0000af3a 0x1000 + 40762
    33 com.apple.iMovie 0x0000ae55 0x1000 + 40533
    Thread 1:
    0 libSystem.B.dylib 0x944579e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x9445f1dc mach_msg + 72
    2 com.apple.CoreFoundation 0x9551d0de CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x9551dd74 CFRunLoopRun + 84
    4 com.apple.AVCVideoServices 0x6848f319 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 149
    5 libSystem.B.dylib 0x94488c55 pthreadstart + 321
    6 libSystem.B.dylib 0x94488b12 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x94457a46 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x94489daf pthread_condwait + 1244
    2 libSystem.B.dylib 0x9448b633 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x923334fc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x92333310 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x92333275 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.AppKit 0x9316b7f0 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation 0x922ed5ad -[NSThread main] + 45
    8 com.apple.Foundation 0x922ed154 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x94488c55 pthreadstart + 321
    10 libSystem.B.dylib 0x94488b12 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x9445ebce _semwaitsignal + 10
    1 libSystem.B.dylib 0x944898cd pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x006c9432 glvmDoWork + 162
    3 libSystem.B.dylib 0x94488c55 pthreadstart + 321
    4 libSystem.B.dylib 0x94488b12 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x944579e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x9445f1dc mach_msg + 72
    2 com.apple.CoreFoundation 0x9551d0de CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x9551dd74 CFRunLoopRun + 84
    4 com.apple.iMovie 0x001262b7 0x1000 + 1200823
    5 com.apple.Foundation 0x922ed5ad -[NSThread main] + 45
    6 com.apple.Foundation 0x922ed154 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x94488c55 pthreadstart + 321
    8 libSystem.B.dylib 0x94488b12 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x944579e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x9445f1dc mach_msg + 72
    2 com.apple.CoreFoundation 0x9551d0de CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x9551dd18 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x957cd464 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x957cd300 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x94488c55 pthreadstart + 321
    7 libSystem.B.dylib 0x94488b12 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x94457a46 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x94489daf pthread_condwait + 1244
    2 libSystem.B.dylib 0x9448b633 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x93a2992a TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x93a2970a TSWaitOnSemaphoreCommon + 422
    5 ...ickTimeComponents.component 0x90d9a80a ReadSchedulerThreadEntryPoint + 4724
    6 libSystem.B.dylib 0x94488c55 pthreadstart + 321
    7 libSystem.B.dylib 0x94488b12 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x94457a46 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x94489daf pthread_condwait + 1244
    2 libSystem.B.dylib 0x9448b633 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x93a2992a TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x93a2970a TSWaitOnSemaphoreCommon + 422
    5 ...ple.CoreServices.CarbonCore 0x93a51d0c AIOFileThread(void*) + 1056
    6 libSystem.B.dylib 0x94488c55 pthreadstart + 321
    7 libSystem.B.dylib 0x94488b12 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x94457a46 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x94489daf pthread_condwait + 1244
    2 libSystem.B.dylib 0x9448b633 pthreadcond_timedwait_relativenp + 47
    3 com.apple.CoreVideo 0x9429db92 CVDisplayLink::waitUntil(unsigned long long) + 390
    4 com.apple.CoreVideo 0x9429e554 CVDisplayLink::runIOThread() + 778
    5 libSystem.B.dylib 0x94488c55 pthreadstart + 321
    6 libSystem.B.dylib 0x94488b12 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xffffffff ebx: 0x90e6b936 ecx: 0xa0895a00 edx: 0xa0895a04
    edi: 0x18bb3fc0 esi: 0x18b788b0 ebp: 0xbfffe5c8 esp: 0xbfffe5c0
    ss: 0x0000001f efl: 0x00010286 eip: 0x95fd87a7 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x0000000f
    Binary Images:
    0x1000 - 0x2c023f com.apple.iMovie 6.0.3 (6.0.3) /Applications/iMovie HD.dmg.app/Contents/MacOS/iMovie HD
    0x33a000 - 0x346fe7 com.apple.opengl 1.5.6 (1.5.6) <d599b1bb0f8a8da6fd125e2587b27776> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x34e000 - 0x417fe5 com.apple.DiscRecording 4.0.1 (4010.4.4) <15a86e322ad12d2d279e398120273223> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x482000 - 0x4f0ff7 com.apple.Bluetooth 2.1 (2.1f14) <70a4e6ec34e101a812923b2422a4a386> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x53c000 - 0x558fff com.apple.BluetoothUI 2.1 (2.1f14) <4fb8b6fd218f3c1d76876c260c8d57db> /System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/IOBluetoothUI
    0x574000 - 0x59fff7 com.apple.DiscRecordingUI 4.0.1 (4010.4.4) <e00473a9910f6ecfa9ce50122142147a> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x5bd000 - 0x5fbff7 libGLImage.dylib ??? (???) <090de775838db03ddc710f57abbf6218> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x605000 - 0x65eff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x672000 - 0x692ff2 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x6a2000 - 0xb75fde libGLProgrammability.dylib ??? (???) <a3d68f17f37ff55a3e61aca1e3aee522> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0xca3000 - 0xca6fff com.apple.BezelServicesFW 1.4.624 (1.4.624) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0xcb6000 - 0xcb8013 com.apple.iMovie.3DSpin 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/3DSpin.bundle/Contents/MacOS/3DSpin
    0x14d9f000 - 0x14dc9fff com.apple.audio.SoundManager.Components 3.9.3 (3.9.3) /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x14e2b000 - 0x14e98fff +com.DivXInc.DivXDecoder 6.6.0 (6.6.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x14eb5000 - 0x14fa3fef com.apple.RawCamera.bundle 2.0.2 (2.0.2) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14fd3000 - 0x14fd6ff3 com.apple.iMovie.AgedFilm 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/AgedFilm.bundle/Contents/MacOS/AgedFilm
    0x14fda000 - 0x14fdcffb com.apple.iMovie.CircleTransition 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/CircleTransition.bundle/Contents/MacOS/CircleTransi tion
    0x14fe0000 - 0x14fe2ffb com.apple.iMovie.CoreImageEffects 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/CoreImageEffects.bundle/Contents/MacOS/CoreImageEff ects
    0x14fe7000 - 0x14fe9fff com.apple.iMovie.CoreImageTransitions 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/CoreImageTransitions.bundle/Contents/MacOS/CoreImag eTransitions
    0x15887000 - 0x158e0ff7 com.apple.driver.AppleIntelGMA950GLDriver 1.5.24 (5.2.4) <7ad8389f645d8cedea00a918e06698ab> /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x158e8000 - 0x158f0fff com.apple.iMovie.ClipToChars 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/ClipToChars.bundle/Contents/MacOS/ClipToChars
    0x158f8000 - 0x158fafff com.apple.iMovie.Earthquake 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/Earthquake.bundle/Contents/MacOS/Earthquake
    0x15a00000 - 0x15b82fef GLEngine ??? (???) <ae45a092ada96b84359d556dea35d505> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x15bb0000 - 0x15bccff7 GLRendererFloat ??? (???) <bfd00750994cffe4d8da2f893484358b> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x16c89000 - 0x16c90ff3 com.apple.iMovie.ElectricalArcs 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/ElectricalArcs.bundle/Contents/MacOS/ElectricalArcs
    0x16c95000 - 0x16c99ff7 com.apple.iMovie.FairyDust 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/FairyDust.bundle/Contents/MacOS/FairyDust
    0x16c9d000 - 0x16c9effb com.apple.iMovie.FarFarAway 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/FarFarAway.bundle/Contents/MacOS/FarFarAway
    0x16ca3000 - 0x16ca7ff7 com.apple.iMovie.Filters 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/Filters.bundle/Contents/MacOS/Filters
    0x16cad000 - 0x16caeffb com.apple.iMovie.Flash 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/Flash.bundle/Contents/MacOS/Flash
    0x16cb2000 - 0x16cb6fdf com.apple.iMovie.FogFactory 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/FogFactory.bundle/Contents/MacOS/FogFactory
    0x16cbf000 - 0x16cc0ffb com.apple.iMovie.GhostTrails 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/GhostTrails.bundle/Contents/MacOS/GhostTrails
    0x16cc4000 - 0x16cc8ffb com.apple.iMovie.Glower 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/Glower.bundle/Contents/MacOS/Glower
    0x16ccc000 - 0x16ccdffb com.apple.iMovie.TitleBounceAcross 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/KTitles-BounceAcross.bundle/Contents/MacOS/KTitles- BounceAcross
    0x16cd1000 - 0x16cd2ff7 com.apple.iMovie.TitleConverge 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/KTitles-Converge.bundle/Contents/MacOS/KTitles-Conv erge
    0x16cd6000 - 0x16cd7fff com.apple.iMovie.TitleMaterialize 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/KTitles-Materialize.bundle/Contents/MacOS/KTitles-M aterialize
    0x16cdb000 - 0x16cdcff3 com.apple.iMovie.TitleTwirl 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/KTitles-Twirl.bundle/Contents/MacOS/KTitles-Twirl
    0x16ce0000 - 0x16ce1fef com.apple.iMovie.TitleUnscramble 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/KTitles-Unscramble.bundle/Contents/MacOS/KTitles-Un scramble
    0x16ce5000 - 0x16cf1fe3 com.apple.iMovie.LensFlare 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/LensFlare.bundle/Contents/MacOS/LensFlare
    0x16d1d000 - 0x16d1fff7 com.apple.iMovie.Letterbox 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/Letterbox.bundle/Contents/MacOS/Letterbox
    0x16d23000 - 0x16d24fff com.apple.iMovie.Mirror 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/Mirror.bundle/Contents/MacOS/Mirror
    0x16d28000 - 0x16d29ffb com.apple.iMovie.NSquare 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/NSquare.bundle/Contents/MacOS/NSquare
    0x16d2d000 - 0x16d2fff3 com.apple.iMovie.RadialTransition 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/RadialTransition.bundle/Contents/MacOS/RadialTransi tion
    0x16d33000 - 0x16d38fff com.apple.iMovie.Rainfall 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/Rainfall.bundle/Contents/MacOS/Rainfall
    0x16d3c000 - 0x16d3dff3 com.apple.iMovie.Subtitles 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/Subtitles.bundle/Contents/MacOS/Subtitles
    0x16d41000 - 0x16d4efff com.apple.iMovie.Titles 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/Titles.bundle/Contents/MacOS/Titles
    0x1803e000 - 0x18040fff com.apple.iMovie.Transitions 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/Transitions.bundle/Contents/MacOS/Transitions
    0x18045000 - 0x18047ff3 com.apple.iMovie.WarpTransition 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/WarpTransition.bundle/Contents/MacOS/WarpTransition
    0x1804b000 - 0x1804cffb com.apple.iMovie.WashTransition 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/WashTransition.bundle/Contents/MacOS/WashTransition
    0x18061000 - 0x18062ff3 com.apple.iMovie.ZoomTitles 6.0 (81) /Applications/iMovie HD.dmg.app/Contents/PlugIns/ZoomTitles.bundle/Contents/MacOS/ZoomTitles
    0x1807d000 - 0x1808ffff +com.noiseindustries.Units 1.1.1 (kFxFactoryRepositoryVersion) /Users/savannahbonner/Library/Graphics/Image Units/Noise Industries Units.plugin/Contents/MacOS/Noise Industries Units
    0x1809f000 - 0x180bbfe7 com.apple.QuartzComposer.ExtraPatches 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x180cd000 - 0x180ebfe3 libexpat.1.dylib ??? (???) <eff8a63a23a7d07af62b36fdb329e393> /usr/lib/libexpat.1.dylib
    0x18430000 - 0x1844dff7 com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x18c1c000 - 0x18c1ffff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9ce6f675ce724b0ba4e78323b79cf95c> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x18cec000 - 0x18cf1fff com.apple.audio.AppleHDAHALPlugIn 1.5.6 (1.5.6a19) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x18e2b000 - 0x18e4afed com.apple.audio.CoreAudioKit 1.5 (1.5) <82f2e52c502db7f3b32349a54209a0fe> /System/Library/Frameworks/CoreAudioKit.framework/CoreAudioKit
    0x18eed000 - 0x18ef6fff com.apple.IOFWDVComponents 1.9.5 (1.9.5) <889959011cb23c11785c378264400284> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x194e7000 - 0x19514ff7 com.apple.QuickTimeIIDCDigitizer 7.4.1 (14) <0b542b5eae137180039f20c3e9b98317> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x19554000 - 0x1974aff3 +net.telestream.wmv.import 2.1.2.72 (2.1.2.72) /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1977b000 - 0x1992cfce +net.telestream.wmv.advanced 2.1.2.72 (2.1.2.72) /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x1996f000 - 0x199aafff com.apple.QuickTimeFireWireDV.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x199b5000 - 0x199cefe3 com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x199d3000 - 0x199edfe3 com.apple.applepixletvideo 1.2.10 (1.2d10) <fdac8dfc20ba5d49672d57e04d5c09a2> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x19b20000 - 0x19b6afe4 com.apple.QuickTimeUSBVDCDigitizer 2.1.6 (2.1.6) /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x67e00000 - 0x67e36fef com.apple.MediaBrowser 2.0.3 (103) /Applications/iMovie HD.dmg.app/Contents/Frameworks/MediaBrowser.framework/Versions/A/MediaBrowser
    0x68480000 - 0x6849ffff com.apple.AVCVideoServices 1.0 (28) /Applications/iMovie HD.dmg.app/Contents/Frameworks/AVCVideoServices.framework/Versions/A/AVCVideoSe rvices
    0x68ba0000 - 0x68ba6ff7 com.apple.iMovieSupport 6.0 (51) /Applications/iMovie HD.dmg.app/Contents/Frameworks/iMovieSupport.framework/Versions/A/iMovieSupport
    0x68bf0000 - 0x68c2201b com.apple.MPEG2TSDecoder 1.0 (65) /Applications/iMovie HD.dmg.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/A/Mpeg2TsDecod er
    0x70000000 - 0x700e3ff2 com.apple.audio.units.Components 1.5.1 (1.5.1) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <7af47d3b00b2268947563c7fa8c59a07> /usr/lib/dyld
    0x9004e000 - 0x900b3ffb com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x900b4000 - 0x9017bfff com.apple.QuickTimeMPEG4.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9017c000 - 0x901d8ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9025b000 - 0x90322ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90323000 - 0x90326fff com.apple.CoreMediaAuthoringPrivate 1.2 (1.2) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x90327000 - 0x90406fff libobjc.A.dylib ??? (???) <a53206274b6c2d42691f677863f379ae> /usr/lib/libobjc.A.dylib
    0x90407000 - 0x90407ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90458000 - 0x9045cfff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9045d000 - 0x90504feb com.apple.QD 3.11.52 (???) <c72bd7bd2ce12694c3640a731d1ad878> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90505000 - 0x9053cfff com.apple.SystemConfiguration 1.9.1 (1.9.1) <8a76e429301afe4eba1330bfeaabd9f2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9053d000 - 0x9056afeb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9056b000 - 0x905f7ff7 com.apple.LaunchServices 286.5 (286.5) <33c3ae54abb276b61a99d4c764d883e2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90634000 - 0x9064fffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90650000 - 0x90654fff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90655000 - 0x90779fe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9085f000 - 0x90919fe3 com.apple.CoreServices.OSServices 224.4 (224.4) <ff5007ab220908ac54b6c661e447d593> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9091a000 - 0x90942ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x90943000 - 0x90a7bff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x90ab6000 - 0x90acefff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90acf000 - 0x90b62fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90b95000 - 0x90ba0fe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90ba1000 - 0x90bc0ffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90bc7000 - 0x90cc8fff com.apple.PubSub 1.0.2 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x90cfc000 - 0x90d83ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x90d84000 - 0x91d0bfea com.apple.QuickTimeComponents.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x921d9000 - 0x921dbfff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x921dc000 - 0x9228cfff edu.mit.Kerberos 6.0.12 (6.0.12) <9e98dfb4cde8b0510fdd972dc9fa1dc9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x922c2000 - 0x922c9fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x922d7000 - 0x922d7ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x922d8000 - 0x922e0fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x922e1000 - 0x922e2ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x922e3000 - 0x9255dfe7 com.apple.Foundation 6.5.4 (677.15) <6216196287f98a65ddb654d04d773e7b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9255e000 - 0x92572ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92573000 - 0x925edff8 com.apple.print.framework.PrintCore 5.5.2 (245.1) <3c9de512e95fbd838694ee5008d56a28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x925fb000 - 0x9260bffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9260c000 - 0x92649fff com.apple.CoreMediaIOServicesPrivate 1.4 (1.4) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9264a000 - 0x92658ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x92671000 - 0x92678ff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x92679000 - 0x927beff7 com.apple.ImageIO.framework 2.0.1 (2.0.1) <68ba11e689a9ca30f8310935cd1e02d6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x927bf000 - 0x927e5fff libcups.2.dylib ??? (???) <85ce204da14d62d6a3a5a9adfba01455> /usr/lib/libcups.2.dylib
    0x92cfd000 - 0x92d37fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92d38000 - 0x92d79fe7 libRIP.A.dylib ??? (???) <9d42e83d860433f9126c4871d1fe0ce8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92d7a000 - 0x92e5bff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x930c5000 - 0x938c2fef com.apple.AppKit 6.5.2 (949.26) <bc4593edd8a224409fb6953a354505a0> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x938c3000 - 0x9393afe3 com.apple.CFNetwork 221.5 (221.5) <5474cdd7d2a8b2e8059de249c702df9e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9394f000 - 0x93955fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93956000 - 0x939fffff com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <9e6719a7a0740f5c224099a7b853e45b> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93a00000 - 0x93cd9ff3 com.apple.CoreServices.CarbonCore 785.8 (785.8) <827c228e7d717b397cdb4941eba69553> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x93d96000 - 0x93e22ffb com.apple.QTKit 7.4.1 (14) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93e74000 - 0x9420aff7 com.apple.QuartzCore 1.5.1 (1.5.1) <665c80f6e28555b303020c8007c36b8b> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9420b000 - 0x9420efff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9424d000 - 0x9424dff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94258000 - 0x94282fff com.apple.CoreMediaPrivate 1.4 (1.4) <59630ee9096ecf2ca1e518da2f46c68d> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x94283000 - 0x9428affe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9428b000 - 0x942a1fe7 com.apple.CoreVideo 1.5.0 (1.5.0) <7e010557527a0e6d49147c297d16850a> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x942a5000 - 0x942bbfff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94443000 - 0x94453fff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x94454000 - 0x94456ff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94457000 - 0x945b6ff3 libSystem.B.dylib ??? (???) <4899376234e55593b22fc370935f8cdf> /usr/lib/libSystem.B.dylib
    0x945b7000 - 0x945b7ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x945b8000 - 0x94637ff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94638000 - 0x94677fef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94678000 - 0x94696fff libresolv.9.dylib ??? (???) <0629b6dcd71f4aac6a891cbe26253e85> /usr/lib/libresolv.9.dylib
    0x94697000 - 0x946c6fe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x946d5000 - 0x9470bfef libtidy.A.dylib ??? (???) <e4d3e7399fb83d7f145f9b4ec8196242> /usr/lib/libtidy.A.dylib
    0x9470c000 - 0x94da5fff com.apple.CoreGraphics 1.351.21 (???) <6c93fd21149f389129fe47fa6ef71880> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94da6000 - 0x94e2ffe3 com.apple.DesktopServices 1.4.5 (1.4.5) <8b264cd6abbbd750928c637e1247269d> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94e30000 - 0x94ec3ff3 com.apple.ApplicationServices.ATS 3.2 (???) <cdf31bd0ac7de54a35ee2d27cf86b6be> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94ec4000 - 0x94f14ff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94f46000 - 0x9524efff com.apple.HIToolbox 1.5.2 (???) <7449d6f2da33ded6936243a92e307459> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9524f000 - 0x9524fffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95250000 - 0x95250ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9540c000 - 0x954aafef com.apple.QuickTimeImporters.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x954ab000 - 0x955ddfef com.apple.CoreFoundation 6.5.1 (476.10) <d5bed2688a5eea11a6dc3a3c5c17030e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9562c000 - 0x9562cfff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9562d000 - 0x95672fef com.apple.Metadata 10.5.2 (398.7) <73a6424c06effc474e699cde6883de99> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95673000 - 0x95725ffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x95738000 - 0x9577afef com.apple.NavigationServices 3.5.1 (161) <cc6bd78eabf1e2e7166914e9f12f5850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x95799000 - 0x957a3feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x957a4000 - 0x957afff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x957b0000 - 0x9582cfeb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9582d000 - 0x95851fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x95852000 - 0x95852ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95859000 - 0x95859ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9585a000 - 0x958b4ff7 com.apple.CoreText 2.0.1 (???) <07494945ad1e3f5395599f42748457cc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x958b5000 - 0x95c73fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95c74000 - 0x95d47fef com.apple.QuickTimeH264.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x95d48000 - 0x95d4ffff com.apple.agl 3.0.9 (AGL-3.0.9) <7dac4a7cb0de2f6d08ae71c1249379e3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95d50000 - 0x95f1bff7 com.apple.security 5.0.2 (33001) <0788969ffe7961153219be10786da436> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95f87000 - 0x9629bfe2 com.apple.QuickTime 7.4.1 (14) <1a4838d29e0804a2a102f03c053600f0> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96465000 - 0x964f0fff com.apple.framework.IOKit 1.5.1 (???) <a17f9f5ea7e8016a467e67349f4d3d03> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x964f1000 - 0x9651cfe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x9651d000 - 0x9657affb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x9657b000 - 0x96580fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96676000 - 0x96a86fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96a87000 - 0x96c42ff3 com.apple.QuartzComposer 2.1 (106.3) <ed79ff3644e8883905ba3ba681742476> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96c43000 - 0x96d28ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96d29000 - 0x96da6fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96da7000 - 0x96db0fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96db1000 - 0x96e7cfff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0xeab00000 - 0xeab0ffff libConverter.dylib ??? (???) /System/Library/Printers/Libraries/libConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    I too kept getting the bad exc-kern protection crash report. It started happening out of nowhere. I tried everything from repairing permissions to deleting preference files but to no avail. A month later, a couple days ago, I reinstalled iMovie and noticed that It actually got far enough in the import process to actually start generating thumbnails from my hd700 camcorder. It eventually crashed in the middle of the import but it definitely made it farther in the capture process than before the reinstallation so I decided to try removing my usb external hard drive and import directly to the MB Pro. It worked!!! I did try removing the external hard drive and capturing straight to the MB Pro before the installation but it still crashed. So I would suggest doing a reinstall and remove any external drives.
    It appears to me as if it sees my external hard drive as a camcorder and gets confused but I could be wrong.

  • Mid-2010 15" MacBook Pro, random shut-downs running Mavericks,

    Since the last two Mavericks OS updates, beginning April 21st, I am experiencing random shut-downs on a mid-2010 15" MacBook Pro, any suggestions? I've seen posts regarding the known logic board issue, I had no problem before the last two OS updates. Seems to be related to sleep/wake. Running 10.9.2

    Hi Andy, would you take more look at this log. . . random shut down happened again, look at 11:54 am and before, I re-booted at 12:02. Had suspected my external monitor at the office, laptop does not do this at home, ran for three straight days, no issues. No monitor connected today as a test. Plugged in at the office for just over three hours and bam. could be the battery thing, will try AHT or Apple Diagnostics, could it be a Time Machine related issue? Thanks in advance.
    2014-05-12 11:07:02 -0500 mdworker32[4542]: CGSConnectionByID: 0 is not a valid connection ID.
    2014-05-12 11:07:02 -0500 mdworker32[4542]: CGSGetSpaceManagementMode: No connection with id 0x       0
    2014-05-12 11:07:39 -0500 com.apple.backupd[4529]: Copied 4124 items (121.1 MB) from volume Pearl. Linked 8137.
    2014-05-12 11:07:47 -0500 com.apple.backupd[4529]: Will copy (559 KB) from Pearl
    2014-05-12 11:07:47 -0500 com.apple.backupd[4529]: Found 45 files (559 KB) needing backup
    2014-05-12 11:07:47 -0500 com.apple.backupd[4529]: 997 MB required (including padding), 5.29 GB available
    2014-05-12 11:08:29 -0500 com.apple.backupd[4529]: Copied 112 items (562 KB) from volume Pearl. Linked 1151.
    2014-05-12 11:08:33 -0500 com.apple.backupd[4529]: Created new backup: 2014-05-12-110832
    2014-05-12 11:08:37 -0500 com.apple.backupd[4529]: Starting post-backup thinning
    2014-05-12 11:08:37 -0500 com.apple.backupd[4529]: No post-backup thinning needed: no expired backups exist
    2014-05-12 11:08:37 -0500 com.apple.backupd[4529]: Backup completed successfully.
    2014-05-12 11:32:19 -0500 Finder[207]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¬°¿".
    2014-05-12 11:32:20 -0500 Finder[207]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¬°¿".
    2014-05-12 11:32:30 -0500 Finder[207]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¬°¿".
    2014-05-12 11:32:31 -0500 NetAuthSysAgent[4579]: NAHSelectionAcquireCredential The operation couldn’t be completed. (com.apple.NetworkAuthenticationHelper error -1765328228 - acquire_kerberos failed gcross@LOCAL: -1765328228 - unable to reach any KDC in realm LOCAL, tried 0 KDCs)
    2014-05-12 11:32:31 -0500 kernel[0]: ASP_TCP CheckReqQueueSize: increasing req queue from 32 to 128 entries. so 0xffffff804073dca0
    2014-05-12 11:32:33 -0500 mds[38]: (Normal) Volume: volume:0x7ff3a281e000 ********** Bootstrapped Creating a default store:1 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Public
    2014-05-12 11:32:33 -0500 Finder[207]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¬°¿".
    2014-05-12 11:32:38 -0500 Finder[207]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¬°¿".
    2014-05-12 11:32:44 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2014-05-12 11:32:44 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: Bogus event received by listener connection:
    <error: 0x7fff7cc67b50> { count = 1, contents =
              "XPCErrorDescription" => <string: 0x7fff7cc67e60> { length = 18, contents = "Connection invalid" }
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowTransform: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: CGSSetWindowTransformAtPlacement: Failed
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: ERROR: CGSSetWindowTransformAtPlacement() returned 1001
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowListAlpha: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowTransform: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: CGSSetWindowTransformAtPlacement: Failed
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: ERROR: CGSSetWindowTransformAtPlacement() returned 1001
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowListAlpha: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowTransform: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: CGSSetWindowTransformAtPlacement: Failed
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: ERROR: CGSSetWindowTransformAtPlacement() returned 1001
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowListAlpha: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowTransform: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: CGSSetWindowTransformAtPlacement: Failed
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: ERROR: CGSSetWindowTransformAtPlacement() returned 1001
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowListAlpha: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowTransform: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: CGSSetWindowTransformAtPlacement: Failed
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: ERROR: CGSSetWindowTransformAtPlacement() returned 1001
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowListAlpha: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowTransform: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: CGSSetWindowTransformAtPlacement: Failed
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: ERROR: CGSSetWindowTransformAtPlacement() returned 1001
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowListAlpha: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowTransform: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: CGSSetWindowTransformAtPlacement: Failed
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: ERROR: CGSSetWindowTransformAtPlacement() returned 1001
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowListAlpha: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowTransform: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: CGSSetWindowTransformAtPlacement: Failed
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: ERROR: CGSSetWindowTransformAtPlacement() returned 1001
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowListAlpha: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowTransform: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: CGSSetWindowTransformAtPlacement: Failed
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: ERROR: CGSSetWindowTransformAtPlacement() returned 1001
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowListAlpha: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowTransform: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: CGSSetWindowTransformAtPlacement: Failed
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: ERROR: CGSSetWindowTransformAtPlacement() returned 1001
    2014-05-12 11:32:47 -0500 WindowServer[94]: CGXSetWindowTransform: Operation on a window 0x30c requiring rights kCGSWindowRightPresenter by caller com.apple.appkit.xpc.openAndSav
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: CGSSetWindowTransformAtPlacement: Failed
    2014-05-12 11:32:47 -0500 com.apple.appkit.xpc.openAndSavePanelService[4585]: ERROR: CGSSetWindowTransformAtPlacement() returned 1001
    2014-05-12 11:32:58 -0500 com.apple.IconServicesAgent[237]: main Failed to composit image for binding VariantBinding [0x4d5] flags: 0x8 binding: FileInfoBinding [0x5d5] - extension: jpg, UTI: public.jpeg, fileType: ????.
    2014-05-12 11:32:58 -0500 quicklookd[4576]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: jpg, UTI: public.jpeg, fileType: ???? request size:16 scale: 1
    2014-05-12 11:33:18 -0500 WindowServer[94]: _CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    2014-05-12 11:33:18 -0500 WindowServer[94]: _CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    2014-05-12 11:33:35 -0500 Mail[198]: view service marshal for <NSRemoteView: 0x7ff34af8e8c0> failed to forget accessibility connection due to Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection was invalidated from this process.) UserInfo=0x600001670180 {NSDebugDescription=The connection was invalidated from this process.}
    timestamp: 11:33:35.741 Monday 12 May 2014
    process/thread/queue: Mail (198) / 0x1167ee000 / com.apple.NSXPCConnection.user.endpoint
    code: line 2972 of /SourceCache/ViewBridge/ViewBridge-46.2/NSRemoteView.m in __57-[NSRemoteView viewServiceMarshalProxy:withErrorHandler:]_block_invoke
    domain: communications-failure
    2014-05-12 11:36:24 -0500 xpcproxy[4597]: assertion failed: 13C1021: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    2014-05-12 11:38:48 -0500 AddressBookSourceSync[4606]: -[ABPerson valueForProperty:com.apple.speech.ABSpeakable] - unknown property. This warning will be displayed only once per unknown property, per session.
    2014-05-12 11:42:32 -0500 CalendarAgent[246]: Account refresh finished without error
    2014-05-12 11:44:00 -0500 Mail[198]: Error while parsing IMAP response * FETCH 0(): Read failure
    Remaining text: <>
    Full text: <* 1601 FETCH (UID 1605 BODYSTRUCTURE (("text" "plain" ("charset" "iso-8859-1") NIL NIL "quoted-printable" 2650 89 NIL NIL NIL NIL)(("text" "html" ("charset" "iso-8859-1") NIL NIL "quoted-printable" 12502 268 NIL NIL NIL NIL)("application" "pdf" ("x-unix-mode" "0777" "name" "20x30 CiscoLive Setup 2014.pdf") NIL NIL "base64" 13318436 NIL ("inline" ("filename" "20x30 CiscoLive Setup 2014.pdf")) NIL NIL)("text" "html" ("charset" "us-ascii") NIL NIL "7bit" 215 0 NIL NIL NIL NIL) "mixed" ("boundary" "Apple-Mail=_5B6E2477-0D78-4444-AA9F-CF646CBAB667") NIL NIL NIL) "alternative" ("boundary" "Apple-Mail=_1B3AE229-4B2A-492B-9A58-8B6D4646DFDE") NIL NIL NIL) BODY[] {13335583}>
    2014-05-12 11:44:00 -0500 Mail[198]: Error while parsing IMAP response * FETCH 0(): Read failure
    Remaining text: <>
    Full text: <* 22 FETCH (UID 3887 BODYSTRUCTURE (("text" "html" ("charset" "iso-8859-1") NIL NIL "quoted-printable" 12422 267 NIL NIL NIL NIL)("application" "pdf" ("x-unix-mode" "0777" "name" "20x30 CiscoLive Setup 2014.pdf") "<1DD242D6-45FD-4ECD-A45E-B9FCA885D359>" NIL "base64" 13318436 NIL ("inline" ("filename" "20x30 CiscoLive Setup 2014.pdf")) NIL NIL) "related" ("type" "text/html" "boundary" "Apple-Mail=_7A5CFACB-E0DF-45E8-925E-643939094394") NIL NIL NIL) BODY[] {13332349}>
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.google - 6E8A0838-5473-4A78-8459-BAC083E3FA26
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.mail - 9818DF7B-981E-4E6B-AEAD-B16D7C6A6D81
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.aol - 778A4426-01BE-4C6C-8444-6FC0120A1133
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.yahoo - 4F991ADF-8780-4689-9753-97D40135AC28
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.ichat - 91FC1E34-B848-4515-91A2-0EF6FEDBB010
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.mail - B1813EC0-7766-4503-A436-66B7EE0ED990
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBSyncOperation mergeLocalChanges:]: Got the following deleted accounts: {
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBSyncOperation mergeLocalChanges:]: Looking for UUID: e42946fc-4773-422f-a238-98a3636480ab from remote key: 2cb478ddf4a0016262d195c5c5ad6e452f32c6
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBSyncOperation mergeLocalChanges:]: Account not found during local discovery, however was not found in list of deleted accounts, will not delete: 2cb478ddf4a0016262d195c5c5ad6e452f32c6
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBSyncOperation mergeLocalChanges:]: Got the following deleted accounts: {
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBSyncOperation mergeLocalChanges:]: Looking for UUID: AC4EDF24-92B9-492F-A844-BCDB60A35A14-com.apple.reminders.iaplugin from remote key: 3060e48ea0e4808d99dbd780dbbe12792c7cde85
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBSyncOperation mergeLocalChanges:]: Account not found during local discovery, however was not found in list of deleted accounts, will not delete: 3060e48ea0e4808d99dbd780dbbe12792c7cde85
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBSyncOperation mergeLocalChanges:]: Got the following deleted accounts: {
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBSyncOperation mergeLocalChanges:]: Looking for UUID: AC4EDF24-92B9-492F-A844-BCDB60A35A14-com.apple.calendar.iaplugin from remote key: 88d3b5c883ebb4377d8a2e59f5af84ad6bcf7e26
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBSyncOperation mergeLocalChanges:]: Account not found during local discovery, however was not found in list of deleted accounts, will not delete: 88d3b5c883ebb4377d8a2e59f5af84ad6bcf7e26
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBSyncOperation mergeLocalChanges:]: Got the following deleted accounts: {
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBSyncOperation mergeLocalChanges:]: Looking for UUID: x-coredata://839DD974-DEFC-4093-9546-BA0C3C1783DB/IMAPAccount/p1 from remote key: fe2110d6ad4ad03db14f9f61674776365d112
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBSyncOperation mergeLocalChanges:]: Account not found during local discovery, however was not found in list of deleted accounts, will not delete: fe2110d6ad4ad03db14f9f61674776365d112
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBLocalDictionary writeLocalMapping:]: Status: Writing out local mapping to disk
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBLocalDictionary writeLocalMapping:]: Status: Ending writing out local mapping to disk
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBRemoteDictionary writeDevices]: Status: Writing out of devices
    2014-05-12 11:51:33 -0500 icbaccountsd[4619]: -[ICBRemoteDictionary writeDevices]: Status: Ending writing out of device
    2014-05-12 11:54:04 -0500 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=4625[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    2014-05-12 12:02:32 -0500 bootlog[0]: BOOT_TIME 1399914152 0
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 syslogd[22]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2014-05-12 12:03:10 -0500 kernel[0]: Longterm timer threshold: 1000 ms
    2014-05-12 12:03:10 -0500 kernel[0]: Darwin Kernel Version 13.1.0: Wed Apr  2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
    2014-05-12 12:03:10 -0500 kernel[0]: vm_page_bootstrap: 1911447 free pages and 169321 wired pages
    2014-05-12 12:03:10 -0500 kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    2014-05-12 12:03:10 -0500 kernel[0]: zone leak detection enabled
    2014-05-12 12:03:10 -0500 kernel[0]: "vm_compressor_mode" is 4
    2014-05-12 12:03:10 -0500 kernel[0]: standard timeslicing quantum is 10000 us
    2014-05-12 12:03:10 -0500 kernel[0]: standard background quantum is 2500 us
    2014-05-12 12:03:10 -0500 kernel[0]: mig_table_max_displ = 74
    2014-05-12 12:03:10 -0500 kernel[0]: Notice - new kext jp.co.canon.bj.print.BJUSBLoad, v10.69 matches prelinked kext but can't determine if executables are the same (no UUIDs).
    2014-05-12 12:03:10 -0500 kernel[0]: Refusing new kext jp.co.canon.bj.print.BJUSBLoad, v10.69: already have prelinked v10.75.20.
    2014-05-12 12:03:10 -0500 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    2014-05-12 12:03:10 -0500 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=1 Enabled
    2014-05-12 12:03:10 -0500 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    2014-05-12 12:03:10 -0500 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=5 Enabled
    2014-05-12 12:03:10 -0500 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=0 Disabled
    2014-05-12 12:03:10 -0500 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=0 Disabled
    2014-05-12 12:03:10 -0500 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=0 Disabled
    2014-05-12 12:03:10 -0500 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=0 Disabled
    2014-05-12 12:03:10 -0500 kernel[0]: calling mpo_policy_init for TMSafetyNet
    2014-05-12 12:03:10 -0500 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    2014-05-12 12:03:10 -0500 kernel[0]: calling mpo_policy_init for Sandbox
    2014-05-12 12:03:10 -0500 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    2014-05-12 12:03:10 -0500 kernel[0]: calling mpo_policy_init for Quarantine
    2014-05-12 12:03:10 -0500 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    2014-05-12 12:03:10 -0500 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    2014-05-12 12:03:10 -0500 kernel[0]: The Regents of the University of California. All rights reserved.
    2014-05-12 12:03:10 -0500 kernel[0]: MAC Framework successfully initialized
    2014-05-12 12:03:10 -0500 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    2014-05-12 12:03:10 -0500 kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    2014-05-12 12:03:10 -0500 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    2014-05-12 12:03:10 -0500 kernel[0]: ACPI: sleep states S3 S4 S5
    2014-05-12 12:03:10 -0500 kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    2014-05-12 12:03:10 -0500 kernel[0]: [ PCI configuration begin ]
    2014-05-12 12:03:10 -0500 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0024
    2014-05-12 12:03:10 -0500 kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    2014-05-12 12:03:10 -0500 kernel[0]: console relocated to 0xf80030000
    2014-05-12 12:03:10 -0500 kernel[0]: [ PCI configuration end, bridges 7, devices 16 ]
    2014-05-12 12:03:10 -0500 kernel[0]: [ PCI configuration begin ]
    2014-05-12 12:03:10 -0500 kernel[0]: [ PCI configuration end, bridges 8, devices 22 ]
    2014-05-12 12:03:10 -0500 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 7c6d62fffef943e8; max speed s800.
    2014-05-12 12:03:10 -0500 kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    2014-05-12 12:03:10 -0500 kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    2014-05-12 12:03:10 -0500 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    2014-05-12 12:03:10 -0500 kernel[0]: rooting via boot-uuid from /chosen: 7A3F1274-1AA3-3226-8D12-95CBFC410AEC
    2014-05-12 12:03:10 -0500 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    2014-05-12 12:03:10 -0500 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    2014-05-12 12:03:10 -0500 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    2014-05-12 12:03:10 -0500 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    2014-05-12 12:03:10 -0500 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    2014-05-12 12:03:10 -0500 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    2014-05-12 12:03:10 -0500 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/ST9500420ASG Media/IOGUIDPartitionScheme/Customer@2
    2014-05-12 12:03:10 -0500 kernel[0]: BSD root: disk0s2, major 1, minor 1
    2014-05-12 12:03:10 -0500 kernel[0]: BTCOEXIST off
    2014-05-12 12:03:10 -0500 kernel[0]: BRCM tunables:
    2014-05-12 12:03:10 -0500 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    2014-05-12 12:03:10 -0500 kernel[0]: jnl: b(1, 1): replay_journal: from: 12292096 to: 17313280 (joffset 0x1638e000)
    2014-05-12 12:03:10 -0500 kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833, 2
    2014-05-12 12:03:10 -0500 kernel[0]: jnl: b(1, 1): journal replay done.
    2014-05-12 12:03:10 -0500 kernel[0]: hfs: mounted Pearl on device root_device
    2014-05-12 12:03:10 -0500 kernel[0]: hfs: Removed 27 orphaned / unlinked files and 8691 directories
    2014-05-12 12:02:38 -0500 com.apple.launchd[1]: *** launchd[1] has started up. ***
    2014-05-12 12:02:38 -0500 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    2014-05-12 12:03:04 -0500 com.apple.SecurityServer[15]: Session 100000 created
    2014-05-12 12:03:10 -0500 hidd[47]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    2014-05-12 12:03:10 -0500 hidd[47]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    2014-05-12 12:03:10 -0500 fseventsd[48]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (251018 38 251323)
    2014-05-12 12:03:18 -0500 kernel[0]: Waiting for DSMOS...
    2014-05-12 12:03:19 -0500 kernel[0]: VM Swap Subsystem is ON
    2014-05-12 12:03:19 -0500 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    2014-05-12 12:03:19 -0500 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    2014-05-12 12:03:20 -0500 fseventsd[48]: log dir: /.fseventsd getting new uuid: AE239A89-60C8-4D7F-9202-D032BF7D1FD9
    2014-05-12 12:03:20 -0500 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    2014-05-12 12:03:22 -0500 com.apple.usbmuxd[20]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    2014-05-12 12:03:22 -0500 configd[57]: dhcp_arp_router: en1 SSID unavailable
    2014-05-12 12:03:23 -0500 kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 1-Gigabit, Full-duplex, Symmetric flow-control, Debug [796d,0301,0de1,0300,c5e1,2800]
    2014-05-12 12:03:23 -0500 configd[57]: setting hostname to "TheBlackPearl-2.local"
    2014-05-12 12:03:23 -0500 configd[57]: network changed.
    2014-05-12 12:03:23 -0500 kernel[0]: fNumVRAMBlocks is 4
    2014-05-12 12:03:23 -0500 kernel[0]: AGC: 3.4.35, HW version=1.9.21, flags:0, features:20600
    2014-05-12 12:03:23 -0500 kernel[0]: IOBluetoothUSBDFU::probe
    2014-05-12 12:03:23 -0500 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8218 FirmwareVersion - 0x0042
    2014-05-12 12:03:23 -0500 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x4800 ****
    2014-05-12 12:03:23 -0500 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x4800 ****
    2014-05-12 12:03:23 -0500 kernel[0]: NVDAStartup: Official
    2014-05-12 12:03:23 -0500 kernel[0]: NVDANV50HAL loaded and registered
    2014-05-12 12:03:23 -0500 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    2014-05-12 12:03:23 -0500 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    2014-05-12 12:03:23 -0500 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    2014-05-12 12:03:23 -0500 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    2014-05-12 12:03:23 -0500 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    2014-05-12 12:03:23 -0500 kernel[0]: Previous Shutdown Cause: -79
    2014-05-12 12:03:23 -0500 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    2014-05-12 12:03:23 -0500 kernel[0]: init
    2014-05-12 12:03:23 -0500 kernel[0]: probe
    2014-05-12 12:03:23 -0500 kernel[0]: start
    2014-05-12 12:03:23 -0500 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x4800
    2014-05-12 12:03:23 -0500 kernel[0]: [IOBluetoothHCIController][start] -- completed
    2014-05-12 12:03:24 -0500 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    2014-05-12 12:03:24 -0500 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xde00 -- 0xa000 -- 0x4800 ****
    2014-05-12 12:03:24 -0500 kernel[0]: IOMemoryDescriptor 0x3e04f5991d93d443 prepared read only
    2014-05-12 12:03:24 -0500 kernel[0]: Backtrace 0xffffff80006b9e6e 0xffffff7f8223f0e1 0xffffff7f82249fe2 0xffffff8000692fcf 0xffffff8000692b8f 0xffffff800068e769 0xffffff80006936e3
    2014-05-12 12:03:24 -0500 kernel[0]: Kernel Extensions in backtrace:
    2014-05-12 12:03:24 -0500 kernel[0]: com.apple.driver.AppleIntelHDGraphics(8.2.4)[84DE8845-D8E6-3C61-B457-1AC155AEF9 04]@0xffffff7f9a421000->0xffffff7f9a4e0fff
    2014-05-12 12:03:24 -0500 kernel[0]: dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f98aba000
    2014-05-12 12:03:24 -0500 kernel[0]: dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f98e98000
    2014-05-12 12:03:24 -0500 kernel[0]: IOMemoryDescriptor 0x3e04f5991d930343 prepared read only
    2014-05-12 12:03:24 -0500 kernel[0]: Backtrace 0xffffff80006b9e6e 0xffffff7f8223f2db 0xffffff7f82249fe2 0xffffff8000692fcf 0xffffff8000692b8f 0xffffff800068e769 0xffffff80006936e3
    2014-05-12 12:03:24 -0500 kernel[0]: Kernel Extensions in backtrace:
    2014-05-12 12:03:24 -0500 kernel[0]: com.apple.driver.AppleIntelHDGraphics(8.2.4)[84DE8845-D8E6-3C61-B457-1AC155AEF9 04]@0xffffff7f9a421000->0xffffff7f9a4e0fff
    2014-05-12 12:03:24 -0500 kernel[0]: dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f98aba000
    2014-05-12 12:03:24 -0500 kernel[0]: dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f98e98000
    2014-05-12 12:03:24 -0500 kernel[0]: DSMOS has arrived
    2014-05-12 12:03:27 -0500 configd[57]: network changed: v4(en0+:192.168.0.15) DNS+ Proxy+ SMB
    2014-05-12 12:03:28 -0500 com.apple.SecurityServer[15]: Entering service
    2014-05-12 12:03:28 -0500 mDNSResponder[39]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    2014-05-12 12:03:28 -0500 awacsd[61]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    2014-05-12 12:03:28 -0500 digest-service[74]: label: default
    2014-05-12 12:03:28 -0500 digest-service[74]:           dbname: od:/Local/Default
    2014-05-12 12:03:28 -0500 digest-service[74]:           mkey_file: /var/db/krb5kdc/m-key
    2014-05-12 12:03:28 -0500 digest-service[74]:           acl_file: /var/db/krb5kdc/kadmind.acl
    2014-05-12 12:03:28 -0500 loginwindow[42]: Login Window Application Started
    2014-05-12 12:03:28 -0500 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2014-05-12 12:03:28 -0500 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    2014-05-12 12:03:28 -0500 configd[57]: network changed: v4(en0:192.168.0.15) DNS* Proxy SMB
    2014-05-12 12:03:28 -0500 mDNSResponder[39]: D2D_IPC: Loaded
    2014-05-12 12:03:28 -0500 mDNSResponder[39]: D2DInitialize succeeded
    2014-05-12 12:03:28 -0500 configd[57]: network changed.
    2014-05-12 12:03:28 -0500 awacsd[61]: InnerStore CopyAllZones: no info in Dynamic Store
    2014-05-12 12:03:28 -0500 mDNSResponder[39]:   4: Listening for incoming Unix Domain Socket client requests
    2014-05-12 12:03:28 -0500 systemkeychain[94]: done file: /var/run/systemkeychaincheck.done
    2014-05-12 12:03:28 -0500 networkd[108]: networkd.108 built Aug 24 2013 22:08:46
    2014-05-12 12:03:29 -0500 mdmclient[40]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2014-05-12 12:03:30 -0500 digest-service[74]: digest-request: uid=0
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 WindowServer[96]: Server is starting up
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 mds[38]: (Normal) FMW: FMW 0 0
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 stackshot[24]: Timed out waiting for IOKit to finish matching.
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 configd[57]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, "*¿°¿".
    2014-05-12 12:03:30 -0500 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    2014-05-12 12:03:30 -0500 airportd[65]: airportdProcessDLILEvent: en1 attached (up)
    2014-05-12 12:03:30 -0500 airportd[65]: airportdProcessDLILEvent: en1 attached (up)
    2014-05-12 12:03:30 -0500 kernel[0]: createVirtIf(): ifRole = 1
    2014-05-12 12:03:30 -0500 kernel[0]: in func createVirtualInterface ifRole = 1
    2014-05-12 12:03:30 -0500 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    2014-05-12 12:03:30 -0500 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    2014-05-12 12:03:30 -0500 kernel[0]: Created virtif 0xffffff802c968400 p2p0
    2014-05-12 12:03:30 -0500 mds[38]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    2014-05-12 12:03:30 -0500 digest-service[74]: digest-request: netr probe 0
    2014-05-12 12:03:30 -0500 mds[38]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    2014-05-12 12:03:30 -0500 digest-service[74]: digest-request: init request
    2014-05-12 12:03:30 -0500 digest-service[74]: digest-request: init return domain: BUILTIN server: THEBLACKPEARL-2 indomain was: <NULL>
    2014-05-12 12:03:30 -0500 mds[38]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    2014-05-12 12:03:30 -0500 mdmclient[40]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2014-05-12 12:03:30 -0500 locationd[44]: NBB-Cou

Maybe you are looking for

  • Error while creating a application server connection in jdeveloper 10.1.3.2

    When I am trying to create a connection using the wizard with the following inputs hostname as :- localhost RMI Por as 22667 When I use the test conection receive the following error racle.oc4j.admin.jmx.shared.exceptions.JMXRuntimeException: Error w

  • Maxlogfile parameter increse

    Hello I want to increase Maxlogfile parameter value .what is process. Thanks

  • Dynamic selection of DDF  standard logical database

    Dear All I have requirement like i have to hide dynamic selection button from my custom report where I am using logical database DDF . Is there any way to hide this button on my custom report . Regards Sunanda Mandavi

  • Adding SP Group to Folder using JSOM in O365

    Hi, Is it possible to add a SharePoint Group to a folder in a Document Library using client side javascript? We can't use the normal methods because SP.Folder object doesn't have get_roleAssignments() method. I'm looking to run a script from a page w

  • Pop up problems in Safari on OS X Yosemite!

    My pop up blocker is activated, and Cookies are only allowed on websites I visit frequently, yet i have been having a recurring issue on my Macbook air (11in, 4 GB 1600 MHz DDR3) ever since I updated the software on my laptop to OS X Yosemite. The is