Observing a Key in PDFView

Hi,
I have a PDFView in my application, and I want my controller class to be notified when the user zooms in or out. I'm a Cocoa beginner, but I should be able to use key-value observing in this case. I have thus implemented the following two methods in my controller:
- (id)init
self = [super init];
[pdfView addObserver:self
forKeyPath:@"scaleFactor"
options:NSKeyValueObservingOptionNew
context:NULL];
return self;
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context
NSLog(@"changed!");
Unfortunately, this doesn't seem to work. observeValueForKeyPath is never called. Am I doing something wrong?
Thanks,
Alex
EDIT: I moved the addObserver code to a method that is called when the user presses a button. Funnily enough, it works now. Why can't I call addObserver from the init method?
null

First of all, your init method is not standard, you should test if the return value of [super init]; is valid:
- (id)init
if(self = [super init])
// your init code
return self;
And then, I think the problem comes from the fact that when the init method is called, other instances of the nib are not.
So, to solve this problem, you simply put your code into the -awakeFromNib method, this message is sent to every instance contained in the Nib file when it finished to initialize it, which means that all IBOutlet are considered as valid.

Similar Messages

  • IMAPConnection was deallocated while key value observers were still reg....

    Every so often my IMAP connect hangs to the point I have to Force Quit the application to get it back. It appears to be hanging on
    *Saving Draft*
    STOPPING: Opening "ClickMarkets"...
    *Sending message*
    Archiving copy to mailbox "Sent Messages"
    I looked in the Console and found several messages of the form:
    12/24/09 11:35:43 PM Mail[138] An instance 0x128899ee0 of class IMAPConnection was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x117664760> (
    <NSKeyValueObservance 0x121d98f50: Observer: 0x1005b1080, Key path: isDisconnected, Options: <New: NO, Old: NO, Prior: NO> Context: 0x0, Property: 0x1164db1a0>
    <NSKeyValueObservance 0x121d98f50: Observer: 0x1005b1080, Key path: isDisconnected, Options: <New: NO, Old: NO, Prior: NO> Context: 0x0, Property: 0x1164db1a0>
    Followed ultimately by the last entry which was an exception:
    12/25/09 11:06:59 PM Mail[138] An exception was thrown 'Cannot remove an observer <IMAPConnectionPool 0x1005b1080> for the key path "isDisconnected" from <IMAPConnection 0x103c476f0> because it is not registered as an observer.' during invocation of -[IMAPMailboxSyncEngine _goWithMessagesIfNeeded:]. Stack trace:
    0 CoreFoundation 0x00007fff82685444 __exceptionPreprocess + 180
    1 libobjc.A.dylib 0x00007fff85d330f3 objcexceptionthrow + 45
    2 CoreFoundation 0x00007fff82685267 +[NSException raise:format:arguments:] + 103
    3 CoreFoundation 0x00007fff826851f4 +[NSException raise:format:] + 148
    4 Foundation 0x00007fff84d28ede -[NSObject(NSKeyValueObserverRegistration) _removeObserver:forProperty:] + 597
    5 Foundation 0x00007fff84d28c2b -[NSObject(NSKeyValueObserverRegistration) removeObserver:forKeyPath:] + 135
    6 Message 0x00007fff82e41b90 -[IMAPConnectionPool _setConnection:forMailbox:clear:inDictionary:] + 1181
    7 Message 0x00007fff82f1dd24 -[IMAPConnectionPool _suspendGatewayOfConnection:mailbox:forMailbox:resumingGateway:] + 499
    8 Message 0x00007fff82e64b32 -[IMAPConnectionPool yieldGateway:] + 247
    9 Message 0x00007fff82e64106 -[IMAPGateway yield] + 54
    10 Message 0x00007fff82e48f76 -[IMAPMailboxSyncEngine _goWithMessages:] + 1433
    11 CoreFoundation 0x00007fff8265b0dc _invoking__ + 140
    12 CoreFoundation 0x00007fff8265afad -[NSInvocation invoke] + 141
    13 Message 0x00007fff82dff3f1 -[MonitoredInvocation invoke] + 214
    14 Message 0x00007fff82de6888 -[ThrowingInvocationOperation main] + 31
    15 Message 0x00007fff82de61c8 -[_MFInvocationOperation main] + 275
    16 Foundation 0x00007fff84d4206d -[__NSOperationInternal start] + 681
    17 Foundation 0x00007fff84d41d23 ___startOperations_block_invoke2 + 99
    18 libSystem.B.dylib 0x00007fff86df9ce8 dispatch_call_block_andrelease + 15
    19 libSystem.B.dylib 0x00007fff86dd8279 dispatch_workerthread2 + 231
    20 libSystem.B.dylib 0x00007fff86dd7bb8 pthreadwqthread + 353
    21 libSystem.B.dylib 0x00007fff86dd7a55 start_wqthread + 13
    Any clues on what might be triggering this issue to arise and how I can resolve it?
    Thanks!

    Every so often my IMAP connect hangs to the point I have to Force Quit the application to get it back. It appears to be hanging on
    *Saving Draft*
    STOPPING: Opening "ClickMarkets"...
    *Sending message*
    Archiving copy to mailbox "Sent Messages"
    I looked in the Console and found several messages of the form:
    12/24/09 11:35:43 PM Mail[138] An instance 0x128899ee0 of class IMAPConnection was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x117664760> (
    <NSKeyValueObservance 0x121d98f50: Observer: 0x1005b1080, Key path: isDisconnected, Options: <New: NO, Old: NO, Prior: NO> Context: 0x0, Property: 0x1164db1a0>
    <NSKeyValueObservance 0x121d98f50: Observer: 0x1005b1080, Key path: isDisconnected, Options: <New: NO, Old: NO, Prior: NO> Context: 0x0, Property: 0x1164db1a0>
    Followed ultimately by the last entry which was an exception:
    12/25/09 11:06:59 PM Mail[138] An exception was thrown 'Cannot remove an observer <IMAPConnectionPool 0x1005b1080> for the key path "isDisconnected" from <IMAPConnection 0x103c476f0> because it is not registered as an observer.' during invocation of -[IMAPMailboxSyncEngine _goWithMessagesIfNeeded:]. Stack trace:
    0 CoreFoundation 0x00007fff82685444 __exceptionPreprocess + 180
    1 libobjc.A.dylib 0x00007fff85d330f3 objcexceptionthrow + 45
    2 CoreFoundation 0x00007fff82685267 +[NSException raise:format:arguments:] + 103
    3 CoreFoundation 0x00007fff826851f4 +[NSException raise:format:] + 148
    4 Foundation 0x00007fff84d28ede -[NSObject(NSKeyValueObserverRegistration) _removeObserver:forProperty:] + 597
    5 Foundation 0x00007fff84d28c2b -[NSObject(NSKeyValueObserverRegistration) removeObserver:forKeyPath:] + 135
    6 Message 0x00007fff82e41b90 -[IMAPConnectionPool _setConnection:forMailbox:clear:inDictionary:] + 1181
    7 Message 0x00007fff82f1dd24 -[IMAPConnectionPool _suspendGatewayOfConnection:mailbox:forMailbox:resumingGateway:] + 499
    8 Message 0x00007fff82e64b32 -[IMAPConnectionPool yieldGateway:] + 247
    9 Message 0x00007fff82e64106 -[IMAPGateway yield] + 54
    10 Message 0x00007fff82e48f76 -[IMAPMailboxSyncEngine _goWithMessages:] + 1433
    11 CoreFoundation 0x00007fff8265b0dc _invoking__ + 140
    12 CoreFoundation 0x00007fff8265afad -[NSInvocation invoke] + 141
    13 Message 0x00007fff82dff3f1 -[MonitoredInvocation invoke] + 214
    14 Message 0x00007fff82de6888 -[ThrowingInvocationOperation main] + 31
    15 Message 0x00007fff82de61c8 -[_MFInvocationOperation main] + 275
    16 Foundation 0x00007fff84d4206d -[__NSOperationInternal start] + 681
    17 Foundation 0x00007fff84d41d23 ___startOperations_block_invoke2 + 99
    18 libSystem.B.dylib 0x00007fff86df9ce8 dispatch_call_block_andrelease + 15
    19 libSystem.B.dylib 0x00007fff86dd8279 dispatch_workerthread2 + 231
    20 libSystem.B.dylib 0x00007fff86dd7bb8 pthreadwqthread + 353
    21 libSystem.B.dylib 0x00007fff86dd7a55 start_wqthread + 13
    Any clues on what might be triggering this issue to arise and how I can resolve it?
    Thanks!

  • GT70 2PC – Software testing and performance report.

    It is so excited here again. Currently, my first/only object after work is playing Titanfall.
    I intended to share another performance testing today. But I didn’t. I found there are too many great open box posts on different forums. Therefore, I decide to dig the MSI software compatibility and do a touring. What can I say? I’m Mr.Curiosity who really desires to know every built-in application in system. That is why I share this article with you, my friends. I would like to discuss with everybody who is interested in MSI software. Of course, I have some performance reports for you, too. Please also remind me if you find any typo/wrong in this post. Thanks in advance.  
    1. MSI Boot Configure
        This is the first software which pops up immediately. It is thoughtful design because we can choose enter the [Windows 8.1 metro] or [desktop] by ourselves now. I give it two thumbs up!!!
    Select your favorite boot configuration and press [OK]. If we want it work immdiately, we can logout the system and re-login again.
    2.   MSI Remind Manager
    Honestly, I didn’t know what it is in the beginning. The cute robot shows every time when I login the system. I found this is a reminder for product registration. Good, I would like to have best MSI support and warranty for my lovely GT70 2PC. But don’t worry, if you don’t want to get this message again, you just need to select the right option and close it.
    3.   Synaptics TouchPad
    This is a driver for mouse. [Mouse property] will show if we do the double clicks on TouchPad icon in tray. You can choose enable/disable internal pointing device when external pointing device is attached. This is brilliant. A tough guy (like me…HA! HA!) didn’t like to play game with touchpad. Because the character in game will be weak and slow if I control it by touchpad. Of course, I need the external mouse all the time and don’t want the interference from touchpad.
    4.   System Control Manager (SCM)
    We can enable/disable the WLAN/BT/camera devices by SCM. Besides, it can control the display brightness, volume, screen on/off and ECO. ECO is special mode for gaming watching movie.  
    5.   Sound Blaster CINEMA
    Sound Blaster CINEMA is come from an old school audio company – CREATIVE. The software can adjust the surround sound easily. We also can adjust 5.1/7.1 surround sound for the internal speakers and external headphone. That is great, isn’t it?
    Besides, we can also adjust CRYSTALIZER/BASS/SMART VOLUME/digital output by ourselves.
    6.   Killer Network Manager
    This is a major feature of MSI NB.
    In Killer Network Manager, we can set the network priority for each of applications and we also can abandon the connection from malicious software.
    [Performance] shows current status of network. We can find out which application occupied the most greedy resources by it.
    [Network -> Test Network Speed] will detect the network environment automatically. Furthermore, it will adjust the priority for applications.
    [Killer Ethernet] show the LAN connection info.
    [Killer Wireless] show the router info.
    7.   SteelSeries Engine
    This is another major feature of MSI NB
    If we do the right click on icon in tray, the menu will show following list. We can select [Launch SteelSeries Firmware Update Tool], [Updates]…and so on.
    If we select the [Settings]. It can help us change default language and set application auto running when system power on.
    I.   Buttons
    Double click to open the SteelSeries Engine. I think it can set 4 different keyboard settings for each of profiles. And it can switch by FN+1~4.
    [Keypress Marc] can record what you input. And [Record Delays ] can modify the delay time. HA! No game can block us anymore. Please remember to press the [SAVE] for your setting
    [Launch Application] can launch any application immediately. I suggest to set the cold key for this function.
    Here is example. I use [PgUp] to quick start the 3D Mark11. See, it will pop up when I pressed [PgUp].
    It is simple to use [TextMarco] set our own phrase. Now I become a quick speaker in my team. One key, only one key can help me to type a lot of words.
    Are you tired to press some keys that you never want to touch in game (Like WIN KEY)? It is not the problem now.  [Disable Key] will do the favor and disable any key which you hate.
    II.   [Colors] can change the color of backlight keyboard. Also, you can set different modes (Gaming/Audio…etc) on it.
    We can change the color zone. There is not only 4 or 5 colors. The engine provides thousands of colors for us. [Audio mode] is the coolest. It will change colors by itself when we play music by speakers. I like to dance with my keyboard.
    III.   We can select different languages by [Settings].
    IV.   [Properties] can save our hard works of settings reliably.
    V.   If you want to defeat your competitors, it is important to know your enemy. However, It is more important to know yourself. [Statistics] can help us observe which keys are most popular by our fingers.
    Right click on [Profile]. It can modify/export/import/delete the profiles.
    Mouse can use the same kind of settings as keyboard.
    DPI setting for mouse.
    Save files.
    We can record the mouse, too.
    8.   Norton
    Norton Internet Security: Anti-Virus software, MSI provides 60 days for free.
    Norton Online Backup: Online data backup software, MSI provides 30 days for free.
    Norton Anti-Theft: Anti-Theft software, MSI provides 30 days for free.
    If you like Norton’s products, you can buy it online.
    If you don’t, I believe we can uninstall it directly.
    So, the decision is ours.
    Introduction from Norton official website
    9.   Dragon Gaming Center
    I.   System Monitor:
    It can monitor CPU/GPU loading and temperature. We also can find the network speed and fan speed in it.  
    II.   Utility:
    You can set your favorite apps in [Add new Utility].
    E.g. I added a [MSI Afterburner]. Click [Open] to build the link. Do you feel familiar with something? Exactly, [Launch Application] of [SteelSeries Engine] can do this, too.
    III.   Instant Play:
    We can define [Fn+F4] to enable the quick start. But there is more secret.
    We can also use [Browse] to assign the game which we want.  
    Click the icon of game and [Fn+F4] will be ready. We can only use 1 program at once.  
    I usually change the brightness, volume and mouse sensitive before the game. As you know, every games are different. It is sweet because we can use  [Apply Setting] to do this.
    I can’t believe it. We also can find the clock feature in it. How convenient it is!
    IV.   Hybrid Power is another MSI feature.
    It can provide the power by AC adapter and battery in the same time. We can monitor the status in here.
    10. BurnRecovery
    It can create the recovery CD/DVD/USB for MSI NB.
    Here can select Recovery disc/USB/ISO.
    I will make a ISO file first.
    We can select where to put the ISO.
    Creating the recovery file...
    Finish!
    Open the folder and we can find 4 ISO files in it.
    Well…[BurnRecovery Help] provide the details spec.
    In my opinion, everyone should create their own recovery image. You will need it in one day.
    11. Battery Calibration
    This is software for battery calibration. In order to keep our battery good, we should do the calibration every three months. Don’t forget to plug-in the AC adapter and battery during the process..
    Press [Start] to begin the process. It will make the battery fully charged first.
    Then, it will empty the battery like this.
    System will shut down after the empty process. At last, fully charged again. It will take 4~5 hrs to complete the process.
    12. MSI Dragoon Army /MSI Facebook /Web site /YouTube
    Those are MSI forums/Facebook/official website/YouTube and links.
    [MSI Dragoon Army] is the official forum for MSI. We can find NB, MB and AIO info in it.
    Facebook Quick Link for many countries of world.
    MSI official website
    YouTube channel of MSI.
    13. Super-Charger
    There is no message when I click this app at the first time. But when I attached my IPAD, it pops up the [Super-Charger]. It is amazing because IPAD can’t be charge by this USB port. As far as I know, the USB 3.0 only provides maximum 900mA for its device. IPAD will need 2.1A for charge process. I have no idea how MSI NB make IPAD charging okay.
    14. XSplit GameCaster
    This is one of important features. I saw many different first class gaming machines this year. All of them have the broadcast software. (Like PS4, Xbos ONE)
    It can switch the default language after we login.
    Twitch/YouTube / Facebook/ Twitter/Google+ can be used by [Accounts]. It is easy to start the live show.
    We can modify the resolution and use twitch by [Setting]
    We can configure FPS/CPU loading/where to show on display by [Status label].
    Hotkey configuration.
    Videos storage.
    Press [Ctrl+Tab] to call Gamecaster in game. And we can twitch or modify setting. I will provide my gaming video for you later.
    15. Power DVD
    This is a famous video player. Also, it can support BD format.
    We can use the [Setting] to change our language.
    We can change 5 times for default country .
    It is glad that I’ve finished the introduction of GT70 software.
    Performance report:
    Um…Now is late at night. I should go to my lovely bed.  Following is the testing report for the reference.
    1.   FurMark
    1920*1080, 15 minutes.
    2.   AIDA 64
    CPU and GPU stress testing, 30 minutes.
    3. 3D Mark 11
    4. 3DMark Vantage
    5.   3DMark 2013
    6.   Heaven Benchmark 4.0
    7.   CINBENCH 11.5
    8.   FINAL FANTASY XIV Benchmark
    9.   PCMARK 7
    10.   HD Tune Pro  5.50
    11.   AS SSD Benchmark
    12.   Crystal Disk Mark
    I didn’t forget my promise. Here is my gaming videos
    http://youtu.be/tCd5Lnj2U0I

    Editors' Choice Award. Good job MSI !!
    http://www.computershopper.com/laptops/reviews/msi-gt70-dominator-893#review-body

  • How can I remove Parallels from my Macbook completely?

    My MBP has been booting up very slowly, and I checked Console to see what might be causing it. I saw that a lot of the registered entries were related to Parallels, so I decided to unninstall it, since I also read that many people felt that their laptop was booting up faster after removing it.
    The problem is that, even after unninstalling it, the boot time is still very long! I checked Console again, and the problem is no longer Parallels components loading, but the failing of them loading. I see stuff like:
    4/24/14 18:46:47.204 Parallels[180]: Failed to load kernel extension prl_hypervisor.kext
    4/24/14 18:46:47.269 Parallels[183]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    and I believe Parallels is slowing down the boot time even after it's been removed. I've already removed all of its components, I don't know what else to do!
    I've also deleted other apps that were on Login Items.
    Could you guys please give me tips on how I can improve the boot time?
    I'm posting below what I got from Console:
    4/24/14 18:45:42.000 bootlog[0]: BOOT_TIME 1398375942 0
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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".
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 syslogd[21]: 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.
    4/24/14 18:46:14.000 kernel[0]: Longterm timer threshold: 1000 ms
    4/24/14 18:46:14.000 kernel[0]: PMAP: PCID enabled
    4/24/14 18:46:14.000 kernel[0]: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    4/24/14 18:46:14.000 kernel[0]: vm_page_bootstrap: 972582 free pages and 67802 wired pages
    4/24/14 18:46:14.000 kernel[0]: kext submap [0xffffff7f807a6000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a6000]
    4/24/14 18:46:14.000 kernel[0]: zone leak detection enabled
    4/24/14 18:46:14.000 kernel[0]: "vm_compressor_mode" is 4
    4/24/14 18:46:14.000 kernel[0]: standard timeslicing quantum is 10000 us
    4/24/14 18:46:14.000 kernel[0]: standard background quantum is 2500 us
    4/24/14 18:46:14.000 kernel[0]: mig_table_max_displ = 74
    4/24/14 18:46:14.000 kernel[0]: TSC Deadline Timer supported and enabled
    4/24/14 18:46:14.000 kernel[0]: "name" not a kext
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: calling mpo_policy_init for Sandbox
    4/24/14 18:46:14.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    4/24/14 18:46:14.000 kernel[0]: calling mpo_policy_init for Quarantine
    4/24/14 18:46:14.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    4/24/14 18:46:14.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    4/24/14 18:46:14.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    4/24/14 18:46:14.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    4/24/14 18:46:14.000 kernel[0]: The Regents of the University of California. All rights reserved.
    4/24/14 18:46:14.000 kernel[0]: MAC Framework successfully initialized
    4/24/14 18:46:14.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    4/24/14 18:46:14.000 kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    4/24/14 18:46:14.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    4/24/14 18:46:14.000 kernel[0]: ACPI: sleep states S3 S4 S5
    4/24/14 18:46:14.000 kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    4/24/14 18:46:14.000 kernel[0]: [ PCI configuration begin ]
    4/24/14 18:46:14.000 kernel[0]: console relocated to 0xf80000000
    4/24/14 18:46:14.000 kernel[0]: [ PCI configuration end, bridges 12, devices 16 ]
    4/24/14 18:46:14.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    4/24/14 18:46:14.000 kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    4/24/14 18:46:14.000 kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    4/24/14 18:46:14.000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    4/24/14 18:46:14.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    4/24/14 18:46:14.000 kernel[0]: BTCOEXIST off
    4/24/14 18:46:14.000 kernel[0]: BRCM tunables:
    4/24/14 18:46:14.000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    4/24/14 18:46:14.000 kernel[0]: rooting via boot-uuid from /chosen: F2B1CE87-7935-307F-B2ED-E6DF49C1DE99
    4/24/14 18:46:14.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>
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    4/24/14 18:46:14.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID a4b197fffeeac312; max speed s800.
    4/24/14 18:46:14.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    4/24/14 18:46:14.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/ST9500325ASG Media/IOGUIDPartitionScheme/Customer@2
    4/24/14 18:46:14.000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    4/24/14 18:46:14.000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    4/24/14 18:46:14.000 kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    4/24/14 18:46:14.000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    4/24/14 18:46:14.000 kernel[0]: Waiting for DSMOS...
    4/24/14 18:46:14.000 kernel[0]: VM Swap Subsystem is ON
    4/24/14 18:45:46.118 com.apple.launchd[1]: *** launchd[1] has started up. ***
    4/24/14 18:45:46.118 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    4/24/14 18:45:59.937 com.apple.launchd[1]: (com.parallels.desktop.launchdaemon) Unknown key for boolean: HopefullyExitsFirst
    4/24/14 18:46:11.165 hidd[45]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    4/24/14 18:46:11.167 hidd[45]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    4/24/14 18:46:13.516 kdc[42]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    4/24/14 18:46:13.542 Parallels[80]: Unloading kernel extension prl_netbridge.kext
    4/24/14 18:46:14.210 com.apple.launchd[1]: (com.apple.Kerberos.kdc[42]) Exited with code: 1
    4/24/14 18:46:14.210 com.apple.launchd[1]: (com.apple.Kerberos.kdc) Throttling respawn: Will start in 1 seconds
    4/24/14 18:46:14.423 com.apple.SecurityServer[15]: Session 100000 created
    4/24/14 18:46:14.426 com.apple.usbmuxd[19]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    4/24/14 18:46:14.467 configd[56]: network changed.
    4/24/14 18:46:14.490 configd[56]: setting hostname to "MacBook-Pro-de-Luis-4.local"
    4/24/14 18:46:14.501 Parallels[95]: Unloading kernel extension prl_vnic.kext
    4/24/14 18:46:14.583 Parallels[105]: Unloading kernel extension prl_usb_connect.kext
    4/24/14 18:46:14.722 Parallels[114]: Unloading kernel extension prl_hid_hook.kext
    4/24/14 18:46:14.820 Parallels[123]: Unloading kernel extension prl_hypervisor.kext
    4/24/14 18:46:14.887 Parallels[132]: Loading kernel extension prl_usb_connect.kext
    4/24/14 18:46:15.219 kdc[137]: label: default
    4/24/14 18:46:15.219 kdc[137]:     dbname: od:/Local/Default
    4/24/14 18:46:15.219 kdc[137]:     mkey_file: /var/db/krb5kdc/m-key
    4/24/14 18:46:15.219 kdc[137]:     acl_file: /var/db/krb5kdc/kadmind.acl
    4/24/14 18:46:15.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    4/24/14 18:46:15.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    4/24/14 18:46:17.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    4/24/14 18:46:23.506 stackshot[23]: Timed out waiting for IOKit to finish matching.
    4/24/14 18:46:27.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    4/24/14 18:46:28.630 com.apple.SecurityServer[15]: Entering service
    4/24/14 18:46:28.750 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    4/24/14 18:46:28.757 digest-service[72]: label: default
    4/24/14 18:46:28.757 digest-service[72]:     dbname: od:/Local/Default
    4/24/14 18:46:28.757 digest-service[72]:     mkey_file: /var/db/krb5kdc/m-key
    4/24/14 18:46:28.757 digest-service[72]:     acl_file: /var/db/krb5kdc/kadmind.acl
    4/24/14 18:46:28.760 digest-service[72]: digest-request: uid=0
    4/24/14 18:46:28.762 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    4/24/14 18:46:28.771 awacsd[59]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    4/24/14 18:46:28.779 awacsd[59]: InnerStore CopyAllZones: no info in Dynamic Store
    4/24/14 18:46:28.812 digest-service[72]: digest-request: netr probe 0
    4/24/14 18:46:28.813 digest-service[72]: digest-request: init request
    4/24/14 18:46:28.823 mDNSResponder[35]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    4/24/14 18:46:28.826 digest-service[72]: digest-request: init return domain: BUILTIN server: MACBOOK-PRO-DE-LUIS-4 indomain was: <NULL>
    4/24/14 18:46:29.017 airportd[63]: airportdProcessDLILEvent: en1 attached (up)
    4/24/14 18:46:29.000 kernel[0]: createVirtIf(): ifRole = 1
    4/24/14 18:46:29.000 kernel[0]: in func createVirtualInterface ifRole = 1
    4/24/14 18:46:29.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    4/24/14 18:46:29.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    4/24/14 18:46:29.000 kernel[0]: Created virtif 0xffffff801050d000 p2p0
    4/24/14 18:46:29.104 locationd[40]: NBB-Could not get UDID for stable refill timing, falling back on random
    4/24/14 18:46:29.218 locationd[40]: Location icon should now be in state 'Inactive'
    4/24/14 18:46:29.864 apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    4/24/14 18:46:30.011 mdmclient[36]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:46:31.012 mdmclient[36]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:46:31.344 kdc[137]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    4/24/14 18:46:31.348 systemkeychain[142]: done file: /var/run/systemkeychaincheck.done
    4/24/14 18:46:31.354 configd[56]: network changed: DNS*
    4/24/14 18:46:31.360 configd[56]: network changed: DNS*
    4/24/14 18:46:31.361 mDNSResponder[35]: D2D_IPC: Loaded
    4/24/14 18:46:31.361 mDNSResponder[35]: D2DInitialize succeeded
    4/24/14 18:46:31.366 mDNSResponder[35]:   4: Listening for incoming Unix Domain Socket client requests
    4/24/14 18:46:31.367 mDNSResponder[35]: Adding registration domain 291933891.members.btmm.icloud.com.
    4/24/14 18:46:31.416 networkd[165]: networkd.165 built Aug 24 2013 22:08:46
    4/24/14 18:46:31.436 awacsd[59]: Configuring lazy AWACS client: 291933891.p04.members.btmm.icloud.com.
    4/24/14 18:46:31.450 awacsd[59]: KV HTTP 0
    4/24/14 18:46:31.475 kdc[137]: KDC started
    4/24/14 18:46:31.963 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:36.482 awacsd[59]: KV HTTP 0
    4/24/14 18:46:39.917 apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x40 not set) notif=0x0
    4/24/14 18:46:40.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    4/24/14 18:46:40.000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: Previous Shutdown Cause: 5
    4/24/14 18:46:40.000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    4/24/14 18:46:42.933 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:44.644 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:45.000 kernel[0]: IOBluetoothUSBDFU::probe
    4/24/14 18:46:45.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0042
    4/24/14 18:46:45.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x4800 ****
    4/24/14 18:46:45.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x4800 ****
    4/24/14 18:46:46.549 awacsd[59]: KV HTTP 0
    4/24/14 18:46:46.850 com.apple.kextd[12]: kext com.protech.NoSleep  103019000 is in exception list, allowing to load
    4/24/14 18:46:46.874 com.apple.kextd[12]: kext com.Cycling74.driver.WondershareAudioDevice  105029000 is in exception list, allowing to load
    4/24/14 18:46:46.000 kernel[0]: init
    4/24/14 18:46:46.000 kernel[0]: probe
    4/24/14 18:46:46.000 kernel[0]: start
    4/24/14 18:46:46.000 kernel[0]: DSMOS has arrived
    4/24/14 18:46:46.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x4800
    4/24/14 18:46:46.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    4/24/14 18:46:46.000 kernel[0]: com_protech_nosleepextension: setting state: 1, for mode: 0 (ac-mode)
    4/24/14 18:46:46.000 kernel[0]: com_protech_nosleepextension: successfully started
    4/24/14 18:46:46.926 loginwindow[38]: Login Window Application Started
    4/24/14 18:46:46.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    4/24/14 18:46:46.000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x6c80 -- 0x0000 -- 0x4800 ****
    4/24/14 18:46:47.004 WindowServer[168]: Server is starting up
    4/24/14 18:46:47.015 mds[34]: (Normal) FMW: FMW 0 0
    4/24/14 18:46:47.040 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext.
    4/24/14 18:46:47.041 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext.
    4/24/14 18:46:47.041 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext - not found/unable to create.
    4/24/14 18:46:47.046 Parallels[169]: Failed to load kernel extension prl_usb_connect.kext
    4/24/14 18:46:47.074 Parallels[171]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:47.000 kernel[0]: mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000040
    4/24/14 18:46:47.171 Parallels[176]: Loading kernel extension prl_hypervisor.kext
    4/24/14 18:46:47.000 kernel[0]: en4: promiscuous mode enable succeeded
    4/24/14 18:46:47.194 WindowServer[168]: Session 256 retained (2 references)
    4/24/14 18:46:47.194 WindowServer[168]: Session 256 released (1 references)
    4/24/14 18:46:47.196 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext.
    4/24/14 18:46:47.197 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext.
    4/24/14 18:46:47.197 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:47.197 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext - not found/unable to create.
    4/24/14 18:46:47.204 Parallels[180]: Failed to load kernel extension prl_hypervisor.kext
    4/24/14 18:46:47.213 WindowServer[168]: Session 256 retained (2 references)
    4/24/14 18:46:47.216 WindowServer[168]: init_page_flip: page flip mode is on
    4/24/14 18:46:47.254 UserEventAgent[11]: assertion failed: 13C64: com.apple.telemetry + 17682 [FDCB4ECA-3C5D-394A-BAEF-F6555BEB4239]: 0xffffffffe0000001
    4/24/14 18:46:47.269 Parallels[183]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:47.272 WindowServer[168]: Found 13 modes for display 0x00000000 [8, 5]
    4/24/14 18:46:47.277 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.280 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.283 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.285 WindowServer[168]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe0000001)
    4/24/14 18:46:47.285 WindowServer[168]: mux_initialize: Mode is safe
    4/24/14 18:46:47.287 WindowServer[168]: Found 13 modes for display 0x00000000 [8, 5]
    4/24/14 18:46:47.288 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9004004D60 MacBook-Pro-de-Luis-4.local. (Addr) that's already in the list
    4/24/14 18:46:47.289 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F90040051F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    4/24/14 18:46:47.289 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9004006960 MacBook-Pro-de-Luis-4.local. (AAAA) that's already in the list
    4/24/14 18:46:47.289 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9004006DF0 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
    4/24/14 18:46:47.291 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.291 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.292 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.319 WindowServer[168]: WSMachineUsesNewStyleMirroring: false
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 13 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0xcb5a19e16c20c98ebb2d70fc3bb550b4
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[3840 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.320 WindowServer[168]: 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
    4/24/14 18:46:47.320 WindowServer[168]: 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
    4/24/14 18:46:47.320 WindowServer[168]: 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
    4/24/14 18:46:47.321 WindowServer[168]: WSSetWindowTransform: Singular matrix
    4/24/14 18:46:47.321 WindowServer[168]: WSSetWindowTransform: Singular matrix
    4/24/14 18:46:47.321 WindowServer[168]: WSSetWindowTransform: Singular matrix
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 13 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0xcb5a19e16c20c98ebb2d70fc3bb550b4
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f0040: GL mask 0x10; bounds (2304, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f003f: GL mask 0x8; bounds (2305, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f003e: GL mask 0x4; bounds (2306, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f003d: GL mask 0x2; bounds (2307, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.325 WindowServer[168]: CGXPerformInitialDisplayConfiguration
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x042731c0: Unit 0; Vendor 0x610 Model 0x9cc7 S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1280 x 800], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2305,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2306,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2307,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]: CGXMuxBoot: Unexpected boot switch return value (0xe00002c7)
    4/24/14 18:46:47.409 WindowServer[168]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, accelerator 0x000048b3, unit 0, caps QEX|MIPMAP, vram 451 MB
    4/24/14 18:46:47.409 WindowServer[168]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    4/24/14 18:46:47.410 WindowServer[168]: GLCompositor enabled for tile size [256 x 256]
    4/24/14 18:46:47.410 WindowServer[168]: CGXGLInitMipMap: mip map mode is on
    4/24/14 18:46:47.430 loginwindow[38]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    4/24/14 18:46:47.437 sudo[199]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    4/24/14 18:46:47.441 Parallels[210]: Loading kernel extension prl_hid_hook.kext
    4/24/14 18:46:47.465 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext.
    4/24/14 18:46:47.466 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext.
    4/24/14 18:46:47.466 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext - not found/unable to create.
    4/24/14 18:46:47.469 Parallels[216]: Failed to load kernel extension prl_hid_hook.kext
    4/24/14 18:46:47.652 Parallels[218]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:47.880 Parallels[222]: Loading kernel extension prl_netbridge.kext
    4/24/14 18:46:47.910 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext.
    4/24/14 18:46:47.910 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext.
    4/24/14 18:46:47.910 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext - not found/unable to create.
    4/24/14 18:46:47.913 Parallels[226]: Failed to load kernel extension prl_netbridge.kext
    4/24/14 18:46:48.049 Parallels[228]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:48.120 Parallels[232]: Loading kernel extension prl_vnic.kext
    4/24/14 18:46:48.282 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext.
    4/24/14 18:46:48.283 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext.
    4/24/14 18:46:48.283 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext - not found/unable to create.
    4/24/14 18:46:48.286 Parallels[236]: Failed to load kernel extension prl_vnic.kext
    4/24/14 18:46:48.595 Parallels[238]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:48.782 Parallels[241]: Trying to load kernel extensions, exit status: 5
    4/24/14 18:46:49.017 Parallels[244]: Starting Parallels networking...
    4/24/14 18:46:49.063 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:49.104 launchctl[246]: com.apple.findmymacmessenger: Already loaded
    4/24/14 18:46:49.145 com.apple.SecurityServer[15]: Session 100004 created
    4/24/14 18:46:49.200 loginwindow[38]: Setting the initial value of the magsave brightness level 1
    4/24/14 18:46:49.244 loginwindow[38]: Login Window Started Security Agent
    4/24/14 18:46:49.262 UserEventAgent[249]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    4/24/14 18:46:49.322 WindowServer[168]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    4/24/14 18:46:49.367 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:49.370 SecurityAgent[255]: This is the first run
    4/24/14 18:46:49.371 SecurityAgent[255]: MacBuddy was run = 0
    4/24/14 18:46:49.385 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:49.406 WindowServer[168]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fff4be1aec0) - enabling OpenGL
    4/24/14 18:46:49.411 SecurityAgent[255]: User info context values set for luisfernandolins
    4/24/14 18:46:49.987 loginwindow[38]: Login Window - Returned from Security Agent
    4/24/14 18:46:50.015 loginwindow[38]: USER_PROCESS: 38 console
    4/24/14 18:46:50.000 kernel[0]: AppleKeyStore:Sending lock change 0
    4/24/14 18:46:50.941 com.apple.launchd.peruser.501[261]: Background: Aqua: Registering new GUI session.
    4/24/14 18:46:50.945 launchctl[264]: launchctl: Dubious file. Not of type .plist (skipping): /Users/luisfernandolins/Library/LaunchAgents/com.zeobit.MacKeeper.Helper
    4/24/14 18:46:50.961 com.apple.launchd.peruser.501[261]: (com.spotify.webhelper) Unknown key: SpotifyPath
    4/24/14 18:46:50.962 com.apple.launchd.peruser.501[261]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    4/24/14 18:46:50.963 com.apple.launchd.peruser.501[261]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    4/24/14 18:46:50.966 launchctl[264]: com.apple.pluginkit.pkd: Already loaded
    4/24/14 18:46:50.966 launchctl[264]: com.apple.sbd: Already loaded
    4/24/14 18:46:50.981 distnoted[266]: # distnote server agent  absolute time: 70.704574643   civil time: Thu Apr 24 18:46:50 2014   pid: 266 uid: 501  root: no
    4/24/14 18:46:51.641 UserEventAgent[265]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    4/24/14 18:46:51.000 kernel[0]: directed SSID scan fail
    4/24/14 18:46:52.153 SystemStarter[190]: StartOuc (198) did not complete successfully
    4/24/14 18:46:52.154 SystemStarter[190]: The following StartupItems failed to start properly:
    4/24/14 18:46:52.154 SystemStarter[190]: /Library/StartupItems/StartOuc
    4/24/14 18:46:52.154 SystemStarter[190]:  - execution of Startup script failed
    4/24/14 18:46:52.155 WindowServer[168]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    4/24/14 18:46:52.294 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:53.414 prl_net_start[247]: Failed to configure Parallels Adapter 0 for network Shared
    4/24/14 18:46:53.420 prl_net_start[247]: Failed to configure Parallels Adapter 1 for network Host-Only
    4/24/14 18:46:53.580 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:46:53.602 Parallels[309]: Parallels networking sucessfully started
    4/24/14 18:46:53.607 sharingd[297]: Starting Up...
    4/24/14 18:46:53.624 prl_naptd[307]: Starting Parallels Network Daemon
    4/24/14 18:46:53.628 Parallels[311]: Restarting CiscoVPN
    4/24/14 18:46:53.717 SystemStarter[315]: Unknown service: CiscoVPN
    4/24/14 18:46:53.728 Parallels[318]: Starting Parallels Dispatcher Service
    4/24/14 18:46:54.048 Parallels[325]: Parallels Dispatcher Service sucessfully started
    4/24/14 18:46:54.074 prl_naptd[307]: BUG in libdispatch client: kevent[EVFILT_WRITE] delete: "No such file or directory" - 0x2
    4/24/14 18:46:54.076 prl_naptd[307]: Failed to start: error 718; Parallels Network Daemon will restart in one minute or after receiving of some signal.
    4/24/14 18:46:54.134 xpcproxy[328]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    4/24/14 18:46:54.145 com.apple.SecurityServer[15]: Session 100005 created
    4/24/14 18:46:54.167 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    4/24/14 18:46:54.167 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    4/24/14 18:46:54.207 com.apple.audio.DriverHelper[295]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    4/24/14 18:46:54.208 com.apple.audio.DriverHelper[295]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    4/24/14 18:46:54.208 com.apple.audio.DriverHelper[295]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    4/24/14 18:46:54.313 com.apple.IconServicesAgent[333]: IconServicesAgent launched.
    4/24/14 18:46:54.544 WindowServer[168]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    4/24/14 18:46:54.958 xpcproxy[336]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    4/24/14 18:46:55.025 com.apple.SecurityServer[15]: Session 100008 created
    4/24/14 18:46:55.390 WindowServer[168]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.86 seconds (server forcibly re-enabled them after 1.01 seconds)
    4/24/14 18:46:55.758 SystemUIServer[280]: Cannot find executable for CFBundle 0x7fbbda58bf30 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    4/24/14 18:46:55.784 SystemUIServer[280]: Cannot find executable for CFBundle 0x7fbbda585c90 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    4/24/14 18:46:55.785 SystemUIServer[280]: Cannot find executable for CFBundle 0x7fbbda58b4f0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    4/24/14 18:46:56.032 coreaudiod[282]: 2014-04-24 06:46:56.031416 PM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2
    4/24/14 18:46:57.095 WindowServer[168]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    4/24/14 18:46:57.895 WindowServer[168]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.80 seconds (server forcibly re-enabled them after 1.00 seconds)
    4/24/14 18:46:57.939 SystemUIServer[280]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    4/24/14 18:46:57.940 SystemUIServer[280]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    4/24/14 18:46:58.034 accountsd[347]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    4/24/14 18:46:58.146 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252e0e370 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:58.000 kernel[0]: MacAuthEvent en1   Auth result for: a4:b1:e9:79:78:17  MAC AUTH succeeded
    4/24/14 18:46:58.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    4/24/14 18:46:58.000 kernel[0]: AirPort: Link Up on en1
    4/24/14 18:46:58.000 kernel[0]: en1: BSSID changed to a4:b1:e9:79:78:17
    4/24/14 18:46:58.000 kernel[0]: AirPort: RSN handshake complete on en1
    4/24/14 18:46:58.491 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252c1da50 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:58.492 com.apple.iCloudHelper[328]: AOSKit ERROR: Setup request failed, appleID=1047286319, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc252c202a0 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    4/24/14 18:46:58.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    4/24/14 18:46:58.707 com.apple.SecurityServer[15]: Session 100010 created
    4/24/14 18:46:59.734 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f3d840 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.817 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f3e850 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.818 com.apple.iCloudHelper[328]: AOSKit ERROR: Setup request failed, appleID=1647185353, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc252c1a500 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    4/24/14 18:46:59.898 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f3e050 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.964 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f08480 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.964 com.apple.iCloudHelper[328]: AOSKit ERROR: Setup request failed, appleID=291933891, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc252f07ad0 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    4/24/14 18:47:02.528 com.apple.launchd.peruser.501[261]: (com.parallels.desktop.client.launch[371]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    4/24/14 18:47:02.528 com.apple.launchd.peruser.501[261]: (com.parallels.desktop.client.launch[371]) Job failed to exec(3) for weird reason: 2
    4/24/14 18:47:02.667 prl_naptd[370]: Starting Parallels Network Daemon
    4/24/14 18:47:02.668 com.apple.launchd.peruser.501[261]: (com.apple.iTunesHelper.30304[383]) Spawned and waiting for the debugger to attach before continuing...
    4/24/14 18:47:02.688 SocialPushAgent[359]: ApplePushService: APSConnection being used without a delegate queue
    4/24/14 18:47:02.711 WiFiKeychainProxy[358]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    4/24/14 18:47:02.711 WiFiKeychainProxy[358]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    4/24/14 18:47:04.495 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:47:04.500 configd[56]: network changed: DNS* Proxy
    4/24/14 18:47:04.505 UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'LFLINS' making interface primary (protected network)
    4/24/14 18:47:04.505 UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    4/24/14 18:47:04.511 UserEventAgent[11]: Captive: en1: Probing 'LFLINS'
    4/24/14 18:47:04.515 configd[56]: network changed: v4(en1!:192.168.1.72) DNS+ Proxy+ SMB
    4/24/14 18:47:05.355 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:05.390 configd[56]: setting hostname to "mbp-de-luis-4.lan"
    4/24/14 18:47:05.414 UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    4/24/14 18:47:08.733 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:08.747 com.apple.launchd.peruser.501[261]: (com.apple.mrt.uiagent[362]) Exited with code: 255
    4/24/14 18:47:08.780 ntpd[186]: proto: precision = 1.000 usec
    4/24/14 18:47:08.974 secd[342]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1020 - Remote error : Network unreachable)
    4/24/14 18:47:08.975 secd[342]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1020 - Remote error : Network unreachable)
    4/24/14 18:47:09.065 airportd[63]: _doAutoJoin: Already associated to “LFLINS”. Bailing on auto-join.
    4/24/14 18:47:10.326 com.apple.internetaccounts[336]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    4/24/14 18:47:10.326 com.apple.internetaccounts[336]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    4/24/14 18:47:10.375 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:47:10.920 REUpdater[372]: VERSION is 141
    4/24/14 18:47:12.143 AirPlayUIAgent[330]: 2014-04-24 06:47:12.143216 PM [AirPlayUIAgent] Changed PIN pairing: no
    4/24/14 18:47:12.962 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:47:15.033 secd[342]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:15.033 secd[342]:  securityd_xpc_dictionary_handler WiFiKeychainProx[358] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:15.060 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:15.275 AirPlayUIAgent[330]: 2014-04-24 06:47:15.275080 PM [AirPlayUIAgent] Changed PIN pairing: no
    4/24/14 18:47:17.030 syncdefaultsd[321]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    4/24/14 18:47:17.268 digest-service[72]: digest-request: uid=0
    4/24/14 18:47:17.268 digest-service[72]: digest-request: init request
    4/24/14 18:47:17.275 digest-service[72]: digest-request: init return domain: MBP-DE-LUIS-4 server: MBP-DE-LUIS-4 indomain was: <NULL>
    4/24/14 18:47:17.400 com.apple.NotesMigratorService[398]: Joined Aqua audit session
    4/24/14 18:47:17.418 racoon[401]: accepted connection on vpn control socket.
    4/24/14 18:47:17.835 com.apple.internetaccounts[336]: An instance 0x7fc03bfd4940 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc03bfd5680> (
    <NSKeyValueObservance 0x7fc03bfd57f0: Observer: 0x7fc03bfc98d0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8e1bd43b, Property: 0x7fc03bfd5650>
    4/24/14 18:47:17.844 com.apple.internetaccounts[336]: An instance 0x7fc03bd87e60 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc03bd87f80> (
    <NSKeyValueObservance 0x7fc03bd87f10: Observer: 0x7fc03bd88c30, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8e1bd43b, Property: 0x7fc03bfd5650>
    4/24/14 18:47:18.226 digest-service[72]: digest-request: uid=0
    4/24/14 18:47:18.227 digest-service[72]: digest-request: init request
    4/24/14 18:47:18.229 com.apple.internetaccounts[336]: An instance 0x7fc03e00f500 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc03e00e210> (
    <NSKeyValueObservance 0x7fc03e000190: Observer: 0x7fc03e003a50, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8e1bd43b, Property: 0x7fc03bfd5650>
    4/24/14 18:47:18.234 digest-service[72]: digest-request: init return domain: MBP-DE-LUIS-4 server: MBP-DE-LUIS-4 indomain was: <NULL>
    4/24/14 18:47:18.245 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:18.570 REUpdater[372]: REUpdate : Did not download since you have the version equal or later than that on the server
    4/24/14 18:47:20.234 com.apple.dock.extra[396]: iPhotoDockTilePlugin: Unable to get dock badge information: connection timeout: did not receive reply
    4/24/14 18:47:21.886 AllMyMusicAgent[369]: SARAgent newAgent
    4/24/14 18:47:22.544 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:47:23.589 sandboxd[384]: ([367]) assistantd(367) deny file-read-data /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    4/24/14 18:47:26.529 AddressBookManager[382]: Validate metadata timed out, cancelling
    4/24/14 18:47:26.556 com.apple.imfoundation.IMRemoteURLConnectionAgent[391]: ERROR: __CFURLCache:CreateTablesAndIndexes version create - table cfurl_cache_schema_version already exists. ErrCode: 1.
    4/24/14 18:47:26.557 com.apple.imfoundation.IMRemoteURLConnectionAgent[391]: __CFURLCache:RecreateEmptyPersistentStoreOnDiskAndOpen: create tables and index failed.
    4/24/14 18:47:27.757 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:28.757 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:28.909 WindowServer[168]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    4/24/14 18:47:29.758 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:30.760 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:31.761 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:31.887 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:32.762 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:32.918 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:33.975 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:34.980 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:36.041 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:37.113 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:38.169 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:39.238 secd[342]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:39.238 secd[342]:  securityd_xpc_dictionary_handler AddressBookSourc[380] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:39.946 AddressBookSourceSync[380]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://luisfernandolins%[email protected]/1047286319/principal///luisfernandolins%[email protected]/1047286319/principal/] Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x7fa5eb81cb60 {NSUnderlyingError=0x7fa5e9651cb0 "The request timed out.", NSErrorFailingURLStringKey=https://luisfernandolins%[email protected]/1047286319/principal/[email protected]/1047286319/principal/, NSErrorFailingURLKey=https://luisfernandolins%[email protected]/1047286319/principal///luisfernandolins%[email protected]/1047286319/principal/, NSLocalizedDescription=The request timed out.}
    4/24/14 18:47:40.011 AddressBookSourceSync[380]: [AOSAccounts] : [IsAccountKeyChainActive] : had error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Remote error : The operation couldn‚Äôt be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call))
    4/24/14 18:47:40.013 secd[342]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:40.013 secd[342]:  securityd_xpc_dictionary_handler AddressBookSourc[380] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:40.017 AddressBookSourceSync[380]: [AOSAccounts] : [IsAccountKeyChainActive] :

    If it's slow on startup it would be extensions loading or LaunchDaemons starting up. 
    You should have a look in:
    /Library/LaunchDaemons
    /Library/Extensions
    You can count out anything in your home folder and it shouldn't put anything in /System as that's reserved for Apple. 

  • Hi all...  Just upgraded from OSX 10.6.8 to Mavricks, my Macbook Pro boots really slowly, and closes slowly.  I'd really appreciate help!

    I just installed Mavricks over Snow Lepard, and my boot speed is really slow and so is the quit time.  From boot to ability to use apps. is slightly greater than 1 minute.  Once the desk top appears, the icons in the dock and all aps are not active for at least 25-30 seconds.  I would really appreciate any advice anyone more knowledgeable that I can offer.  I have attached my system boot log from BOOT_TIME to 1 minute past the time on the clock when I logged in. (I apologize in advance for the length of the log, but hopefully it will suply the needed clues):
    Machine characteristics:
    MacBook Pro                                       
    15-inch, Mid 2009
    OSX 10.9
    3.06 GHz Intel core 2 Duo
    8GB 1067 MHz DDR3
    NVIDIA GeForce 9400M 256 MB
    L2 Cache:6 MB
    Bus Speed: 1.07 GHz
    Boot ROM Version: MBP53.00AC.B03
    BOOT_LOG
    Nov 26 21:49:43 localhost bootlog[0]: BOOT_TIME 1385520583 0
    Nov 26 21:50:01 localhost syslogd[19]: 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.
    Nov 26 21:50:01 localhost syslogd[19]: 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".
    Nov 26 21:50:01 localhost syslogd[19]: 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.
    Nov 26 21:50:01 localhost syslogd[19]: 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.
    Nov 26 21:50:01 localhost syslogd[19]: 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.
    Nov 26 21:50:01 localhost 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.
    Nov 26 21:50:01 localhost 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.
    Nov 26 21:50:01 localhost 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.
    Nov 26 21:50:01 localhost 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.
    Nov 26 21:50:01 localhost 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.
    Nov 26 21:50:01 localhost 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.
    Nov 26 21:50:04 --- last message repeated 6 times ---
    Nov 26 21:50:01 localhost kernel[0]: Longterm timer threshold: 1000 ms
    Nov 26 21:50:01 localhost kernel[0]: Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    Nov 26 21:50:01 localhost kernel[0]: vm_page_bootstrap: 1957638 free pages and 57594 wired pages
    Nov 26 21:50:01 localhost kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    Nov 26 21:50:01 localhost kernel[0]: zone leak detection enabled
    Nov 26 21:50:01 localhost kernel[0]: "vm_compressor_mode" is 4
    Nov 26 21:50:01 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Nov 26 21:50:01 localhost kernel[0]: standard background quantum is 2500 us
    Nov 26 21:50:01 localhost kernel[0]: mig_table_max_displ = 74
    Nov 26 21:50:01 localhost kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    Nov 26 21:50:01 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    Nov 26 21:50:01 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Nov 26 21:50:01 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Nov 26 21:50:01 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Nov 26 21:50:01 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Nov 26 21:50:01 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Nov 26 21:50:01 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Nov 26 21:50:01 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Nov 26 21:50:01 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Nov 26 21:50:01 localhost kernel[0]: MAC Framework successfully initialized
    Nov 26 21:50:01 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Nov 26 21:50:01 localhost kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    Nov 26 21:50:01 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Nov 26 21:50:01 localhost kernel[0]: ACPI: sleep states S3 S4 S5
    Nov 26 21:50:01 localhost kernel[0]: pci (build 22:16:29 Sep 19 2013), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    Nov 26 21:50:01 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 22:16:38 Sep 19 2013) initialization complete
    Nov 26 21:50:01 localhost kernel[0]: [ PCI configuration begin ]
    Nov 26 21:50:01 localhost kernel[0]: console relocated to 0xf80010000
    Nov 26 21:50:01 localhost kernel[0]: [ PCI configuration end, bridges 6, devices 19 ]
    Nov 26 21:50:01 localhost kernel[0]: NVEthernet::start - Built Sep 19 2013 22:20:06
    Nov 26 21:50:01 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 64b9e8fffeb7a402; max speed s800.
    Nov 26 21:50:01 localhost kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833, 2
    Nov 26 21:50:01 localhost kernel[0]: mcache: 2 CPU(s), 64 bytes CPU cache line size
    Nov 26 21:50:01 localhost kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    Nov 26 21:50:01 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    Nov 26 21:50:01 localhost kernel[0]: rooting via boot-uuid from /chosen: FE938F11-7B34-3E73-9EE2-51E88F19B800
    Nov 26 21:50:01 localhost 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>
    Nov 26 21:50:01 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Nov 26 21:50:01 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    Nov 26 21:50:01 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Nov 26 21:50:01 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    Nov 26 21:50:01 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Nov 26 21:50:01 localhost kernel[0]: BTCOEXIST off
    Nov 26 21:50:01 localhost kernel[0]: BRCM tunables:
    Nov 26 21:50:01 localhost kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    Nov 26 21:50:01 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/ST9500420ASG Media/IOGUIDPartitionScheme/Untitled@2
    Nov 26 21:50:01 localhost kernel[0]: BSD root: disk0s2, major 1, minor 2
    Nov 26 21:50:01 localhost kernel[0]: hfs: mounted Macintosh HD on device root_device
    Nov 26 21:50:01 localhost kernel[0]: VM Swap Subsystem is ON
    Nov 26 21:50:01 localhost kernel[0]: Waiting for DSMOS...
    Nov 26 21:49:45 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Nov 26 21:49:45 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    Nov 26 21:49:55 localhost com.apple.SecurityServer[14]: Session 100000 created
    Nov 26 21:49:59 localhost distnoted[21]: # distnote server daemon  absolute time: 17.216507128   civil time: Tue Nov 26 21:49:59 2013   pid: 21 uid: 0  root: yes
    Nov 26 21:50:00 localhost hidd[49]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    Nov 26 21:50:01 localhost hidd[49]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Nov 26 21:50:01 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Nov 26 21:50:01 localhost kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    Nov 26 21:50:05 localhost com.apple.usbmuxd[26]: usbmuxd-323.1 on Oct  3 2013 at 12:43:24, running 64 bit
    Nov 26 21:50:05 localhost kernel[0]: init
    Nov 26 21:50:05 localhost kernel[0]: probe
    Nov 26 21:50:05 localhost kernel[0]: start
    Nov 26 21:50:05 localhost kernel[0]: [IOBluetoothHCIController][start] -- completed
    Nov 26 21:50:05 localhost kernel[0]: NVDAStartup: Official
    Nov 26 21:50:05 localhost kernel[0]: NVDANV50HAL loaded and registered
    Nov 26 21:50:05 localhost kernel[0]: NVDAStartup: Official
    Nov 26 21:50:05 localhost kernel[0]: NVDANV50HAL loaded and registered
    Nov 26 21:50:05 localhost kernel[0]: AGC: 3.4.12, HW version=1.8.8, flags:0, features:4
    Nov 26 21:50:05 localhost kernel[0]: IOBluetoothUSBDFU::probe
    Nov 26 21:50:05 localhost kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8213 FirmwareVersion - 0x0207
    Nov 26 21:50:05 localhost kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x6c00 ****
    Nov 26 21:50:05 localhost kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x6c00 ****
    Nov 26 21:50:05 localhost kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x6c00
    Nov 26 21:50:05 localhost kernel[0]: Previous Shutdown Cause: -128
    Nov 26 21:50:05 localhost kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    Nov 26 21:50:05 localhost kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    Nov 26 21:50:05 localhost kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x7040 -- 0xe000 -- 0x6c00 ****
    Nov 26 21:50:06 localhost kernel[0]: 00000000  00000020 NVEthernet::setLinkStatus - not Active
    Nov 26 21:50:06 localhost kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Nov 26 21:50:06 localhost kernel[0]: DSMOS has arrived
    Nov 26 21:50:07 localhost configd[18]: dhcp_arp_router: en1 SSID unavailable
    Nov 26 21:50:07 localhost configd[18]: network changed.
    Nov 26 21:50:07 MacBookPro-2.local configd[18]: setting hostname to "MacBookPro-2.local"
    Nov 26 21:50:07 MacBookPro-2 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Nov 26 21:50:07 MacBookPro-2.local mds[40]: (Normal) FMW: FMW 0 0
    Nov 26 21:50:07 MacBookPro-2.local mds[40]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Nov 26 21:50:07 --- last message repeated 2 times ---
    Nov 26 21:50:07 MacBookPro-2.local blued[59]: hostControllerOnline - Number of Paired devices = 2, List of Paired devices = (
                    "00-1d-d8-3a-cc-60",
                    "00-26-08-ab-c6-5f"
    Nov 26 21:50:08 MacBookPro-2.local com.apple.SecurityServer[14]: Entering service
    Nov 26 21:50:08 MacBookPro-2.local loginwindow[44]: Login Window Application Started
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]: label: default
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]:       dbname: od:/Local/Default
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]:       mkey_file: /var/db/krb5kdc/m-key
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]:       acl_file: /var/db/krb5kdc/kadmind.acl
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]: digest-request: uid=0
    Nov 26 21:50:08 MacBookPro-2.local mDNSResponder[41]: mDNSResponder mDNSResponder-522.1.11 (Aug 24 2013 23:49:34) starting OSXVers 13
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]: digest-request: netr probe 0
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]: digest-request: init request
    Nov 26 21:50:08 MacBookPro-2.local digest-service[71]: digest-request: init return domain: BUILTIN server: MACBOOKPRO-2 indomain was: <NULL>
    Nov 26 21:50:08 MacBookPro-2.local UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Nov 26 21:50:08 MacBookPro-2.local UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    Nov 26 21:50:08 MacBookPro-2.local awacsd[61]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    Nov 26 21:50:08 MacBookPro-2.local awacsd[61]: InnerStore CopyAllZones: no info in Dynamic Store
    Nov 26 21:50:08 MacBookPro-2.local WindowServer[85]: Server is starting up
    Nov 26 21:50:08 MacBookPro-2.local blued[59]: link key found for device: 00-1d-d8-3a-cc-60
    Nov 26 21:50:08 MacBookPro-2.local configd[18]: network changed.
    Nov 26 21:50:08 MacBookPro-2.local configd[18]: network changed: DNS*
    Nov 26 21:50:08 MacBookPro-2.local mDNSResponder[41]: D2D_IPC: Loaded
    Nov 26 21:50:08 MacBookPro-2.local mDNSResponder[41]: D2DInitialize succeeded
    Nov 26 21:50:08 MacBookPro-2.local mDNSResponder[41]:   4: Listening for incoming Unix Domain Socket client requests
    Nov 26 21:50:08 MacBookPro-2.local networkd[105]: networkd.105 built Aug 24 2013 22:08:46
    Nov 26 21:50:08 MacBookPro-2.local aosnotifyd[64]: aosnotifyd has been launched
    Nov 26 21:50:08 MacBookPro-2.local systemkeychain[88]: done file: /var/run/systemkeychaincheck.done
    Nov 26 21:50:08 MacBookPro-2.local airportd[65]: airportdProcessDLILEvent: en1 attached (up)
    Nov 26 21:50:08 MacBookPro-2 kernel[0]: createVirtIf(): ifRole = 1
    Nov 26 21:50:08 MacBookPro-2 kernel[0]: in func createVirtualInterface ifRole = 1
    Nov 26 21:50:08 MacBookPro-2 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    Nov 26 21:50:08 MacBookPro-2 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    Nov 26 21:50:08 MacBookPro-2 kernel[0]: Created virtif 0xffffff8014825400 p2p0
    Nov 26 21:50:08 MacBookPro-2 kernel[0]: nspace-handler-set-snapshot-time: 1385520610
    Nov 26 21:50:08 MacBookPro-2.local com.apple.mtmd[39]: Set snapshot time: 2013-11-26 21:50:10 -0500 (current time: 2013-11-26 21:50:08 -0500)
    Nov 26 21:50:08 MacBookPro-2.local locationd[46]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Nov 26 21:50:08 MacBookPro-2.local locationd[46]: NBB-Could not get UDID for stable refill timing, falling back on random
    Nov 26 21:50:09 MacBookPro-2.local locationd[46]: Location icon should now be in state 'Inactive'
    Nov 26 21:50:09 MacBookPro-2.local aosnotifyd[64]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:09 MacBookPro-2.local mdmclient[42]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:10 MacBookPro-2.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F8312006960 MacBookPro-2.local. (Addr) that's already in the list
    Nov 26 21:50:10 MacBookPro-2.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F8312006DF0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    Nov 26 21:50:10 MacBookPro-2.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F8312008960 MacBookPro-2.local. (AAAA) that's already in the list
    Nov 26 21:50:10 MacBookPro-2.local mDNSResponder[41]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F8312008DF0 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
    Nov 26 21:50:10 MacBookPro-2.local aosnotifyd[64]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:10 MacBookPro-2.local mdmclient[42]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:11 MacBookPro-2.local blued[59]: Save link key for device: 00-1d-d8-3a-cc-60
    Nov 26 21:50:11 MacBookPro-2.local aosnotifyd[64]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:11 MacBookPro-2.local mdmclient[42]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:12 MacBookPro-2.local aosnotifyd[64]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:12 MacBookPro-2.local mdmclient[42]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Nov 26 21:50:13 MacBookPro-2.local apsd[63]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Nov 26 21:50:13 MacBookPro-2 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    Nov 26 21:50:13 MacBookPro-2.local mds[40]: (Normal) Volume: volume:0x7f932b028000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    Nov 26 21:50:13 MacBookPro-2.local mtmfs[38]: mount succeeded for /Volumes/MobileBackups
    Nov 26 21:50:13 MacBookPro-2.local mds[40]: (Normal) Volume: volume:0x7f932a8b2000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    Nov 26 21:50:13 MacBookPro-2.local mds[40]: (Normal) Volume: volume:0x7f932a8b2000 ********** Created snapshot backup index
    Nov 26 21:50:13 MacBookPro-2.local fseventsd[50]: Logging disabled completely for device:1: /Volumes/Recovery HD
    Nov 26 21:50:14 MacBookPro-2 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key MOTP (kSMCKeyNotFound)
    Nov 26 21:50:14 MacBookPro-2 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key BEMB (kSMCKeyNotFound)
    Nov 26 21:50:14 MacBookPro-2.local WindowServer[85]: Session 256 retained (2 references)
    Nov 26 21:50:14 MacBookPro-2.local WindowServer[85]: Session 256 released (1 references)
    Nov 26 21:50:14 MacBookPro-2.local WindowServer[85]: Session 256 retained (2 references)
    Nov 26 21:50:14 MacBookPro-2.local WindowServer[85]: init_page_flip: page flip mode is on
    Nov 26 21:50:15 MacBookPro-2 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    Nov 26 21:50:15 MacBookPro-2.local SystemStarter[113]: HP IO Monitor (126) did not complete successfully
    Nov 26 21:50:15 MacBookPro-2.local SystemStarter[113]: The following StartupItems failed to start properly:
    Nov 26 21:50:15 MacBookPro-2.local SystemStarter[113]: /Library/StartupItems/HP IO
    Nov 26 21:50:15 MacBookPro-2.local SystemStarter[113]:  - execution of Startup script failed
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Found 1 modes for display 0x00000000 [1, 0]
    Nov 26 21:50:15 --- last message repeated 1 time ---
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Found 36 modes for display 0x00000000 [30, 6]
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Found 1 modes for display 0x00000000 [1, 0]
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: mux_initialize: Mode is logout
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Found 36 modes for display 0x00000000 [30, 6]
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Found 1 modes for display 0x00000000 [1, 0]
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: WSMachineUsesNewStyleMirroring: false
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Display 0x04272900: GL mask 0x5; bounds (0, 0)[1440 x 900], 36 modes available
                Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca4, S/N 0, Unit 0, Rotation 0
                UUID 0x8a96a568c33550779a382c64e81094d2
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Display 0x003f003d: GL mask 0xa; 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
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: WSSetWindowTransform: Singular matrix
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Display 0x04272900: GL mask 0x5; bounds (0, 0)[1440 x 900], 36 modes available
                Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca4, S/N 0, Unit 0, Rotation 0
                UUID 0x8a96a568c33550779a382c64e81094d2
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: Display 0x003f003d: GL mask 0xa; bounds (2464, 0)[1 x 1], 1 modes available
                off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
                UUID 0xffffffffffffffffffffffffffffffff
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: CGXPerformInitialDisplayConfiguration
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]:   Display 0x04272900: Unit 0; Alias(0, 0x5); Vendor 0x610 Model 0x9ca4 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 1
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]:   Display 0x003f003d: Unit 1; Alias(1, 0xa); Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: CGXMuxBoot: Boot normal
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, accelerator 0x00004cc3, unit 0, caps QEX|MIPMAP, vram 256 MB
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: GLCompositor: GL renderer id 0x0202260c, GL mask 0x0000000c, accelerator 0x00003a2b, unit 2, caps QEX|MIPMAP, vram 512 MB
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: GLCompositor: GL renderer id 0x0202260c, GL mask 0x0000000c, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: GLCompositor enabled for tile size [256 x 256]
    Nov 26 21:50:15 MacBookPro-2.local WindowServer[85]: CGXGLInitMipMap: mip map mode is on
    Nov 26 21:50:15 MacBookPro-2.local loginwindow[44]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Nov 26 21:50:16 MacBookPro-2.local WindowServer[85]: Display 0x04272900: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Nov 26 21:50:16 MacBookPro-2.local launchctl[138]: com.apple.findmymacmessenger: Already loaded
    Nov 26 21:50:16 MacBookPro-2.local loginwindow[44]: Setting the initial value of the magsave brightness level 1
    Nov 26 21:50:16 MacBookPro-2.local loginwindow[44]: Login Window Started Security Agent
    Nov 26 21:50:16 MacBookPro-2.local SecurityAgent[146]: This is the first run
    Nov 26 21:50:16 MacBookPro-2.local SecurityAgent[146]: MacBuddy was run = 0
    Nov 26 21:50:16 MacBookPro-2.local WindowServer[85]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fe75ac33640) - enabling OpenGL
    Nov 26 21:50:16 MacBookPro-2.local com.apple.SecurityServer[14]: Session 100005 created
    Nov 26 21:50:16 MacBookPro-2.local UserEventAgent[140]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Nov 26 21:50:17 MacBookPro-2 kernel[0]: MacAuthEvent en1   Auth result for: 00:1c:10:21:4e:2f  MAC AUTH succeeded
    Nov 26 21:50:17 MacBookPro-2 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    Nov 26 21:50:17 MacBookPro-2 kernel[0]: AirPort: Link Up on en1
    Nov 26 21:50:17 MacBookPro-2 kernel[0]: en1: BSSID changed to 00:1c:10:21:4e:2f
    Nov 26 21:50:17 MacBookPro-2 kernel[0]: AirPort: RSN handshake complete on en1
    Nov 26 21:50:17 MacBookPro-2 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Nov 26 21:50:17 MacBookPro-2.local WindowServer[85]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Nov 26 21:50:17 MacBookPro-2.local WindowServer[85]: Display 0x04272900: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Nov 26 21:50:19 --- last message repeated 1 time ---
    Nov 26 21:50:19 MacBookPro-2.local SecurityAgent[146]: User info context values set for RS
    Nov 26 21:50:19 MacBookPro-2.local SecurityAgent[146]: Login Window login proceeding
    Nov 26 21:50:19 MacBookPro-2.local configd[18]: network changed: DNS* Proxy
    Nov 26 21:50:19 MacBookPro-2.local UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'NetLink' making interface primary (protected network)
    Nov 26 21:50:19 MacBookPro-2.local UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    Nov 26 21:50:19 MacBookPro-2.local UserEventAgent[11]: Captive: en1: Probing 'NetLink'
    Nov 26 21:50:19 MacBookPro-2.local configd[18]: network changed: v4(en1!:192.168.1.107) DNS+ Proxy+ SMB
    Nov 26 21:50:19 MacBookPro-2.local loginwindow[44]: Login Window - Returned from Security Agent
    Nov 26 21:50:19 MacBookPro-2.local loginwindow[44]: USER_PROCESS: 44 console
    Nov 26 21:50:19 MacBookPro-2.local UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    Nov 26 21:50:19 MacBookPro-2.local airportd[65]: _doAutoJoin: Already associated to “NetLink”. Bailing on auto-join.
    Nov 26 21:50:19 MacBookPro-2 kernel[0]: AppleKeyStore:Sending lock change 0
    Nov 26 21:50:19 MacBookPro-2 com.apple.launchd.peruser.501[160]: Background: Aqua: Registering new GUI session.
    Nov 26 21:50:19 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.apple.cmfsyncagent): Ignored this key: UserName
    Nov 26 21:50:19 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.apple.EscrowSecurityAlert): Unknown key: seatbelt-profiles
    Nov 26 21:50:19 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Nov 26 21:50:19 MacBookPro-2.local launchctl[162]: com.apple.pluginkit.pkd: Already loaded
    Nov 26 21:50:19 MacBookPro-2.local launchctl[162]: com.apple.sbd: Already loaded
    Nov 26 21:50:19 MacBookPro-2.local distnoted[164]: # distnote server agent  absolute time: 37.621698455   civil time: Tue Nov 26 21:50:19 2013   pid: 164 uid: 501  root: no
    Nov 26 21:50:20 MacBookPro-2.local com.apple.SecurityServer[14]: Session 100007 created
    Nov 26 21:50:20 MacBookPro-2.local WindowServer[85]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Nov 26 21:50:20 MacBookPro-2.local SystemUIServer[172]: Cannot find executable for CFBundle 0x7feb32de2b80 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    Nov 26 21:50:20 MacBookPro-2.local sharingd[182]: Starting Up...
    Nov 26 21:50:20 MacBookPro-2.local WindowServer[85]: Display 0x04272900: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Nov 26 21:50:20 MacBookPro-2.local SystemUIServer[172]: Cannot find executable for CFBundle 0x7feb32d53ce0 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    Nov 26 21:50:20 MacBookPro-2.local SystemUIServer[172]: Cannot find executable for CFBundle 0x7feb32d78760 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    Nov 26 21:50:21 MacBookPro-2.local apsd[63]: Unrecognized leaf certificate
    Nov 26 21:50:21 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.single-user-client[216]): assertion failed: 13A603: launchd + 102012 [C35AEAF6-FCF6-3C64-9FC8-38829064F8A8]: 0xd
    Nov 26 21:50:21 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.client.plist[217]): assertion failed: 13A603: launchd + 102012 [C35AEAF6-FCF6-3C64-9FC8-38829064F8A8]: 0xd
    Nov 26 21:50:21 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.client.plist[217]): Exited with code: 2
    Nov 26 21:50:21 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.client.plist): Throttling respawn: Will start in 10 seconds
    Nov 26 21:50:21 MacBookPro-2.local apsd[63]: Unexpected connection from logged out uid 501
    Nov 26 21:50:21 MacBookPro-2 accountsd[227]: assertion failed: 13A603: liblaunch.dylib + 25164 [FCBF0A02-0B06-3F97-9248-5062A9DEB32C]: 0x25
    Nov 26 21:50:21 MacBookPro-2 com.apple.launchd.peruser.501[160] ([email protected][215]): Exited with code: 2
    Nov 26 21:50:21 MacBookPro-2.local SystemUIServer[172]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov 26 21:50:21 MacBookPro-2.local SystemUIServer[172]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov 26 21:50:21 MacBookPro-2 xpcproxy[231]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    Nov 26 21:50:21 MacBookPro-2.local com.apple.IconServicesAgent[230]: IconServicesAgent launched.
    Nov 26 21:50:21 MacBookPro-2.local com.apple.SecurityServer[14]: Session 100011 created
    Nov 26 21:50:22 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.apple.mrt.uiagent[197]): Exited with code: 255
    Nov 26 21:50:22 MacBookPro-2 xpcproxy[238]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    Nov 26 21:50:23 MacBookPro-2.local awacsd[61]: Exiting
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    Nov 26 21:50:23 MacBookPro-2.local com.apple.audio.DriverHelper[229]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    Nov 26 21:50:23 MacBookPro-2.local UserEventAgent[163]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Nov 26 21:50:23 MacBookPro-2.local accountsd[227]: /SourceCache/Accounts/Accounts-336.9/ACDAuthenticationPluginManager.m - -[ACDAuthenticationPluginManager credentialForAccount:client:handler:] - 230 - The authentication plugin for account "[email protected]" (A3E6B1AD-D8C7-47BB-92AD-3D6B58528D00) could not be found!
    Nov 26 21:50:23 MacBookPro-2.local accountsd[227]: /SourceCache/Accounts/Accounts-336.9/ACDAccountStore.m - __62-[ACDAccountStore credentialForAccountWithIdentifier:handler:]_block_invoke389 - 857 - No plugin provides credentials for account [email protected]. Falling back to legacy behavior.
    Nov 26 21:50:23 MacBookPro-2.local WiFiKeychainProxy[192]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    Nov 26 21:50:23 MacBookPro-2.local WiFiKeychainProxy[192]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    Nov 26 21:50:27 MacBookPro-2.local com.apple.time[163]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Nov 26 21:50:30 MacBookPro-2.local com.apple.SecurityServer[14]: Session 100014 created
    Nov 26 21:50:31 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.client.plist[251]): assertion failed: 13A603: launchd + 102012 [C35AEAF6-FCF6-3C64-9FC8-38829064F8A8]: 0xd
    Nov 26 21:50:31 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.client.plist[251]): Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    Nov 26 21:50:31 MacBookPro-2 com.apple.launchd.peruser.501[160] (com.akamai.client.plist[251]): Job failed to exec(3) for weird reason: 2
    Nov 26 21:50:31 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Library/Keychains/System.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:31 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Library/Keychains/lck~System.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:31 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Library/Keychains/.fl947E1BDB, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:31 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Users/RS/Library/Keychains/login.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:31 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Users/RS/Library/Keychains/lck~login.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:31 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Users/RS/Library/Keychains/.fl62323D2F, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:38 MacBookPro-2.local LKDCHelper[255]: Starting (uid=501)
    Nov 26 21:50:38 MacBookPro-2.local ReportCrash[247]: Attempting to read data: Called memoryAtAddress: 0x9444, which is in an unmappable portion of [0x0 -> 0xffffffffffffffff] in PID# 208.
    Nov 26 21:50:38 MacBookPro-2.local ReportCrash[247]: Attempting to read data: Called memoryAtAddress: 0x9588, which is in an unmappable portion of [0x0 -> 0xffffffffffffffff] in PID# 208.
    Nov 26 21:50:41 MacBookPro-2.local gamed[226]: CKSoftwareMap: Registering with Daemon
    Nov 26 21:50:42 MacBookPro-2.local syncdefaultsd[222]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    Nov 26 21:50:43 MacBookPro-2.local parentalcontrolsd[256]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Nov 26 21:50:44 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Library/Keychains/System.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:44 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Library/Keychains/lck~System.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:44 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Library/Keychains/.fl947E1BDB, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:44 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Users/RS/Library/Keychains/login.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:44 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Users/RS/Library/Keychains/lck~login.keychain, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:44 MacBookPro-2.local com.apple.security.XPCKeychainSandboxCheck[248]: Can't get sandbox fs extension for /Volumes/SD Backup/Users/RS/Library/Keychains/.fl62323D2F, status=-1 errno=No such file or directory ext=(null)
    Nov 26 21:50:47 MacBookPro-2.local com.apple.NotesMigratorService[260]: Joined Aqua audit session
    Nov 26 21:50:47 MacBookPro-2 netsession_mac[216]: netsession_mac(216,0xb031d000) malloc: *** auto malloc[216]: error: GC operation on unregistered thread. Thread registered implicitly. Break on auto_zone_thread_registration_error() to debug.
    Nov 26 21:50:47 MacBookPro-2.local com.apple.internetaccounts[238]: An instance 0x7f82c16e5760 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
                <NSKeyValueObservationInfo 0x7f82c16c8660> (
                <NSKeyValueObservance 0x7f82c16c8790: Observer: 0x7f82c16cf070, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8fa4b44b, Property: 0x7f82c16c8630>
    Nov 26 21:50:50 MacBookPro-2 netsession_mac[216]: netsession_mac(216,0xb039f000) malloc: *** auto malloc[216]: error: GC operation on unregistered thread. Thread registered implicitly. Break on auto_zone_thread_registration_error() to debug.
    Nov 26 21:51:00 MacBookPro-2 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x6c00 ****
    Nov 26 21:51:01 MacBookPro-2 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0OS (kSMCKeyNotFound)
    Nov 26 21:51:02 MacBookPro-2 com.apple.launchd.peruser.501[160] (jp.co.canon.UFR2.BackGrounder[208]): Job appears to have crashed: Trace/BPT trap: 5
    Nov 26 21:51:02 MacBookPro-2.local ReportCrash[247]: Attempting to read data: Called memoryAtAddress: 0x9444, which is in an unmappable portion of [0x0 -> 0xffffffffffffffff] in PID# 267.
    Nov 26 21:51:02 MacBookPro-2.local ReportCrash[247]: Attempting to read data: Called memoryAtAddress: 0x9588, which is in an unmappable portion of [0x0 -> 0xffffffffffffffff] in PID# 267.
    Nov 26 21:51:03 MacBookPro-2 com.apple.launchd.peruser.501[160] (jp.co.canon.UFR2.BackGrounder[267]): Job appears to have crashed: Trace/BPT trap: 5
    Nov 26 21:51:03 MacBookPro-2 com.apple.launchd.peruser.501[160] (jp.co.canon.UFR2.BackGrounder): Throttling respawn: Will start in 10 seconds
    Nov 26 21:51:03 MacBookPro-2.local ReportCrash[247]: Saved crash report for UFR II BackGrounder[208] version ??? to /Users/RS/Library/Logs/DiagnosticReports/UFR II BackGrounder_2013-11-26-215103_MacBookPro-2.crash
    Nov 26 21:51:03 MacBookPro-2.local ReportCrash[247]: Saved crash report for UFR II BackGrounder[267] version ??? to /Users/RS/Library/Logs/DiagnosticReports/UFR II BackGrounder_2013-11-26-215103-1_MacBookPro-2.crash
    Thanks again... Happy upcoming Turkey Day!

    In the future please don't post so much information unless you are asked for it. Most of what you posted is useless.
    Here's what you can try:
    Try these in order:
    1. a. Resetting your Mac's PRAM and NVRAM
        b. Intel-based Macs: Resetting the System Management Controller (SMC)
    2. Restart the computer in Safe Mode, then restart again, normally. If this doesn't help, then:
         Boot to the Recovery HD: Restart the computer and after the chime press and hold down the
         COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the computer and
         after the chime press and hold down the OPTION key until the boot manager screen appears.
         Select the Recovery HD and click on the downward pointing arrow button.
    3. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
    4. Reinstall Lion/Mountain Lion, Mavericks: Reboot from the Recovery HD. Select Reinstall Lion/Mountain Lion, Mavericks from the Utilities menu, and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • Please can anyone help me. Spinning wheel on any operation after Mavericks Install.

    I would really appreciate anybody's help as I am desperate. Thank you in advance.
    After 3 days I have finally got a system running again on my macbook pro mid 2012 but not a without major problem.
    I am constantly getting the spinning colour wheel and i can hardly do anything. Booting up in safe mode is fine and I get no spinning wheel.
    Briefly what has happened -
    4 days ago I decided to make a clean install of mavericks as I wanted to clear the clutter from my hard drive and the fact i was getting a spinning colour wheel very ten minutes for around 10 seconds thus interrupting my work. The download and install kept failing toward the end of installation process. Through recovery mode and disk utility i wiped my hard rive to put on a fresh copy but that left me with no recovery, no OS and it has taken 3 days for me and some help from a guy in the apple community to finally get a system running.
    Unfortunately my only internet connection (which i sci-fi) is at a cafe in the small village I live in and I have no access to another mac or internet connection and there is no genius bar or mac tech of any sort near by. So I went through the steps of 'internet recovery mode' which kept failing but after 2 days and hours in the cafe I managed to install mountain lion onto a usb stick. With this I was able to put mountain lion on my system. It seemed fine and I then went onto download mavericks. Every time the installation failed. It takes nearly four hours for it to even download. Last night through endless attempts using the createinstallmedia method i was able to wipe my usb that had mountain lion on and put mavericks installer onto it. So i was left with a usb stick with mavericks installer on it and mountain lion on my macbook pro.
    Last night I kept trying to install mavericks via Disk Utility in recovery mode because trying to install it from the usb just wasn't working. after attempts here and there and no luck - In disk utility i saw on the left My apple hard drive and underneath the name of my personally named HD. Below that was a horizontal line and below was a yellow/orange hd with disk02 labelled next to it and one called base system. Below that my usb with install os x mavericks.
    This morning, in the cafe I managed to get mavericks working via disk utility in recovery mode. The problem is when i click on finder in the dock, when i try open an app, click on the menu bar - I get the coloured spinning wheel which keeps going for at least two minutes. I fixed disk permissions, run verify disk and everything was fine, started in safe mode and everything is fine. I reset my pram, smc and still i have this spinning wheel when i try do anything . I have my phone with me and its been the only way i can go online to try solve any problem what so ever but as of this moment i have typed and no spinning wheel but if open another tab it will start. I managed to download ETRECHECK and have my results, I also looked at my console which I don't understand but obviously something is wrong. I will post below my results from etrecheck and console, if someone could advice me I would be very grateful.
    etrecheck report -
    EtreCheck version: 1.9.15 (52)
    Report generated 10 September 2014 10:31:47 BST
    Hardware Information: ?
      MacBook Pro (15-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,1
      1 2.3 GHz Intel Core i7 CPU: 4 cores
      16 GB RAM
    Video Information: ?
      Intel HD Graphics 4000 - VRAM: (null)
      Color LCD 1440 x 900
      NVIDIA GeForce GT 650M - VRAM: 512 MB
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:57:15
    Disk Information: ?
      APPLE HDD TOSHIBA MK5065GSXF disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      OS X HD (disk0s2) / [Startup]: 499.25 GB (480.66 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      HL-DT-ST DVDRW  GS31N
    USB Information: ?
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Gatekeeper: ?
      Mac App Store and identified developers
    User Login Items: ?
      None
    Internet Plug-ins: ?
      Default Browser: Version: 537 - SDK 10.9
      QuickTime Plugin: Version: 7.7.3
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      None
    Time Machine: ?
      Time Machine not configured!
    Top Processes by CPU: ?
          1% fontd
          1% Console
          0% WindowServer
          0% System Events
          0% imagent
    Top Processes by Memory: ?
      147 MB Safari
      131 MB mds_stores
      98 MB com.apple.WebKit.WebContent
      98 MB com.apple.IconServicesAgent
      82 MB Console
    Virtual Memory Information: ?
      11.87 GB Free RAM
      2.35 GB Active RAM
      580 MB Inactive RAM
      1.20 GB Wired RAM
      738 MB Page-ins
      0 B Page-outs
    -- my Console will follow after a restart and copy and paste.
    Thank you for any help.
    Gregg

    and this is my log after a restart -
    10/09/2014 10:42:07.872 sharingd[174]: Starting Up...
    10/09/2014 10:42:07.978 revisiond[28]: objc[28]: Class GSLockToken is implemented in both /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Supp ort/revisiond and /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage. One of the two will be used. Which one is undefined.
    10/09/2014 10:42:08.232 xpcproxy[202]: assertion failed: 13E28: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    10/09/2014 10:42:08.336 com.apple.IconServicesAgent[203]: IconServicesAgent launched.
    10/09/2014 10:42:08.399 SystemUIServer[160]: Cannot find executable for CFBundle 0x7fba19525dd0 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    10/09/2014 10:42:08.590 accountsd[209]: assertion failed: 13E28: liblaunch.dylib + 25164 [A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A]: 0x25
    10/09/2014 10:42:08.600 com.apple.SecurityServer[15]: Session 100011 created
    10/09/2014 10:42:08.640 WiFiKeychainProxy[184]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    10/09/2014 10:42:08.641 WiFiKeychainProxy[184]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    10/09/2014 10:42:08.644 SocialPushAgent[185]: ApplePushService: APSConnection being used without a delegate queue
    10/09/2014 10:42:08.647 SystemUIServer[160]: Cannot find executable for CFBundle 0x7fba1b050d50 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    10/09/2014 10:42:08.649 SystemUIServer[160]: Cannot find executable for CFBundle 0x7fba1b05d3d0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    10/09/2014 10:42:08.727 com.apple.IconServicesAgent[203]: Error: Failed to add value to tree: Invalid node at index: 248.
      1   IconServices                        0x000000010ee4e9f5 _ZN11SharedCache9_addValueEyR15SharedCacheItem + 391
      2   IconServices                        0x000000010ee4e78c _ZN11SharedCache8addValueEyR15SharedCacheItem + 56
      3   IconServices                        0x000000010ee52cb7 ___ZN18IconImageGenerator4mainEv_block_invoke7 + 940
      4   libdispatch.dylib                   0x000000010df2028d _dispatch_client_callout + 8
      5   libdispatch.dylib                   0x000000010df21146 _dispatch_barrier_sync_f_invoke + 39
      6   IconServices                        0x000000010ee525ba _ZN18IconImageGenerator4mainEv + 734
      7   IconServices                        0x000000010ee53ea8 _ZN11WorkManager11processWorkEP4Work + 112
      8   IconServices                        0x000000010ee53e1f ___ZN11WorkManager11enqueueWorkEP4WorkU13block_pointerFvS1_E_block_invoke_5 + 26
      9   libdispatch.dylib                   0x000000010df231bb _dispatch_call_block_and_release + 12
      10  libdispatch.dylib                   0x000000010df2028d _dispatch_client_callout + 8
      11  libdispatch.dylib                   0x000000010df247e3 _dispatch_async_redirect_invoke + 154
      12  libdispatch.dylib                   0x000000010df2028d _dispatch_client_callout + 8
      13  libdispatch.dylib                   0x000000010df22082 _dispatch_root_queue_drain + 326
      14  libdispatch.dylib                   0x000000010df23177 _dispatch_worker_thread2 + 40
      15  libsystem_pthread.dylib             0x000000010e215ef8 _pthread_wqthread + 314
      16  libsystem_pthread.dylib             0x000000010e218fb9 start_wqthread + 13
    10/09/2014 10:42:08.811 accountsd[209]: /SourceCache/Accounts/Accounts-336.9/ACDAuthenticationPluginManager.m - -[ACDAuthenticationPluginManager credentialForAccount:client:handler:] - 230 - The authentication plugin for account "[email protected]" (5F1FE0B1-54A5-4F0A-AB0E-F068ACC1C067) could not be found!
    10/09/2014 10:42:08.812 accountsd[209]: /SourceCache/Accounts/Accounts-336.9/ACDAccountStore.m - __62-[ACDAccountStore credentialForAccountWithIdentifier:handler:]_block_invoke389 - 857 - No plugin provides credentials for account [email protected]. Falling back to legacy behavior.
    10/09/2014 10:42:08.945 xpcproxy[216]: assertion failed: 13E28: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    10/09/2014 10:42:09.151 SystemUIServer[160]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    10/09/2014 10:42:09.151 SystemUIServer[160]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    10/09/2014 10:42:09.588 AirPlayUIAgent[219]: 2014-09-10 10:42:09.587638 AM [AirPlayUIAgent] Changed PIN pairing: no
    10/09/2014 10:42:09.593 AirPlayUIAgent[219]: 2014-09-10 10:42:09.593451 AM [AirPlayUIAgent] Changed PIN pairing: no
    10/09/2014 10:42:09.594 com.apple.IconServicesAgent[203]: main Failed to composit image for binding VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x107] - extension: lpdf, UTI: com.apple.localized-pdf-bundle, fileType: ????.
    10/09/2014 10:42:09.594 apsd[60]: Unrecognized leaf certificate
    10/09/2014 10:42:09.595 quicklookd[210]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: lpdf, UTI: com.apple.localized-pdf-bundle, fileType: ???? request size:128 scale: 1
    10/09/2014 10:42:09.934 com.apple.time[152]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    10/09/2014 10:42:09.938 com.apple.time[152]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    10/09/2014 10:42:10.150 awacsd[58]: Exiting
    10/09/2014 10:42:10.444 com.apple.dock.extra[204]: <NSXPCConnection: 0x7f954b7689f0>: received an undecodable message (no exported object to receive message). Dropping message.
    10/09/2014 10:42:10.531 com.apple.SecurityServer[15]: Session 100013 created
    10/09/2014 10:42:11.535 SocialPushAgent[185]: (null) - (null) - 0 - Request error: The operation couldn’t be completed. (NSURLErrorDomain error -1012.)
    10/09/2014 10:42:11.535 SocialPushAgent[185]: __110-[SPALinkedInService registerForPushNotificationsAndUpdatePersistFileWithDeviceToken:UUID:account:en abledFor:]_block_invoke_2 [92] -- *** POST of push registration FAILED. responseCode: 401. Error: Error Domain=NSURLErrorDomain Code=-1012 "The operation couldn’t be completed. (NSURLErrorDomain error -1012.)" UserInfo=0x7fc950433030 {NSErrorFailingURLStringKey=https://api.linkedin.com/v1/device-notifications, NSUnderlyingError=0x7fc950608700 "The operation couldn’t be completed. (kCFErrorDomainCFNetwork error -1012.)", NSErrorFailingURLKey=https://api.linkedin.com/v1/device-notifications}.
    Response:<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <error>
      <status>401</status>
      <timestamp>1410342131391</timestamp>
      <request-id>QBBS5TIFXF</request-id>
      <error-code>0</error-code>
      <message>[unauthorized]. Expired access token. Timestamp: 1407583881616</message>
    </error>
    10/09/2014 10:42:11.610 SocialPushAgent[185]: -[SPAService handleChangesToPushNotificationSettings] [111] -- *** unable to get the current device-token:(null) and/or the uuid:(null) (type = com.apple.social.linkedin)
    10/09/2014 10:42:12.054 SocialPushAgent[185]: (null) - (null) - 0 - Request error: The operation couldn’t be completed. (NSURLErrorDomain error -1012.)
    10/09/2014 10:42:12.054 SocialPushAgent[185]: __110-[SPALinkedInService registerForPushNotificationsAndUpdatePersistFileWithDeviceToken:UUID:account:en abledFor:]_block_invoke_2 [92] -- *** POST of push registration FAILED. responseCode: 401. Error: Error Domain=NSURLErrorDomain Code=-1012 "The operation couldn’t be completed. (NSURLErrorDomain error -1012.)" UserInfo=0x7fc9507142f0 {NSErrorFailingURLStringKey=https://api.linkedin.com/v1/device-notifications, NSUnderlyingError=0x7fc950735b10 "The operation couldn’t be completed. (kCFErrorDomainCFNetwork error -1012.)", NSErrorFailingURLKey=https://api.linkedin.com/v1/device-notifications}.
    Response:<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <error>
      <status>401</status>
      <timestamp>1410342131914</timestamp>
      <request-id>VN23CP2E4Q</request-id>
      <error-code>0</error-code>
      <message>[unauthorized]. Expired access token. Timestamp: 1407583881616</message>
    </error>
    10/09/2014 10:42:12.329 gamed[207]: CKSoftwareMap: Registering with Daemon
    10/09/2014 10:42:12.534 SocialPushAgent[185]: (null) - (null) - 0 - Request error: The operation couldn’t be completed. (NSURLErrorDomain error -1012.)
    10/09/2014 10:42:12.534 SocialPushAgent[185]: __110-[SPALinkedInService registerForPushNotificationsAndUpdatePersistFileWithDeviceToken:UUID:account:en abledFor:]_block_invoke_2 [92] -- *** POST of push registration FAILED. responseCode: 401. Error: Error Domain=NSURLErrorDomain Code=-1012 "The operation couldn’t be completed. (NSURLErrorDomain error -1012.)" UserInfo=0x7fc9506029f0 {NSErrorFailingURLStringKey=https://api.linkedin.com/v1/device-notifications, NSUnderlyingError=0x7fc950617910 "The operation couldn’t be completed. (kCFErrorDomainCFNetwork error -1012.)", NSErrorFailingURLKey=https://api.linkedin.com/v1/device-notifications}.
    Response:<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <error>
      <status>401</status>
      <timestamp>1410342132396</timestamp>
      <request-id>RMWDQI5C9G</request-id>
      <error-code>0</error-code>
      <message>[unauthorized]. Expired access token. Timestamp: 1407583881616</message>
    </error>
    10/09/2014 10:42:13.597 com.apple.NotesMigratorService[224]: Joined Aqua audit session
    10/09/2014 10:42:13.716 com.apple.internetaccounts[216]: An instance 0x7fe6035ea790 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fe6035ea8b0> (
    <NSKeyValueObservance 0x7fe6035ea840: Observer: 0x7fe6035ea160, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x11c4e343b, Property: 0x7fe6035e2f00>
    10/09/2014 10:42:13.722 com.apple.internetaccounts[216]: An instance 0x7fe60375f7e0 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fe60375fa00> (
    <NSKeyValueObservance 0x7fe60375f890: Observer: 0x7fe60375edf0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x11c4e343b, Property: 0x7fe6035e2f00>
    10/09/2014 10:42:15.876 com.apple.time[152]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    10/09/2014 10:42:18.822 parentalcontrolsd[233]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    10/09/2014 10:42:46.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x2800 ****
    10/09/2014 10:43:52.000 kernel[0]: disk0s2: I/O error.
    10/09/2014 10:43:53.648 ReportCrash[245]: Saved crash report for PluginProcess[242] version 9537 (9537.77.4) to /Users/gregghartley/Library/Logs/DiagnosticReports/PluginProcess_2014-09-10-104 353_Greggs-MacBook-Pro.crash
    10/09/2014 10:43:59.461 Console[252]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    10/09/2014 10:44:21.017 com.apple.launchd[1]: (com.apple.WebKit.WebContent.BDB385CE-A81F-42DC-A2C0-22FB10393682[239]) Could not terminate job: 3: No such process
    10/09/2014 10:44:21.017 com.apple.launchd[1]: (com.apple.WebKit.WebContent.BDB385CE-A81F-42DC-A2C0-22FB10393682[239]) Using fallback option to terminate job...
    10/09/2014 10:44:21.023 com.apple.launchd[1]: (com.apple.WebKit.Networking.F8370421-D068-417A-A5F7-A1014B264202[238]) Exited with code: 1
    10/09/2014 10:44:31.937 com.apple.launchd[1]: (com.apple.WebKit.WebContent.79A3EAE7-3B71-47A5-A430-F255F70590DD[240]) Exited with code: 1
    10/09/2014 10:44:51.925 com.apple.launchd[1]: (com.apple.qtkitserver[254]) Exit timeout elapsed (20 seconds). Killing
    10/09/2014 10:44:52.000 kernel[0]: disk0s2: I/O error.
    10/09/2014 10:45:52.118 firmwaresyncd[46]: /sbin/fsck_msdos exited with 8
    10/09/2014 10:45:52.118 firmwaresyncd[46]: Command /sbin/fsck_msdos output: ** /dev/disk0s1
    ** Phase 1 - Preparing FAT
    ** Phase 2 - Checking Directories
    /EFI/APPLE/CACHES/CAFEBEEF starts with free cluster
    Remove? no
    ** Phase 3 - Checking for Orphan Clusters
    Found orphan cluster(s)
    Fix? no
    Found 5 orphaned clusters
    Free space in FSInfo block (371723) not correct (371721)
    Fix? no
    10 files, 185860 KiB free (371721 clusters)

  • New HD in MBP (2009)

    Hi Guys,
    Was having some issues with my MBP (programs shutting down / crashing) so I decided to buy a new 750gb HD and install Mavericks.
    Once I installed the new drive, and got to the desktop, the system started restarting itself... repeatedly! I would get the message: "The system had to restart, please press any key to continue" (along those lines).
    I've taken the new drive back out, made sure it was a fresh install and have also checked the drive with Drive Genius, all of which returned no errors with the drive itself.
    I managed to get the log from Console before the last crash. Can anyone help please?
    18/10/2014 23:34:36.418 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    18/10/2014 23:34:36.418 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    18/10/2014 23:34:36.418 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    18/10/2014 23:34:36.418 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    18/10/2014 23:34:36.418 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    18/10/2014 23:34:36.418 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    18/10/2014 23:34:36.419 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    18/10/2014 23:34:36.419 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    18/10/2014 23:34:36.419 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    18/10/2014 23:34:36.419 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    18/10/2014 23:34:36.419 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    18/10/2014 23:34:36.419 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    18/10/2014 23:34:36.419 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    18/10/2014 23:34:36.420 com.apple.audio.DriverHelper[432]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    18/10/2014 23:34:36.455 com.apple.audio.DriverHelper[432]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    18/10/2014 23:34:36.455 com.apple.audio.DriverHelper[432]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    18/10/2014 23:34:36.455 com.apple.audio.DriverHelper[432]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    18/10/2014 23:34:36.000 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    18/10/2014 23:34:36.969 SystemUIServer[353]: Cannot find executable for CFBundle 0x7fd8eb47d920 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    18/10/2014 23:34:37.038 com.apple.BKAgentService[424]: Failed to read the book property list at {/Users/hinalpattani/Library/Containers/com.apple.BKAgentService/Data/Documents /iBooks/Books/Books.plist}.
    18/10/2014 23:34:37.044 bookstoreagent[410]: ServerXPCDispatch: account-logged-in not present in account data, assuming account is signed in
    18/10/2014 23:34:37.092 mbicloudsetup[395]: Error from com.apple.bookstoreagent-xpc - <OS_xpc_error: <error: 0x7fff74ca6b50> { count = 1, contents =
        "XPCErrorDescription" => <string: 0x7fff74ca6e60> { length = 18, contents = "Connection invalid" }
    }>
    18/10/2014 23:34:37.591 com.apple.SecurityServer[14]: Session 100017 created
    18/10/2014 23:34:38.750 mbicloudsetup[395]: com.apple.icdplugin.iMessage: Aliases changed to (
        xxxx
    18/10/2014 23:34:38.757 mbicloudsetup[395]: com.apple.icdplugin.FaceTime: Aliases changed to (
       xxxx
    18/10/2014 23:34:40.732 genatsdb[431]: sandbox cache error 3850
    18/10/2014 23:34:41.388 CalendarAgent[376]: Could not find Meta Data for persistent Store: Error Domain=NSCocoaErrorDomain Code=260 "The file “Calendar Cache” couldn’t be opened because there is no such file." UserInfo=0x7f94cb51b8c0 {NSURL=file:///Users/hinalpattani/Library/Calendars/Calendar%20Cache}
    18/10/2014 23:34:41.422 mbicloudsetup[395]: com.apple.icdplugin.FaceTime: Notified that Account was Registered via notification. Exiting successfully.
    18/10/2014 23:34:41.422 mbicloudsetup[395]: com.apple.icdplugin.FaceTime: Stopping timeout timer
    18/10/2014 23:34:41.423 mbicloudsetup[395]: com.apple.icdplugin.FaceTime: Finished setup with error: (null). User: 501
    18/10/2014 23:34:41.549 mbpluginhost[281]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    18/10/2014 23:34:41.550 mbpluginhost[281]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    18/10/2014 23:34:41.550 mbpluginhost[281]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    18/10/2014 23:34:41.562 mbpluginhost[281]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    18/10/2014 23:34:41.562 mbpluginhost[281]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    18/10/2014 23:34:42.145 SystemUIServer[353]: Cannot find executable for CFBundle 0x7fd8eb526d50 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    18/10/2014 23:34:42.152 SystemUIServer[353]: Cannot find executable for CFBundle 0x7fd8eb481f00 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    18/10/2014 23:34:42.208 syncdefaultsd[295]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    18/10/2014 23:34:42.610 syncdefaultsd[295]: icbaccountsd-com.apple.accounts will keep remote value for Accounts as it's the initial sync
    18/10/2014 23:34:42.610 syncdefaultsd[295]: icbaccountsd-com.apple.accounts will keep remote value for UpdateList as it's the initial sync
    18/10/2014 23:34:42.610 syncdefaultsd[295]: icbaccountsd-com.apple.accounts will keep remote value for DeletedAccounts as it's the initial sync
    18/10/2014 23:34:42.611 syncdefaultsd[295]: icbaccountsd-com.apple.accounts will keep remote value for Devices as it's the initial sync
    18/10/2014 23:34:42.611 syncdefaultsd[295]: icbaccountsd-com.apple.accounts will keep remote value for CurrentAccounts as it's the initial sync
    18/10/2014 23:34:42.611 syncdefaultsd[295]: supressing remaining warnings for icbaccountsd-com.apple.accounts
    18/10/2014 23:34:42.611 syncdefaultsd[295]: icbaccountsd-com.apple.accounts had 6 keys that reported issues.
    18/10/2014 23:34:42.711 com.apple.SecurityServer[14]: Session 100022 created
    18/10/2014 23:34:43.050 parentalcontrolsd[448]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    18/10/2014 23:34:43.264 com.apple.NotesMigratorService[450]: Joined Aqua audit session
    18/10/2014 23:34:43.405 com.apple.dock.extra[441]: <NSXPCConnection: 0x7ff110c359e0>: received an undecodable message (no exported object to receive message). Dropping message.
    18/10/2014 23:34:43.489 com.apple.time[339]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    18/10/2014 23:34:43.511 com.apple.time[339]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    18/10/2014 23:34:43.678 SystemUIServer[353]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    18/10/2014 23:34:43.678 SystemUIServer[353]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    18/10/2014 23:34:43.746 SystemUIServer[353]: It does not make sense to draw an image when [NSGraphicsContext currentContext] is nil.  This is a programming error. Break on void _NSWarnForDrawingImageWithNoCurrentContext() to debug.  This will be logged only once.  This may break in the future.
    18/10/2014 23:34:43.918 com.apple.internetaccounts[421]: An instance 0x7f9c11f7d7c0 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7f9c11f7f1e0> (
    <NSKeyValueObservance 0x7f9c11f7f010: Observer: 0x7f9c11f7a3e0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8920f43b, Property: 0x7f9c11f7e910>
    18/10/2014 23:34:44.056 mbicloudsetup[395]: com.apple.icdplugin.iMessage: Notified that Account was Registered via notification. Exiting successfully.
    18/10/2014 23:34:44.057 mbicloudsetup[395]: com.apple.icdplugin.iMessage: Stopping timeout timer
    18/10/2014 23:34:44.057 mbicloudsetup[395]: com.apple.icdplugin.iMessage: Finished setup with error: (null). User: 501
    18/10/2014 23:34:44.000 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    18/10/2014 23:34:44.128 mds[60]: (Normal) Volume: volume:0x7ffdfa8a7000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    18/10/2014 23:34:44.140 mbicloudsetup[395]: [AOSAccounts] : IAAppProvider::CreateIAApp: serviceID com.apple.Dataclass.Notes :no account was created error received is [12-AppleInternetAccountsErrorDomain]
    18/10/2014 23:34:44.142 mbicloudsetup[395]: [AOSAccounts] : IAAppProvider::SetEnabled : account hixxx erviceID com.apple.Dataclass.Notes CreateIAApp failed
    18/10/2014 23:34:44.216 fseventsd[72]: Logging disabled completely for device:1: /Volumes/Recovery HD
    18/10/2014 23:34:44.365 com.apple.NotesMigratorService[450]: INFO: FMM: containsRecoveryPartition: YES, version: 13F34
    18/10/2014 23:34:44.749 com.apple.NotesMigratorService[450]: INFO: FMM: isLocationServicesCapable: YES
    18/10/2014 23:34:44.994 CalendarAgent[376]: CoreData: error: (3850) I/O error for database at /Users/hinalpattani/Library/Application Support/AddressBook/Sources/20656051-CFC7-44B2-A4AA-49819984D46A/AddressBook-v2 2.abcddb.  SQLite error code:3850, 'not an error' errno:11
    18/10/2014 23:34:45.087 AddressBookSourceSync[458]: Database file is empty: /Users/hxxxxxxx/Library/Application Support/AddressBook/Sources/20656051-CFC7-44B2-A4AA-49819984D46A/AddressBook-v2 2.abcddb
    18/10/2014 23:34:45.273 syncdefaultsd[295]: Fixing push token
    18/10/2014 23:34:45.288 com.apple.NotesMigratorService[450]: INFO: FMM: areLocationServicesEnabled: YES
    18/10/2014 23:34:45.336 com.apple.NotesMigratorService[450]: INFO: FMM: isLocationServicesCapable: YES
    18/10/2014 23:34:45.338 com.apple.NotesMigratorService[450]: INFO: FMM: areLocationServicesEnabled: YES
    18/10/2014 23:34:45.425 CalendarAgent[376]: 0x7f94cb74cfe0: ManagedObjectContext (ABAddressBook) could not create the store at path: </Users/hinalpattani/Library/Application Support/AddressBook/Sources/20656051-CFC7-44B2-A4AA-49819984D46A/AddressBook-v2 2.abcddb> - creation error: Error Domain=NSCocoaErrorDomain Code=3850 "The operation couldn’t be completed. (Cocoa error 3850.)" UserInfo=0x7f94cb767d90 {NSSQLiteErrorDomain=3850, NSUnderlyingException=I/O error for database at /Users/xxxxxni/Library/Application Support/AddressBook/Sources/20656051-CFC7-44B2-A4AA-49819984D46A/AddressBook-v2 2.abcddb.  SQLite error code:3850, 'not an error' errno:11} {
        NSSQLiteErrorDomain = 3850;
        NSUnderlyingException = "I/O error for database at /Users/xxxxxni/Library/Application Support/AddressBook/Sources/20656051-CFC7-44B2-A4AA-49819984D46A/AddressBook-v2 2.abcddb.  SQLite error code:3850, 'not an error' errno:11";
    18/10/2014 23:34:45.000 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    18/10/2014 23:34:46.795 com.apple.IconServicesAgent[400]: main Failed to composit image for binding VariantBinding [0x13f] flags: 0x8 binding: FileInfoBinding [0x30d] - extension: lpdf, UTI: com.apple.localized-pdf-bundle, fileType: ????.
    18/10/2014 23:34:46.796 quicklookd[461]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: lpdf, UTI: com.apple.localized-pdf-bundle, fileType: ???? request size:128 scale: 1
    18/10/2014 23:34:56.181 icbaccountsd[406]: __17-[ICBServer sync]_block_invoke: Client triggered, however either the checkbox is disabled or there are not enough peers, exiting...
    18/10/2014 23:34:56.400 mds_stores[141]: (Error) SecureStore: Access token 11 changed uid from -1 to 501
    18/10/2014 23:34:56.542 com.apple.internetaccounts[421]: Could not replace account with identifier: _local
    18/10/2014 23:34:56.544 com.apple.internetaccounts[421]: Could not replace account with identifier: _local
    18/10/2014 23:34:56.549 com.apple.internetaccounts[421]: Could not replace account with identifier: _local
    18/10/2014 23:34:56.551 CalendarAgent[376]: Could not replace account with identifier: _local
    18/10/2014 23:34:56.552 CalendarAgent[376]: Could not replace account with identifier: _local
    18/10/2014 23:34:56.552 CalendarAgent[376]: Could not replace account with identifier: _local
    18/10/2014 23:34:56.561 soagent[382]: Could not replace account with identifier: _local
    18/10/2014 23:34:56.562 soagent[382]: Could not replace account with identifier: _local
    18/10/2014 23:34:56.562 soagent[382]: Could not replace account with identifier: _local
    18/10/2014 23:34:56.565 AddressBookSourceSync[458]: Could not replace account with identifier: _local
    18/10/2014 23:34:56.566 AddressBookSourceSync[458]: Could not replace account with identifier: _local
    18/10/2014 23:34:56.567 AddressBookSourceSync[458]: Could not replace account with identifier: _local
    18/10/2014 23:34:57.262 PubSubAgent[468]: SQL Error: SQLITE_CANTOPEN[14.0]: Database file not found
    18/10/2014 23:34:58.795 SystemUIServer[353]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    18/10/2014 23:34:58.796 SystemUIServer[353]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    18/10/2014 23:35:05.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x9400 ****
    18/10/2014 23:35:08.612 xpcproxy[483]: assertion failed: 13F34: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    18/10/2014 23:35:09.288 com.apple.InputMethodKit.UserDictionary[486]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  hinalpattani~1E9078E6-9024-5D95-97F1-5E7A31D9ED12:UserDictionary
    Using local storage: 1
    18/10/2014 23:35:09.403 ubd[487]: sandbox cache error 11: database disk image is malformed
    18/10/2014 23:35:13.994 com.apple.time[339]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    18/10/2014 23:35:14.734 com.apple.time[339]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    18/10/2014 23:35:18.915 com.apple.MailServiceAgent[483]: Attempt to create special mailbox Sent on server failed. Storing locally instead.
    18/10/2014 23:35:20.074 com.apple.IconServicesAgent[400]: main Failed to composit image for binding VariantBinding [0x1b3] flags: 0x8 binding: FileInfoBinding [0x2a7] - extension: lpdf, UTI: com.apple.localized-pdf-bundle, fileType: ????.
    18/10/2014 23:35:20.075 quicklookd[461]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: lpdf, UTI: com.apple.localized-pdf-bundle, fileType: ???? request size:128 scale: 1
    18/10/2014 23:35:26.481 launchproxyls[342]: Launch Services seeding did not complete
    18/10/2014 23:35:28.000 kernel[0]: Limiting closed port RST response from 264 to 250 packets per second
    18/10/2014 23:35:30.071 syspolicyd[497]: loading GKE 73c488ae-09c5-4846-9a70-ffe612ca5f13 (replacing nothing)
    18/10/2014 23:35:37.000 kernel[0]: hfs: mounted Transmission on device disk2s1
    18/10/2014 23:35:37.121 mds[60]: (Normal) Volume: volume:0x7ffdfa8b4200 ********** Bootstrapped Creating a default store:1 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Transmission
    18/10/2014 23:35:44.195 apsd[86]: Failed to send activation record to service com.apple.ManagedClient.enroll
    18/10/2014 23:35:46.741 Finder[354]: NSFileCoordinator: Sending of a providerCheckin message was interrupted. Details: Connection interrupted
    18/10/2014 23:35:55.213 locationd[66]: Could not open database /var/root/Library/Caches/locationd/consolidated.db, error code = 14
    18/10/2014 23:35:55.276 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/cells.plist if present
    18/10/2014 23:35:55.287 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/cells-local.plist if present
    18/10/2014 23:35:55.288 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/h-cells.plist if present
    18/10/2014 23:35:55.288 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/h-wifis.plist if present
    18/10/2014 23:35:55.288 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/clients-b.plist if present
    18/10/2014 23:35:55.289 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/c-trained.plist if present
    18/10/2014 23:35:55.289 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/cells.db if present
    18/10/2014 23:35:55.289 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/cells.db-journal if present
    18/10/2014 23:35:55.290 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/wifis.db if present
    18/10/2014 23:35:55.290 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/wifis.db-journal if present
    18/10/2014 23:35:55.290 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/cells-local.db if present
    18/10/2014 23:35:55.291 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/cells-local.db-journal if present
    18/10/2014 23:35:55.291 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/h-locations.db if present
    18/10/2014 23:35:55.291 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/h-locations.db-journal if present
    18/10/2014 23:35:55.291 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/h-cells.db if present
    18/10/2014 23:35:55.292 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/h-cells.db-journal if present
    18/10/2014 23:35:55.292 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/h-wifis.db if present
    18/10/2014 23:35:55.292 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/h-wifis.db-journal if present
    18/10/2014 23:35:55.292 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/compass.db if present
    18/10/2014 23:35:55.293 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/compass.db-journal if present
    18/10/2014 23:35:55.293 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/history.db if present
    18/10/2014 23:35:55.293 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/history.db-journal if present
    18/10/2014 23:35:55.293 locationd[66]: Deleting /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/glgps_nvs.bin if present
    18/10/2014 23:36:34.970 SCHelper[429]: active (but IDLE) sessions
    18/10/2014 23:36:34.971 SCHelper[429]:   0x7fb5c9d00300 {port = 0x1c03, caller = accountsd(397):com.apple.accountsd, path = /Library/Preferences/SystemConfiguration/com.apple.accounts.exists.plist}
    18/10/2014 23:36:40.075 AddressBookSourceSync[458]: Error, could not create MachMessagePort for com.apple.AddressBook.abd
    18/10/2014 23:36:40.079 com.apple.launchd.peruser.501[257]: (com.apple.AddressBook.abd) Throttling respawn: Will start in 9 seconds
    18/10/2014 23:36:46.254 com.apple.launchd.peruser.501[257]: (com.apple.AddressBook.abd) Throttling respawn: Will start in 3 seconds
    18/10/2014 23:36:46.271 mds[60]: (Normal) Volume: volume:0x7ffdfb262000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.IfCKNS
    18/10/2014 23:37:46.000 kernel[0]: considerRebuildOfPrelinkedKernel prebuild rebuild has expired
    18/10/2014 23:38:45.000 kernel[0]: CoreServicesUIAg[553] Unable to quarantine: 93
    18/10/2014 23:38:45.000 kernel[0]: CoreServicesUIAg[553] Unable to quarantine: 93
    18/10/2014 23:38:45.000 kernel[0]: CoreServicesUIAg[553] Unable to quarantine: 93
    18/10/2014 23:38:45.000 kernel[0]: CoreServicesUIAg[553] Unable to quarantine: 93
    18/10/2014 23:38:45.000 kernel[0]: CoreServicesUIAg[553] Unable to quarantine: 93
    18/10/2014 23:38:45.000 kernel[0]: CoreServicesUIAg[553] Unable to quarantine: 93
    18/10/2014 23:38:45.000 kernel[0]: CoreServicesUIAg[553] Unable to quarantine: 93
    18/10/2014 23:38:45.000 kernel[0]: CoreServicesUIAg[553] Unable to quarantine: 93
    18/10/2014 23:38:45.000 kernel[0]: CoreServicesUIAg[553] Unable to quarantine: 93
    18/10/2014 23:39:35.000 bootlog[0]: BOOT_TIME 1413671975 0
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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".
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 syslogd[17]: 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.
    18/10/2014 23:39:55.000 kernel[0]: Longterm timer threshold: 1000 ms
    18/10/2014 23:39:55.000 kernel[0]: Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014; root:xnu-2422.115.4~1/RELEASE_X86_64
    18/10/2014 23:39:55.000 kernel[0]: vm_page_bootstrap: 880160 free pages and 94688 wired pages
    18/10/2014 23:39:55.000 kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    18/10/2014 23:39:55.000 kernel[0]: zone leak detection enabled
    18/10/2014 23:39:55.000 kernel[0]: "vm_compressor_mode" is 4
    18/10/2014 23:39:55.000 kernel[0]: standard timeslicing quantum is 10000 us
    18/10/2014 23:39:55.000 kernel[0]: standard background quantum is 2500 us
    18/10/2014 23:39:55.000 kernel[0]: mig_table_max_displ = 74
    18/10/2014 23:39:55.000 kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    18/10/2014 23:39:55.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    18/10/2014 23:39:55.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    18/10/2014 23:39:55.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    18/10/2014 23:39:55.000 kernel[0]: calling mpo_policy_init for Sandbox
    18/10/2014 23:39:55.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    18/10/2014 23:39:55.000 kernel[0]: calling mpo_policy_init for Quarantine
    18/10/2014 23:39:55.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    18/10/2014 23:39:55.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    18/10/2014 23:39:55.000 kernel[0]: The Regents of the University of California. All rights reserved.
    18/10/2014 23:39:55.000 kernel[0]: MAC Framework successfully initialized
    18/10/2014 23:39:55.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    18/10/2014 23:39:55.000 kernel[0]: AppleKeyStore starting (BUILT: Aug 17 2014 20:21:39)
    18/10/2014 23:39:55.000 kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    18/10/2014 23:39:55.000 kernel[0]: ACPI: sleep states S3 S4 S5
    18/10/2014 23:39:55.000 kernel[0]: pci (build 20:04:33 Aug 17 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    18/10/2014 23:39:55.000 kernel[0]: AppleIntelCPUPowerManagement: (built 20:17:40 Aug 17 2014) initialization complete
    18/10/2014 23:39:55.000 kernel[0]: [ PCI configuration begin ]
    18/10/2014 23:39:55.000 kernel[0]: console relocated to 0xf80010000
    18/10/2014 23:39:55.000 kernel[0]: [ PCI configuration end, bridges 7, devices 19 ]
    18/10/2014 23:39:55.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 00254bfffeb946fa; max speed s800.
    18/10/2014 23:39:55.000 kernel[0]: USBMSC Identifier (non-unique): 35544A305147364320202020 0x13fd 0x840 0x114, 2
    18/10/2014 23:39:55.000 kernel[0]: mcache: 2 CPU(s), 64 bytes CPU cache line size
    18/10/2014 23:39:55.000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    18/10/2014 23:39:55.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    18/10/2014 23:39:55.000 kernel[0]: rooting via boot-uuid from /chosen: 02B0B932-93F3-3BE0-9A14-E641735DFA58
    18/10/2014 23:39:55.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>
    18/10/2014 23:39:55.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    18/10/2014 23:39:55.000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN kmod start
    18/10/2014 23:39:55.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    18/10/2014 23:39:55.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    18/10/2014 23:39:55.000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN load succeeded
    18/10/2014 23:39:55.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    18/10/2014 23:39:55.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    18/10/2014 23:39:55.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/WDC WD7500BPKX-22HPJT0 Media/IOGUIDPartitionScheme/Macintosh HD@2
    18/10/2014 23:39:55.000 kernel[0]: BSD root: disk0s2, major 1, minor 1
    18/10/2014 23:39:55.000 kernel[0]: jnl: b(1, 1): replay_journal: from: 14712320 to: 19725824 (joffset 0x6ff000)
    18/10/2014 23:39:55.000 kernel[0]: jnl: b(1, 1): journal replay done.
    18/10/2014 23:39:55.000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    18/10/2014 23:39:55.000 kernel[0]: hfs: Removed 33 orphaned / unlinked files and 14 directories
    18/10/2014 23:39:39.508 com.apple.launchd[1]: *** launchd[1] has started up. ***
    18/10/2014 23:39:39.508 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    18/10/2014 23:39:55.332 com.apple.SecurityServer[14]: Session 100000 created
    18/10/2014 23:39:56.244 com.apple.SecurityServer[14]: Entering service
    18/10/2014 23:39:56.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    18/10/2014 23:39:56.340 configd[18]: network changed.
    18/10/2014 23:39:56.368 configd[18]: setting hostname to "Hinals-MacBook-Pro.local"
    18/10/2014 23:39:56.000 kernel[0]: jnl: disk0s4: replay_journal: from: 659968 to: 1692160 (joffset 0xed8000)
    18/10/2014 23:39:57.123 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    18/10/2014 23:39:57.000 kernel[0]: jnl: disk0s4: journal replay done.
    18/10/2014 23:39:57.000 kernel[0]: hfs: mounted Data on device disk0s4
    18/10/2014 23:39:57.000 kernel[0]: Waiting for DSMOS...
    18/10/2014 23:39:59.000 kernel[0]: AGC: 3.6.22, HW version=1.7.10, flags:0, features:4
    18/10/2014 23:39:59.000 kernel[0]: BTCOEXIST off
    18/10/2014 23:39:59.000 kernel[0]: BRCM tunables:
    18/10/2014 23:39:59.000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    18/10/2014 23:39:59.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    18/10/2014 23:39:59.000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    18/10/2014 23:39:59.000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    18/10/2014 23:39:59.000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    18/10/2014 23:39:59.000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    18/10/2014 23:39:59.000 kernel[0]: Previous Shutdown Cause: -128
    18/10/2014 23:39:59.000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    18/10/2014 23:39:59.972 fseventsd[79]: event logs in /Volumes/Data/.fseventsd out of sync with volume.  destroying old logs. (214 3 426)
    18/10/2014 23:39:59.983 fseventsd[79]: log dir: /Volumes/Data/.fseventsd getting new uuid: D5241C53-A98C-4313-BFA8-4DB982F03504
    18/10/2014 23:40:00.118 fseventsd[79]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (370 25 430)
    18/10/2014 23:40:00.134 hidd[78]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    18/10/2014 23:40:00.136 hidd[78]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    18/10/2014 23:40:00.000 kernel[0]: VM Swap Subsystem is ON
    18/10/2014 23:40:00.563 fseventsd[79]: log dir: /.fseventsd getting new uuid: A6F4F04E-C52D-486A-BA12-C09D412ED553
    18/10/2014 23:40:00.793 DumpPanic[82]: Saved panic report for kernel to /Library/Logs/DiagnosticReports/Kernel_2014-10-18-234000_Hinals-MacBook-Pro.pan ic
    18/10/2014 23:40:00.844 mDNSResponder[70]: mDNSResponder mDNSResponder-522.92.1 (Jul 27 2014 17:31:49) starting OSXVers 13
    18/10/2014 23:40:00.877 com.apple.usbmuxd[56]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    18/10/2014 23:40:01.471 digest-service[95]: label: default
    18/10/2014 23:40:01.472 digest-service[95]:     dbname: od:/Local/Default
    18/10/2014 23:40:01.472 digest-service[95]:     mkey_file: /var/db/krb5kdc/m-key
    18/10/2014 23:40:01.472 digest-service[95]:     acl_file: /var/db/krb5kdc/kadmind.acl
    18/10/2014 23:40:01.544 awacsd[90]: Starting awacsd connectivity_executables-97.1 (Jul 27 2014 17:02:42)
    18/10/2014 23:40:02.196 digest-service[95]: digest-request: uid=0
    18/10/2014 23:40:02.211 awacsd[90]: InnerStore CopyAllZones: no info in Dynamic Store
    18/10/2014 23:40:02.378 systemkeychain[99]: done file: /var/run/systemkeychaincheck.done
    18/10/2014 23:40:02.399 digest-service[95]: digest-request: netr probe 0
    18/10/2014 23:40:02.400 digest-service[95]: digest-request: init request
    18/10/2014 23:40:02.424 digest-service[95]: digest-request: init return domain: BUILTIN server: HINALS-MACBOOK-PRO indomain was: <NULL>
    18/10/2014 23:40:02.712 apsd[92]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    18/10/2014 23:40:03.060 networkd[117]: networkd.117 built Aug 24 2013 22:08:46
    18/10/2014 23:40:03.530 locationd[75]: NBB-Could not get UDID for stable refill timing, falling back on random
    18/10/2014 23:40:03.561 locationd[75]: Location icon should now be in state 'Inactive'
    18/10/2014 23:40:03.760 configd[18]: network changed: DNS*
    18/10/2014 23:40:03.763 configd[18]: network changed.
    18/10/2014 23:40:03.000 kernel[0]: NVEthernet::start - Built Aug 17 2014 20:19:15
    18/10/2014 23:40:03.000 kernel[0]: NVDAStartup: Official
    18/10/2014 23:40:03.000 kernel[0]: NVDAStartup: Official
    18/10/2014 23:40:03.849 mDNSResponder[70]: D2D_IPC: Loaded
    18/10/2014 23:40:03.849 mDNSResponder[70]: D2DInitialize succeeded
    18/10/2014 23:40:03.854 mDNSResponder[70]:   4: Listening for incoming Unix Domain Socket client requests
    18/10/2014 23:40:03.882 locationd[75]: locationd was started after an unclean shutdown
    18/10/2014 23:40:04.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key MOTP (kSMCKeyNotFound)
    18/10/2014 23:40:05.000 kernel[0]: IOBluetoothUSBDFU::probe
    18/10/2014 23:40:05.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8217 FirmwareVersion - 0x0207
    18/10/2014 23:40:05.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x3000 ****
    18/10/2014 23:40:05.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x3000 ****
    18/10/2014 23:40:05.000 kernel[0]: NVDANV50HAL loaded and registered
    18/10/2014 23:40:05.000 kernel[0]: NVDANV50HAL loaded and registered
    18/10/2014 23:40:07.000 kernel[0]: init
    18/10/2014 23:40:07.000 kernel[0]: probe
    18/10/2014 23:40:07.000 kernel[0]: start
    18/10/2014 23:40:07.000 kernel[0]: DSMOS has arrived
    18/10/2014 23:40:07.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x3000
    18/10/2014 23:40:07.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    18/10/2014 23:40:07.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key BEMB (kSMCKeyNotFound)
    18/10/2014 23:40:07.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    18/10/2014 23:40:07.000 kernel[0]: IO80211Interface::efiNVRAMPublished():
    18/10/2014 23:40:07.393 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    18/10/2014 23:40:07.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    18/10/2014 23:40:07.000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x6f40 -- 0xb800 -- 0x3000 ****
    18/10/2014 23:40:07.401 loginwindow[73]: Login Window Application Started
    18/10/2014 23:40:07.499 airportd[94]: airportdProcessDLILEvent: en1 attached (down)
    18/10/2014 23:40:07.000 kernel[0]: createVirtIf(): ifRole = 1
    18/10/2014 23:40:07.000 kernel[0]: in func createVirtualInterface ifRole = 1
    18/10/2014 23:40:07.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    18/10/2014 23:40:07.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    18/10/2014 23:40:07.000 kernel[0]: Created virtif 0xffffff801cfff800 p2p0
    18/10/2014 23:40:08.000 kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    18/10/2014 23:40:08.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    18/10/2014 23:40:08.320 configd[18]: dhcp_arp_router: en1 SSID unavailable
    18/10/2014 23:40:08.892 mds[69]: (Normal) FMW: FMW 0 0
    18/10/2014 23:40:08.896 WindowServer[120]: Server is starting up
    18/10/2014 23:40:09.721 WindowServer[120]: Session 256 retained (2 references)
    18/10/2014 23:40:09.721 WindowServer[120]: Session 256 released (1 references)
    18/10/2014 23:40:09.741 WindowServer[120]: Session 256 retained (2 references)
    18/10/2014 23:40:09.744 WindowServer[120]: init_page_flip: page flip mode is on
    18/10/2014 23:42:14.000 bootlog[0]: BOOT_TIME 1413672134 0
    18/10/2014 23:42:31.000 syslogd[19]: 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.
    18/10/2014 23:42:31.000 syslogd[19]: 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".
    18/10/2014 23:42:31.000 syslogd[19]: 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.
    18/10/2014 23:42:31.000 syslogd[19]: 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.
    18/10/2014 23:42:31.000 syslogd[19]: 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.
    18/10/2014 23:42:31.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.
    18/10/2014 23:42:31.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.
    18/10/2014 23:42:31.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.
    18/10/2014 23:42:31.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.
    18/10/2014 23:42:31.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.
    18/10/2014 23:42:31.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.
    18/10/2014 23:42:31.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.
    18/10/2014 23:42:31.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.
    18/10/2014 23:42:31.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.
    18/10/2014 23:42:31.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.
    18/10/2014 23:42:31.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.
    18/10/2014 23:42:31.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.
    18/10/2014 23:42:31.000 kernel[0]: Longterm timer threshold: 1000 ms
    18/10/2014 23:42:31.000 kernel[0]: Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014; root:xnu-2422.115.4~1/RELEASE_X86_64
    18/10/2014 23:42:31.000 kernel[0]: vm_page_bootstrap: 889888 free pages and 84960 wired pages
    18/10/2014 23:42:31.000 kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    18/10/2014 23:42:31.000 kernel[0]: zone leak detection enabled
    18/10/2014 23:42:31.000 kernel[0]: "vm_compressor_mode" is 4
    18/10/2014 23:42:31.000 kernel[0]: standard timeslicing quantum is 10000 us
    18/10/2014 23:42:31.000 kernel[0]: standard background quantum is 2500 us
    18/10/2014 23:42:31.000 kernel[0]: mig_table_max_displ = 74
    18/10/2014 23:42:31.000 kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    18/10/2014 23:42:31.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    18/10/2014 23:42:31.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    18/10/2014 23:42:31.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    18/10/2014 23:42:31.000 kernel[0]: calling mpo_policy_init for Sandbox
    18/10/2014 23:42:31.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    18/10/2014 23:42:31.000 kernel[0]: calling mpo_policy_init for Quarantine
    18/10/2014 23:42:31.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    18/10/2014 23:42:31.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    18/10/2014 23:42:31.000 kernel[0]: The Regents of the University of California. All rights reserved.
    18/10/2014 23:42:31.000 kernel[0]: MAC Framework successfully initialized
    18/10/2014 23:42:31.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    18/10/2014 23:42:31.000 kernel[0]: AppleKeyStore starting (BUILT: Aug 17 2014 20:21:39)
    18/10/2014 23:42:31.000 kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    18/10/2014 23:42:31.000 kernel[0]: ACPI: sleep states S3 S4 S5
    18/10/2014 23:42:31.000 kernel[0]: pci (build 20:04:33 Aug 17 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    18/10/2014 23:42:31.000 kernel[0]: AppleIntelCPUPowerManagement: (built 20:17:40 Aug 17 2014) initialization complete
    18/10/2014 23:42:31.000 kernel[0]: [ PCI configuration begin ]
    18/10/2014 23:42:31.000 kernel[0]: console relocated to 0xf80010000
    18/10/2014 23:42:31.000 kernel[0]: [ PCI configuration end, bridges 7, devices 19 ]
    18/10/2014 23:42:31.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 00254bfffeb946fa; max speed s800.
    18/10/2014 23:42:31.000 kernel[0]: USBMSC Identifier (non-unique): 35544A305147364320202020 0x13fd 0x840 0x114, 2
    18/10/2014 23:42:31.000 kernel[0]: mcache: 2 CPU(s), 64 bytes CPU cache line size
    18/10/2014 23:42:31.000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    18/10/2014 23:42:31.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    18/10/2014 23:42:31.000 kernel[0]: rooting via boot-uuid from /chosen: 02B0B932-93F3-3BE0-9A14-E641735DFA58
    18/10/2014 23:42:31.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>
    18/10/2014 23:42:31.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    18/10/2014 23:42:31.000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN kmod start
    18/10/2014 23:42:31.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    18/10/2014 23:42:31.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    18/10/2014 23:42:31.000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN load succeeded
    18/10/2014 23:42:31.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    18/10/2014 23:42:31.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    18/10/2014 23:42:31.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/WDC WD7500BPKX-22HPJT0 Media/IOGUIDPartitionScheme/Macintosh HD@2
    18/10/2014 23:42:31.000 kernel[0]: BSD root: disk0s2, major 1, minor 1
    18/10/2014 23:42:31.000 kernel[0]: jnl: b(1, 1): replay_journal: from: 11653120 to: 14430208 (joffset 0x6ff000)
    18/10/2014 23:42:31.000 kernel[0]: jnl: b(1, 1): journal replay done.
    18/10/2014 23:42:31.000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    18/10/2014 23:42:31.000 kernel[0]: hfs: Removed 1 orphaned / unlinked files and 77 directories
    18/10/2014 23:42:31.000 kernel[0]: VM Swap Subsystem is ON
    18/10/2014 23:42:16.111 com.apple.launchd[1]: *** launchd[1] has started up. ***
    18/10/2014 23:42:16.111 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    18/10/2014 23:42:29.498 hidd[43]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    18/10/2014 23:42:29.501 hidd[43]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    18/10/2014 23:42:30.929 DumpPanic[47]: Saved panic report for kernel to /Library/Logs/DiagnosticReports/Kernel_2014-10-18-234230_Hinals-MacBook-Pro.pan ic
    18/10/2014 23:42:31.824 com.apple.SecurityServer[25]: Session 100000 created
    18/10/2014 23:42:32.004 com.apple.SecurityServer[25]: Entering service
    18/10/2014 23:42:32.000 kernel[0]: hfs: mounted Data on device disk0s4
    18/10/2014 23:42:33.121 configd[54]: setting hostname to "Hinals-MacBook-Pro.local"
    18/10/2014 23:42:33.128 configd[54]: network changed.
    18/10/2014 23:42:33.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    18/10/2014 23:42:33.547 com.apple.usbmuxd[17]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    18/10/2014 23:42:34.014 mDNSResponder[35]: mDNSResponder mDNSResponder-522.92.1 (Jul 27 2014 17:31:49) starting OSXVers 13
    18/10/2014 23:42:34.158 digest-service[67]: label: default
    18/10/2014 23:42:34.158 digest-service[67]:     dbname: od:/Local/Default
    18/10/2014 23:42:34.158 digest-service[67]:     mkey_file: /var/db/krb5kdc/m-key
    18/10/2014 23:42:34.159 digest-service[67]:     acl_file: /var/db/krb5kdc/kadmind.acl
    18/10/2014 23:42:34.219 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    18/10/2014 23:42:34.000 kernel[0]: Waiting for DSMOS...
    18/10/2014 23:42:35.306 digest-service[67]: digest-request: uid=0
    18/10/2014 23:42:35.402 apsd[59]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    18/10/2014 23:42:35.669 configd[54]: network changed.
    18/10/2014 23:42:35.671 configd[54]: network changed: DNS*
    18/10/2014 23:42:35.675 mDNSResponder[35]: D2D_IPC: Loaded
    18/10/2014 23:42:35.675 mDNSResponder[35]: D2DInitialize succeeded
    18/10/2014 23:42:35.682 mDNSResponder[35]:   4: Listening for incoming Unix Domain Socket client requests
    18/10/2014 23:42:35.733 awacsd[57]: Starting awacsd connectivity_executables-97.1 (Jul 27 2014 17:02:42)
    18/10/2014 23:42:35.804 networkd[114]: networkd.114 built Aug 24 2013 22:08:46
    18/10/2014 23:42:36.011 locationd[40]: NBB-Could not get UDID for stable refill timing, falling back on random
    18/10/2014 23:42:36.078 locationd[40]: Location icon should now be in state 'Inactive'
    18/10/2014 23:42:36.177 digest-service[67]: digest-request: netr probe 0
    18/10/2014 23:42:36.178 digest-service[67]: digest-request: init request
    18/10/2014 23:42:36.193 digest-service[67]: digest-request: init return domain: BUILTIN server: HINALS-MACBOOK-PRO indomain was: <NULL>
    18/10/2014 23:42:36.249 awacsd[57]: InnerStore CopyAllZones: no info in Dynamic Store
    18/10/2014 23:42:36.360 systemkeychain[100]: done file: /var/run/systemkeychaincheck.done
    18/10/2014 23:42:36.000 kernel[0]: AGC: 3.6.22, HW version=1.7.10, flags:0, features:4
    18/10/2014 23:42:37.000 kernel[0]: BTCOEXIST off
    18/10/2014 23:42:37.000 kernel[0]: BRCM tunables:
    18/10/2014 23:42:37.000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    18/10/2014 23:42:37.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    18/10/2014 23:42:37.000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    18/10/2014 23:42:37.000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    18/10/2014 23:42:37.000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    18/10/2014 23:42:37.000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    18/10/2014 23:42:37.000 kernel[0]: Previous Shutdown Cause: -128
    18/10/2014 23:42:37.000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    18/10/2014 23:42:38.000 kernel[0]: NVEthernet::start - Built Aug 17 2014 20:19:15
    18/10/2014 23:42:38.000 kernel[0]: NVDAStartup: Official
    18/10/2014 23:42:38.000 kernel[0]: NVDAStartup: Official
    18/10/2014 23:42:39.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key MOTP (kSMCKeyNotFound)
    18/10/2014 23:42:39.000 kernel[0]: IOBluetoothUSBDFU::probe
    18/10/2014 23:42:39.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8217 FirmwareVersion - 0x0207
    18/10/2014 23:42:39.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x5400 ****
    18/10/2014 23:42:39.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x5400 ****
    18/10/2014 23:42:40.000 kernel[0]: NVDANV50HAL loaded and registered
    18/10/2014 23:42:40.000 kernel[0]: NVDANV50HAL loaded and registered
    18/10/2014 23:42:41.340 stackshot[21]: Timed out waiting for IOKit to finish matching.
    18/10/2014 23:42:42.000 kernel[0]: init
    18/10/2014 23:42:42.000 kernel[0]: probe
    18/10/2014 23:42:42.000 kernel[0]: start
    18/10/2014 23:42:42.000 kernel[0]: DSMOS has arrived
    18/10/2014 23:42:42.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x5400
    18/10/2014 23:42:42.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    18/10/2014 23:42:42.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key BEMB (kSMCKeyNotFound)
    18/10/2014 23:42:42.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    18/10/2014 23:42:42.000 kernel[0]: IO80211Interface::efiNVRAMPublished():
    18/10/2014 23:42:42.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    18/10/2014 23:42:42.000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xc1c0 -- 0xa800 -- 0x5400 ****
    18/10/2014 23:42:42.479 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    18/10/2014 23:42:42.499 loginwindow[38]: Login Window Application Started
    18/10/2014 23:42:42.671 WindowServer[120]: Server is starting up
    18/10/2014 23:42:42.733 airportd[61]: airportdProcessDLILEvent: en1 attached (down)
    18/10/2014 23:42:42.000 kernel[0]: createVirtIf(): ifRole = 1
    18/10/2014 23:42:42.000 kernel[0]: in func createVirtualInterface ifRole = 1
    18/10/2014 23:42:42.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    18/10/2014 23:42:42.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    18/10/2014 23:42:42.000 kernel[0]: Created virtif 0xffffff8019866c00 p2p0
    18/10/2014 23:42:42.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    18/10/2014 23:42:42.905 mds[34]: (Normal) FMW: FMW 0 0
    18/10/2014 23:42:42.909 airportd[61]: _handleLinkEvent: WiFi is not powered. Resetting state variables.
    18/10/2014 23:42:43.000 kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    18/10/2014 23:42:43.397 configd[54]: dhcp_arp_router: en1 SSID unavailable
    18/10/2014 23:42:43.397 configd[54]: [bootp_transmit.c:213] bootp_transmit(): bpf_write(en1) failed: Network is down (50)
    18/10/2014 23:42:43.397 configd[54]: DHCP en1: INIT-REBOOT transmit failed
    18/10/2014 23:42:44.340 WindowServer[120]: Session 256 retained (2 references)
    18/10/2014 23:42:44.340 WindowServer[120]: Session 256 released (1 references)
    18/10/2014 23:42:44.411 WindowServer[120]: Session 256 retained (2 references)
    18/10/2014 23:42:44.414 WindowServer[120]: init_page_flip: page flip mode is on
    18/10/2014 23:42:44.000 kernel[0]: en1: 802.11d country code set to 'GB'.
    18/10/2014 23:42:44.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
    18/10/2014 23:42:45.366 apsd[59]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    18/10/2014 23:42:45.409 WindowServer[120]: Found 60 modes for display 0x00000000 [60, 0]
    18/10/2014 23:42:45.416 WindowServer[120]: Found 1 modes for display 0x00000000 [1, 0]
    18/10/2014 23:42:45.453 WindowServer[120]: Found 1 modes for display 0x00000000 [1, 0]
    18/10/2014 23:42:45.455 WindowServer[120]: Found 1 modes for display 0x00000000 [1, 0]
    18/10/2014 23:42:45.469 WindowServer[120]: mux_initialize: Mode is logout
    18/10/2014 23:42:45.476 WindowServer[120]: Found 60 modes for display 0x00000000 [60, 0]
    18/10/2014 23:42:45.482 WindowServer[120]: Found 1 modes for display 0x00000000 [1, 0]
    18/10/2014 23:42:45.524 WindowServer[120]: WSMachineUsesNewStyleMirroring: false
    18/10/2014 23:42:45.525 WindowServer[120]: Display 0x04272600: GL mask 0x5; bounds (0, 0)[1920 x 1200], 60 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9c98, S/N 0, Unit 0, Rotation 0
    UUID 0xe529168c7914572020ea0c8d119d7ac1
    18/10/2014 23:42:45.525 WindowServer[120]: Display 0x003f003d: GL mask 0xa; 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
    18/10/2014 23:42:45.526 WindowServer[120]: WSSetWindowTransform: Singular matrix
    18/10/2014 23:42:45.538 WindowServer[120]: Display 0x04272600: GL mask 0x5; bounds (0, 0)[1920 x 1200], 60 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9c98, S/N 0, Unit 0, Rotation 0
    UUID 0xe529168c7914572020ea0c8d119d7ac1
    18/10/2014 23:42:45.538 WindowServer[120]: Display 0x003f003d: GL mask 0xa; bounds (2944, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    18/10/2014 23:42:45.538 WindowServer[120]: CGXPerformInitialDisplayConfiguration
    18/10/2014 23:42:45.538 WindowServer[120]:   Display 0x04272600: Unit 0; Alias(0, 0x5); Vendor 0x610 Model 0x9c98 S/N 0 Dimensions 14.45 x 9.06; online enabled built-in, Bounds (0,0)[1920 x 1200], Rotation 0, Resolution 1
    18/10/2014 23:42:45.538 WindowServer[120]:   Display 0x003f003d: Unit 1; Alias(1, 0xa); Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    18/10/2014 23:42:45.538 WindowServer[120]: CGXMuxBoot: Boot normal
    18/10/2014 23:42:45.736 WindowServer[120]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, accelerator 0x00003497, unit 0, caps QEX|MIPMAP, vram 256 MB
    18/10/2014 23:42:45.745 WindowServer[120]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    18/10/2014 23:42:45.745 WindowServer[120]: GLCompositor: GL renderer id 0x0202260c, GL mask 0x0000000c, accelerator 0x00004b3b, unit 2, caps QEX|MIPMAP, vram 512 MB
    18/10/2014 23:42:45.755 WindowServer[120]: GLCompositor: GL renderer id 0x0202260c, GL mask 0x0000000c, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    18/10/2014 23:42:45.755 WindowServer[120]: GLCompositor enabled for tile size [256 x 256]
    18/10/2014 23:42:45.755 WindowServer[120]: CGXGLInitMipMap: mip map mode is on
    18/10/2014 23:42:45.771 loginwindow[38]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    18/10/2014 23:42:47.527 WindowServer[120]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    18/10/2014 23:42:48.096 WindowServer[120]: Display 0x04272600: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    18/10/2014 23:42:48.200 launchctl[135]: com.apple.findmymacmessenger: Already loaded
    18/10/2014 23:42:48.402 WindowServer[120]: Display 0x04272600: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    18/10/2014 23:42:48.483 com.apple.SecurityServer[25]: Session 100004 created
    18/10/2014 23:42:48.504 WindowServer[120]: Display 0x04272600: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    18/10/2014 23:42:48.608 loginwindow[38]: Setting the initial value of the magsave brightness level 2
    18/10/2014 23:42:48.664 loginwindow[38]: Login Window Started Security Agent
    18/10/2014 23:42:48.761 WindowServer[120]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7f921bc1d0d0) - enabling OpenGL
    18/10/2014 23:42:49.092 SecurityAgent[143]: This is the first run
    18/10/2014 23:42:49.092 SecurityAgent[143]: MacBuddy was run = 0
    18/10/2014 23:42:49.124 SecurityAgent[143]: User info context values set for hinalpattani
    18/10/2014 23:42:49.141 UserEventAgent[137]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    18/10/2014 23:42:49.000 kernel[0]: MacAuthEvent en1   Auth result for: 20:e5:2a:f2:3e:98  MAC AUTH succeeded
    18/10/2014 23:42:49.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    18/10/2014 23:42:49.000 kernel[0]: AirPort: Link Up on en1
    18/10/2014 23:42:49.000 kernel[0]: en1: BSSID changed to 20:e5:2a:f2:3e:98
    18/10/2014 23:42:49.000 kernel[0]: AirPort: RSN handshake complete on en1
    18/10/2014 23:42:49.910 loginwindow[38]: Login Window - Returned from Security Agent
    18/10/2014 23:42:49.991 loginwindow[38]: USER_PROCESS: 38 console
    18/10/2014 23:42:50.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    18/10/2014 23:42:50.000 kernel[0]: AppleKeyStore:Sending lock change 0
    18/10/2014 23:42:50.314 com.apple.launchd.peruser.501[146]: Background: Aqua: Registering new GUI session.
    18/10/2014 23:42:50.354 com.apple.launchd.peruser.50

    Hi Ravi Rai,
    I'm sorry to hear about the issue you are having with your Mac. If you are having hard freezes or restart issue that don't appear to be drive related, even after reinstalling Mavericks, you may want to try the troubleshooting steps outlined in the following article:
    OS X: When your computer spontaneously restarts or displays "Your computer restarted because of a problem."
    Regards,
    - Brenden

  • First world problem: exceptionally long boot time

    no complaint, just wondering if boot-time can be improved.  Any of you who might enjoy sifting through a system.log for what might account for ostensibly lengthening boot times, I give you my most recent log and thank you in advance.
    Mar 26 10:42:27 localhost bootlog[0]: BOOT_TIME 1395848547 0
    Mar 26 10:42:59 localhost syslogd[19]: 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.
    Mar 26 10:42:59 localhost syslogd[19]: 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".
    Mar 26 10:42:59 localhost syslogd[19]: 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.
    Mar 26 10:42:59 localhost syslogd[19]: 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.
    Mar 26 10:42:59 localhost syslogd[19]: 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.
    Mar 26 10:42:59 localhost 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.
    Mar 26 10:42:59 localhost 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.
    Mar 26 10:42:59 localhost 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.
    Mar 26 10:42:59 localhost 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.
    Mar 26 10:42:59 localhost 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.
    Mar 26 10:42:59 localhost 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.
    Mar 26 10:43:03 --- last message repeated 6 times ---
    Mar 26 10:42:59 localhost kernel[0]: Longterm timer threshold: 1000 ms
    Mar 26 10:42:59 localhost kernel[0]: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    Mar 26 10:42:59 localhost kernel[0]: vm_page_bootstrap: 1989152 free pages and 91616 wired pages
    Mar 26 10:42:59 localhost kernel[0]: kext submap [0xffffff7f807a6000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a6000]
    Mar 26 10:42:59 localhost kernel[0]: zone leak detection enabled
    Mar 26 10:42:59 localhost kernel[0]: "vm_compressor_mode" is 4
    Mar 26 10:42:59 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Mar 26 10:42:59 localhost kernel[0]: standard background quantum is 2500 us
    Mar 26 10:42:59 localhost kernel[0]: mig_table_max_displ = 74
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=1 Enabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=5 Enabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=0 Disabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=0 Disabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=0 Disabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=0 Disabled
    Mar 26 10:42:59 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Mar 26 10:42:59 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Mar 26 10:42:59 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Mar 26 10:42:59 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Mar 26 10:42:59 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Mar 26 10:42:59 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Mar 26 10:42:59 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Mar 26 10:42:59 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Mar 26 10:42:59 localhost kernel[0]: MAC Framework successfully initialized
    Mar 26 10:42:59 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Mar 26 10:42:59 localhost kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    Mar 26 10:42:59 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Mar 26 10:42:59 localhost kernel[0]: ACPI: sleep states S3 S4 S5
    Mar 26 10:42:59 localhost kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0024
    Mar 26 10:42:59 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    Mar 26 10:42:59 localhost kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    Mar 26 10:42:59 localhost kernel[0]: [ PCI configuration begin ]
    Mar 26 10:42:59 localhost kernel[0]: console relocated to 0xf80030000
    Mar 26 10:42:59 localhost kernel[0]: [ PCI configuration end, bridges 7, devices 16 ]
    Mar 26 10:42:59 localhost kernel[0]: [ PCI configuration begin ]
    Mar 26 10:42:59 localhost kernel[0]: [ PCI configuration end, bridges 8, devices 22 ]
    Mar 26 10:42:59 localhost kernel[0]: TBIOBlockStorageDriver: super::probe failed
    Mar 26 10:42:59 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 7c6d62fffefaec1c; max speed s800.
    Mar 26 10:42:59 localhost kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833, 2
    Mar 26 10:42:59 localhost kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    Mar 26 10:42:59 localhost kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    Mar 26 10:42:59 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    Mar 26 10:42:59 localhost kernel[0]: rooting via boot-uuid from /chosen: C9DA172B-D4C5-3F3E-A13E-2B4BCEEFB011
    Mar 26 10:42:59 localhost 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>
    Mar 26 10:42:59 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Mar 26 10:42:59 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    Mar 26 10:42:59 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Mar 26 10:42:59 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    Mar 26 10:42:59 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Mar 26 10:42:59 localhost kernel[0]: BTCOEXIST off
    Mar 26 10:42:59 localhost kernel[0]: BRCM tunables:
    Mar 26 10:42:59 localhost kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    Mar 26 10:42:59 localhost kernel[0]: com_seagate_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
    Mar 26 10:42:59 localhost kernel[0]: com_maxtor_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
    Mar 26 10:42:59 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/ST9500325ASG Media/IOGUIDPartitionScheme/Customer@2
    Mar 26 10:42:59 localhost kernel[0]: BSD root: disk0s2, major 1, minor 2
    Mar 26 10:42:59 localhost kernel[0]: hfs: mounted Macintosh HDD on device root_device
    Mar 26 10:42:59 localhost kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=68[empdaemon] final status 0x0, allowing (remove VALID) page
    Mar 26 10:42:59 localhost kernel[0]: VM Swap Subsystem is ON
    Mar 26 10:42:30 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Mar 26 10:42:30 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    Mar 26 10:42:52 localhost com.apple.launchd[1] (com.backblaze.bzserv[69]): Exited with code: 2
    Mar 26 10:42:52 localhost com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 10 seconds
    Mar 26 10:42:58 localhost hidd[47]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    Mar 26 10:42:58 localhost hidd[47]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Mar 26 10:43:00 localhost com.apple.SecurityServer[25]: Session 100000 created
    Mar 26 10:43:01 localhost distnoted[71]: # distnote server daemon  absolute time: 32.923825084   civil time: Wed Mar 26 10:42:58 2014   pid: 71 uid: 0  root: yes
    Mar 26 10:43:01 localhost distnoted[71]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar 26 10:43:02 localhost com.apple.launchd[1] (com.backblaze.bzserv[77]): Exited with code: 2
    Mar 26 10:43:02 localhost com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 10 seconds
    Mar 26 10:43:05 localhost kernel[0]: Waiting for DSMOS...
    Mar 26 10:43:05 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Mar 26 10:43:05 localhost kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    Mar 26 10:43:07 localhost com.apple.launchd[1] (com.apple.Kerberos.kdc[45]): Exited with code: 1
    Mar 26 10:43:07 localhost com.apple.usbmuxd[17]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    Mar 26 10:43:08 localhost kernel[0]: rtR0InitNative: warning! failed to resolve special kernel symbols
    Mar 26 10:43:08 localhost kernel[0]: vboxdrv: fAsync=0 offMin=0xba0 offMax=0xe4c
    Mar 26 10:43:08 localhost kernel[0]: VBoxDrv: version 4.1.12 r77245; IOCtl version 0x190000; IDC version 0x10000; dev major=18
    Mar 26 10:43:08 localhost kernel[0]: fNumVRAMBlocks is 4
    Mar 26 10:43:08 localhost kernel[0]: AGC: 3.4.35, HW version=1.9.21, flags:0, features:20600
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    Mar 26 10:43:08 localhost kernel[0]: Previous Shutdown Cause: 5
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    Mar 26 10:43:08 localhost kernel[0]: IOBluetoothUSBDFU::probe
    Mar 26 10:43:08 localhost kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8218 FirmwareVersion - 0x0042
    Mar 26 10:43:08 localhost kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x4000 ****
    Mar 26 10:43:08 localhost kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x4000 ****
    Mar 26 10:43:08 localhost kernel[0]: NVDAStartup: Official
    Mar 26 10:43:08 localhost kernel[0]: NVDANV50HAL loaded and registered
    Mar 26 10:43:08 localhost kernel[0]: init
    Mar 26 10:43:08 localhost kernel[0]: probe
    Mar 26 10:43:08 localhost kernel[0]: APExtframeBuffer starting: max resolution 1920x1080
    Mar 26 10:43:08 localhost kernel[0]: Initializing Framebuffer.
    Mar 26 10:43:08 localhost kernel[0]: start
    Mar 26 10:43:08 localhost kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x4000
    Mar 26 10:43:08 localhost kernel[0]: [IOBluetoothHCIController][start] -- completed
    Mar 26 10:43:08 localhost kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    Mar 26 10:43:08 localhost kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xe500 -- 0x3000 -- 0x4000 ****
    Mar 26 10:43:08 localhost kernel[0]: IOMemoryDescriptor 0x1f0dcc19d9ba810f prepared read only
    Mar 26 10:43:08 localhost kernel[0]: Backtrace 0xffffff80006b9dbe 0xffffff7f8228e0e1 0xffffff7f82298fe2 0xffffff8000692f1f 0xffffff8000692adf 0xffffff800068e6b9 0xffffff8000693633
    Mar 26 10:43:08 localhost kernel[0]: Kernel Extensions in backtrace:
    Mar 26 10:43:08 localhost kernel[0]: com.apple.driver.AppleIntelHDGraphics(8.2.4)[84DE8845-D8E6-3C61-B457-1AC155AEF9 04]@0xffffff7f87470000->0xffffff7f8752ffff
    Mar 26 10:43:08 localhost kernel[0]: dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f859e9000
    Mar 26 10:43:08 localhost kernel[0]: dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f85dd8000
    Mar 26 10:43:08 localhost kernel[0]: IOMemoryDescriptor 0x1f0dcc19d9b7f60f prepared read only
    Mar 26 10:43:08 localhost kernel[0]: Backtrace 0xffffff80006b9dbe 0xffffff7f8228e2db 0xffffff7f82298fe2 0xffffff8000692f1f 0xffffff8000692adf 0xffffff800068e6b9 0xffffff8000693633
    Mar 26 10:43:08 localhost kernel[0]: Kernel Extensions in backtrace:
    Mar 26 10:43:08 localhost kernel[0]: com.apple.driver.AppleIntelHDGraphics(8.2.4)[84DE8845-D8E6-3C61-B457-1AC155AEF9 04]@0xffffff7f87470000->0xffffff7f8752ffff
    Mar 26 10:43:08 localhost kernel[0]: dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f859e9000
    Mar 26 10:43:08 localhost kernel[0]: dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f85dd8000
    Mar 26 10:43:08 localhost kernel[0]: DSMOS has arrived
    Mar 26 10:43:11 localhost kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,0301,0de1,0300,41e1,0000]
    Mar 26 10:43:11 localhost kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Mar 26 10:43:11 localhost kernel[0]: AppleBCM5701Ethernet [en0]: Link down (womp disabled, proxy idle)
    Mar 26 10:43:12 localhost com.apple.launchd[1] (com.backblaze.bzserv[94]): Exited with code: 2
    Mar 26 10:43:12 localhost com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 10 seconds
    Mar 26 10:43:13 localhost kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,0301,0101,0000,41e1,0000]
    Mar 26 10:43:16 localhost com.apple.SecurityServer[25]: Entering service
    Mar 26 10:43:16 localhost kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Mar 26 10:43:16 localhost mds[37]: (Normal) FMW: FMW 0 0
    Mar 26 10:43:16 localhost defaults[97]:
              The domain/default pair of (/System/Library/Frameworks/Message.framework/Resources/Info, PluginCompatibilityUUID) does not exist
    Mar 26 10:43:16 localhost blued[60]: hostControllerOnline - Number of Paired devices = 0, List of Paired devices = (null)
    Mar 26 10:43:16 localhost mDNSResponder[38]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    Mar 26 10:43:16 localhost digest-service[79]: label: default
    Mar 26 10:43:16 localhost digest-service[79]:           dbname: od:/Local/Default
    Mar 26 10:43:16 localhost digest-service[79]:           mkey_file: /var/db/krb5kdc/m-key
    Mar 26 10:43:16 localhost digest-service[79]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Mar 26 10:43:16 localhost digest-service[79]: digest-request: uid=0
    Mar 26 10:43:16 localhost loginwindow[41]: Login Window Application Started
    Mar 26 10:43:16 localhost digest-service[79]: digest-request: netr probe 0
    Mar 26 10:43:16 localhost digest-service[79]: digest-request: init request
    Mar 26 10:43:16 localhost awacsd[62]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    Mar 26 10:43:16 localhost awacsd[62]: InnerStore CopyAllZones: no info in Dynamic Store
    Mar 26 10:43:16 localhost UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    Mar 26 10:43:16 localhost aosnotifyd[65]: aosnotifyd has been launched
    Mar 26 10:43:16 localhost aosnotifyd[65]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar 26 10:43:17 localhost UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar 26 10:43:17 localhost WindowServer[103]: Server is starting up
    Mar 26 10:43:17 localhost stackshot[21]: Timed out waiting for IOKit to finish matching.
    Mar 26 10:43:18 localhost apsd[64]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar 26 10:43:18 localhost mDNSResponder[38]: D2D_IPC: Loaded
    Mar 26 10:43:18 localhost mDNSResponder[38]: D2DInitialize succeeded
    Mar 26 10:43:18 localhost mDNSResponder[38]:   4: Listening for incoming Unix Domain Socket client requests
    Mar 26 10:43:18 localhost mDNSResponder[38]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F901B804D60 CPU123.local. (AAAA) that's already in the list
    Mar 26 10:43:18 localhost mDNSResponder[38]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F901B8051F0 2.E.A.9.A.6.E.F.F.F.5.3.0.B.A.5.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
    Mar 26 10:43:18 localhost mDNSResponder[38]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F901A006B60 CPU123.local. (Addr) that's already in the list
    Mar 26 10:43:18 localhost mDNSResponder[38]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F901A006FF0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    Mar 26 10:43:18 localhost mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Mar 26 10:43:18 localhost configd[58]: network changed: DNS*
    Mar 26 10:43:18 CPU123.local configd[58]: setting hostname to "CPU123.local"
    Mar 26 10:43:18 CPU123.local mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Mar 26 10:43:18 CPU123.local networkd[122]: networkd.122 built Aug 24 2013 22:08:46
    Mar 26 10:43:18 CPU123.local locationd[43]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Mar 26 10:43:18 CPU123.local locationd[43]: NBB-Could not get UDID for stable refill timing, falling back on random
    Mar 26 10:43:18 CPU123.local airportd[66]: airportdProcessDLILEvent: en1 attached (up)
    Mar 26 10:43:18 CPU123 kernel[0]: createVirtIf(): ifRole = 1
    Mar 26 10:43:18 CPU123 kernel[0]: in func createVirtualInterface ifRole = 1
    Mar 26 10:43:18 CPU123 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    Mar 26 10:43:18 CPU123 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    Mar 26 10:43:18 CPU123 kernel[0]: Created virtif 0xffffff8018f9b400 p2p0
    Mar 26 10:43:18 CPU123.local mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Mar 26 10:43:18 CPU123.local systemkeychain[95]: done file: /var/run/systemkeychaincheck.done
    Mar 26 10:43:18 CPU123.local locationd[43]: Location icon should now be in state 'Inactive'
    Mar 26 10:43:18 CPU123.local digest-service[79]: digest-request: init return domain: PCPC1 server: CPU123 indomain was: <NULL>
    Mar 26 10:43:18 CPU123.local locationd[43]: locationd was started after an unclean shutdown
    Mar 26 10:43:19 CPU123.local UserEventAgent[11]: Registered Workstation service - CPU123 [7c:6d:62:8c:3b:ac]._workstation._tcp.
    Mar 26 10:43:22 CPU123 com.apple.launchd[1] (com.backblaze.bzserv[127]): Exited with code: 2
    Mar 26 10:43:22 CPU123 com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 10 seconds
    Mar 26 10:43:25 CPU123.local configd[58]: network changed: v4(en0+:192.168.1.64) DNS+ Proxy+ SMB+
    Mar 26 10:43:24 CPU123.local ntpd[129]: proto: precision = 1.000 usec
    Mar 26 10:43:24 CPU123 com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 6 seconds
    Mar 26 10:43:25 --- last message repeated 1 time ---
    Mar 26 10:43:25 CPU123 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key MOTP (kSMCKeyNotFound)
    Mar 26 10:43:25 CPU123 kernel[0]: [AGPM Controller] build GPUDict by Vendor8086Device0046
    Mar 26 10:43:25 CPU123 kernel[0]: [AGPM Controller] build GPUDict by Vendor10deDevice0a29
    Mar 26 10:43:25 CPU123.local WindowServer[103]: Session 256 retained (2 references)
    Mar 26 10:43:25 CPU123.local WindowServer[103]: Session 256 released (1 references)
    Mar 26 10:43:25 CPU123.local WindowServer[103]: Session 256 retained (2 references)
    Mar 26 10:43:25 CPU123.local WindowServer[103]: init_page_flip: page flip mode is on
    Mar 26 10:43:25 CPU123.local SystemStarter[131]: VirtualBox Support and USB Drivers (144) did not complete successfully
    Mar 26 10:43:25 CPU123.local SystemStarter[131]: The following StartupItems failed to start properly:
    Mar 26 10:43:25 CPU123.local SystemStarter[131]: /Library/StartupItems/VirtualBox
    Mar 26 10:43:25 CPU123.local SystemStarter[131]:  - execution of Startup script failed
    Mar 26 10:43:25 CPU123.local apsd[64]: Unrecognized leaf certificate
    Mar 26 10:43:26 CPU123.local apsd[64]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar 26 10:43:26 CPU123 kernel[0]: APExternalDisplay Memory Reserved: 66392064 bytes
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 1 modes for display 0x00000000 [1, 0]
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 36 modes for display 0x00000000 [30, 6]
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 1 modes for display 0x00000000 [1, 0]
    Mar 26 10:43:26 --- last message repeated 1 time ---
    Mar 26 10:43:26 CPU123.local WindowServer[103]: mux_initialize: Mode is dynamic
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 36 modes for display 0x00000000 [30, 6]
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 1 modes for display 0x00000000 [1, 0]
    Mar 26 10:43:26 --- last message repeated 1 time ---
    Mar 26 10:43:26 CPU123.local WindowServer[103]: WSMachineUsesNewStyleMirroring: false
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x04272901: GL mask 0x3; bounds (0, 0)[1440 x 900], 36 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca4, S/N 0, Unit 1, Rotation 0
              UUID 0x8a96a568c33550779a382c64e81094d2
    Mar 26 10:43:26 CPU123.local WindowServer[103]: 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
    Mar 26 10:43:26 CPU123.local WindowServer[103]: 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
    Mar 26 10:43:26 CPU123.local WindowServer[103]: WSSetWindowTransform: Singular matrix
    Mar 26 10:43:26 --- last message repeated 1 time ---
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x04272901: GL mask 0x3; bounds (0, 0)[1440 x 900], 36 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca4, S/N 0, Unit 1, Rotation 0
              UUID 0x8a96a568c33550779a382c64e81094d2
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x003f003f: GL mask 0x8; bounds (2464, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x003f003e: GL mask 0x4; bounds (2465, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 10:43:26 CPU123.local WindowServer[103]: CGXPerformInitialDisplayConfiguration
    Mar 26 10:43:26 CPU123.local WindowServer[103]:   Display 0x04272901: Unit 1; Alias(1, 0x3); Vendor 0x610 Model 0x9ca4 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 1
    Mar 26 10:43:26 CPU123.local WindowServer[103]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    Mar 26 10:43:26 CPU123.local WindowServer[103]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    Mar 26 10:43:26 CPU123.local WindowServer[103]: CGXMuxBoot: Boot normal
    Mar 26 10:43:26 CPU123.local com.apple.kextd[12]: kext com.eltima.ElmediaPlayer.kext  158009000 is in exception list, allowing to load
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor: GL renderer id 0x01024300, GL mask 0x00000001, accelerator 0x00003523, unit 0, caps QEX|MIPMAP, vram 288 MB
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor: GL renderer id 0x01024300, GL mask 0x00000001, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor: GL renderer id 0x01022612, GL mask 0x00000006, accelerator 0x00004ca3, unit 1, caps QEX|MIPMAP, vram 256 MB
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor: GL renderer id 0x01022612, GL mask 0x00000006, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor enabled for tile size [256 x 256]
    Mar 26 10:43:26 CPU123.local WindowServer[103]: CGXGLInitMipMap: mip map mode is on
    Mar 26 10:43:26 CPU123.local loginwindow[41]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Mar 26 10:43:27 CPU123.local com.apple.kextd[12]: kext com.eltima.ElmediaPlayer.kext  158009000 is in exception list, allowing to load
    Mar 26 10:43:27 CPU123 kernel[0]: Elmedia Player KEXT version 4.2 (1.58)
    Mar 26 10:43:27 CPU123.local WindowServer[103]: Display 0x04272901: Unit 1; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar 26 10:43:27 CPU123.local launchctl[159]: com.apple.findmymacmessenger: Already loaded
    Mar 26 10:43:27 CPU123.local com.apple.SecurityServer[25]: Session 100006 created
    Mar 26 10:43:27 CPU123.local UserEventAgent[160]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar 26 10:43:28 CPU123.local loginwindow[41]: Setting the initial value of the magsave brightness level 1
    Mar 26 10:43:28 CPU123.local loginwindow[41]: Login Window Started Security Agent
    Mar 26 10:43:28 CPU123.local SecurityAgent[168]: This is the first run
    Mar 26 10:43:28 CPU123.local SecurityAgent[168]: MacBuddy was run = 0
    Mar 26 10:43:28 CPU123.local WindowServer[103]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7f8c51c12c40) - enabling OpenGL
    Mar 26 10:43:28 CPU123.local WindowServer[103]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar 26 10:43:28 CPU123.local WindowServer[103]: Display 0x04272901: Unit 1; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar 26 10:43:29 --- last message repeated 1 time ---
    Mar 26 10:43:29 CPU123.local parentalcontrolsd[178]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:43:29 CPU123.local awacsd[62]: Exiting
    Mar 26 10:43:30 CPU123 com.apple.launchd[1] (com.backblaze.bzserv[180]): Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    Mar 26 10:43:30 CPU123 com.apple.launchd[1] (com.backblaze.bzserv[180]): Job failed to exec(3) for weird reason: 2
    Mar 26 10:43:30 CPU123.local mtmfs[35]: mount succeeded for /Volumes/MobileBackups
    Mar 26 10:43:30 CPU123.local mds[37]: (Normal) Volume: volume:0x7f81b3058e00 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    Mar 26 10:43:30 CPU123.local mds[37]: (Normal) Volume: volume:0x7f81b3058e00 ********** Created snapshot backup index
    Mar 26 10:43:34 CPU123 kernel[0]: nspace-handler-set-snapshot-time: 1395848616
    Mar 26 10:43:34 CPU123.local com.apple.mtmd[36]: Set snapshot time: 2014-03-26 10:43:36 -0500 (current time: 2014-03-26 10:43:34 -0500)
    Mar 26 10:43:37 CPU123.local SecurityAgent[168]: User info context values set for prl
    Mar 26 10:43:42 CPU123.local parentalcontrolsd[183]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:43:42 CPU123.local SecurityAgent[168]: Login Window login proceeding
    Mar 26 10:43:44 CPU123.local loginwindow[41]: Login Window - Returned from Security Agent
    Mar 26 10:43:44 CPU123.local loginwindow[41]: USER_PROCESS: 41 console
    Mar 26 10:43:45 CPU123 kernel[0]: AppleKeyStore:Sending lock change 0
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188]: Background: Aqua: Registering new GUI session.
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188] (com.divx.agent.postinstall): Unknown key: LimitToSessionType
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188] (com.spotify.webhelper): Unknown key: SpotifyPath
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188] (com.apple.EscrowSecurityAlert): Unknown key: seatbelt-profiles
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Mar 26 10:43:45 CPU123.local launchctl[191]: com.apple.pluginkit.pkd: Already loaded
    Mar 26 10:43:45 CPU123.local launchctl[191]: com.apple.sbd: Already loaded
    Mar 26 10:43:45 CPU123.local distnoted[193]: # distnote server agent  absolute time: 81.676468602   civil time: Wed Mar 26 10:43:45 2014   pid: 193 uid: 1689351527  root: no
    Mar 26 10:43:45 CPU123.local WindowServer[103]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    Mar 26 10:43:47 CPU123.local sharingd[214]: Starting Up...
    Mar 26 10:43:47 CPU123.local WindowServer[103]: Display 0x04272901: Unit 1; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar 26 10:43:47 CPU123.local UserEventAgent[192]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar 26 10:43:47 CPU123.local coreaudiod[204]: 2014-03-26 10:43:47.604230 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2
    Mar 26 10:43:47 CPU123 com.apple.launchd.peruser.1689351527[188] (com.akamai.single-user-client[253]): assertion failed: 13C64: launchd + 105965 [425516B6-9F3E-342F-87B3-EC461EBA6A1A]: 0xd
    Mar 26 10:43:47 CPU123 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=245[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    Mar 26 10:43:48 CPU123.local com.apple.SecurityServer[25]: Session 100008 created
    Mar 26 10:43:48 CPU123 xpcproxy[280]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    Mar 26 10:43:48 CPU123.local WindowServer[103]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    Mar 26 10:43:48 CPU123.local com.apple.IconServicesAgent[276]: IconServicesAgent launched.
    Mar 26 10:43:48 CPU123.local WiFiKeychainProxy[223]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    Mar 26 10:43:48 CPU123.local WiFiKeychainProxy[223]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    Mar 26 10:43:49 CPU123.local WindowServer[103]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.36 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 26 10:43:49 CPU123 accountsd[275]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar 26 10:43:51 CPU123.local com.apple.SecurityServer[25]: Session 100010 created
    Mar 26 10:43:53 CPU123 com.apple.launchd.peruser.1689351527[188] (com.apple.mrt.uiagent[230]): Exited with code: 255
    Mar 26 10:43:54 CPU123.local SystemUIServer[201]: Cannot find executable for CFBundle 0x7fda8bf01830 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    Mar 26 10:43:55 CPU123.local SystemUIServer[201]: Cannot find executable for CFBundle 0x7fda8bf5dc40 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    Mar 26 10:43:55 CPU123.local SystemUIServer[201]: Cannot find executable for CFBundle 0x7fda8bf5cc70 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    Mar 26 10:43:55 CPU123 xpcproxy[297]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    Mar 26 10:43:57 CPU123.local backupd[293]: Property list invalid for format: 200 (property lists cannot contain NULL)
    Mar 26 10:43:57 CPU123.local SocialPushAgent[225]: ApplePushService: APSConnection being used without a delegate queue
    Mar 26 10:43:58 CPU123.local SystemUIServer[201]: <SOBuddyHelper: 0x7fda8bf744d0> Timed out waiting for value for MenuExtraBuddyListSubmenuThreshhold
    Mar 26 10:43:58 CPU123 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0OS (kSMCKeyNotFound)
    Mar 26 10:44:00 CPU123.local WindowServer[103]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    Mar 26 10:44:02 CPU123.local WindowServer[103]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 2.95 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 26 10:44:04 CPU123.local SystemUIServer[201]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar 26 10:44:04 CPU123.local SystemUIServer[201]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar 26 10:44:05 CPU123.local parentalcontrolsd[328]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:44:05 CPU123.local com.apple.SecurityServer[25]: Session 100013 created
    Mar 26 10:44:06 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x115] - extension: pdf, UTI: com.adobe.pdf, fileType: ????.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: pdf, UTI: com.adobe.pdf, fileType: ???? request size:40 scale: 1
    Mar 26 10:44:07 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x117] flags: 0x8 binding: FileInfoBinding [0x405] - extension: jpeg, UTI: public.jpeg, fileType: ????.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: jpeg, UTI: public.jpeg, fileType: ???? request size:40 scale: 1
    Mar 26 10:44:07 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x119] flags: 0x8 binding: FileInfoBinding [0x215] - extension: png, UTI: public.png, fileType: ????.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: png, UTI: public.png, fileType: ???? request size:40 scale: 1
    Mar 26 10:44:07 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x11b] flags: 0x8 binding: FileInfoBinding [0x407] - extension: band, UTI: com.apple.garageband.project, fileType: BNDL.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x803] flags: 0x8 binding: FileInfoBinding [0x703] - extension: band, UTI: com.apple.garageband.project, fileType: BNDL request size:40 scale: 1
    Mar 26 10:44:07 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x11d] flags: 0x8 binding: FileInfoBinding [0x217] - extension: mp3, UTI: public.mp3, fileType: ????.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xa03] flags: 0x8 binding: FileInfoBinding [0x903] - extension: mp3, UTI: public.mp3, fileType: ???? request size:40 scale: 1
    Mar 26 10:44:14 CPU123.local syncdefaultsd[256]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    Mar 26 10:44:18 CPU123.local com.apple.SecurityServer[25]: Session 100014 created
    Mar 26 10:44:20 CPU123.local parentalcontrolsd[340]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:44:21 CPU123 com.apple.launchd[1] (com.apple.quicklook.satellite.583BC995-4C31-42ED-8DEF-A65F59D0E086[330]): Exited: Killed: 9
    Mar 26 10:44:24 CPU123 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4000 ****
    Mar 26 10:44:45 CPU123 netsession_mac[253]: netsession_mac(253,0xb031d000) malloc: *** auto malloc[253]: error: GC operation on unregistered thread. Thread registered implicitly. Break on auto_zone_thread_registration_error() to debug.
    Mar 26 10:44:46 CPU123.local parentalcontrolsd[353]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:44:50 CPU123.local distnoted[364]: # distnote server agent  absolute time: 146.341909721   civil time: Wed Mar 26 10:44:50 2014   pid: 364 uid: 89  root: no
    Mar 26 10:44:52 CPU123.local sudo[362]:      prl : TTY=unknown ; PWD=/ ; USER=prl ; COMMAND=/usr/local/MacGPG2/bin/gpg-agent --daemon
    Mar 26 10:44:53 CPU123.local com.apple.time[192]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Mar 26 10:44:56 CPU123.local Creative Cloud[247]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    Mar 26 10:44:57 CPU123.local com.apple.SecurityServer[25]: Session 100016 created
    Mar 26 10:45:01 CPU123 netsession_mac[253]: netsession_mac(253,0xb039f000) malloc: *** auto malloc[253]: error: GC operation on unregistered thread. Thread registered implicitly. Break on auto_zone_thread_registration_error() to debug.
    Mar 26 10:45:03 CPU123.local secd[286]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Mar 26 10:45:03 CPU123.local secd[286]:  securityd_xpc_dictionary_handler WiFiKeychainProx[223] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Mar 26 10:45:03 CPU123.local Mint QuickView[274]: Could not find image named 'accounts'.
    Mar 26 10:45:09 CPU123 Creative Cloud[247]: objc[247]: Class HTTPHeader is implemented in both /Applications/Utilities/Adobe Creative Cloud/utils/AdobePIM.dylib and /Applications/Utilities/Adobe Creative Cloud/ACC/C3ContainerBL.dylib. One of the two will be used. Which one is undefined.
    Mar 26 10:45:09 CPU123 Creative Cloud[247]: objc[247]: Class ProxyManager is implemented in both /Applications/Utilities/Adobe Creative Cloud/utils/AdobePIM.dylib and /Applications/Utilities/Adobe Creative Cloud/ACC/C3ContainerBL.dylib. One of the two will be used. Which one is undefined.
    Mar 26 10:45:11 CPU123.local com.apple.internetaccounts[297]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    Mar 26 10:45:18 --- last message repeated 1 time ---
    Mar 26 10:45:17 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x163] flags: 0x8 binding: FileInfoBinding [0x349] - extension: JPG, UTI: public.jpeg, fileType: ????.
    Mar 26 10:45:17 CPU123.local quicklookd[273]: 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:128 scale: 1
    Mar 26 10:45:18 CPU123.local com.apple.NotesMigratorService[375]: Joined Aqua audit session
    Mar 26 10:45:18 CPU123.local com.apple.internetaccounts[297]: An instance 0x7f948d80d7d0 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
              <NSKeyValueObservationInfo 0x7f948d80e6b0> (
              <NSKeyValueObservance 0x7f948d80e7e0: Observer: 0x7f948d805ba0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff9000843b, Property: 0x7f948d80e680>
    Mar 26 10:45:19 CPU123.local com.apple.internetaccounts[297]: An instance 0x7f948b732090 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
              <NSKeyValueObservationInfo 0x7f948b7321b0> (
              <NSKeyValueObservance 0x7f948b732140: Observer: 0x7f948b730ef0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff9000843b, Property: 0x7f948d80e680>
    Mar 26 10:45:19 CPU123.local sandboxd[346] ([331]): storeagent(331) deny file-read-data /Users/prl/Library/Preferences/com.apple.WebFoundation.plist
    Mar 26 10:45:25 CPU123.local com.apple.time[192]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Mar 26 10:45:26 CPU123.local com.apple.internetaccounts[297]: *** Warning: Timed out waiting for one or more plugins.
    Mar 26 10:45:27 CPU123.local com.apple.internetaccounts[297]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    Mar 26 10:45:29 --- last message repeated 1 time ---
    Mar 26 10:45:29 CPU123.local sandboxd[346] ([222]): EvernoteHelper(222) deny mach-lookup com.apple.locationd.desktop.synchronous
    Mar 26 10:45:33 CPU123.local com.apple.time[192]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Mar 26 10:45:34 CPU123.local com.apple.dock.extra[373]: <NSXPCConnection: 0x7ffe9272a6c0>: received an undecodable message (no exported object to receive message). Dropping message.
    Mar 26 10:45:40 CPU123.local Mail[376]: Loaded GPGMail 2.1
    Mar 26 10:45:41 CPU123.local Mail[376]: Debug Log enabled: NO
    Mar 26 10:45:44 CPU123 kernel[0]: AirParrot device perform power state change 1 -> 2
    Mar 26 10:45:45 CPU123 kernel[0]: AirParrot device perform power state change 2 -> 1
    Mar 26 10:45:46 CPU123.local Dropbox[284]: PyObjCPointer created: at 0x7b5fc88 of type {OpaqueJSContext=}
    Mar 26 10:45:56 CPU123.local WindowServer[103]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    Mar 26 10:46:10 CPU123.local WindowServer[103]: disable_update_likely_unbalanced: UI updates still disabled by application "Mail" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    Mar 26 10:46:12 CPU123 kernel[0]: fsevents: watcher dbfseventsd (pid: 397) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    Mar 26 10:46:27 CPU123.local com.apple.IconServicesAgent[276]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/ XPCServices/com.apple.internetaccounts.xpc/
    Mar 26 10:46:28 CPU123.local com.apple.IconServicesAgent[276]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServic es/com.apple.WebKit.WebContent.xpc/
    Mar 26 10:46:28 CPU123.local com.apple.IconServicesAgent[276]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.doc k.extra.xpc/
    Mar 26 10:46:35 CPU123.local com.apple.IconServicesAgent[276]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/XPCServi ces/com.apple.ShareKitHelper.xpc/
    Mar 26 10:46:42 CPU123.local defaults[409]:
              The domain/default pair of (/System/Library/Frameworks/Message.framework/Resources/Info, PluginCompatibilityUUID) does not exist
    Mar 26 10:46:48 CPU123.local Dropbox[284]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    Mar 26 10:46:50 CPU123.local WindowServer[103]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 54.66 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 26 10:47:02 CPU123 com.apple.launchd.peruser.1689351527[188] (com.realnetworks.realplayerdownloaderagent.128160[285]): Exited: Killed: 9
    Mar 26 10:47:05 CPU123.local com.apple.SecurityServer[25]: Session 100020 created
    Mar 26 10:47:05 CPU123.local com.apple.SecurityServer[25]: Killing auth hosts
    Mar 26 10:47:05 CPU123.local com.apple.SecurityServer[25]: Session 100016 destroyed
    Mar 26 10:47:41 CPU123.local mds[37]: (Normal) Volume: volume:0x7f81b4033800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.ZWIMlq
    Mar 26 10:47:48 CPU123 kernel[0]: AirParrot device perform power state change 1 -> 2
    Mar 26 10:47:49 CPU123 kernel[0]: AirParrot device perform power state change 2 -> 1
    Mar 26 10:47:58 CPU123.local com.apple.SecurityServer[25]: Session 100003 created
    Mar 26 10:49:44 CPU123 xpcproxy[464]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    Mar 26 10:49:46 CPU123 kernel[0]: AirParrot device perform power state change 1 -> 2
    Mar 26 10:49:48 CPU123 kernel[0]: AirParrot device perform power state change 2 -> 1
    Mar 26 10:49:55 CPU123.local syncdefaultsd[470]: Fixing push token
    Mar 26 10:50:18 CPU123 kernel[0]: AirParrot device perform power state change 1 -> 2
    Mar 26 10:50:20 CPU123 kernel[0]: AirParrot device perform power state change 2 -> 1
    Mar 26 10:50:21 CPU123 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=476[ksadmin] final status 0x0, allowing (remove VALID) page
    Mar 26 10:50:23 CPU123.local sandboxd[346] ([376]): Mail(376) deny file-issue-extension /Applications/Google Chrome.app
    Mar 26 10:50:31 CPU123 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=481[ksadmin] final status 0x0, allowing (remove VALID) page
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[478]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[478]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[480]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[480]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[478]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[480]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[482]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[482]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[482]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:33 CPU123.local Google Chrome Helper[483]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:33 CPU123.local Google Chrome Helper[483]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:33 CPU123.local Google Chrome Helper[483]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[488]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[488]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[488]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[486]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[486]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[486]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[490]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[490]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[489]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[487]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[489]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[487]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[490]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[485]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[485]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[487]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[489]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[485]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:40 CPU123.local Google Chrome Helper[484]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:40 CPU123.local Google Chrome Helper[484]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:40 CPU123.local Google Chrome Helper[484]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:53 CPU123.local launchservicesd[55]: Someone attempted to start application App:"Microsoft Word" asn:0x0-38038 pid:495 refs=6 @ 0x7faf49d55240 but it still has _kLSApplicationLockedInStoppedStateKey=true, so it is is staying stopped. : LASApplication.cp #2468 SetApplicationInStoppedState() q=LSSession 100006/0x186a6 queue
    Mar 26 10:50:56 CPU123.local sandboxd[346] ([376]): Mail(376) deny file-issue-extension /Applications/Microsoft Office 2011/Microsoft Word.app
    Mar 26 10:51:09 CPU123.local Google Chrome Helper[480]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    Mar 26 10:51:09 CPU123.local fontd[218]: BUG in libdispatch client: dispatch_mig_server: mach_msg() failed (ipc/send) invalid memory - 0x1000000c
    Mar 26 10:51:09 CPU123.local Google Chrome Helper[480]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    Mar 26 10:51:25 CPU123.local WindowServer[103]: disable_update_timeout: UI updates were forcibly disabled by application "Microsoft Word" for over 1.00 seconds. Server has re-enabled them.
    Mar 26 10:51:25 CPU123.local WindowServer[103]: common_reenable_update: UI updates were finally reenabled by application "Microsoft Word" after 1.23 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 26 10:52:47 CPU123.local Google Chrome Helper[520]: Process unable to create connection because the san

    Remove "CleanMyMac" by following the first set of instructions on this page. If you have a different version of the product, the procedure may be different. Do not drag the CleanMyMac application to the Trash.
    Back up all data before making any changes.

  • Freezing and crashes in Mavericks

    Hi!
    Having continuing issues with Mavericks — I was getting a few straight crashes but lately I've been getting full freezes where my music skips. It hangs for about three seconds then restarts. It's happened four or five times this week and I can't figure out what it might be in Console. Here are the logs. My computer had restarted by about 22:27.
    26/03/14 10:26:10.325 pm loginwindow[58]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    26/03/14 10:26:10.330 pm mDNSResponder[55]: D2D_IPC: Loaded
    26/03/14 10:26:10.330 pm mDNSResponder[55]: D2DInitialize succeeded
    26/03/14 10:26:10.399 pm networkd[216]: networkd.216 built Aug 24 2013 22:08:46
    26/03/14 10:26:10.430 pm mDNSResponder[55]:   4: Listening for incoming Unix Domain Socket client requests
    26/03/14 10:26:10.445 pm coresymbolicationd[229]: /System/Library/Caches/com.apple.coresymbolicationd/data did not validate, resetting cache
    26/03/14 10:26:10.460 pm locationd[60]: Location icon should now be in state 'Inactive'
    26/03/14 10:26:10.467 pm systemkeychain[118]: done file: /var/run/systemkeychaincheck.done
    26/03/14 10:26:10.478 pm mds[54]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    26/03/14 10:26:10.496 pm WindowServer[106]: Display 0x04280500: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    26/03/14 10:26:10.498 pm mDNSResponder[55]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F8D0D802D60 Nats-MacBook-Pro.local. (AAAA) that's already in the list
    26/03/14 10:26:10.498 pm mDNSResponder[55]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F8D0D8031F0 F.2.0.F.B.7.E.F.F.F.0.D.9.C.2.2.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
    26/03/14 10:26:10.498 pm mDNSResponder[55]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F8D0C803D60 Nats-MacBook-Pro.local. (Addr) that's already in the list
    26/03/14 10:26:10.498 pm mDNSResponder[55]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F8D0C8041F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    26/03/14 10:26:10.557 pm launchctl[230]: com.apple.findmymacmessenger: Already loaded
    26/03/14 10:26:10.592 pm com.apple.SecurityServer[14]: Session 100004 created
    26/03/14 10:26:10.673 pm loginwindow[58]: Setting the initial value of the magsave brightness level 1
    26/03/14 10:26:10.719 pm loginwindow[58]: Login Window Started Security Agent
    26/03/14 10:26:10.000 pm kernel[0]: ast_pending=0xffffff8026acb270
    26/03/14 10:26:10.000 pm kernel[0]: cpu_interrupt=0xffffff8026ae34f0
    26/03/14 10:26:10.000 pm kernel[0]: vboxdrv: fAsync=0 offMin=0xa79 offMax=0xcf3
    26/03/14 10:26:10.000 pm kernel[0]: VBoxDrv: version 4.3.8 r92456; IOCtl version 0x1a0007; IDC version 0x10000; dev major=34
    26/03/14 10:26:10.000 pm kernel[0]: VBoxDrv: vmx_resume=ffffff8026aefeb0 vmx_suspend=ffffff8026aefe70 vmx_use_count=ffffff80270d8848 (0) cr4=0x1606e0
    26/03/14 10:26:10.829 pm locationd[60]: locationd was started after an unclean shutdown
    26/03/14 10:26:10.840 pm SecurityAgent[239]: This is the first run
    26/03/14 10:26:10.840 pm SecurityAgent[239]: MacBuddy was run = 0
    26/03/14 10:26:10.884 pm WindowServer[106]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280500 device: 0x7fc23941d350  isBackBuffered: 1 numComp: 3 numDisp: 3
    26/03/14 10:26:10.884 pm WindowServer[106]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fc23941d350) - enabling OpenGL
    26/03/14 10:26:11.235 pm UserEventAgent[231]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    26/03/14 10:26:11.411 pm sudo[258]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/usr/sbin/sysctl -w debug.bpf_bufsize=524288
    26/03/14 10:26:11.000 pm kernel[0]: VBoxFltDrv: version 4.3.8 r92456
    26/03/14 10:26:11.633 pm com.apple.kextd[12]: kext com.digidesign.iokit.DigiDal  1000007056 is in exception list, allowing to load
    26/03/14 10:26:11.694 pm sandboxd[214]: ([80]) airportd(80) deny file-read-data /private/var/root/Library/Preferences/ByHost/.GlobalPreferences.0148C364-DEF9-5 1C2-99A8-A7F2F695C841.plist
    26/03/14 10:26:11.732 pm parentalcontrolsd[263]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    26/03/14 10:26:11.000 pm kernel[0]: hfs: mounted Recovery HD on device disk0s3
    26/03/14 10:26:11.747 pm mds[54]: (Normal) Volume: volume:0x7fd26b836000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    26/03/14 10:26:11.000 pm kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en2, 100-Megabit, Full-duplex, No flow-control, Debug [796d,0301,0de1,0300,4181,0000]
    26/03/14 10:26:11.859 pm fseventsd[64]: Logging disabled completely for device:1: /Volumes/Recovery HD
    26/03/14 10:26:11.000 pm kernel[0]: VBoxAdpDrv: version 4.3.8 r92456
    26/03/14 10:26:11.000 pm kernel[0]: en0: 802.11d country code set to 'NZ'.
    26/03/14 10:26:11.000 pm kernel[0]: en0: 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 149 153 157 161 165
    26/03/14 10:26:11.000 pm kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    26/03/14 10:26:12.077 pm WindowServer[106]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    26/03/14 10:26:12.117 pm WindowServer[106]: Display 0x04280500: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    26/03/14 10:26:12.129 pm WindowServer[106]: Display 0x04280500: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    26/03/14 10:26:12.000 pm kernel[0]: MacAuthEvent en0   Auth result for: 68:a8:6d:67:90:ab  MAC AUTH succeeded
    26/03/14 10:26:12.000 pm kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    26/03/14 10:26:12.000 pm kernel[0]: AirPort: Link Up on en0
    26/03/14 10:26:12.000 pm kernel[0]: en0: BSSID changed to 68:a8:6d:67:90:ab
    26/03/14 10:26:12.000 pm kernel[0]: AirPort: RSN handshake complete on en0
    26/03/14 10:26:12.958 pm SecurityAgent[239]: spawn_via_launchd() failed, errno=5 label=[0x0-0x6006].com.apple.AppleSpell path=/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell flags=0 : LaunchApplicationClient.cp #990 LaunchApplicationWithSpawnViaLaunchD() q=NSOperationQueue Serial Queue
    26/03/14 10:26:12.958 pm SecurityAgent[239]: spawn_via_launchd() failed, errno=5 label=[0x0-0x6006].com.apple.AppleSpell path=/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell flags=0
    26/03/14 10:26:13.000 pm kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    26/03/14 10:26:20.029 pm configd[17]: network changed: DNS* Proxy
    26/03/14 10:26:20.036 pm UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en0: SSID 'PrettyFlyForAWifi' making interface primary (protected network)
    26/03/14 10:26:20.037 pm UserEventAgent[11]: Captive: CNPluginHandler en0: Evaluating
    26/03/14 10:26:20.041 pm configd[17]: network changed: v4(en0!:172.16.1.4) DNS+ Proxy+ SMB
    26/03/14 10:26:20.044 pm UserEventAgent[11]: Captive: en0: Probing 'PrettyFlyForAWifi'
    26/03/14 10:26:20.144 pm UserEventAgent[11]: Captive: CNPluginHandler en0: Authenticated
    26/03/14 10:26:20.747 pm ntpd[218]: proto: precision = 1.000 usec
    26/03/14 10:26:22.617 pm apsd[78]: Unrecognized leaf certificate
    26/03/14 10:26:25.055 pm awacsd[76]: Exiting
    26/03/14 10:26:26.000 pm kernel[0]: MacAuthEvent en0   Auth result for: 00:1b:2f:4d:8a:dc  MAC AUTH succeeded
    26/03/14 10:26:26.000 pm kernel[0]: MacAuthEvent en0   Auth result for: 68:a8:6d:67:90:ab  MAC AUTH succeeded
    26/03/14 10:26:26.000 pm kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    26/03/14 10:26:26.000 pm kernel[0]: AirPort: RSN handshake complete on en0
    26/03/14 10:26:27.000 pm kernel[0]: wl0: Roamed or switched channel, reason #8, bssid 68:a8:6d:67:90:ab
    26/03/14 10:26:27.000 pm kernel[0]: en0: BSSID changed to 68:a8:6d:67:90:ab
    26/03/14 10:26:31.492 pm configd[17]: network changed: v4(en0:172.16.1.4) DNS Proxy SMB
    26/03/14 10:26:32.078 pm SecurityAgent[239]: User info context values set for NatJohnson
    26/03/14 10:26:32.550 pm SecurityAgent[239]: Login Window login proceeding
    26/03/14 10:26:32.981 pm loginwindow[58]: Login Window - Returned from Security Agent
    26/03/14 10:26:33.016 pm parentalcontrolsd[285]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    26/03/14 10:26:33.036 pm loginwindow[58]: USER_PROCESS: 58 console
    26/03/14 10:26:33.000 pm kernel[0]: AppleKeyStore:Sending lock change 0
    26/03/14 10:26:33.160 pm com.apple.launchd.peruser.501[286]: Background: Aqua: Registering new GUI session.
    26/03/14 10:26:33.182 pm com.apple.launchd.peruser.501[286]: (com.spotify.webhelper) Unknown key: SpotifyPath
    26/03/14 10:26:33.184 pm com.apple.launchd.peruser.501[286]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    26/03/14 10:26:33.185 pm com.apple.launchd.peruser.501[286]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    26/03/14 10:26:33.189 pm launchctl[289]: com.apple.pluginkit.pkd: Already loaded
    26/03/14 10:26:33.189 pm launchctl[289]: com.apple.sbd: Already loaded
    26/03/14 10:26:33.201 pm distnoted[291]: # distnote server agent  absolute time: 29.449403632   civil time: Wed Mar 26 22:26:33 2014   pid: 291 uid: 501  root: no
    26/03/14 10:26:33.423 pm WindowServer[106]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    26/03/14 10:26:33.467 pm WindowServer[106]: Display 0x04280500: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    26/03/14 10:26:33.786 pm UserEventAgent[290]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    26/03/14 10:26:33.000 pm kernel[0]: pci pause: SDXC
    26/03/14 10:26:34.299 pm com.apple.time[290]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    26/03/14 10:26:34.344 pm com.apple.SecurityServer[14]: Session 100009 created
    26/03/14 10:26:34.388 pm com.apple.security.XPCKeychainSandboxCheck[312]: Can't get sandbox fs extension for /Users/NatJohnson/Library/Application Support/Adobe/AIR/ELS/com.adobe.dmp.contentviewer/PrivateEncryptedDatak, status=-1 errno=No such file or directory ext=(null)
    26/03/14 10:26:34.389 pm com.apple.security.XPCKeychainSandboxCheck[312]: Can't get sandbox fs extension for /Users/NatJohnson/Library/Application Support/Adobe/AIR/ELS/com.adobe.dmp.contentviewer/lck~PrivateEncryptedDatak, status=-1 errno=No such file or directory ext=(null)
    26/03/14 10:26:34.389 pm com.apple.security.XPCKeychainSandboxCheck[312]: Can't get sandbox fs extension for /Users/NatJohnson/Library/Application Support/Adobe/AIR/ELS/com.adobe.dmp.contentviewer/.fl89CB8354, status=-1 errno=No such file or directory ext=(null)
    26/03/14 10:26:34.605 pm xpcproxy[314]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    26/03/14 10:26:34.741 pm com.apple.security.XPCKeychainSandboxCheck[312]: Can't get sandbox fs extension for /Users/NatJohnson/Library/Application Support/Adobe/AIR/ELS/com.adobe.dmp.contentviewer/PrivateEncryptedDatak, status=-1 errno=No such file or directory ext=(null)
    26/03/14 10:26:34.741 pm com.apple.security.XPCKeychainSandboxCheck[312]: Can't get sandbox fs extension for /Users/NatJohnson/Library/Application Support/Adobe/AIR/ELS/com.adobe.dmp.contentviewer/lck~PrivateEncryptedDatak, status=-1 errno=No such file or directory ext=(null)
    26/03/14 10:26:34.742 pm com.apple.security.XPCKeychainSandboxCheck[312]: Can't get sandbox fs extension for /Users/NatJohnson/Library/Application Support/Adobe/AIR/ELS/com.adobe.dmp.contentviewer/.fl89CB8354, status=-1 errno=No such file or directory ext=(null)
    26/03/14 10:26:35.271 pm sharingd[333]: Starting Up...
    26/03/14 10:26:35.468 pm xpcproxy[336]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    26/03/14 10:26:35.707 pm com.apple.SecurityServer[14]: Session 100008 created
    26/03/14 10:26:35.754 pm com.apple.IconServicesAgent[341]: IconServicesAgent launched.
    26/03/14 10:26:35.772 pm Finder[328]: Failed to mmap file. The file has zero length.
    26/03/14 10:26:35.772 pm Finder[328]: Failed to mmap file. The file has zero length.
    26/03/14 10:26:35.772 pm Finder[328]: Failed to mmap file. The file has zero length.
    26/03/14 10:26:35.772 pm Finder[328]: Failed to mmap file. The file has zero length.
    26/03/14 10:26:35.772 pm Finder[328]: Failed to mmap file. The file has zero length.
    26/03/14 10:26:35.783 pm com.apple.IconServicesAgent[341]: Failed to mmap file. The file has zero length.
    26/03/14 10:26:35.999 pm com.apple.SecurityServer[14]: Session 100012 created
    26/03/14 10:26:36.154 pm com.apple.IconServicesAgent[341]: main Failed to composit image for binding VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x11b] - extension: png, UTI: public.png, fileType: ????.
    26/03/14 10:26:36.155 pm quicklookd[342]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: png, UTI: public.png, fileType: ???? request size:128 scale: 1
    26/03/14 10:26:36.299 pm SystemUIServer[327]:           MenuCracker 6 (/Applications/Fantastical Menu.menu)
              See http://sourceforge.net/projects/menucracker
              MenuCracker is now loaded. Ready to accept new menu extras.
    26/03/14 10:26:36.366 pm SystemUIServer[327]: Cannot find executable for CFBundle 0x7ff98a6259a0 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    26/03/14 10:26:36.390 pm SystemUIServer[327]: Cannot find executable for CFBundle 0x7ff98a624740 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    26/03/14 10:26:36.393 pm SystemUIServer[327]: Cannot find executable for CFBundle 0x7ff98a623f50 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    26/03/14 10:26:36.469 pm SystemUIServer[327]: *** WARNING: Method convertRectToBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications.
    26/03/14 10:26:36.469 pm SystemUIServer[327]: *** WARNING: Method convertRectFromBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications.
    26/03/14 10:26:37.010 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    26/03/14 10:26:37.011 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    26/03/14 10:26:37.011 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    26/03/14 10:26:37.011 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    26/03/14 10:26:37.011 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    26/03/14 10:26:37.011 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    26/03/14 10:26:37.012 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    26/03/14 10:26:37.012 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    26/03/14 10:26:37.012 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    26/03/14 10:26:37.012 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    26/03/14 10:26:37.012 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    26/03/14 10:26:37.012 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    26/03/14 10:26:37.013 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    26/03/14 10:26:37.013 pm com.apple.audio.DriverHelper[348]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    26/03/14 10:26:37.060 pm com.apple.audio.DriverHelper[348]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    26/03/14 10:26:37.060 pm com.apple.audio.DriverHelper[348]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    26/03/14 10:26:37.060 pm com.apple.audio.DriverHelper[348]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    26/03/14 10:26:37.201 pm coreaudiod[329]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    26/03/14 10:26:37.201 pm coreaudiod[329]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    26/03/14 10:26:37.000 pm kernel[0]: Sandbox: coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:37.000 pm kernel[0]: Sandbox: coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:37.000 pm kernel[0]: Sandbox: coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:37.000 pm kernel[0]: Sandbox: coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:37.000 pm kernel[0]: Sandbox: coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:37.000 pm kernel[0]: Sandbox: coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:37.638 pm accountsd[355]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    26/03/14 10:26:37.894 pm coreaudiod[329]: 2014-03-26 10:26:37.894170 PM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2
    26/03/14 10:26:38.050 pm com.apple.IconServicesAgent[341]: main Failed to composit image for binding VariantBinding [0x133] flags: 0x8 binding: FileInfoBinding [0x21b] - extension: jpeg, UTI: public.jpeg, fileType: ????.
    26/03/14 10:26:38.059 pm SystemUIServer[327]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    26/03/14 10:26:38.059 pm SystemUIServer[327]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    26/03/14 10:26:38.139 pm quicklookd[342]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: jpeg, UTI: public.jpeg, fileType: ???? request size:256 scale: 1
    26/03/14 10:26:38.387 pm com.apple.NotesMigratorService[361]: Joined Aqua audit session
    26/03/14 10:26:38.413 pm com.apple.internetaccounts[314]: An instance 0x7f91349078b0 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7f91349085f0> (
    <NSKeyValueObservance 0x7f9134908760: Observer: 0x7f91349056c0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff889ae43b, Property: 0x7f91349085c0>
    26/03/14 10:26:38.526 pm com.apple.time[290]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    26/03/14 10:26:38.541 pm com.apple.time[290]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    26/03/14 10:26:39.000 pm kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=365[ksadmin] final status 0x0, allowing (remove VALID) page
    26/03/14 10:26:39.947 pm login[366]: USER_PROCESS: 366 ttys000
    26/03/14 10:26:40.000 pm kernel[0]: Sandbox: coreaudiod(329) deny file-read-data /Library/Audio/Plug-Ins/Components/A52Codec.component
    26/03/14 10:26:40.000 pm kernel[0]: Sandbox: coreaudiod(329) deny file-read-metadata /Library/Audio/Plug-Ins/Components/A52Codec.component/Contents
    26/03/14 10:26:40.000 pm kernel[0]: Sandbox: coreaudiod(329) deny file-read-metadata /Library/Audio/Plug-Ins/Components/A52Codec.component
    26/03/14 10:26:41.535 pm Console[422]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    26/03/14 10:26:41.778 pm com.apple.InputMethodKit.UserDictionary[424]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  NatJohnson~0148C364-DEF9-51C2-99A8-A7F2F695C841:UserDictionary
    Using local storage: 1
    26/03/14 10:26:42.195 pm WindowServer[106]: disable_update_timeout: UI updates were forcibly disabled by application "Terminal" for over 1.00 seconds. Server has re-enabled them.
    26/03/14 10:26:42.692 pm WindowServer[106]: common_reenable_update: UI updates were finally reenabled by application "Terminal" after 1.50 seconds (server forcibly re-enabled them after 1.00 seconds)
    26/03/14 10:26:42.842 pm com.apple.InputMethodKit.UserDictionary[424]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  NatJohnson~0148C364-DEF9-51C2-99A8-A7F2F695C841:UserDictionary
    Using local storage: 0
    26/03/14 10:26:43.612 pm com.apple.dock.extra[358]: <NSXPCConnection: 0x7fc21ac9bd30>: received an undecodable message (no exported object to receive message). Dropping message.
    26/03/14 10:26:43.872 pm Spotify[322]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    26/03/14 10:26:44.709 pm sandboxd[214]: ([329]) coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:44.820 pm WindowServer[106]: disable_update_timeout: UI updates were forcibly disabled by application "Notes" for over 1.00 seconds. Server has re-enabled them.
    26/03/14 10:26:44.844 pm Spotify[322]: Mac OS version: 10.9
    26/03/14 10:26:45.564 pm Console[422]: CGSReenableUpdateToken: invalid token 0x9bfffffffff8c86
    26/03/14 10:26:45.573 pm Console[422]: Backtrace (at 41.8145):
    26/03/14 10:26:45.573 pm Console[422]: CGSReenableUpdateToken:  0   CoreGraphics                        0x00007fff8bda0ad9 CGSBacktraceCreate + 59
    26/03/14 10:26:45.574 pm Console[422]: CGSReenableUpdateToken:  1   CoreGraphics                        0x00007fff8c045afa CGSLogBacktrace + 15
    26/03/14 10:26:45.574 pm Console[422]: CGSReenableUpdateToken:  2   CoreGraphics                        0x00007fff8bdc50d2 _ZN16CGSUpdateManager13enable_updateEy + 210
    26/03/14 10:26:45.574 pm Console[422]: CGSReenableUpdateToken:  3   AppKit                              0x00007fff8d90880c __62-[NSScrollingBehaviorConcurrentVBL _stopGestureScrollTracking]_block_invoke + 313
    26/03/14 10:26:45.574 pm Console[422]: CGSReenableUpdateToken:  4   libdispatch.dylib                   0x00007fff937a11d7 _dispatch_call_block_and_release + 12
    26/03/14 10:26:45.574 pm Console[422]: CGSReenableUpdateToken:  5   libdispatch.dylib                   0x00007fff9379e2ad _dispatch_client_callout + 8
    26/03/14 10:26:45.574 pm Console[422]: CGSReenableUpdateToken:  6   libdispatch.dylib                   0x00007fff937a5f03 _dispatch_main_queue_callback_4CF + 333
    26/03/14 10:26:45.574 pm Console[422]: CGSReenableUpdateToken:  7   CoreFoundation                      0x00007fff8d1dc679 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    26/03/14 10:26:45.574 pm Console[422]: CGSReenableUpdateToken:  8   CoreFoundation                      0x00007fff8d197954 __CFRunLoopRun + 1636
    26/03/14 10:26:45.574 pm Console[422]: CGSReenableUpdateToken:  9   CoreFoundation                      0x00007fff8d1970b5 CFRunLoopRunSpecific + 309
    26/03/14 10:26:45.575 pm Console[422]: CGSReenableUpdateToken:  10  HIToolbox                           0x00007fff8b294a0d RunCurrentEventLoopInMode + 226
    26/03/14 10:26:45.575 pm Console[422]: CGSReenableUpdateToken:  11  HIToolbox                           0x00007fff8b2947b7 ReceiveNextEventCommon + 479
    26/03/14 10:26:45.575 pm Console[422]: CGSReenableUpdateToken:  12  HIToolbox                           0x00007fff8b2945bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    26/03/14 10:26:45.575 pm Console[422]: CGSReenableUpdateToken:  13  AppKit                              0x00007fff8d6f13de _DPSNextEvent + 1434
    26/03/14 10:26:45.575 pm Console[422]: CGSReenableUpdateToken:  14  AppKit                              0x00007fff8d6f0a2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    26/03/14 10:26:45.575 pm Console[422]: CGSReenableUpdateToken:  15  AppKit                              0x00007fff8d6e4b2c -[NSApplication run] + 553
    26/03/14 10:26:45.575 pm Console[422]: CGSReenableUpdateToken:  16  AppKit                              0x00007fff8d6cf913 NSApplicationMain + 940
    26/03/14 10:26:45.575 pm Console[422]: CGSReenableUpdateToken:  17  libdyld.dylib                       0x00007fff8d3d45fd start + 1
    26/03/14 10:26:45.738 pm sandboxd[214]: ([329]) coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:45.757 pm com.apple.security.XPCKeychainSandboxCheck[312]: Can't get sandbox fs extension for /Users/NatJohnson/Library/Application Support/Adobe/AIR/ELS/com.adobe.dmp.contentviewer/PrivateEncryptedDatak, status=-1 errno=No such file or directory ext=(null)
    26/03/14 10:26:45.757 pm com.apple.security.XPCKeychainSandboxCheck[312]: Can't get sandbox fs extension for /Users/NatJohnson/Library/Application Support/Adobe/AIR/ELS/com.adobe.dmp.contentviewer/lck~PrivateEncryptedDatak, status=-1 errno=No such file or directory ext=(null)
    26/03/14 10:26:45.758 pm com.apple.security.XPCKeychainSandboxCheck[312]: Can't get sandbox fs extension for /Users/NatJohnson/Library/Application Support/Adobe/AIR/ELS/com.adobe.dmp.contentviewer/.fl89CB8354, status=-1 errno=No such file or directory ext=(null)
    26/03/14 10:26:45.810 pm Google Chrome Helper[430]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    26/03/14 10:26:45.810 pm Google Chrome Helper[430]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    26/03/14 10:26:45.842 pm Google Chrome Helper[430]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    26/03/14 10:26:45.951 pm sandboxd[214]: ([329]) coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:46.045 pm sandboxd[214]: ([329]) coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:46.064 pm WindowServer[106]: common_reenable_update: UI updates were finally reenabled by application "Notes" after 2.24 seconds (server forcibly re-enabled them after 1.00 seconds)
    26/03/14 10:26:46.292 pm sandboxd[214]: ([329]) coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:46.320 pm WindowServer[106]: disable_update_timeout: UI updates were forcibly disabled by application "Preview" for over 1.00 seconds. Server has re-enabled them.
    26/03/14 10:26:46.696 pm sandboxd[214]: ([329]) coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:46.910 pm Spotify Helper EH[434]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    26/03/14 10:26:47.076 pm Spotify Helper EH[434]: There was an error parsing the Info.plist for the bundle at URL Contents/Info.plist -- file://localhost/Library/QuickTime/FLACImport.component/
    The data couldn’t be read because it isn’t in the correct format.
    <CFBasicHash 0x3d32750 [0xa0861fa0]>{type = immutable dict, count = 1,
    entries =>
              0 : <CFString 0xa0853704 [0xa0861fa0]>{contents = "NSDebugDescription"} = <CFString 0x3d327f0 [0xa0861fa0]>{contents = "Cannot parse a NULL or zero-length data"}
    26/03/14 10:26:47.000 pm kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=435[ksadmin] final status 0x0, allowing (remove VALID) page
    26/03/14 10:26:47.244 pm Preview[321]: It does not make sense to draw an image when [NSGraphicsContext currentContext] is nil.  This is a programming error. Break on void _NSWarnForDrawingImageWithNoCurrentContext() to debug.  This will be logged only once.  This may break in the future.
    26/03/14 10:26:47.245 pm WindowServer[106]: disable_update_timeout: UI updates were forcibly disabled by application "Pages" for over 1.00 seconds. Server has re-enabled them.
    26/03/14 10:26:47.390 pm sandboxd[214]: ([329]) coreaudiod(329) deny mach-lookup com.apple.coreservices.launchservicesd
    26/03/14 10:26:48.069 pm Google Chrome Helper[436]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    26/03/14 10:26:48.070 pm Google Chrome Helper[436]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    26/03/14 10:26:48.090 pm Google Chrome Helper[436]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    26/03/14 10:26:48.638 pm com.apple.security.XPCKeychainSandboxCheck[312]: Can't get sandbox fs extension for /Users/NatJohnson/Library/Application Support/Adobe/AIR/ELS/com.adobe.dmp.contentviewer/PrivateEncryptedDatak, status=-1 errno=No such file or directory ext=(null)
    26/03/14 10:26:48.638 pm com.apple.security.XPCKeychainSandboxCheck[312]: Can't get sandbox fs extension for /Users/NatJohnson/Library/Application Support/Adobe/AIR/ELS/com.adobe.dmp.contentviewer/lck~PrivateEncryptedDatak, status=-1 errno=No such file or directory ext=(null)
    26/03/14 10:26:48.638 pm com.apple.security.XPCKeychainSandboxCheck[312]: Can't get sandbox fs extension for /Users/NatJohnson/Library/Application Support/Adobe/AIR/ELS/com.adobe.dmp.contentviewer/.fl89CB8354, status=-1 errno=No such file or directory ext=(null)
    26/03/14 10:26:48.640 pm WindowServer[106]: disable_update_timeout: UI updates were forcibly disabled by application "Safari" for over 1.00 seconds. Server has re-enabled them.
    26/03/14 10:26:49.160 pm Google Chrome Helper[438]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    26/03/14 10:26:49.160 pm Google Chrome Helper[438]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    26/03/14 10:26:49.322 pm Google Chrome Helper[438]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    26/03/14 10:26:49.913 pm Google Chrome Helper EH[439]: There was an error parsing the Info.plist for the bundle at URL Contents/Info.plist -- file://localhost/Library/QuickTime/FLACImport.component/
    The data couldn’t be read because it isn’t in the correct format.
    <CFBasicHash 0x7901d6f0 [0xa0861fa0]>{type = immutable dict, count = 1,
    entries =>
              0 : <CFString 0xa0853704 [0xa0861fa0]>{contents = "NSDebugDescription"} = <CFString 0x7901da40 [0xa0861fa0]>{contents = "Cannot parse a NULL or zero-length data"}
    26/03/14 10:26:50.202 pm Google Chrome Helper[440]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    26/03/14 10:26:50.202 pm Google Chrome Helper[440]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    26/03/14 10:26:50.274 pm Google Chrome Helper[440]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    26/03/14 10:26:50.357 pm Google Chrome Helper[441]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    26/03/14 10:26:50.357 pm Google Chrome Helper[441]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    26/03/14 10:26:50.443 pm Google Chrome Helper[441]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    26/03/14 10:26:50.639 pm Google Chrome Helper[442]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    26/03/14 10:26:50.640 pm Google Chrome Helper[442]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    26/03/14 10:26:50.665 pm Google Chrome Helper[442]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    26/03/14 10:26:50.749 pm Google Chrome Helper[443]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    26/03/14 10:26:50.749 pm Google Chrome Helper[443]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    26/03/14 10:26:50.785 pm Google Chrome Helper[443]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    26/03/14 10:26:51.982 pm Xcode[317]:  DeveloperPortal: Using pre-existing current store at URL (file:///Users/NatJohnson/Library/Developer/Xcode/DeveloperPortal%205.1.db).
    26/03/14 10:26:52.276 pm WindowServer[106]: common_reenable_update: UI updates were finally reenabled by application "Safari" after 4.64 seconds (server forcibly re-enabled them after 1.00 seconds)
    26/03/14 10:26:52.309 pm com.apple.usbmuxd[41]: LOCKDOWN_V2_BONJOUR_SERVICE_NAME is _apple-mobdev2._tcp,9ab20846
    26/03/14 10:26:52.826 pm Safari[320]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    26/03/14 10:26:52.919 pm WindowServer[106]: common_reenable_update: UI updates were finally reenabled by application "Pages" after 6.67 seconds (server forcibly re-enabled them after 1.00 seconds)
    26/03/14 10:26:53.100 pm Spotify Helper[451]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    26/03/14 10:26:53.152 pm Spotify Helper[452]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    26/03/14 10:26:53.217 pm WindowServer[106]: common_reenable_update: UI updates were finally reenabled by application "Preview" after 7.90 seconds (server forcibly re-enabled them after 1.00 seconds)
    26/03/14 10:26:53.286 pm Spotify Helper[455]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    26/03/14 10:26:53.440 pm com.apple.SecurityServer[14]: Session 100017 created

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) at the request of a stranger on a public message board. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    Here's a summary of what you need to do, if you choose to proceed: Copy a line of text from this web page into the window of another application. Wait for the script to run. It usually takes a few minutes. Then paste the results, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, wait, paste again. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin; clear; Fb='%s\n\t(%s)\n'; Fm='\n%s\n\n%s\n'; Fr='\nRAM details\n%s\n'; Fs='\n%s: %s\n'; Fu='user %s%%, system %s%%'; AC="com.autodesk.AutoCAD  com.google.GoogleDrive"; H='^[[:space:]]*((127\.0\.0\.1|::1|fe80::1%lo0)[[:space:]]+local|(255\.){3}255[[:space:]]*broadcast)host[[:space:]]*$'; NS=networksetup; PB="/usr/libexec/PlistBuddy -c Print"; A () { [[ a -eq 0 ]]; }; M () { find -L "$d" -type f | while read f; do file -b "$f" | egrep -lq XML\|exec && echo $f; done; }; AT () { o=`file -b "$1" | egrep -v '^(A.{16}t$|cann)'`; Ps "${1##*/} format"; }; Pc () { o=`grep -v '^ *#' "$2"`; l=`wc -l <<< "$o"`; [[ l -gt 25 ]] && o=`head -n25 <<< "$o"`$'\n'"[$((l-25)) more line(s)]"; Pm "$1"; AT "$1"; }; Pm () { [[ "$o" ]] && o=`sed -E '/^ *$/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/(\/Users\/)[^/]+/\1-/g' <<< "$o"` && printf "$Fm" "$1" "$o"; }; Pp () { o=`$PB "$2" | awk -F'= ' \/$3'/{print $2}'`; Pm "$1"; }; Ps () { o=`echo $o`; [[ ! "$o" =~ ^0?$ ]] && printf "$Fs" "$1" "$o"; }; R () { o=; [[ r -eq 0 ]]; }; SP () { system_profiler SP${1}DataType; }; id -G | grep -qw 80; a=$?; A && sudo true; r=$?; t=`date +%s`; clear; { A || echo $'No admin access\n'; A && ! R && echo $'No root access\n'; SP Software | sed -n 's/^ *//;5p;6p;8p'; h=(`SP Hardware | awk '/ Id/{print $3}; /Mem/{print $2}'`); o=$h; Ps "Model"; o=$((h[1]<4?h[1]:0)); Ps "Total RAM (GB)"; o=`SP Memory | sed '1,5d;/[my].*:/d'`; [[ "$o" =~ s:\ [^O]|x([^08]|0[^2]|8[^0]) ]] && printf "$Fr" "$o"; o=`SP Diagnostics | sed '5,6!d'`; [[ "$o" =~ Pass ]] || Pm "POST"; p=`SP Power`; o=`awk '/Cy/{print $NF}' <<< "$p"`; o=$((o>=300?o:0)); Ps "Battery cycles"; o=`sed -n '/Cond.*: [^N]/{s/^.*://p;}' <<< "$p"`; Ps "Battery condition"; for b in FireWire Thunderbolt USB; do o=`SP $b | sed -En '/:$/{s/ *:$//;x;s/\n//;s/\n.*//;/\)/p;};/^ *(V.+ [0N]|Man).+ /{s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};/Apple|Broadcom|Genesy|Intel|SMSC/{s/.//g;h;}'`; Pm $b; done; o=`pmset -g therm | sed 's/^.*C/C/'`; [[ "$o" =~ No\ th|pms ]] && o=; Pm "Thermal conditions"; o=`pmset -g sysload | grep -v :`; [[ "$o" =~ =\ [^GO] ]] || o=; Pm "System load advisory"; o=`nvram boot-args | awk '{$1=""; print}'`; Ps "boot-args"; fdesetup status | grep -q On && o=on || o=; Ps "FileVault"; a=(/ ""); A=(System User); for i in 0 1; do o=`cd ${a[$i]}L*/Lo*/Diag* || continue; for f in *.{cr,h,pa,s}*; do [[ -f "$f" ]] || continue; d=$(stat -f%Sc -t%F "$f"); [[ "$f" =~ h$ ]] && grep -lq "^Thread c" "$f" && f="$f *"; echo "$d ${f%%_2*} ${f##*.}"; done | sort | tail`; Pm "${A[$i]} diagnostics"; done; grep -lq '*$' <<< "$o" && printf $'\n\t* Code injection\n'; o=`syslog -F bsd -k Sender kernel -k Message CReq 'caug|GPU |hfs: Ru|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|timed? ?o|WARN' -k Message Ane 'SMC:' | tail -n25 | awk '/:/{$4=""; $5=""};1'`; Pm "Kernel messages"; o=`df -m / | awk 'NR==2 {print $4}'`; o=$((o<5120?o:0)); Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/eo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( `sar -u 1 10 | sed '$!d'` ); [[ s[4] -lt 85 ]] && o=`printf "$Fu" ${s[1]} ${s[3]}` || o=; Ps "Total CPU usage" && { s=(`ps acrx -o comm,ruid,%cpu | sed '2!d'`); n=$((${#s[*]}-1)); c="${s[*]}"; o=${s[$n]}%; Ps "CPU usage by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; }; s=(`top -R -l1 -n1 -o prt -stats command,uid,prt | sed '$!d'`); n=$((${#s[*]}-1)); s[$n]=${s[$n]%[+-]}; c="${s[*]}"; o=$((s[$n]>=25000?s[$n]:0)); Ps "Mach ports used by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; o=`kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1`; Pm "Loaded extrinsic kernel extensions"; R && o=`sudo launchctl list | awk 'NR>1 && !/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|openld|post[fg]|x)/{print $3}'`; Pm "Extrinsic daemons"; o=`launchctl list | awk 'NR>1 && !/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'`; Pm "Extrinsic agents"; o=`for d in {/,}L*/Lau*; do M; done | egrep -v 'com\.apple\.(CSConfig|server)' | while read f; do ID=$($PB\ :Label "$f") || ID="No job label"; printf "$Fb" "$f" "$ID"; done`; Pm "launchd items"; o=`for d in /{S*/,}L*/StartupItems; do M; done`; Pm "Startup items"; sys=`pkgutil --regexp --only-files --files com.apple.pkg.* | sort | uniq | sed 's:^:/:'`; b=`sed -E '/^.+Lib.+\/Contents\/Info.plist$/!d;s/\/Info.plist$//;/Contents\/./d' <<< "$sys"`; l=`egrep '^/usr/lib/.+dylib$' <<< "$sys"`; [[ "$b" && "$l" ]] && { o=`find -L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo}* -type d -name Contents -prune | grep -Fv "$b" | while read d; do test -f "$d/Info.plist" || continue; ID=$($PB\ :CFBundleIdentifier "$_") || ID="No bundle ID"; printf "$Fb" "${d%/Contents}" "$ID"; done`; Pm "Extrinsic loadable bundles"; o=`find /usr/lib -type f -name *.dylib | grep -Fv "$l"`; Pm "Extrinsic shared libraries"; :; } || echo $'\nReceipts missing'; o=`for e in INSERT_LIBRARIES LIBRARY_PATH; do launchctl getenv DYLD_$e; done`; Pm "Inserted dylibs"; o=`find -L {,/u*/lo*}/e*/periodic -type f -mtime -10d`; Pm "Modified periodic scripts"; o=`scutil --proxy | grep Prox`; Pm "Proxies"; o=`scutil --dns | awk '/r\[0\] /{if ($NF !~ /^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./) print $NF; exit}'`; i=`route -n get default | awk '/e:/{print $2}'`; I=`$NS -listnetworkserviceorder | sed -En '/ '$i'\)$/{x;s/^\(.+\) //p;q;};x'`; n=`$NS -getdnsservers "$I" | awk '!/^T/{printf "not "; exit}'`; Ps "DNS (${n}from DHCP)"; o=`$NS -getinfo "$I" | awk '/k:/{if ($3 !~ "(255\.){3}0") print}; /v6:/{if ($2 !~ "A") print}'`; Pm "TCP/IP"; R && o=`sudo profiles -P | grep : | wc -l`; Ps "Profiles"; f=auto_master; [[ `md5 -q /etc/$f` =~ ^b166 ]] || Pc $f /etc/$f; for f in fstab sysctl.conf crontab launchd.conf; do Pc $f /etc/$f; done; f=/etc/hosts; Pc "hosts" <(egrep -v "$H" $f ); AT $f; Pc "User launchd" ~/.launchd*; R && Pc "Root crontab" <(sudo crontab -l); Pc "User crontab" <(crontab -l); R && o=`sudo defaults read com.apple.loginwindow LoginHook`; Pm "Login hook"; LD="$(`find /S*/*/F* -type f -name lsregister | head -n1` -dump)"; o=`for ID in $AC; do [[ "$LD" =~ $ID ]] && echo $ID; done`; Pm "Application check"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed -E 's/(\..*$|-[1-9])//g'; o=`find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l`; Ps "Restricted user files"; cd; o=`find . -maxdepth 1 -exec basename {} + | while read f; do [[ ("$f" =~ ^\.. && ! "$f" =~ ^\.(bash_history|CFU.+|cups|profile|sh_history|ssh|Trash(es)?|zsh.+)$) || ($(stat -f%f "$f") -ge 32768 && "$f" != Library) ]] && ls -Fd "$f"; done`; Pm "Hidden user files"; o=`SP Fonts | egrep 'id: N|te: Y' | wc -l`; Ps "Font problems"; o=`find L*/{Con,Pref}* -type f ! -size 0 -name *.plist | while read f; do plutil -s "$f" >&- || echo $f; done`; Pm "Bad plists"; d=(Desktop L*/Keyc*); n=(20 7); for i in 0 1; do o=`find "${d[$i]}" -type f -maxdepth 1 | wc -l`; o=$((o<=n[$i]?0:o)); Ps "${d[$i]##*/} file count"; done; o=; [[ UID -eq 0 ]] && o=root; Ps "UID"; o=$((`date +%s`-t)); Ps "Elapsed time (s)"; } 2>/dev/null | pbcopy; exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
    8. If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    9. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    10. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report the results. No harm will be done.
    11. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Some knowledge and help required!

    I've been a long term reader of the boards, and thanks to them have never had to post on here... until now!
    My 2009 Macbook Pro has within the last couple of months developed a seriously annoying problem. Immediately upon waking from sleep, the wifi seems to struggle to find a connection and keeps showing the searching symbol. If I try click on the symbol, or do ANYTHING else, I get the beachball, and the system completely freezes and I have to do a hard restart. This was a sudden thing, my macbook had been working perfectly before this.
    Now, I first took it to the apple store after my harddrive supposedly failed, I thought maybe all the hard restarts due to the freezing had damaged the drive, or that maybe the drive was responsible for the problems in the first place. The genius suggested I send my SSD back to Samsung (I had installed an 840 SATA SSD about 10 months fine and had been working perfectly), which I did. Samsung then returned the same SSD with no apparent damage. Tried to re-upload my data from a time machine backup which failed when reaching around 14%, causing the drive to become unreadable again and causing kernel panics on startup. So again, another trip to the genius bar where my drive was wiped and I was able to upload Mavericks, after which I used migration assistant to restore my data. I then tried to see if the sleep bug had disappeared but it still remains!
    After yet more disappointment and more searching of online communities, I tried the apple hardware test, which came back as all clear. Disc utilities and Onyx have all reported no damage and say the system appears to be ok. I have even tried deleting prefered networks in the network preferences as I had seen this suggested for something similar that some Lion users had seen. So now, I'm completely stuck and am dreading another trip to the apple store!
    My specs are...
    Macbook Pro 2009
    2.26 GHz Intel core 2 duo
    8GB 1067 MHz DDR3 (installed by me)
    250GB 840 series SSD SATA (installed by me)
    Below is the log from one of the freezes. Maybe this will help any kind soul that may have more of an idea than me!
    19/03/2014 15:02:03.237 com.apple.time[173]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    19/03/2014 15:02:07.000 kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    19/03/2014 15:09:47.000 bootlog[0]: BOOT_TIME 1395241787 0
    19/03/2014 15:09:50.000 syslogd[19]: 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.
    19/03/2014 15:09:50.000 syslogd[19]: 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".
    19/03/2014 15:09:50.000 syslogd[19]: 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.
    19/03/2014 15:09:50.000 syslogd[19]: 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.
    19/03/2014 15:09:50.000 syslogd[19]: 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.
    19/03/2014 15:09:50.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.
    19/03/2014 15:09:50.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.
    19/03/2014 15:09:50.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.
    19/03/2014 15:09:50.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.
    19/03/2014 15:09:50.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.
    19/03/2014 15:09:50.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.
    19/03/2014 15:09:50.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.
    19/03/2014 15:09:50.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.
    19/03/2014 15:09:50.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.
    19/03/2014 15:09:50.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.
    19/03/2014 15:09:50.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.
    19/03/2014 15:09:50.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.
    19/03/2014 15:09:50.000 kernel[0]: Longterm timer threshold: 1000 ms
    19/03/2014 15:09:50.000 kernel[0]: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    19/03/2014 15:09:50.000 kernel[0]: vm_page_bootstrap: 1946759 free pages and 68473 wired pages
    19/03/2014 15:09:50.000 kernel[0]: kext submap [0xffffff7f807a6000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a6000]
    19/03/2014 15:09:50.000 kernel[0]: zone leak detection enabled
    19/03/2014 15:09:50.000 kernel[0]: "vm_compressor_mode" is 4
    19/03/2014 15:09:50.000 kernel[0]: standard timeslicing quantum is 10000 us
    19/03/2014 15:09:50.000 kernel[0]: standard background quantum is 2500 us
    19/03/2014 15:09:50.000 kernel[0]: mig_table_max_displ = 74
    19/03/2014 15:09:50.000 kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    19/03/2014 15:09:50.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    19/03/2014 15:09:50.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    19/03/2014 15:09:50.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    19/03/2014 15:09:50.000 kernel[0]: calling mpo_policy_init for Sandbox
    19/03/2014 15:09:50.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    19/03/2014 15:09:50.000 kernel[0]: calling mpo_policy_init for Quarantine
    19/03/2014 15:09:50.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    19/03/2014 15:09:50.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    19/03/2014 15:09:50.000 kernel[0]: The Regents of the University of California. All rights reserved.
    19/03/2014 15:09:50.000 kernel[0]: MAC Framework successfully initialized
    19/03/2014 15:09:50.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    19/03/2014 15:09:50.000 kernel[0]: AppleKeyStore starting (BUILT: Jan 16 2014 20:19:00)
    19/03/2014 15:09:50.000 kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    19/03/2014 15:09:50.000 kernel[0]: ACPI: sleep states S3 S4 S5
    19/03/2014 15:09:50.000 kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    19/03/2014 15:09:50.000 kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    19/03/2014 15:09:50.000 kernel[0]: [ PCI configuration begin ]
    19/03/2014 15:09:50.000 kernel[0]: Sleep failure code 0x00004000 0x27006500
    19/03/2014 15:09:50.000 kernel[0]: console relocated to 0xf80010000
    19/03/2014 15:09:50.000 kernel[0]: [ PCI configuration end, bridges 5, devices 18 ]
    19/03/2014 15:09:50.000 kernel[0]: NVEthernet::start - Built Jan 16 2014 20:18:49
    19/03/2014 15:09:50.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 00254bfffece7d4a; max speed s800.
    19/03/2014 15:09:50.000 kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833, 2
    19/03/2014 15:09:50.000 kernel[0]: mcache: 2 CPU(s), 64 bytes CPU cache line size
    19/03/2014 15:09:50.000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    19/03/2014 15:09:50.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    19/03/2014 15:09:50.000 kernel[0]: rooting via boot-uuid from /chosen: CE8F1BC6-DE7C-33DE-A64C-24758685A98B
    19/03/2014 15:09:50.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>
    19/03/2014 15:09:50.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    19/03/2014 15:09:50.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    19/03/2014 15:09:50.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    19/03/2014 15:09:50.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    19/03/2014 15:09:50.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    19/03/2014 15:09:50.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Samsung SSD 840 Series Media/IOGUIDPartitionScheme/Macintosh HD@2
    19/03/2014 15:09:50.000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    19/03/2014 15:09:50.000 kernel[0]: jnl: b(1, 2): replay_journal: from: 7869440 to: 12563456 (joffset 0xe8e000)
    19/03/2014 15:09:50.000 kernel[0]: BTCOEXIST off
    19/03/2014 15:09:50.000 kernel[0]: BRCM tunables:
    19/03/2014 15:09:50.000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    19/03/2014 15:09:50.000 kernel[0]: jnl: b(1, 2): journal replay done.
    19/03/2014 15:09:50.000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    19/03/2014 15:09:50.000 kernel[0]: hfs: Removed 21 orphaned / unlinked files and 48 directories
    19/03/2014 15:09:48.354 com.apple.launchd[1]: *** launchd[1] has started up. ***
    19/03/2014 15:09:48.354 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    19/03/2014 15:09:50.731 com.apple.SecurityServer[15]: Session 100000 created
    19/03/2014 15:09:50.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    19/03/2014 15:09:50.000 kernel[0]: IO80211Interface::efiNVRAMPublished():
    19/03/2014 15:09:51.030 com.apple.SecurityServer[15]: Entering service
    19/03/2014 15:09:51.000 kernel[0]: IOBluetoothUSBDFU::probe
    19/03/2014 15:09:51.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8213 FirmwareVersion - 0x0207
    19/03/2014 15:09:51.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x0c00 ****
    19/03/2014 15:09:51.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x0c00 ****
    19/03/2014 15:09:51.000 kernel[0]: NVDAStartup: Official
    19/03/2014 15:09:51.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    19/03/2014 15:09:51.000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    19/03/2014 15:09:51.000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    19/03/2014 15:09:51.000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    19/03/2014 15:09:51.000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    19/03/2014 15:09:51.000 kernel[0]: Previous Shutdown Cause: 3
    19/03/2014 15:09:51.000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    19/03/2014 15:09:51.000 kernel[0]: NVDANV50HAL loaded and registered
    19/03/2014 15:09:51.000 kernel[0]: init
    19/03/2014 15:09:51.000 kernel[0]: probe
    19/03/2014 15:09:51.000 kernel[0]: start
    19/03/2014 15:09:51.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x0c00
    19/03/2014 15:09:51.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    19/03/2014 15:09:51.203 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    19/03/2014 15:09:51.217 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    19/03/2014 15:09:51.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    19/03/2014 15:09:51.000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xb480 -- 0x5000 -- 0x0c00 ****
    19/03/2014 15:09:51.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    19/03/2014 15:09:51.000 kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    19/03/2014 15:09:51.721 fseventsd[38]: event logs in /.fseventsd out of sync with volume. destroying old logs. (2914 4 3378)
    19/03/2014 15:09:51.721 fseventsd[38]: log dir: /.fseventsd getting new uuid: CC1570F6-D1D4-42FF-87AC-B3B13D8DF1FE
    19/03/2014 15:09:51.000 kernel[0]: DSMOS has arrived
    19/03/2014 15:09:51.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    19/03/2014 15:09:51.838 configd[18]: dhcp_arp_router: en1 SSID unavailable
    19/03/2014 15:09:51.850 configd[18]: setting hostname to "ben-dodsons-macbook-pro.local"
    19/03/2014 15:09:51.856 configd[18]: network changed.
    19/03/2014 15:09:51.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key MOTP (kSMCKeyNotFound)
    19/03/2014 15:09:51.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key BEMB (kSMCKeyNotFound)
    19/03/2014 15:09:52.000 kernel[0]: VM Swap Subsystem is ON
    19/03/2014 15:09:52.271 hidd[68]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    19/03/2014 15:09:52.272 hidd[68]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    19/03/2014 15:09:52.337 loginwindow[63]: Login Window Application Started
    19/03/2014 15:09:52.385 digest-service[85]: label: default
    19/03/2014 15:09:52.385 digest-service[85]:                   dbname: od:/Local/Default
    19/03/2014 15:09:52.385 digest-service[85]:                   mkey_file: /var/db/krb5kdc/m-key
    19/03/2014 15:09:52.385 digest-service[85]:                   acl_file: /var/db/krb5kdc/kadmind.acl
    19/03/2014 15:09:52.394 awacsd[79]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    19/03/2014 15:09:52.401 mDNSResponder[60]: mDNSResponder mDNSResponder-522.90.2 (Nov 3 2013 18:51:09) starting OSXVers 13
    19/03/2014 15:09:52.403 digest-service[85]: digest-request: uid=0
    19/03/2014 15:09:52.408 awacsd[79]: InnerStore CopyAllZones: no info in Dynamic Store
    19/03/2014 15:09:52.546 com.apple.usbmuxd[45]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    19/03/2014 15:09:52.564 digest-service[85]: digest-request: netr probe 0
    19/03/2014 15:09:52.566 digest-service[85]: digest-request: init request
    19/03/2014 15:09:52.580 digest-service[85]: digest-request: init return domain: BUILTIN server: BEN-DODSONS-MACBOOK-PRO indomain was: <NULL>
    19/03/2014 15:09:52.731 apsd[81]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    19/03/2014 15:09:52.771 mDNSResponder[60]: D2D_IPC: Loaded
    19/03/2014 15:09:52.771 mDNSResponder[60]: D2DInitialize succeeded
    19/03/2014 15:09:52.775 configd[18]: network changed.
    19/03/2014 15:09:52.789 configd[18]: network changed: DNS*
    19/03/2014 15:09:52.793 mDNSResponder[60]:   4: Listening for incoming Unix Domain Socket client requests
    19/03/2014 15:09:52.929 networkd[113]: networkd.113 built Aug 24 2013 22:08:46
    19/03/2014 15:09:52.000 kernel[0]: [BNBMouseDevice::init][80.14] init is complete
    19/03/2014 15:09:53.065 WindowServer[94]: Server is starting up
    19/03/2014 15:09:53.000 kernel[0]: [BNBMouseDevice::handleStart][80.14] returning 1
    19/03/2014 15:09:53.000 kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    19/03/2014 15:09:53.076 WindowServer[94]: Session 256 retained (2 references)
    19/03/2014 15:09:53.076 WindowServer[94]: Session 256 released (1 references)
    19/03/2014 15:09:53.097 WindowServer[94]: Session 256 retained (2 references)
    19/03/2014 15:09:53.100 WindowServer[94]: init_page_flip: page flip mode is on
    19/03/2014 15:09:53.204 mds[59]: (Normal) FMW: FMW 0 0
    19/03/2014 15:09:53.000 kernel[0]: [AppleMultitouchDevice::start] entered
    19/03/2014 15:09:53.410 locationd[65]: NBB-Could not get UDID for stable refill timing, falling back on random
    19/03/2014 15:09:53.503 locationd[65]: Location icon should now be in state 'Inactive'
    19/03/2014 15:09:53.507 locationd[65]: locationd was started after an unclean shutdown
    19/03/2014 15:09:53.653 mds[59]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    19/03/2014 15:09:53.668 mds[59]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    19/03/2014 15:09:53.733 mds[59]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    19/03/2014 15:09:53.766 airportd[83]: airportdProcessDLILEvent: en1 attached (up)
    19/03/2014 15:09:53.000 kernel[0]: createVirtIf(): ifRole = 1
    19/03/2014 15:09:53.000 kernel[0]: in func createVirtualInterface ifRole = 1
    19/03/2014 15:09:53.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    19/03/2014 15:09:53.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    19/03/2014 15:09:53.000 kernel[0]: Created virtif 0xffffff8017f32400 p2p0
    19/03/2014 15:09:53.000 kernel[0]: nspace-handler-set-snapshot-time: 1395241795
    19/03/2014 15:09:53.802 com.apple.mtmd[58]: Set snapshot time: 2014-03-19 15:09:55 +0000 (current time: 2014-03-19 15:09:53 +0000)
    19/03/2014 15:09:53.810 WindowServer[94]: Found 27 modes for display 0x00000000 [24, 3]
    19/03/2014 15:09:53.819 WindowServer[94]: Found 1 modes for display 0x00000000 [1, 0]
    19/03/2014 15:09:53.829 WindowServer[94]: mux_initialize: Couldn't find any matches
    19/03/2014 15:09:53.832 WindowServer[94]: Found 27 modes for display 0x00000000 [24, 3]
    19/03/2014 15:09:53.841 WindowServer[94]: Found 1 modes for display 0x00000000 [1, 0]
    19/03/2014 15:09:53.868 WindowServer[94]: WSMachineUsesNewStyleMirroring: false
    19/03/2014 15:09:53.868 WindowServer[94]: Display 0x04272f40: GL mask 0x1; bounds (0, 0)[1280 x 800], 27 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cbd, S/N 0, Unit 0, Rotation 0
    UUID 0x4aa0e71648884bb263bcdf6519c05a2b
    19/03/2014 15:09:53.868 WindowServer[94]: 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
    19/03/2014 15:09:53.879 WindowServer[94]: WSSetWindowTransform: Singular matrix
    19/03/2014 15:09:53.884 WindowServer[94]: Display 0x04272f40: GL mask 0x1; bounds (0, 0)[1280 x 800], 27 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cbd, S/N 0, Unit 0, Rotation 0
    UUID 0x4aa0e71648884bb263bcdf6519c05a2b
    19/03/2014 15:09:53.884 WindowServer[94]: Display 0x003f003d: GL mask 0x2; bounds (2304, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    19/03/2014 15:09:53.884 WindowServer[94]: CGXPerformInitialDisplayConfiguration
    19/03/2014 15:09:53.884 WindowServer[94]:   Display 0x04272f40: Unit 0; Vendor 0x610 Model 0x9cbd S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1280 x 800], Rotation 0, Resolution 1
    19/03/2014 15:09:53.885 WindowServer[94]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    19/03/2014 15:09:53.944 WindowServer[94]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, accelerator 0x0000418b, unit 0, caps QEX|MIPMAP, vram 256 MB
    19/03/2014 15:09:53.950 WindowServer[94]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    19/03/2014 15:09:53.950 WindowServer[94]: GLCompositor enabled for tile size [256 x 256]
    19/03/2014 15:09:53.950 WindowServer[94]: CGXGLInitMipMap: mip map mode is on
    19/03/2014 15:09:53.961 loginwindow[63]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    19/03/2014 15:09:54.059 WindowServer[94]: Display 0x04272f40: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    19/03/2014 15:09:54.146 systemkeychain[91]: done file: /var/run/systemkeychaincheck.done
    19/03/2014 15:09:54.184 launchctl[134]: com.apple.findmymacmessenger: Already loaded
    19/03/2014 15:09:54.263 loginwindow[63]: Setting the initial value of the magsave brightness level 1
    19/03/2014 15:09:54.321 loginwindow[63]: Login Window Started Security Agent
    19/03/2014 15:09:54.450 SecurityAgent[142]: This is the first run
    19/03/2014 15:09:54.450 SecurityAgent[142]: MacBuddy was run = 0
    19/03/2014 15:09:54.486 WindowServer[94]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7f86cac11c00) - enabling OpenGL
    19/03/2014 15:09:54.498 com.apple.SecurityServer[15]: Session 100004 created
    19/03/2014 15:09:55.000 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    19/03/2014 15:09:55.117 mds[59]: (Normal) Volume: volume:0x7f925306b000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    19/03/2014 15:09:55.230 fseventsd[38]: Logging disabled completely for device:1: /Volumes/Recovery HD
    19/03/2014 15:09:55.000 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    19/03/2014 15:09:55.415 UserEventAgent[136]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    19/03/2014 15:09:55.882 WindowServer[94]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    19/03/2014 15:09:55.931 WindowServer[94]: Display 0x04272f40: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    19/03/2014 15:09:55.950 WindowServer[94]: Display 0x04272f40: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    19/03/2014 15:09:56.000 kernel[0]: en1: 802.11d country code set to 'GB'.
    19/03/2014 15:09:56.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
    19/03/2014 15:09:56.000 kernel[0]: MacAuthEvent en1   Auth result for: cc:33:bb:58:bf:f4  MAC AUTH succeeded
    19/03/2014 15:09:56.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    19/03/2014 15:09:56.000 kernel[0]: AirPort: Link Up on en1
    19/03/2014 15:09:56.000 kernel[0]: en1: BSSID changed to cc:33:bb:58:bf:f4
    19/03/2014 15:09:56.000 kernel[0]: AirPort: RSN handshake complete on en1
    19/03/2014 15:09:56.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    19/03/2014 15:09:58.162 SecurityAgent[142]: User info context values set for Ben
    19/03/2014 15:09:58.392 SecurityAgent[142]: Login Window login proceeding
    19/03/2014 15:09:58.669 loginwindow[63]: Login Window - Returned from Security Agent
    19/03/2014 15:09:58.722 loginwindow[63]: USER_PROCESS: 63 console
    19/03/2014 15:09:58.761 mtmfs[57]: mount succeeded for /Volumes/MobileBackups
    19/03/2014 15:09:58.773 mds[59]: (Normal) Volume: volume:0x7f9253069000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    19/03/2014 15:09:58.773 mds[59]: (Normal) Volume: volume:0x7f9253069000 ********** Created snapshot backup index
    19/03/2014 15:09:58.869 airportd[83]: _doAutoJoin: Already associated to “BTHub4-ZN8J”. Bailing on auto-join.
    19/03/2014 15:09:58.000 kernel[0]: AppleKeyStore:Sending lock change 0
    19/03/2014 15:09:58.954 com.apple.launchd.peruser.501[163]: Background: Aqua: Registering new GUI session.
    19/03/2014 15:09:58.983 com.apple.launchd.peruser.501[163]: (com.divx.agent.postinstall) Unknown key: LimitToSessionType
    19/03/2014 15:09:58.983 com.apple.launchd.peruser.501[163]: (com.robohippo.HippoConnectAgent) Ignored this key: UserName
    19/03/2014 15:09:58.983 com.apple.launchd.peruser.501[163]: (com.robohippo.HippoConnectAgent) Ignored this key: GroupName
    19/03/2014 15:09:58.985 com.apple.launchd.peruser.501[163]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    19/03/2014 15:09:58.987 com.apple.launchd.peruser.501[163]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    19/03/2014 15:09:58.993 launchctl[165]: com.apple.pluginkit.pkd: Already loaded
    19/03/2014 15:09:58.993 launchctl[165]: com.apple.sbd: Already loaded
    19/03/2014 15:09:59.025 configd[18]: network changed: DNS* Proxy
    19/03/2014 15:09:59.026 UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'BTHub4-ZN8J' making interface primary (protected network)
    19/03/2014 15:09:59.028 UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    19/03/2014 15:09:59.029 UserEventAgent[11]: Captive: en1: Probing 'BTHub4-ZN8J'
    19/03/2014 15:09:59.044 configd[18]: network changed: v4(en1!:192.168.1.70) DNS+ Proxy+ SMB
    19/03/2014 15:09:59.049 distnoted[167]: # distnote server agent  absolute time: 12.769442481   civil time: Wed Mar 19 15:09:59 2014   pid: 167 uid: 501  root: no
    19/03/2014 15:09:59.061 distnoted[167]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    19/03/2014 15:09:59.255 WindowServer[94]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    19/03/2014 15:09:59.435 WindowServer[94]: Display 0x04272f40: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    19/03/2014 15:10:00.010 UserEventAgent[166]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    19/03/2014 15:10:00.197 apsd[81]: Unexpected connection from logged out uid 501
    19/03/2014 15:10:00.274 configd[18]: setting hostname to "alasdaidsonsmbp.home"
    19/03/2014 15:10:01.090 ntpd[86]: proto: precision = 1.000 usec
    19/03/2014 15:10:01.095 UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    19/03/2014 15:10:01.000 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=208[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    19/03/2014 15:10:01.362 HippoConnectAgent[207]: Starting HippoConnectAgent...
    19/03/2014 15:10:01.419 HippoConnectAgent[207]: Server started on port 41660
    19/03/2014 15:10:01.629 mDNSResponder[60]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FB05A817B60 ben-dodsons-macbook-pro.local. (AAAA) that's already in the list
    19/03/2014 15:10:01.629 mDNSResponder[60]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FB05A817FF0 1.F.5.8.9.4.E.F.F.F.0.0.5.2.2.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
    19/03/2014 15:10:01.629 mDNSResponder[60]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FB05B010D60 ben-dodsons-macbook-pro.local. (Addr) that's already in the list
    19/03/2014 15:10:01.629 mDNSResponder[60]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FB05B0111F0 70.1.168.192.in-addr.arpa. (PTR) that's already in the list
    19/03/2014 15:10:01.666 xpcproxy[223]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    19/03/2014 15:10:01.841 WindowServer[94]: [cps/setfront] Failed setting the front application to HippoConnectAgent, psn 0x0-0xc00c, securitySessionID=0x186a4, err=-13066
    19/03/2014 15:10:01.992 accountsd[224]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    19/03/2014 15:10:02.055 apsd[81]: Unrecognized leaf certificate
    19/03/2014 15:10:02.222 com.apple.SecurityServer[15]: Session 100009 created
    19/03/2014 15:10:02.339 HippoConnectAgent[207]: Bonjour Service Published: domain(local.) type(_HippoRemote._tcp.) name(Ben Dodson’s MacBook Pro) port(41660)
    19/03/2014 15:10:02.797 sharingd[233]: Starting Up...
    19/03/2014 15:10:03.160 com.apple.SecurityServer[15]: Session 100007 created
    19/03/2014 15:10:03.167 com.apple.SecurityServer[15]: Session 100010 created
    19/03/2014 15:10:03.399 com.apple.time[166]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    19/03/2014 15:10:03.431 SystemUIServer[213]: Cannot find executable for CFBundle 0x7f9b83d858d0 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    19/03/2014 15:10:03.456 SystemUIServer[213]: Cannot find executable for CFBundle 0x7f9b83d867e0 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    19/03/2014 15:10:03.458 SystemUIServer[213]: Cannot find executable for CFBundle 0x7f9b83d531e0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    19/03/2014 15:10:03.755 com.apple.IconServicesAgent[237]: IconServicesAgent launched.
    19/03/2014 15:10:03.895 syncdefaultsd[184]: It took 3.5s to setup APSConnection
    19/03/2014 15:10:04.099 xpcproxy[239]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    19/03/2014 15:10:04.325 SystemUIServer[213]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    19/03/2014 15:10:04.325 SystemUIServer[213]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    19/03/2014 15:10:04.897 WiFiKeychainProxy[191]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    19/03/2014 15:10:04.897 WiFiKeychainProxy[191]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    19/03/2014 15:10:07.048 secd[228]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    19/03/2014 15:10:07.048 secd[228]:  securityd_xpc_dictionary_handler WiFiKeychainProx[191] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    19/03/2014 15:10:07.134 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    19/03/2014 15:10:07.135 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    19/03/2014 15:10:07.135 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    19/03/2014 15:10:07.135 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    19/03/2014 15:10:07.135 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    19/03/2014 15:10:07.135 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    19/03/2014 15:10:07.135 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    19/03/2014 15:10:07.135 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    19/03/2014 15:10:07.135 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    19/03/2014 15:10:07.135 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    19/03/2014 15:10:07.136 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    19/03/2014 15:10:07.136 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    19/03/2014 15:10:07.136 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    19/03/2014 15:10:07.136 com.apple.audio.DriverHelper[249]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    19/03/2014 15:10:07.167 com.apple.audio.DriverHelper[249]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    19/03/2014 15:10:07.167 com.apple.audio.DriverHelper[249]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    19/03/2014 15:10:07.167 com.apple.audio.DriverHelper[249]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    19/03/2014 15:10:07.252 WindowServer[94]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    19/03/2014 15:10:07.711 com.apple.time[166]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    19/03/2014 15:10:07.780 coreaudiod[217]: 2014-03-19 03:10:07.779644 PM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2
    19/03/2014 15:10:08.047 com.apple.time[166]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    19/03/2014 15:10:08.056 awacsd[79]: Exiting
    19/03/2014 15:10:08.162 Mail[214]: Could not create query for expression ((null)) && (kMDItemContentType == 'com.apple.mail.emlx')
    19/03/2014 15:10:08.329 AirPlayUIAgent[252]: 2014-03-19 03:10:08.328941 PM [AirPlayUIAgent] Changed PIN pairing: no
    19/03/2014 15:10:08.332 AirPlayUIAgent[252]: 2014-03-19 03:10:08.331632 PM [AirPlayUIAgent] Changed PIN pairing: no
    19/03/2014 15:10:08.623 com.apple.NotesMigratorService[255]: Joined Aqua audit session
    19/03/2014 15:10:08.661 com.apple.internetaccounts[239]: An instance 0x7f956b62ea10 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7f956b63f920> (
    <NSKeyValueObservance 0x7f956b63fa30: Observer: 0x7f956b633cd0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff87a3b43b, Property: 0x7f956b63f8f0>
    19/03/2014 15:10:10.107 WindowServer[94]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 3.86 seconds (server forcibly re-enabled them after 1.00 seconds)
    19/03/2014 15:10:12.627 parentalcontrolsd[265]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    19/03/2014 15:10:12.984 com.apple.InputMethodKit.UserDictionary[266]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity: Ben~CE23DE35-3F56-5B76-949A-FF79C212E343:UserDictionary
    Using local storage: 1
    19/03/2014 15:10:13.294 com.apple.InputMethodKit.UserDictionary[266]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity: Ben~CE23DE35-3F56-5B76-949A-FF79C212E343:UserDictionary
    Using local storage: 0
    19/03/2014 15:10:13.730 com.apple.dock.extra[247]: <NSXPCConnection: 0x7f8d4ad01140>: received an undecodable message (no exported object to receive message). Dropping message.
    19/03/2014 15:10:22.951 com.apple.SecurityServer[15]: Session 100016 created
    19/03/2014 15:10:23.685 login[273]: USER_PROCESS: 273 ttys000
    19/03/2014 15:10:23.900 com.apple.IconServicesAgent[237]: main Failed to composit image for binding VariantBinding [0x117] flags: 0x8 binding: FileInfoBinding [0x213] - extension: mp3, UTI: public.mp3, fileType: ????.
    19/03/2014 15:10:23.901 quicklookd[246]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x803] flags: 0x8 binding: FileInfoBinding [0x703] - extension: mp3, UTI: public.mp3, fileType: ???? request size:16 scale: 1
    19/03/2014 15:10:24.001 com.apple.IconServicesAgent[237]: main Failed to composit image for binding VariantBinding [0x11b] flags: 0x8 binding: FileInfoBinding [0x215] - extension: m4a, UTI: com.apple.m4a-audio, fileType: ????.
    19/03/2014 15:10:24.002 quicklookd[246]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xa03] flags: 0x8 binding: FileInfoBinding [0x903] - extension: m4a, UTI: com.apple.m4a-audio, fileType: ???? request size:16 scale: 1
    19/03/2014 15:10:27.522 login[273]: DEAD_PROCESS: 273 ttys000
    19/03/2014 15:10:40.840 com.apple.IconServicesAgent[237]: main Failed to composit image for binding VariantBinding [0x24b] flags: 0x8 binding: FileInfoBinding [0x145] - extension: png, UTI: public.png, fileType: PNGf.
    19/03/2014 15:10:40.840 quicklookd[246]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xc03] flags: 0x8 binding: FileInfoBinding [0xb03] - extension: png, UTI: public.png, fileType: PNGf request size:16 scale: 1
    19/03/2014 15:10:40.888 com.apple.IconServicesAgent[237]: main Failed to composit image for binding VariantBinding [0x147] flags: 0x8 binding: FileInfoBinding [0x24d] - extension: caf, UTI: com.apple.coreaudio-format, fileType: ????.
    19/03/2014 15:10:40.889 quicklookd[246]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xe03] flags: 0x8 binding: FileInfoBinding [0xd03] - extension: caf, UTI: com.apple.coreaudio-format, fileType: ???? request size:16 scale: 1
    19/03/2014 15:10:50.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0PS (kSMCKeyNotFound)
    19/03/2014 15:10:50.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0OS (kSMCKeyNotFound)
    19/03/2014 15:11:00.595 Console[294]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    19/03/2014 15:11:52.770 apsd[81]: Failed to send activation record to service com.apple.ManagedClient.enroll

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) at the request of a stranger on a public message board. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    Here's a summary of what you need to do, if you choose to proceed: Copy a line of text from this web page into the window of another application. Wait for the script to run. It usually takes a few minutes. Then paste the results, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, wait, paste again. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin; clear; Fb='%s\n\t(%s)\n'; Fm='\n%s\n\n%s\n'; Fr='\nRAM details\n%s\n'; Fs='\n%s: %s\n'; Fu='user %s%%, system %s%%'; AC="com.autodesk.AutoCAD  com.google.GoogleDrive"; H='^[[:space:]]*((127\.0\.0\.1|::1|fe80::1%lo0)[[:space:]]+local|(255\.){3}255[[:space:]]*broadcast)host[[:space:]]*$'; NS=networksetup; PB="/usr/libexec/PlistBuddy -c Print"; A () { [[ a -eq 0 ]]; }; M () { find -L "$d" -type f | while read f; do file -b "$f" | egrep -lq XML\|exec && echo $f; done; }; AT () { o=`file -b "$1" | egrep -v '^(A.{16}t$|cann)'`; Ps "${1##*/} format"; }; Pc () { o=`grep -v '^ *#' "$2"`; l=`wc -l <<< "$o"`; [[ l -gt 25 ]] && o=`head -n25 <<< "$o"`$'\n'"[$((l-25)) more line(s)]"; Pm "$1"; AT "$1"; }; Pm () { [[ "$o" ]] && o=`sed -E '/^ *$/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/U.+\/Shared\//b'$'\n''s/(\/Users\/)[^/]+/\1USER/g' <<< "$o"` && printf "$Fm" "$1" "$o"; }; Pp () { o=`$PB "$2" | awk -F'= ' \/$3'/{print $2}'`; Pm "$1"; }; Ps () { o=`echo $o`; [[ ! "$o" =~ ^0?$ ]] && printf "$Fs" "$1" "$o"; }; R () { o=; [[ r -eq 0 ]]; }; SP () { system_profiler SP${1}DataType; }; id -G | grep -qw 80; a=$?; A && sudo true; r=$?; t=`date +%s`; clear; { A || echo $'No admin access\n'; A && ! R && echo $'No root access\n'; SP Software | sed -n 's/^ *//;5p;6p;8p'; h=(`SP Hardware | awk '/ Id/{print $3}; /Mem/{print $2}'`); o=$h; Ps "Model"; o=$((h[1]<4?h[1]:0)); Ps "Total RAM (GB)"; o=`SP Memory | sed '1,5d;/[my].*:/d'`; [[ "$o" =~ s:\ [^O]|x([^08]|0[^2]|8[^0]) ]] && printf "$Fr" "$o"; o=`SP Diagnostics | sed '5,6!d'`; [[ "$o" =~ Pass ]] || Pm "POST"; p=`SP Power`; o=`awk '/Cy/{print $NF}' <<< "$p"`; o=$((o>=300?o:0)); Ps "Battery cycles"; o=`sed -n '/Cond.*: [^N]/{s/^.*://p;}' <<< "$p"`; Ps "Battery condition"; for b in FireWire Thunderbolt USB; do o=`SP $b | sed -En '1d;/:$/{s/ *:$//;x;s/\n//g;s/\).*/)/p;};/^ *(V.+ [0N]|Man).+ /{s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};/Apple|Genesy|Intel|SMSC/{s/.//g;h;}'`; Pm $b; done; o=`pmset -g therm | sed 's/^.*C/C/'`; [[ "$o" =~ No\ th|pms ]] && o=; Pm "Thermal conditions"; o=`pmset -g sysload | grep -v :`; [[ "$o" =~ =\ [^GO] ]] || o=; Pm "System load advisory"; o=`nvram boot-args | awk '{$1=""; print}'`; Ps "boot-args"; fdesetup status | grep -q On && o=on || o=; Ps "FileVault"; a=(/ ""); A=(System User); for i in 0 1; do o=`cd ${a[$i]}L*/Lo*/Diag* || continue; for f in *.{cr,h,pa,s}*; do [[ -f "$f" ]] || continue; d=$(stat -f%Sc -t%F "$f"); [[ "$f" =~ h$ ]] && grep -lq "^Thread c" "$f" && f="$f *"; echo "$d ${f%%_2*} ${f##*.}"; done | sort | tail`; Pm "${A[$i]} diagnostics"; done; grep -lq '*$' <<< "$o" && printf $'\n\t* Code injection\n'; o=`syslog -F bsd -k Sender kernel -k Message CReq 'caug|GPU |hfs: Ru|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|timed? ?o|WARN' -k Message Ane 'SMC:' | tail -n25 | awk '/:/{$4=""; $5=""};1'`; Pm "Kernel messages"; o=`df -m / | awk 'NR==2 {print $4}'`; o=$((o<5120?o:0)); Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/eo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( `sar -u 1 10 | sed '$!d'` ); [[ s[4] -lt 85 ]] && o=`printf "$Fu" ${s[1]} ${s[3]}` || o=; Ps "Total CPU usage" && { s=(`ps acrx -o comm,ruid,%cpu | sed '2!d'`); n=$((${#s[*]}-1)); c="${s[*]}"; o=${s[$n]}%; Ps "CPU usage by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; }; s=(`top -R -l1 -n1 -o prt -stats command,uid,prt | sed '$!d'`); n=$((${#s[*]}-1)); s[$n]=${s[$n]%[+-]}; c="${s[*]}"; o=$((s[$n]>=25000?s[$n]:0)); Ps "Mach ports used by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; o=`kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1`; Pm "Loaded extrinsic kernel extensions"; R && o=`sudo launchctl list | awk 'NR>1 && !/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|openld|post[fg]|x)/{print $3}'`; Pm "Extrinsic daemons"; o=`launchctl list | awk 'NR>1 && !/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'`; Pm "Extrinsic agents"; o=`for d in {/,}L*/Lau*; do M; done | egrep -v 'com\.apple\.(CSConfig|server)' | while read f; do ID=$($PB\ :Label "$f") || ID="No job label"; printf "$Fb" "$f" "$ID"; done`; Pm "launchd items"; o=`for d in /{S*/,}L*/StartupItems; do M; done`; Pm "Startup items"; sys=`pkgutil --regexp --only-files --files com.apple.pkg.* | sort | uniq | sed 's:^:/:'`; b=`sed -E '/^.+Lib.+\/Contents\/Info.plist$/!d;s/\/Info.plist$//;/Contents\/./d' <<< "$sys"`; l=`egrep '^/usr/lib/.+dylib$' <<< "$sys"`; [[ "$b" && "$l" ]] && { o=`find -L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo}* -type d -name Contents -prune | grep -Fv "$b" | while read d; do test -f "$d/Info.plist" || continue; ID=$($PB\ :CFBundleIdentifier "$_") || ID="No bundle ID"; printf "$Fb" "${d%/Contents}" "$ID"; done`; Pm "Extrinsic loadable bundles"; o=`find /usr/lib -type f -name *.dylib | grep -Fv "$l"`; Pm "Extrinsic shared libraries"; :; } || echo $'\nReceipts missing'; o=`for e in INSERT_LIBRARIES LIBRARY_PATH; do launchctl getenv DYLD_$e; done`; Pm "Inserted dylibs"; o=`find -L {,/u*/lo*}/e*/periodic -type f -mtime -10d`; Pm "Modified periodic scripts"; o=`scutil --proxy | grep Prox`; Pm "Proxies"; o=`scutil --dns | awk '/r\[0\] /{if ($NF !~ /^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./) print $NF; exit}'`; i=`route -n get default | awk '/e:/{print $2}'`; I=`$NS -listnetworkserviceorder | sed -En '/ '$i'\)$/{x;s/^\(.+\) //p;q;};x'`; n=`$NS -getdnsservers "$I" | awk '!/^T/{printf "not "; exit}'`; Ps "DNS (${n}from DHCP)"; o=`$NS -getinfo "$I" | awk '/k:/{if ($3 !~ "(255\.){3}0") print $3}'`; Ps "Netmask"; R && o=`sudo profiles -P | grep : | wc -l`; Ps "Profiles"; f=auto_master; [[ `md5 -q /etc/$f` =~ ^b166 ]] || Pc $f /etc/$f; for f in fstab sysctl.conf crontab launchd.conf; do Pc $f /etc/$f; done; f=/etc/hosts; Pc "hosts" <(egrep -v "$H" $f ); AT $f; Pc "User launchd" ~/.launchd*; R && Pc "Root crontab" <(sudo crontab -l); Pc "User crontab" <(crontab -l); R && o=`sudo defaults read com.apple.loginwindow LoginHook`; Pm "Login hook"; LD="$(`find /S*/*/F* -type f -name lsregister | head -n1` -dump)"; o=`for ID in $AC; do [[ "$LD" =~ $ID ]] && echo $ID; done`; Pm "Application check"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed -E 's/(\..*$|-[1-9])//g'; o=`find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l`; Ps "Restricted user files"; cd; o=`SP Fonts | egrep 'id: N|te: Y' | wc -l`; Ps "Font problems"; o=`find L*/{Con,Pref}* -type f ! -size 0 -name *.plist | while read f; do plutil -s "$f" >&- || echo $f; done`; Pm "Bad plists"; d=(Desktop L*/Keyc*); n=(20 7); for i in 0 1; do o=`find "${d[$i]}" -type f -maxdepth 1 | wc -l`; o=$((o<=n[$i]?0:o)); Ps "${d[$i]##*/} file count"; done; o=; [[ UID -eq 0 ]] && o=root; Ps "UID"; o=$((`date +%s`-t)); Ps "Elapsed time (s)"; } 2>/dev/null | pbcopy; exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
    8. If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    9. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    10. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report the results. No harm will be done.
    11. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • MacBook Air keeps playing the restart sound every few hours

    So my Macbook Air keeps playing the restart sound every few hours. It's that "Dummmmmmmm" sound when you first boot up the computer. Things I noticed: when the sound played and I quickly went to open my laptop it was like nothing has happened - I had my Google Chrome window from the previous session open, everything was just normal as if I had just opened the laptop to resume using it. This has only happened when the Mac is folded up. Today it just happened at approximately 10:00 and here's the log:
    23/02/2014 10:00:04.000 am bootlog[0]: BOOT_TIME 1393167604 0
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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".
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am kernel[0]: Longterm timer threshold: 1000 ms
    23/02/2014 10:00:06.000 am kernel[0]: PMAP: PCID enabled
    23/02/2014 10:00:06.000 am kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    23/02/2014 10:00:06.000 am kernel[0]: Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    23/02/2014 10:00:06.000 am kernel[0]: vm_page_bootstrap: 901222 free pages and 139162 wired pages
    23/02/2014 10:00:06.000 am kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    23/02/2014 10:00:06.000 am kernel[0]: zone leak detection enabled
    23/02/2014 10:00:06.000 am kernel[0]: "vm_compressor_mode" is 4
    23/02/2014 10:00:06.000 am kernel[0]: standard timeslicing quantum is 10000 us
    23/02/2014 10:00:06.000 am kernel[0]: standard background quantum is 2500 us
    23/02/2014 10:00:06.000 am kernel[0]: mig_table_max_displ = 74
    23/02/2014 10:00:06.000 am kernel[0]: TSC Deadline Timer supported and enabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    23/02/2014 10:00:06.000 am kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    23/02/2014 10:00:06.000 am kernel[0]: calling mpo_policy_init for TMSafetyNet
    23/02/2014 10:00:06.000 am kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    23/02/2014 10:00:06.000 am kernel[0]: calling mpo_policy_init for Sandbox
    23/02/2014 10:00:06.000 am kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    23/02/2014 10:00:06.000 am kernel[0]: calling mpo_policy_init for Quarantine
    23/02/2014 10:00:06.000 am kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    23/02/2014 10:00:06.000 am kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    23/02/2014 10:00:06.000 am kernel[0]: The Regents of the University of California. All rights reserved.
    23/02/2014 10:00:06.000 am kernel[0]: MAC Framework successfully initialized
    23/02/2014 10:00:06.000 am kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    23/02/2014 10:00:06.000 am kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    23/02/2014 10:00:06.000 am kernel[0]: IOAPIC: Version 0x20 Vectors 64:103
    23/02/2014 10:00:06.000 am kernel[0]: ACPI: sleep states S0 S3 S4 S5
    23/02/2014 10:00:06.000 am kernel[0]: pci (build 22:16:29 Sep 19 2013), flags 0x63408, pfm64 (39 cpu) 0x7f80000000, 0x80000000
    23/02/2014 10:00:06.000 am kernel[0]: Sleep failure code 0x00000000 0x1f006500
    23/02/2014 10:00:06.000 am kernel[0]: [ PCI configuration begin ]
    23/02/2014 10:00:06.000 am kernel[0]: console relocated to 0x7f90000000
    23/02/2014 10:00:06.000 am kernel[0]: [ PCI configuration end, bridges 12, devices 14 ]
    23/02/2014 10:00:06.000 am kernel[0]: AppleIntelLpssSpiController::_notificationPublishedHandler: AppleIntelLpssDmac did show up, fDmacService 0xffffff8022796400
    23/02/2014 10:00:06.000 am kernel[0]: AppleIntelLpssSpiController::_notificationPublishedHandler: AppleIntelLpssGspi channel# 1 did show up, gspi 0xffffff8081c53000
    23/02/2014 10:00:06.000 am kernel[0]: AppleHSSPIController::start Start Succeeded
    23/02/2014 10:00:06.000 am kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    23/02/2014 10:00:06.000 am kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    23/02/2014 10:00:06.000 am kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    23/02/2014 10:00:06.000 am kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    23/02/2014 10:00:06.000 am kernel[0]: rooting via boot-uuid from /chosen: D4475447-00EF-3DF8-B55C-AC39F0146EC8
    23/02/2014 10:00:06.000 am 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>
    23/02/2014 10:00:06.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    23/02/2014 10:00:06.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    23/02/2014 10:00:06.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    23/02/2014 10:00:06.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    23/02/2014 10:00:06.000 am kernel[0]: AppleHSSPIController::HandleMessage Device Wake by Host
    23/02/2014 10:00:06.000 am kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP06@1C,5/IOPCI2PCIBridg e/SSD0@0/AppleAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageD evice/IOBlockStorageDriver/APPLE SSD SD0128F Media/IOGUIDPartitionScheme/未命名@2
    23/02/2014 10:00:06.000 am kernel[0]: BSD root: disk0s2, major 1, minor 2
    23/02/2014 10:00:06.000 am kernel[0]: jnl: b(1, 2): replay_journal: from: 12412416 to: 14165504 (joffset 0x384000)
    23/02/2014 10:00:06.000 am kernel[0]: srom rev:11
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.895219: ChangeVCO => vco:960, xtalF:40, frac: 98, ndivMode: 3, ndivint: 24
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.895253: Data written into the PLL_CNTRL_ADDR2: 00000c31
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.895327: Data written into the PLL_CNTRL_ADDR3 (Fractional): 0000100e
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.908490: BTCOEXIST off
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.909092: BRCM tunables:
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.909117:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    23/02/2014 10:00:06.000 am kernel[0]: ARPT: 0.910906: wl0: Broadcom BCM43a0, vendorID[0x14e4] BAR0[0xb0600004]
    23/02/2014 10:00:06.000 am kernel[0]: 6.30.223.154 (r420397)
    23/02/2014 10:00:06.000 am kernel[0]: Apple Internal Keyboard / Trackpad::start Start Succeeded
    23/02/2014 10:00:06.000 am kernel[0]: [AppleMultitouchDevice::start] entered
    23/02/2014 10:00:06.000 am kernel[0]: jnl: b(1, 2): journal replay done.
    23/02/2014 10:00:06.000 am kernel[0]: hfs: mounted KeithDrive on device root_device
    23/02/2014 10:00:06.000 am kernel[0]: XCPM: registered
    23/02/2014 10:00:06.000 am kernel[0]: hfs: Removed 40 orphaned / unlinked files and 29 directories
    23/02/2014 10:00:06.000 am kernel[0]: USBMSC Identifier (non-unique): 00000000AP05 0x5ac 0x8406 0x5, 3
    23/02/2014 10:00:06.000 am kernel[0]: IOThunderboltSwitch<0xffffff80227db600>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    23/02/2014 10:00:06.000 am kernel[0]: IOThunderboltSwitch<0xffffff80227db600>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    23/02/2014 10:00:04.452 am com.apple.launchd[1]: *** launchd[1] has started up. ***
    23/02/2014 10:00:04.452 am com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    23/02/2014 10:00:06.189 am com.apple.SecurityServer[14]: Session 100000 created
    23/02/2014 10:00:06.000 am kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    23/02/2014 10:00:06.000 am kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    23/02/2014 10:00:07.428 am com.apple.SecurityServer[14]: Entering service
    23/02/2014 10:00:07.000 am kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    23/02/2014 10:00:07.461 am configd[19]: dhcp_arp_router: en0 SSID unavailable
    23/02/2014 10:00:07.502 am UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    23/02/2014 10:00:07.518 am UserEventAgent[11]: Captive: CNPluginHandler en0: Inactive
    23/02/2014 10:00:07.000 am kernel[0]: Previous Shutdown Cause: -128
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::init
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::probe
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::start
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::start: fS2DeviceRegs=0xffffff8096d25000 (len=65536)
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::start: fS2DeviceMemory=0xffffff8097617000 (len=268435456)
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::start: fISPRegsMem=0xffffff80236d6080 (len=1048576)
    23/02/2014 10:00:07.000 am kernel[0]: virtual bool AppleCamIn::start(IOService *): about to configure DDR
    23/02/2014 10:00:07.000 am kernel[0]: IOBluetoothUSBDFU::probe
    23/02/2014 10:00:07.000 am kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828F FirmwareVersion - 0x0078
    23/02/2014 10:00:07.000 am kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xbc00 ****
    23/02/2014 10:00:07.000 am kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xbc00 ****
    23/02/2014 10:00:07.000 am kernel[0]: init
    23/02/2014 10:00:07.000 am kernel[0]: probe
    23/02/2014 10:00:07.000 am kernel[0]: start
    23/02/2014 10:00:07.000 am kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xbc00
    23/02/2014 10:00:07.000 am kernel[0]: [IOBluetoothHCIController][start] -- completed
    23/02/2014 10:00:07.000 am kernel[0]: hmm.. mismatch sizes: 3100 vs 20
    23/02/2014 10:00:07.000 am kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    23/02/2014 10:00:07.000 am kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x6ec0 -- 0xf000 -- 0xbc00 ****
    23/02/2014 10:00:07.000 am kernel[0]: DSMOS has arrived
    23/02/2014 10:00:07.000 am kernel[0]: IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
    23/02/2014 10:00:07.000 am kernel[0]: IOPPF: XCPM mode
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: save_ddr_phy_regs: saving 127 DDR PHY shmoo-calibrated registers
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path_object = 0xffffff80223a84a0
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path = IOACPIPlane:/_SB/PCI0@0/RP02@1c0001/CMRA@0
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_device_entry = 0xffffff8022717700
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIDevice = 0xffffff8022717700
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIPowerEnabled = 1
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::start - link control offset in PCI bridge = 0x50
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::start - pmcsr offset in PCI bridge = 0xa4
    23/02/2014 10:00:07.000 am kernel[0]: AppleCamIn::power_off_hardware
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    23/02/2014 10:00:07.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:07.920 am configd[19]: network changed.
    23/02/2014 10:00:07.921 am configd[19]: setting hostname to "KeithdeMacBook-Air.local"
    23/02/2014 10:00:07.000 am kernel[0]: NTFS driver 3.11 [Flags: R/W].
    23/02/2014 10:00:07.000 am kernel[0]: NTFS volume name BOOTCAMP, version 3.1.
    23/02/2014 10:00:08.021 am fseventsd[47]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (962 4 1670)
    23/02/2014 10:00:08.021 am fseventsd[47]: log dir: /.fseventsd getting new uuid: E03FF15F-787F-471A-B187-95824E52D0EF
    23/02/2014 10:00:08.000 am kernel[0]: AppleCamIn::initForPM
    23/02/2014 10:00:08.000 am kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    23/02/2014 10:00:08.000 am kernel[0]: en1: promiscuous mode enable succeeded
    23/02/2014 10:00:08.000 am kernel[0]: VM Swap Subsystem is ON
    23/02/2014 10:00:08.839 am hidd[78]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    23/02/2014 10:00:08.840 am hidd[78]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    23/02/2014 10:00:08.000 am kernel[0]: Unrecognized reportID 0x02
    23/02/2014 10:00:08.948 am loginwindow[73]: Login Window Application Started
    23/02/2014 10:00:08.948 am awacsd[87]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    23/02/2014 10:00:08.960 am awacsd[87]: InnerStore CopyAllZones: no info in Dynamic Store
    23/02/2014 10:00:08.966 am digest-service[92]: label: default
    23/02/2014 10:00:08.967 am digest-service[92]:           dbname: od:/Local/Default
    23/02/2014 10:00:08.967 am digest-service[92]:           mkey_file: /var/db/krb5kdc/m-key
    23/02/2014 10:00:08.967 am digest-service[92]:           acl_file: /var/db/krb5kdc/kadmind.acl
    23/02/2014 10:00:08.980 am mDNSResponder[70]: mDNSResponder mDNSResponder-522.1.11 (Aug 24 2013 23:49:34) starting OSXVers 13
    23/02/2014 10:00:08.988 am digest-service[92]: digest-request: uid=0
    23/02/2014 10:00:09.001 am com.apple.usbmuxd[55]: usbmuxd-327.4 on Jan  7 2014 at 01:25:07, running 64 bit
    23/02/2014 10:00:09.042 am apsd[89]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    23/02/2014 10:00:09.044 am digest-service[92]: digest-request: netr probe 0
    23/02/2014 10:00:09.045 am digest-service[92]: digest-request: init request
    23/02/2014 10:00:09.055 am digest-service[92]: digest-request: init return domain: BUILTIN server: KEITHDEMACBOOK-AIR indomain was: <NULL>
    23/02/2014 10:00:09.107 am configd[19]: network changed.
    23/02/2014 10:00:09.109 am configd[19]: network changed: DNS*
    23/02/2014 10:00:09.114 am mDNSResponder[70]: D2D_IPC: Loaded
    23/02/2014 10:00:09.114 am mDNSResponder[70]: D2DInitialize succeeded
    23/02/2014 10:00:09.119 am mDNSResponder[70]:   4: Listening for incoming Unix Domain Socket client requests
    23/02/2014 10:00:09.164 am networkd[115]: networkd.115 built Aug 24 2013 22:08:46
    23/02/2014 10:00:09.179 am WindowServer[100]: Server is starting up
    23/02/2014 10:00:09.183 am WindowServer[100]: Session 256 retained (2 references)
    23/02/2014 10:00:09.183 am WindowServer[100]: Session 256 released (1 references)
    23/02/2014 10:00:09.187 am mds[69]: (Normal) FMW: FMW 0 0
    23/02/2014 10:00:09.203 am mds[69]: (Normal) Volume: volume:0x7fc551812800 ********** Bootstrapped Creating a default store:1 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/BOOTCAMP
    23/02/2014 10:00:09.212 am WindowServer[100]: Session 256 retained (2 references)
    23/02/2014 10:00:09.216 am WindowServer[100]: init_page_flip: page flip mode is on
    23/02/2014 10:00:09.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:09.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:09.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:09.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    23/02/2014 10:00:09.305 am WindowServer[100]: Found 17 modes for display 0x00000000 [9, 8]
    23/02/2014 10:00:09.309 am locationd[75]: NBB-Could not get UDID for stable refill timing, falling back on random
    23/02/2014 10:00:09.312 am WindowServer[100]: Found 1 modes for display 0x00000000 [1, 0]
    23/02/2014 10:00:09.316 am WindowServer[100]: Found 1 modes for display 0x00000000 [1, 0]
    23/02/2014 10:00:09.321 am WindowServer[100]: mux_initialize: Couldn't find any matches
    23/02/2014 10:00:09.323 am WindowServer[100]: Found 17 modes for display 0x00000000 [9, 8]
    23/02/2014 10:00:09.328 am WindowServer[100]: Found 1 modes for display 0x00000000 [1, 0]
    23/02/2014 10:00:09.329 am WindowServer[100]: Found 1 modes for display 0x00000000 [1, 0]
    23/02/2014 10:00:09.361 am locationd[75]: Location icon should now be in state 'Inactive'
    23/02/2014 10:00:09.365 am WindowServer[100]: WSMachineUsesNewStyleMirroring: true
    23/02/2014 10:00:09.367 am WindowServer[100]: Display 0x04273c00: GL mask 0x1; bounds (0, 0)[1440 x 900], 17 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cf0, S/N 0, Unit 0, Rotation 0
    UUID 0x933c106c08bc09aaf750c2a74a119def
    23/02/2014 10:00:09.368 am WindowServer[100]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[1920 x 1200], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    23/02/2014 10:00:09.368 am WindowServer[100]: 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
    23/02/2014 10:00:09.368 am WindowServer[100]: 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
    23/02/2014 10:00:09.376 am locationd[75]: locationd was started after an unclean shutdown
    23/02/2014 10:00:09.390 am WindowServer[100]: WSSetWindowTransform: Singular matrix
    23/02/2014 10:00:09.390 am WindowServer[100]: WSSetWindowTransform: Singular matrix
    23/02/2014 10:00:09.407 am WindowServer[100]: Display 0x04273c00: GL mask 0x1; bounds (0, 0)[1440 x 900], 17 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cf0, S/N 0, Unit 0, Rotation 0
    UUID 0x933c106c08bc09aaf750c2a74a119def
    23/02/2014 10:00:09.407 am WindowServer[100]: Display 0x003f003f: GL mask 0x8; bounds (2464, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    23/02/2014 10:00:09.407 am WindowServer[100]: Display 0x003f003e: GL mask 0x4; bounds (2465, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    23/02/2014 10:00:09.407 am WindowServer[100]: Display 0x003f003d: GL mask 0x2; bounds (2466, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    23/02/2014 10:00:09.408 am WindowServer[100]: CGXPerformInitialDisplayConfiguration
    23/02/2014 10:00:09.408 am WindowServer[100]:   Display 0x04273c00: Unit 0; Vendor 0x610 Model 0x9cf0 S/N 0 Dimensions 11.42 x 7.09; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 1
    23/02/2014 10:00:09.408 am WindowServer[100]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    23/02/2014 10:00:09.408 am WindowServer[100]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    23/02/2014 10:00:09.408 am WindowServer[100]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    23/02/2014 10:00:09.422 am airportd[91]: airportdProcessDLILEvent: en0 attached (up)
    23/02/2014 10:00:09.000 am kernel[0]: AirPort_Brcm4360_P2PInterface::init name <p2p0> role 1
    23/02/2014 10:00:09.000 am kernel[0]: AirPort_Brcm4360_P2PInterface::init() <p2p> role 1
    23/02/2014 10:00:09.435 am WindowServer[100]: GLCompositor: GL renderer id 0x01024500, GL mask 0x0000000f, accelerator 0x00004593, unit 0, caps QEX|MIPMAP, vram 1024 MB
    23/02/2014 10:00:09.436 am WindowServer[100]: GLCompositor: GL renderer id 0x01024500, GL mask 0x0000000f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    23/02/2014 10:00:09.436 am WindowServer[100]: GLCompositor enabled for tile size [256 x 256]
    23/02/2014 10:00:09.436 am WindowServer[100]: CGXGLInitMipMap: mip map mode is on
    23/02/2014 10:00:09.447 am loginwindow[73]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    23/02/2014 10:00:09.469 am systemkeychain[96]: done file: /var/run/systemkeychaincheck.done
    23/02/2014 10:00:09.579 am WindowServer[100]: Display 0x04273c00: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    23/02/2014 10:00:09.635 am launchctl[125]: com.apple.findmymacmessenger: Already loaded
    23/02/2014 10:00:09.654 am com.apple.SecurityServer[14]: Session 100004 created
    23/02/2014 10:00:09.721 am loginwindow[73]: Setting the initial value of the magsave brightness level 2
    23/02/2014 10:00:09.727 am UserEventAgent[127]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    23/02/2014 10:00:09.762 am loginwindow[73]: Login Window Started Security Agent
    23/02/2014 10:00:09.855 am SecurityAgent[134]: This is the first run
    23/02/2014 10:00:09.856 am SecurityAgent[134]: MacBuddy was run = 0
    23/02/2014 10:00:09.877 am SecurityAgent[134]: User info context values set for keithy
    23/02/2014 10:00:09.878 am WindowServer[100]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04273c00 device: 0x7f8b61e10da0  isBackBuffered: 1 numComp: 3 numDisp: 3
    23/02/2014 10:00:09.878 am WindowServer[100]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7f8b61e10da0) - enabling OpenGL
    23/02/2014 10:00:10.000 am kernel[0]: hfs: mounted Recovery HD on device disk0s3
    23/02/2014 10:00:10.123 am mds[69]: (Normal) Volume: volume:0x7fc551826000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    23/02/2014 10:00:10.208 am fseventsd[47]: Logging disabled completely for device:1: /Volumes/Recovery HD
    23/02/2014 10:00:10.000 am kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    23/02/2014 10:00:10.276 am loginwindow[73]: Login Window - Returned from Security Agent
    23/02/2014 10:00:10.313 am loginwindow[73]: USER_PROCESS: 73 console
    23/02/2014 10:00:10.000 am kernel[0]: AppleKeyStore:Sending lock change 0
    23/02/2014 10:00:10.457 am com.apple.launchd.peruser.501[146]: Background: Aqua: Registering new GUI session.
    23/02/2014 10:00:10.475 am com.apple.launchd.peruser.501[146]: (com.spotify.webhelper) Unknown key: SpotifyPath
    23/02/2014 10:00:10.476 am com.apple.launchd.peruser.501[146]: (com.apple.cmfsyncagent) Ignored this key: UserName
    23/02/2014 10:00:10.476 am com.apple.launchd.peruser.501[146]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    23/02/2014 10:00:10.477 am com.apple.launchd.peruser.501[146]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    23/02/2014 10:00:10.481 am launchctl[148]: com.apple.pluginkit.pkd: Already loaded
    23/02/2014 10:00:10.481 am launchctl[148]: com.apple.sbd: Already loaded
    23/02/2014 10:00:10.493 am distnoted[150]: # distnote server agent  absolute time: 7.309113255   civil time: Sun Feb 23 10:00:10 2014   pid: 150 uid: 501  root: no
    23/02/2014 10:00:10.000 am kernel[0]: en0: 802.11d country code set to 'US'.
    23/02/2014 10:00:10.000 am kernel[0]: en0: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 144 149 153 157 161 165
    23/02/2014 10:00:10.861 am WindowServer[100]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    23/02/2014 10:00:11.094 am SystemUIServer[165]: Cannot find executable for CFBundle 0x7fa8e8d917d0 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    23/02/2014 10:00:11.098 am sharingd[177]: Starting Up...
    23/02/2014 10:00:11.171 am SystemUIServer[165]: Cannot find executable for CFBundle 0x7fa8e8d97ce0 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    23/02/2014 10:00:11.173 am SystemUIServer[165]: Cannot find executable for CFBundle 0x7fa8e8d709e0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    23/02/2014 10:00:11.187 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    23/02/2014 10:00:11.285 am WindowServer[100]: Display 0x04273c00: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    23/02/2014 10:00:11.390 am WindowServer[100]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    23/02/2014 10:00:11.535 am apsd[89]: Unexpected connection from logged out uid 501
    23/02/2014 10:00:11.544 am com.apple.SecurityServer[14]: Session 100005 created
    23/02/2014 10:00:11.631 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    23/02/2014 10:00:11.632 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    23/02/2014 10:00:11.632 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    23/02/2014 10:00:11.632 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    23/02/2014 10:00:11.632 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    23/02/2014 10:00:11.632 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    23/02/2014 10:00:11.632 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    23/02/2014 10:00:11.633 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    23/02/2014 10:00:11.633 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    23/02/2014 10:00:11.633 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    23/02/2014 10:00:11.633 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    23/02/2014 10:00:11.633 am com.apple.audio.DriverHelper[182]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    23/02/2014 10:00:11.662 am com.apple.audio.DriverHelper[182]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    23/02/2014 10:00:11.662 am com.apple.audio.DriverHelper[182]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    23/02/2014 10:00:11.662 am com.apple.audio.DriverHelper[182]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    23/02/2014 10:00:11.860 am SystemUIServer[165]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    23/02/2014 10:00:11.860 am SystemUIServer[165]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    23/02/2014 10:00:12.017 am xpcproxy[195]: assertion failed: 13B42: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    23/02/2014 10:00:12.037 am com.apple.IconServicesAgent[194]: IconServicesAgent launched.
    23/02/2014 10:00:12.183 am xpcproxy[198]: assertion failed: 13B42: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    23/02/2014 10:00:12.495 am accountsd[199]: assertion failed: 13B42: liblaunch.dylib + 25164 [FCBF0A02-0B06-3F97-9248-5062A9DEB32C]: 0x25
    23/02/2014 10:00:12.000 am kernel[0]: ARPT: 9.541431: MacAuthEvent en0   Auth result for: 00:1d:d3:c3:b5:80  MAC AUTH succeeded
    23/02/2014 10:00:12.729 am accountsd[199]: /SourceCache/Accounts/Accounts-336.9/ACDAuthenticationPluginManager.m - -[ACDAuthenticationPluginManager credentialForAccount:client:handler:] - 230 - The authentication plugin for account "[email protected]" (DA49B773-680F-41DA-BA31-10A500BCD013) could not be found!
    23/02/2014 10:00:12.730 am accountsd[199]: /SourceCache/Accounts/Accounts-336.9/ACDAccountStore.m - __62-[ACDAccountStore credentialForAccountWithIdentifier:handler:]_block_invoke389 - 857 - No plugin provides credentials for account [email protected]. Falling back to legacy behavior.
    23/02/2014 10:00:12.000 am kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    23/02/2014 10:00:12.000 am kernel[0]: AirPort: Link Up on en0
    23/02/2014 10:00:12.000 am kernel[0]: en0: BSSID changed to 00:1d:d3:c3:b5:80
    23/02/2014 10:00:13.000 am kernel[0]: AirPort: RSN handshake complete on en0
    23/02/2014 10:00:13.403 am com.apple.SecurityServer[14]: Session 100009 created
    23/02/2014 10:00:13.801 am WindowServer[100]: Display 0x04273c00: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    23/02/2014 10:00:14.026 am UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en0: SSID 'GetALife' making interface primary (protected network)
    23/02/2014 10:00:14.027 am configd[19]: network changed: DNS* Proxy
    23/02/2014 10:00:14.027 am UserEventAgent[11]: Captive: CNPluginHandler en0: Evaluating
    23/02/2014 10:00:14.028 am UserEventAgent[11]: Captive: en0: Probing 'GetALife'
    23/02/2014 10:00:14.035 am configd[19]: network changed: v6(en0!:2601:b:9400:3fc:fd37:1539:24f1:3341) DNS+ Proxy+ SMB
    23/02/2014 10:00:14.225 am WindowServer[100]: Display 0x04273c00: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    23/02/2014 10:00:14.251 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x311] flags: 0x8 binding: FileInfoBinding [0x21f] - extension: mov, UTI: com.apple.quicktime-movie, fileType: MooV.
    23/02/2014 10:00:14.252 am quicklookd[209]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: mov, UTI: com.apple.quicktime-movie, fileType: MooV request size:16 scale: 1
    23/02/2014 10:00:14.267 am talagent[164]: CGSBindSurface: Invalid window 0x1d
    23/02/2014 10:00:14.268 am WindowServer[100]: _CGXWindowRightsRelinquish: Invalid window 0x1d
    23/02/2014 10:00:14.269 am talagent[164]: CGSConnectionRelinquishWindowRights(cid, result, reservedRights): CGError 1001 on line 875
    23/02/2014 10:00:14.269 am talagent[164]: CGSBindSurface: Invalid window 0x1a
    23/02/2014 10:00:14.270 am WindowServer[100]: _CGXWindowRightsRelinquish: Invalid window 0x1a
    23/02/2014 10:00:14.270 am talagent[164]: CGSConnectionRelinquishWindowRights(cid, result, reservedRights): CGError 1001 on line 875
    23/02/2014 10:00:14.270 am WindowServer[100]: CGXReleaseWindowList: Invalid window 29 (index 0/2)
    23/02/2014 10:00:14.270 am WindowServer[100]: CGXReleaseWindowList: Invalid window 26 (index 1/2)
    23/02/2014 10:00:14.410 am UserEventAgent[149]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    23/02/2014 10:00:14.417 am com.apple.dock.extra[201]: <NSXPCConnection: 0x7fd693e12a50>: received an undecodable message (no exported object to receive message). Dropping message.
    23/02/2014 10:00:14.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    23/02/2014 10:00:14.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=216[ksadmin] final status 0x0, allow (remove VALID)ing page
    23/02/2014 10:00:14.592 am com.apple.time[149]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    23/02/2014 10:00:14.714 am com.apple.SecurityServer[14]: Session 100011 created
    23/02/2014 10:00:14.898 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    23/02/2014 10:00:14.924 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    23/02/2014 10:00:14.925 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    23/02/2014 10:00:14.985 am com.apple.time[149]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    23/02/2014 10:00:15.058 am gamed[189]: CKSoftwareMap: Registering with Daemon
    23/02/2014 10:00:15.064 am com.apple.NotesMigratorService[224]: Joined Aqua audit session
    23/02/2014 10:00:15.132 am com.apple.internetaccounts[198]: An instance 0x7fa799f9cf10 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fa799f9d070> (
    <NSKeyValueObservance 0x7fa799f9d000: Observer: 0x7fa799f5b600, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8695b44b, Property: 0x7fa799eb92b0>
    23/02/2014 10:00:15.271 am WindowServer[100]: disable_update_timeout: UI updates were forcibly disabled by application "talagent" for over 1.00 seconds. Server has re-enabled them.
    23/02/2014 10:00:15.652 am configd[19]: network changed: v6(en0!:2601:b:9400:3fc:bae8:56ff:fe0c:3ac2) DNS Proxy SMB
    23/02/2014 10:00:15.684 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    23/02/2014 10:00:15.876 am configd[19]: network changed: v6(en0:2601:b:9400:3fc:bae8:56ff:fe0c:3ac2) DNS! Proxy SMB
    23/02/2014 10:00:16.056 am Spotify[162]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:16.085 am airportd[91]: _doAutoJoin: Already associated to “GetALife”. Bailing on auto-join.
    23/02/2014 10:00:16.386 am Spotify[162]: Mac OS version: 10.9
    23/02/2014 10:00:16.612 am System Preferences[158]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    23/02/2014 10:00:16.641 am WindowServer[100]: disable_update_timeout: UI updates were forcibly disabled by application "System Preferences" for over 1.00 seconds. Server has re-enabled them.
    23/02/2014 10:00:17.049 am Spotify Helper EH[228]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:17.108 am WindowServer[100]: common_reenable_update: UI updates were finally reenabled by application "System Preferences" after 1.47 seconds (server forcibly re-enabled them after 1.00 seconds)
    23/02/2014 10:00:17.274 am Preview[159]: It does not make sense to draw an image when [NSGraphicsContext currentContext] is nil.  This is a programming error. Break on void _NSWarnForDrawingImageWithNoCurrentContext() to debug.  This will be logged only once.  This may break in the future.
    23/02/2014 10:00:17.282 am Google Chrome Helper[229]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:17.282 am Google Chrome Helper[229]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:17.301 am Google Chrome Helper[229]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:17.363 am WindowServer[100]: disable_update_timeout: UI updates were forcibly disabled by application "µTorrent" for over 1.00 seconds. Server has re-enabled them.
    23/02/2014 10:00:17.491 am WindowServer[100]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    23/02/2014 10:00:17.560 am com.apple.Preview.TrustedBookmarksService[230]: Failure to de-serialize bookmark data file.
    23/02/2014 10:00:17.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=232[ksadmin] final status 0x0, allow (remove VALID)ing page
    23/02/2014 10:00:17.876 am WindowServer[100]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 1.39 seconds (server forcibly re-enabled them after 1.00 seconds)
    23/02/2014 10:00:17.908 am Preview[159]:
    ***** AESendMessage [async] returned: -1712 [loc:0]
    23/02/2014 10:00:17.969 am uTorrent[161]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    23/02/2014 10:00:17.975 am uTorrent[161]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    23/02/2014 10:00:18.212 am Google Chrome Helper[233]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:18.212 am Google Chrome Helper[233]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:18.230 am Google Chrome Helper[233]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:18.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=247[GoogleSoftwareUp] final status 0x0, allow (remove VALID)ing page
    23/02/2014 10:00:18.474 am com.apple.launchd.peruser.501[146]: (org.herf.Flux.30128[251]) Spawned and waiting for the debugger to attach before continuing...
    23/02/2014 10:00:18.536 am Spotify Helper[234]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:18.588 am com.apple.launchd.peruser.501[146]: (com.apple.mrt.uiagent[239]) Exited with code: 255
    23/02/2014 10:00:19.505 am Google Chrome Helper[250]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:19.506 am Google Chrome Helper[250]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:19.517 am Google Chrome Helper[250]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:19.641 am Google Chrome Helper[248]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:19.641 am Google Chrome Helper[248]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:19.655 am Google Chrome Helper[253]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:19.656 am Google Chrome Helper[253]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:19.659 am Google Chrome Helper[248]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:19.668 am Google Chrome Helper[253]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:19.724 am WindowServer[100]: common_reenable_update: UI updates were finally reenabled by application "µTorrent" after 3.36 seconds (server forcibly re-enabled them after 1.00 seconds)
    23/02/2014 10:00:19.848 am Google Chrome Helper[254]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:19.848 am Google Chrome Helper[254]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:19.863 am Google Chrome Helper[254]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:19.868 am WiFiKeychainProxy[235]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    23/02/2014 10:00:19.869 am WiFiKeychainProxy[235]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    23/02/2014 10:00:19.975 am Spotify Helper[260]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:19.997 am Google Chrome Helper[255]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    23/02/2014 10:00:19.997 am Google Chrome Helper[255]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    23/02/2014 10:00:20.018 am Spotify Helper[261]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:20.020 am Google Chrome Helper[255]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    23/02/2014 10:00:21.018 am Spotify Helper[265]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:21.798 am Spotify Helper[260]: 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.
    23/02/2014 10:00:21.802 am Spotify Helper[234]: 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.
    23/02/2014 10:00:22.173 am Spotify Helper[261]: 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.
    23/02/2014 10:00:22.415 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputerIndexed"
    23/02/2014 10:00:22.495 am mds[69]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    23/02/2014 10:00:22.499 am Spotify Helper[265]: 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.
    23/02/2014 10:00:23.971 am awacsd[87]: Exiting
    23/02/2014 10:00:25.471 am WindowServer[100]: common_reenable_update: UI updates were finally reenabled by application "talagent" after 11.19 seconds (server forcibly re-enabled them after 1.00 seconds)
    23/02/2014 10:00:26.466 am WindowServer[100]: CGError post_notification(const CGSNotificationType, void *const, const size_t, const bool, const CGSRealTimeDelta, const int, const CGSConnectionID *const, const pid_t): Timed out 1.000 second wait for reply from "(PID 226)" for synchronous notification type 102 (kCGSDisplayWillSleep) (CID 0x11c03, PID 226)
    23/02/2014 10:00:26.466 am WindowServer[100]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x7f8b61e2d530(2001)
    23/02/2014 10:00:26.498 am WindowServer[100]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x7f8b61e2d530(2001)
    23/02/2014 10:00:28.000 am kernel[0]: IOPMrootDomain: idle revert, state 21
    23/02/2014 10:00:28.714 am WindowServer[100]: CGXDisplayDidWakeNotification [25521870084]: posting kCGSDisplayDidWake
    23/02/2014 10:00:28.715 am WindowServer[100]: handle_will_sleep_auth_and_shield_windows: Deferring.
    23/02/2014 10:00:28.934 am parentalcontrolsd[278]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    23/02/2014 10:00:29.647 am ntpd[52]: proto: precision = 1.000 usec
    23/02/2014 10:00:31.058 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x15b] flags: 0x8 binding: FileInfoBinding [0x34b] - extension: jpg, UTI: public.jpeg, fileType: ????.
    23/02/2014 10:00:31.058 am quicklookd[209]: 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: ???? request size:16 scale: 1
    23/02/2014 10:00:31.749 am configd[19]: network changed: v4(en0+:10.0.0.19) v6(en0:2601:b:9400:3fc:bae8:56ff:fe0c:3ac2) DNS! Proxy SMB
    23/02/2014 10:00:32.234 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x54d] flags: 0x8 binding: FileInfoBinding [0x64d] - extension: gif, UTI: com.compuserve.gif, fileType: ????.
    23/02/2014 10:00:32.234 am quicklookd[209]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xc03] flags: 0x8 binding: FileInfoBinding [0xb03] - extension: gif, UTI: com.compuserve.gif, fileType: ???? request size:16 scale: 1
    23/02/2014 10:00:33.927 am mds_stores[117]: (Error) SecureStore: Access token 3 changed uid from -1 to 501
    23/02/2014 10:00:33.991 am Console[284]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    23/02/2014 10:00:37.693 am apsd[89]: Unrecognized leaf certificate
    23/02/2014 10:00:38.075 am CalendarAgent[206]: Account refresh finished with an error
    com.apple.message.domain: com.apple.calendar.account_refresh
    com.apple.message.signature: signature
    com.apple.message.result: failure
    Sender_Mach_UUID: 1FFEB79A-E424-33F2-825D-A61EBB6A9438
    23/02/2014 10:00:38.076 am CalendarAgent[206]: [com.apple.calendar.store.log.caldav.queue] [Account refresh failed with error: Error Domain=NSURLErrorDomain Code=-1003 "A server with the specified hostname could not be found." UserInfo=0x7fe67a54b290 {NSUnderlyingError=0x7fe67a6eb8e0 "A server with the specified hostname could not be found.", NSErrorFailingURLStringKey=https://terda12%[email protected]/calendar/dav/terda12%40gmail.com /user///terda12%[email protected]/calendar/dav/terda12%40gmail.com/user/, NSErrorFailingURLKey=https://terda12%[email protected]/calendar/dav/terda12%40gmail.com /user///terda12%[email protected]/calendar/dav/terda12%40gmail.com/user/, AccountName=Calendar, CalDAVErrFromRefresh=YES, NSLocalizedDescription=A server with the specified hostname could not be found.}]
    23/02/2014 10:00:38.080 am CalendarAgent[206]: [com.apple.calendar.store.log.caldav.queue] [Adding [<CalDAVAccountRefreshQueueableOperation: 0x7fe67a44c820; Sequence: 0>] to failed operations.]
    23/02/2014 10:00:41.263 am Spotify Helper EH[290]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:42.380 am Spotify Helper[291]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    23/02/2014 10:00:44.300 am ntpd[52]: ntpd: time set +0.646077 s
    23/02/2014 10:00:44.327 am com.apple.time[149]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    23/02/2014 10:00:44.354 am com.apple.time[149]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    23/02/2014 10:00:44.933 am Spotify Helper EH[290]: CoreText performance note: Client called CTFontCreateWithName() using name "Times Roman" and got font with PostScript name "Times-Roman". For best performance, only use PostScript names when calling this API.
    23/02/2014 10:00:44.934 am Spotify Helper EH[290]: CoreText performance note: Set a breakpoint on CTFontLog

    Also here's the log before it happened. As you can see there is no activity from 9:48 to 10:00 am when the sound occurred.
    23/02/2014 9:48:12.792 am ntpd[52]: FREQ state ignoring -0.145411 s
    23/02/2014 9:48:15.258 am WindowServer[96]: _CGXHWCaptureWindowList: No capable active display found.
    23/02/2014 9:48:20.000 am kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000280
    23/02/2014 9:48:20.000 am kernel[0]: ARPT: 61.319378: AirPort_Brcm43xx::powerChange: System Sleep
    23/02/2014 9:48:20.000 am kernel[0]: ARPT: 61.319390: wl0: powerChange: *** BONJOUR/MDNS OFFLOADS ARE NOT RUNNING.
    23/02/2014 9:48:20.000 am kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    23/02/2014 10:00:04.000 am bootlog[0]: BOOT_TIME 1393167604 0
    23/02/2014 10:00:06.000 am syslogd[17]: 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.
    23/02/2014 10:00:06.000 am syslogd[17]: 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".

  • Need to remove all ximeta files from system

    I continue to experience terribly slow and unusal performance issues since upgrading to Mavericks. An old NDAS external backup device was long ao removed but I still see some signs of files or code in the system that I don't know how to remove. Any advice to help clear the following is appreciated.
    This is not the full log from the console, but it has the errors I'm dealing with:
    12/4/13 8:21:09.333 AM com.apple.kextd[12]: kext com.ximeta.driver.NDASFamily  22500009000 is in exception list, allowing to load
    12/4/13 8:21:09.333 AM com.apple.kextd[12]: Can't load /System/Library/Extensions/NDASFamily.kext - no code for running kernel's architecture.
    12/4/13 8:21:09.335 AM com.apple.kextd[12]: Load com.ximeta.driver.NDASFamily failed; removing personalities from kernel.
    12/4/13 8:21:14.307 AM launchctl[173]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:21:14.317 AM loginwindow[39]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    12/4/13 8:21:16.263 AM WindowServer[147]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    12/4/13 8:21:16.748 AM com.apple.kextd[12]: kext com.digidesign.iokit.DigiDal  900007004 is in exception list, allowing to load
    12/4/13 8:21:16.808 AM com.apple.kextd[12]: kext com.ximeta.nke.netlpx  20900009000 is in exception list, allowing to load
    12/4/13 8:21:16.835 AM com.apple.kextd[12]: Can't load /System/Library/Extensions/netlpx.kext - no code for running kernel's architecture.
    12/4/13 8:21:16.839 AM SystemStarter[142]: LPX Network Extensions (153) did not complete successfully
    12/4/13 8:21:16.866 AM com.apple.kextd[12]: kext com.nvidia.CUDA  101009000 is in exception list, allowing to load
    12/4/13 8:21:16.879 AM SystemStarter[142]: The following StartupItems failed to start properly:
    12/4/13 8:21:16.879 AM SystemStarter[142]: /Library/StartupItems/XiMetaNetLpx
    12/4/13 8:21:16.879 AM SystemStarter[142]:  - execution of Startup script failed
    12/4/13 8:21:17.135 AM WindowServer[147]: Display 0x1c803274: Unit 0; ColorProfile { 2, "Acer G235H"}; TransferFormula (1.000000, 1.000000, 1.000000)
    12/4/13 8:21:17.142 AM launchctl[177]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:21:17.328 AM UserEventAgent[179]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    12/4/13 8:21:17.468 AM SecurityAgent[186]: This is the first run
    12/4/13 8:21:17.468 AM SecurityAgent[186]: MacBuddy was run = 0
    12/4/13 8:21:17.493 AM SecurityAgent[186]: User info context values set for Admin
    12/4/13 8:21:17.823 AM loginwindow[39]: Login Window - Returned from Security Agent
    12/4/13 8:21:17.862 AM loginwindow[39]: USER_PROCESS: 39 console
    12/4/13 8:21:17.877 AM launchctl[191]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:21:18.482 AM launchctl[193]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:21:18.502 AM com.apple.launchd.peruser.501[190]: (com.apple.cmfsyncagent) Ignored this key: UserName
    12/4/13 8:21:18.503 AM com.apple.launchd.peruser.501[190]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    12/4/13 8:21:18.504 AM com.apple.launchd.peruser.501[190]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    12/4/13 8:21:18.508 AM launchctl[193]: com.apple.pluginkit.pkd: Already loaded
    12/4/13 8:21:18.508 AM launchctl[193]: com.apple.sbd: Already loaded
    12/4/13 8:21:18.520 AM distnoted[195]: # distnote server agent  absolute time: 52.826756100   civil time: Wed Dec  4 08:21:18 2013   pid: 195 uid: 501  root: no
    This last section seems to have a lot of other errors as well:
    12/4/13 8:21:43.235 AM com.apple.internetaccounts[271]: An instance 0x7fb089a2df60 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fb089a2efe0> (
    <NSKeyValueObservance 0x7fb089a2f110: Observer: 0x7fb089a2b080, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff9069a44b, Property: 0x7fb089a2efb0>
    12/4/13 8:21:43.238 AM com.apple.internetaccounts[271]: An instance 0x7fb089a36890 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fb089a36cb0> (
    <NSKeyValueObservance 0x7fb089a36940: Observer: 0x7fb089a357d0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff9069a44b, Property: 0x7fb089a2efb0>
    12/4/13 8:21:43.253 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:44.270 AM syncdefaultsd[250]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    12/4/13 8:21:45.330 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:46.317 AM ReportCrash[294]: Saved crash report for gutenprint.5.2[300] version ??? to /Library/Logs/DiagnosticReports/gutenprint.5.2_2013-12-04-082145_Admins-Mac-Pro .crash
    12/4/13 8:21:46.373 AM PrintUITool[301]: There are no drivers posted for Canon MF4360-4390 (UFRII LT).
    12/4/13 8:21:46.431 AM PrintUITool[301]: There are no drivers posted for Canon MF4360-4390 (FAX).
    12/4/13 8:21:47.093 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x33f] flags: 0x8 binding: FileInfoBinding [0x241] - extension: doc, UTI: com.microsoft.word.doc, fileType: ????.
    12/4/13 8:21:47.145 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: doc, UTI: com.microsoft.word.doc, fileType: ???? request size:128 scale: 1
    12/4/13 8:21:47.522 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x247] flags: 0x8 binding: FileInfoBinding [0x345] - extension: pdf, UTI: com.adobe.pdf, fileType: ????.
    12/4/13 8:21:47.522 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: pdf, UTI: com.adobe.pdf, fileType: ???? request size:128 scale: 1
    12/4/13 8:21:48.523 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:50.478 AM parentalcontrolsd[302]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    12/4/13 8:21:51.503 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:53.096 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:55.218 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:55.278 AM WDQuickView[253]: Updating service information
    12/4/13 8:21:57.666 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:59.471 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1cb] flags: 0x8 binding: FileInfoBinding [0x27f] - extension: jpeg, UTI: public.jpeg, fileType: ????.
    12/4/13 8:21:59.472 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: jpeg, UTI: public.jpeg, fileType: ???? request size:64 scale: 1
    12/4/13 8:21:59.474 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1cd] flags: 0x8 binding: FileInfoBinding [0x37d] - extension: jpg, UTI: public.jpeg, fileType: JPEG.
    12/4/13 8:21:59.474 AM quicklookd[297]: 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:64 scale: 1
    12/4/13 8:21:59.476 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1cf] flags: 0x8 binding: FileInfoBinding [0x281] - extension: JPG, UTI: public.jpeg, fileType: ????.
    12/4/13 8:21:59.477 AM quicklookd[297]: 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:64 scale: 1
    12/4/13 8:21:59.478 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1d1] flags: 0x8 binding: FileInfoBinding [0x37f] - extension: MOV, UTI: com.apple.quicktime-movie, fileType: ????.
    12/4/13 8:21:59.479 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xc03] flags: 0x8 binding: FileInfoBinding [0xb03] - extension: MOV, UTI: com.apple.quicktime-movie, fileType: ???? request size:64 scale: 1
    12/4/13 8:21:59.480 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1d3] flags: 0x8 binding: FileInfoBinding [0x283] - extension: numbers, UTI: com.apple.iwork.numbers.numbers, fileType: ????.
    12/4/13 8:21:59.480 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xe03] flags: 0x8 binding: FileInfoBinding [0xd03] - extension: numbers, UTI: com.apple.iwork.numbers.numbers, fileType: ???? request size:64 scale: 1
    12/4/13 8:21:59.482 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1d5] flags: 0x8 binding: FileInfoBinding [0x381] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN.
    12/4/13 8:21:59.482 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1003] flags: 0x8 binding: FileInfoBinding [0xf03] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN request size:64 scale: 1
    12/4/13 8:21:59.484 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1d7] flags: 0x8 binding: FileInfoBinding [0x285] - extension: xls, UTI: com.microsoft.excel.xls, fileType: XLS8.
    12/4/13 8:21:59.484 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1203] flags: 0x8 binding: FileInfoBinding [0x1103] - extension: xls, UTI: com.microsoft.excel.xls, fileType: XLS8 request size:64 scale: 1
    12/4/13 8:21:59.486 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1d9] flags: 0x8 binding: FileInfoBinding [0x383] - extension: mov, UTI: com.apple.quicktime-movie, fileType: MooV.
    12/4/13 8:21:59.487 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1403] flags: 0x8 binding: FileInfoBinding [0x1303] - extension: mov, UTI: com.apple.quicktime-movie, fileType: MooV request size:64 scale: 1
    12/4/13 8:21:59.488 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1db] flags: 0x8 binding: FileInfoBinding [0x287] - extension: JPG, UTI: public.jpeg, fileType: ????.
    12/4/13 8:21:59.489 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1603] flags: 0x8 binding: FileInfoBinding [0x1503] - extension: JPG, UTI: public.jpeg, fileType: ???? request size:64 scale: 1
    12/4/13 8:21:59.492 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1dd] flags: 0x8 binding: FileInfoBinding [0x385] - extension: rtf, UTI: public.rtf, fileType: ????.
    12/4/13 8:21:59.492 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1803] flags: 0x8 binding: FileInfoBinding [0x1703] - extension: rtf, UTI: public.rtf, fileType: ???? request size:64 scale: 1
    12/4/13 8:22:01.904 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:22:07.265 AM SystemUIServer[202]: Cannot find executable for CFBundle 0x7f9118725350 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    12/4/13 8:22:07.267 AM CIJScannerRegister[264]: The function `CGContextErase' 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.
    12/4/13 8:22:07.268 AM Canon MFScanner[267]: The function `CGContextErase' 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.
    12/4/13 8:22:07.293 AM GoogleSoftwareUpdateAgent[247]: The function `CGContextErase' 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.
    12/4/13 8:22:07.364 AM SystemUIServer[202]: Cannot find executable for CFBundle 0x7f9118725d90 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    12/4/13 8:22:16.479 AM Dropbox[254]: PyObjCPointer created: at 0xcbefc88 of type {OpaqueJSContext=}
    12/4/13 8:22:25.278 AM WDQuickView[253]: Updating service information
    12/4/13 8:22:26.000 AM kernel[0]: fsevents: watcher dbfseventsd (pid: 329) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    12/4/13 8:22:28.344 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:22:29.331 AM Dropbox[254]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    12/4/13 8:22:31.631 AM Calendar[322]: The function `CGContextErase' 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.
    12/4/13 8:22:32.161 AM Opera[317]: stat on /Users/Admin/Library/Application Support/com.operasoftware.OperaNext/Bookmarks: No such file or directory
    12/4/13 8:22:33.049 AM com.apple.dock.extra[299]: <NSXPCConnection: 0x7fd3a1611970>: received an undecodable message (no exported object to receive message). Dropping message.
    12/4/13 8:22:41.007 AM Mail[319]: Could not create query for expression ((null)) && (kMDItemContentType == 'com.apple.mail.emlx')
    12/4/13 8:22:41.000 AM kernel[0]: hfs: summary table not allowed on FS with block size of 2048
    12/4/13 8:22:41.000 AM kernel[0]: hfs: could not initialize summary table for Google Chrome 31.0.1650.57-31.0.1650.63 Update
    12/4/13 8:22:41.000 AM kernel[0]: hfs: mounted Google Chrome 31.0.1650.57-31.0.1650.63 Update on device disk5s2
    12/4/13 8:22:42.104 AM WindowServer[147]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    12/4/13 8:22:42.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=370[ksadmin] final status 0x0, allow (remove VALID)ing page
    12/4/13 8:22:43.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=373[ksadmin] final status 0x0, allow (remove VALID)ing page
    12/4/13 8:22:43.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=375[ksadmin] final status 0x0, allow (remove VALID)ing page
    12/4/13 8:22:48.538 AM WindowServer[147]: disable_update_timeout: UI updates were forcibly disabled by application "Opera" for over 1.00 seconds. Server has re-enabled them.
    12/4/13 8:22:49.701 AM com.apple.SecurityServer[14]: Session 100018 created
    12/4/13 8:22:51.123 AM WindowServer[147]: common_reenable_update: UI updates were finally reenabled by application "Opera" after 3.59 seconds (server forcibly re-enabled them after 1.00 seconds)
    12/4/13 8:22:51.437 AM WindowServer[147]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 10.33 seconds (server forcibly re-enabled them after 1.00 seconds)
    12/4/13 8:22:51.967 AM Mail[319]: The function `CGContextErase' 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.
    12/4/13 8:22:52.672 AM launchctl[382]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:22:53.908 AM Opera Helper[379]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:22:53.908 AM Opera Helper[379]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:22:54.032 AM Opera[317]: The function `CGContextErase' 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.
    12/4/13 8:22:54.105 AM Opera Helper[379]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:22:55.279 AM WDQuickView[253]: Updating service information
    12/4/13 8:22:56.088 AM com.apple.SecurityServer[14]: Session 100003 created
    12/4/13 8:23:05.243 AM Opera Helper[388]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:23:05.243 AM Opera Helper[388]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:23:05.563 AM Opera Helper[388]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:23:06.503 AM Mail[319]: Couldn't contact spell checker for Multilingual
    12/4/13 8:23:25.281 AM WDQuickView[253]: Updating service information
    12/4/13 8:23:52.241 AM Opera Helper[390]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:23:52.241 AM Opera Helper[390]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:23:52.264 AM Opera Helper[390]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:23:55.282 AM WDQuickView[253]: Updating service information
    12/4/13 8:23:58.856 AM SyncServicesAgent[246]: OTAtomicAdd8 is deprecated and will be removed soon.  Please stop using it.
    12/4/13 8:23:58.857 AM SyncServicesAgent[246]: OTCompareAndSwap8 is deprecated and will be removed soon.  Please stop using it.
    12/4/13 8:23:58.877 AM Microsoft Database Daemon[305]: OTAtomicAdd8 is deprecated and will be removed soon.  Please stop using it.
    12/4/13 8:23:58.877 AM Microsoft Database Daemon[305]: OTCompareAndSwap8 is deprecated and will be removed soon.  Please stop using it.
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Battery 3.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Blue.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Blue.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Blue.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/FM8.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/FM8.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/FM8.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Guitar Rig 4.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Guitar Rig 4.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Guitar Rig 4.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Kontakt 4.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Kontakt 4.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Kontakt 4.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Kore Player.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Kore Player.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Kore Player.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Massive.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Massive.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Massive.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Nexus.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Nexus.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Nexus.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Predator.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Predator.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Predator.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/PredatorFX.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/PredatorFX.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/PredatorFX.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Reaktor5.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Reaktor5.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Reaktor5.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/WaveShell-AU 7.0.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/WaveShell-AU 7.0.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/WaveShell-AU 7.0.component
    12/4/13 8:24:01.117 AM launchctl[394]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:24:01.389 AM defaults[396]:
    The domain/default pair of (/Applications/Google Chrome.app/Contents/Info, KSBrandID) does not exist
    12/4/13 8:24:02.199 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Absynth 5.component
    12/4/13 8:24:03.049 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Absynth 5.component/Contents
    12/4/13 8:24:03.622 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Absynth 5.component
    12/4/13 8:24:04.950 AM Finder[203]: copyPrimaryAirPortInterface::ACInterfaceDeviceNameCopy returned NULL
    12/4/13 8:24:05.091 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Albino 3.component
    12/4/13 8:24:05.884 AM WindowServer[147]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    12/4/13 8:24:06.458 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Albino 3.component/Contents
    12/4/13 8:24:06.609 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Albino 3.component
    12/4/13 8:24:07.043 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Battery 3.component
    12/4/13 8:24:08.053 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Battery 3.component/Contents
    12/4/13 8:24:08.854 AM WindowServer[147]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 3.97 seconds (server forcibly re-enabled them after 1.00 seconds)
    12/4/13 8:24:09.159 AM SyncServicesAgent[246]: The function `CGContextErase' 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.
    12/4/13 8:24:09.913 AM WindowServer[147]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    12/4/13 8:24:10.496 AM WindowServer[147]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.58 seconds (server forcibly re-enabled them after 1.00 seconds)
    12/4/13 8:24:16.588 AM Console[502]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    12/4/13 8:24:18.877 AM WindowServer[147]: disable_update_timeout: UI updates were forcibly disabled by application "Console" for over 1.00 seconds. Server has re-enabled them.
    12/4/13 8:24:19.203 AM WindowServer[147]: common_reenable_update: UI updates were finally reenabled by application "Console" after 1.33 seconds (server forcibly re-enabled them after 1.00 seconds)
    12/4/13 8:24:19.210 AM Console[502]: The function `CGContextErase' 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.
    12/4/13 8:24:25.283 AM WDQuickView[253]: Updating service information
    12/4/13 8:24:55.284 AM WDQuickView[253]: Updating service information
    12/4/13 8:24:59.728 AM defaults[2659]:
    The domain/default pair of (/Applications/Google Chrome.app/Contents/Info, KSChannelID) does not exist
    12/4/13 8:25:01.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=2666[ksadmin] final status 0x0, allow (remove VALID)ing page
    12/4/13 8:25:04.090 AM com.google.Chrome[2685]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    12/4/13 8:25:04.000 AM kernel[0]: hfs: unmount initiated on Google Chrome 31.0.1650.57-31.0.1650.63 Update on device disk5s2
    12/4/13 8:25:04.883 AM mds[35]: (Normal) Volume: volume:0x7f8eb2865000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.q3uSEG
    12/4/13 8:25:25.286 AM WDQuickView[253]: Updating service information
    12/4/13 8:25:55.287 AM WDQuickView[253]: Updating service information
    12/4/13 8:26:25.288 AM WDQuickView[253]: Updating service information
    12/4/13 8:26:55.289 AM WDQuickView[253]: Updating service information
    12/4/13 8:27:25.290 AM WDQuickView[253]: Updating service information
    12/4/13 8:27:55.292 AM WDQuickView[253]: Updating service information
    12/4/13 8:28:25.292 AM WDQuickView[253]: Updating service information
    12/4/13 8:28:55.294 AM WDQuickView[253]: Updating service information
    12/4/13 8:29:16.566 AM Opera Helper[2722]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:29:16.566 AM Opera Helper[2722]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:29:16.575 AM Opera Helper[2722]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:29:25.295 AM WDQuickView[253]: Updating service information
    12/4/13 8:29:29.452 AM Opera Helper[2725]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:29:29.452 AM Opera Helper[2725]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:29:29.461 AM Opera Helper[2725]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:29:55.296 AM WDQuickView[253]: Updating service information
    12/4/13 8:30:25.298 AM WDQuickView[253]: Updating service information
    12/4/13 8:30:25.601 AM Opera Helper[2730]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:30:25.601 AM Opera Helper[2730]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:30:25.610 AM Opera Helper[2730]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:30:55.299 AM WDQuickView[253]: Updating service information
    12/4/13 8:31:08.609 AM Opera Helper[2736]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:31:08.609 AM Opera Helper[2736]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:31:08.618 AM Opera Helper[2736]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:31:25.300 AM WDQuickView[253]: Updating service information
    12/4/13 8:31:44.919 AM Adobe Photoshop CS6[2738]: The function `CGContextErase' 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.
    12/4/13 8:31:46.108 AM Adobe Photoshop CS6[2738]: CoreText performance note: Client called CTFontCreateWithName() using name "Times Roman" and got font with PostScript name "Times-Roman". For best performance, only use PostScript names when calling this API.
    12/4/13 8:31:46.109 AM Adobe Photoshop CS6[2738]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    12/4/13 8:31:46.117 AM Adobe Photoshop CS6[2738]: CoreText performance note: Client called CTFontCreateWithName() using name "Arial" and got font with PostScript name "ArialMT". For best performance, only use PostScript names when calling this API.
    12/4/13 8:31:55.301 AM WDQuickView[253]: Updating service information
    12/4/13 8:32:25.302 AM WDQuickView[253]: Updating service information
    12/4/13 8:32:55.303 AM WDQuickView[253]: Updating service information
    12/4/13 8:33:25.304 AM WDQuickView[253]: Updating service information
    12/4/13 8:33:55.306 AM WDQuickView[253]: Updating service information
    12/4/13 8:34:25.307 AM WDQuickView[253]: Updating service information
    12/4/13 8:34:55.308 AM WDQuickView[253]: Updating service information
    12/4/13 8:35:25.310 AM WDQuickView[253]: Updating service information
    12/4/13 8:35:55.311 AM WDQuickView[253]: Updating service information
    12/4/13 8:36:25.312 AM WDQuickView[253]: Updating service information
    12/4/13 8:36:55.313 AM WDQuickView[253]: Updating service information
    12/4/13 8:37:13.530 AM Mail[319]: Could not load x-msg URL
    12/4/13 8:37:25.314 AM WDQuickView[253]: Updating service information
    12/4/13 8:37:55.316 AM WDQuickView[253]: Updating service information
    12/4/13 8:38:25.317 AM WDQuickView[253]: Updating service information
    12/4/13 8:38:55.318 AM WDQuickView[253]: Updating service information
    12/4/13 8:39:05.983 AM launchctl[2776]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:39:06.501 AM Safari[2769]: The function `CGContextErase' 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.
    12/4/13 8:39:25.319 AM WDQuickView[253]: Updating service information
    12/4/13 8:39:55.320 AM WDQuickView[253]: Updating service information
    12/4/13 8:40:25.322 AM WDQuickView[253]: Updating service information
    12/4/13 8:40:55.323 AM WDQuickView[253]: Updating service information
    12/4/13 8:41:25.324 AM WDQuickView[253]: Updating service information
    12/4/13 8:41:55.325 AM WDQuickView[253]: Updating service information
    12/4/13 8:42:22.502 AM WindowServer[147]: disable_update_timeout: UI updates were forcibly disabled by application "Terminal" for over 1.00 seconds. Server has re-enabled them.
    12/4/13 8:42:22.718 AM WindowServer[147]: common_reenable_update: UI updates were finally reenabled by application "Terminal" after 1.22 seconds (server forcibly re-enabled them after 1.00 seconds)
    12/4/13 8:42:22.996 AM Terminal[2790]: The function `CGContextErase' 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.
    12/4/13 8:42:23.331 AM login[2792]: USER_PROCESS: 2792 ttys000
    12/4/13 8:42:25.326 AM WDQuickView[253]: Updating service information
    12/4/13 8:42:55.328 AM WDQuickView[253]: Updating service information
    12/4/13 8:43:25.329 AM WDQuickView[253]: Updating service information
    12/4/13 8:43:55.329 AM WDQuickView[253]: Updating service information
    12/4/13 8:44:25.331 AM WDQuickView[253]: Updating service information
    12/4/13 8:44:55.332 AM WDQuickView[253]: Updating service information
    12/4/13 8:45:25.334 AM WDQuickView[253]: Updating service information
    12/4/13 8:45:55.335 AM WDQuickView[253]: Updating service information
    12/4/13 8:46:25.336 AM WDQuickView[253]: Updating service information
    12/4/13 8:46:55.337 AM WDQuickView[253]: Updating service information
    12/4/13 8:47:25.338 AM WDQuickView[253]: Updating service information
    12/4/13 8:47:55.339 AM WDQuickView[253]: Updating service information
    12/4/13 8:48:13.896 AM com.apple.SecurityServer[14]: Killing auth hosts
    12/4/13 8:48:13.896 AM com.apple.SecurityServer[14]: Session 100018 destroyed
    12/4/13 8:48:13.899 AM com.apple.SecurityServer[14]: Session 100022 created
    12/4/13 8:48:14.114 AM Contacts[2816]: The function `CGContextErase' 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.
    12/4/13 8:48:25.341 AM WDQuickView[253]: Updating service information
    12/4/13 8:48:55.341 AM WDQuickView[253]: Updating service information
    12/4/13 8:49:25.343 AM WDQuickView[253]: Updating service information
    12/4/13 8:49:55.344 AM WDQuickView[253]: Updating service information
    12/4/13 8:49:58.367 AM sandboxd[289]: ([2816]) Contacts(2816) deny hid-control
    12/4/13 8:50:25.345 AM WDQuickView[253]: Updating service information
    12/4/13 8:50:55.347 AM WDQuickView[253]: Updating service information
    12/4/13 8:51:25.348 AM WDQuickView[253]: Updating service information
    12/4/13 8:51:35.802 AM com.apple.backupd[2829]: Starting automatic backup
    12/4/13 8:51:36.488 AM com.apple.backupd[2829]: Backing up to /dev/disk0s2: /Volumes/Untitled Backup/Backups.backupdb
    12/4/13 8:51:42.701 AM com.apple.backupd[2829]: Will copy (295.8 MB) from Untitled 1
    12/4/13 8:51:42.702 AM com.apple.backupd[2829]: Will copy (Zero KB) from RAID
    12/4/13 8:51:42.702 AM com.apple.backupd[2829]: Found 2065 files (295.8 MB) needing backup
    12/4/13 8:51:42.726 AM com.apple.backupd[2829]: 3.03 GB required (including padding), 69.69 GB available
    12/4/13 8:51:55.349 AM WDQuickView[253]: Updating service information
    12/4/13 8:52:25.349 AM WDQuickView[253]: Updating service information
    12/4/13 8:52:45.056 AM com.apple.backupd[2829]: Copied 2064 items (295.8 MB) from volume Untitled 1. Linked 2937.
    12/4/13 8:52:55.352 AM WDQuickView[253]: Updating service information
    12/4/13 8:53:00.476 AM com.apple.backupd[2829]: Copied 1 items (Zero KB) from volume RAID. Linked 27.
    12/4/13 8:53:01.875 AM com.apple.backupd[2829]: Will copy (47 KB) from Untitled 1
    12/4/13 8:53:01.875 AM com.apple.backupd[2829]: Not using file event preflight for RAID
    12/4/13 8:53:01.882 AM com.apple.backupd[2829]: Found 48 files (47 KB) needing backup
    12/4/13 8:53:01.883 AM com.apple.backupd[2829]: 2.67 GB required (including padding), 69.39 GB available
    12/4/13 8:53:04.840 AM com.apple.backupd[2829]: Copied 51 items (47 KB) from volume Untitled 1. Linked 543.
    12/4/13 8:53:08.932 AM com.apple.backupd[2829]: Copied 1 items (Zero KB) from volume RAID. Linked 27.
    12/4/13 8:53:10.543 AM com.apple.backupd[2829]: Created new backup: 2013-12-04-085310
    12/4/13 8:53:13.152 AM com.apple.backupd[2829]: Starting post-backup thinning
    12/4/13 8:53:17.724 AM com.apple.backupd[2829]: Deleted /Volumes/Untitled Backup/Backups.backupdb/Admin’s Mac Pro/2013-12-02-234450 (197 KB)
    12/4/13 8:53:20.517 AM com.apple.backupd[2829]: Deleted /Volumes/Untitled Backup/Backups.backupdb/Admin’s Mac Pro/2013-12-02-224256 (201 KB)
    12/4/13 8:53:23.705 AM com.apple.backupd[2829]: Deleted /Volumes/Untitled Backup/Backups.backupdb/Admin’s Mac Pro/2013-12-02-214156 (1.1 MB)
    12/4/13 8:53:25.352 AM WDQuickView[253]: Updating service information
    12/4/13 8:53:30.183 AM com.apple.backupd[2829]: Deleted /Volumes/Untitled Backup/Backups.backupdb/Admin’s Mac Pro/2013-12-02-204048 (4.4 MB)
    12/4/13 8:53:33.037 AM com.apple.backupd[2829]: Deleted /Volumes/Untitled Backup/Backups.backupdb/Admin’s Mac Pro/2013-12-03-075300 (197 KB)
    12/4/13 8:53:33.037 AM com.apple.backupd[2829]: Post-backup thinning complete: 5 expired backups removed
    12/4/13 8:53:33.090 AM com.apple.backupd[2829]: Backup completed successfully.
    12/4/13 8:53:55.354 AM WDQuickView[253]: Updating service information
    12/4/13 8:54:25.354 AM WDQuickView[253]: Updating service information
    12/4/13 8:54:55.356 AM WDQuickView[253]: Updating service information
    12/4/13 8:55:25.358 AM WDQuickView[253]: Updating service information
    12/4/13 8:55:55.358 AM WDQuickView[253]: Updating service information
    12/4/13 8:56:25.360 AM WDQuickView[253]: Updating service information
    12/4/13 8:56:55.360 AM WDQuickView[253]: Updating service information
    12/4/13 8:57:25.362 AM WDQuickView[253]: Updating service information
    12/4/13 8:57:55.364 AM WDQuickView[253]: Updating service information
    12/4/13 8:58:25.364 AM WDQuickView[253]: Updating service information
    12/4/13 8:58:55.366 AM WDQuickView[253]: Updating service information
    12/4/13 8:59:25.367 AM WDQuickView[253]: Updating service information
    12/4/13 8:59:55.368 AM WDQuickView[253]: Updating service information
    12/4/13 8:59:59.439 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.444 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.448 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.452 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.455 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.459 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.463 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.468 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.471 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.475 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.479 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.483 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.486 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.490 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.494 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.498 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.502 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.506 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.509 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.513 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.517 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.520 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.524 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.528 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.531 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.535 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.539 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.542 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.546 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.550 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.554 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.558 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.562 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.566 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.569 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.573 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.577 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.581 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.585 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.589 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.593 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.597 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.601 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.604 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.608 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.612 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.615 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.619 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.622 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.626 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.630 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.634 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.638 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.642 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.646 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.650 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.654 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.658 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.662 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.665 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.669 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.673 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.677 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.681 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.684 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.688 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.692 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.696 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.700 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.703 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.707 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.711 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.715 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.718 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.722 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.726 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.730 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.734 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.738 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.741 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.745 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.749 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.752 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.756 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.760 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.764 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.767 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.771 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.775 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.778 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.782 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.786 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.790 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.794 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.797 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.801 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.805 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.808 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.812 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.816 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.820 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.824 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.828 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.831 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.835 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.839 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.842 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.846 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.850 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.854 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.858 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.862 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.866 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.870 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.874 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.877 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.881 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.885 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.888 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.892 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.896 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.900 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.904 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.908 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.911 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.915 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.919 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.923 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.927 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.931 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.934 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.938 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.942 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.945 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.949 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.952 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.956 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.960 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.963 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.967 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.971 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.975 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.979 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.982 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.986 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.990 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.994 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.998 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 9:00:0

    You can try contacting iTunes Support and see if they will refund or credit you : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    To try and stop it happening again you can use Settings > General > Restrictions to turn off in-app purchases and to require your account's password to be entered for every purchase (the default is a 15 minute period during which it doesn't need re-entering).

  • Ableton Live 9.1.7 instruments cause kernel panics

    Hello,
    only whenever I use an internal instrument in Ableton, my computer goes kernel panic.
    My libraries are outside the internal SSD (I have them on a 2 TB WD MyPassport Ultra), and the DAW is into the SSD. I always keep connected them while using the software.
    I usually use a Saffire Pro 24 DSP as audio device, but whether it is connected or not, kernel panic comes up.
    Here I have three examples of kernel panics. I have noticed that there are similarities, that I have marked in bold red, in particular in the kernel traps, part of whose locations are the same. I also marked in bold black the important things I think they may refer to my issues.
    This one happened on 26th January (I was NOT using my Saffire interface):
    Anonymous UUID:       78A4FC09-16F0-BC38-5EF6-E614CA9766E1
    Mon Jan 26 08:50:06 2015
    panic(cpu 2 caller 0xffffff801b6dc24e): Kernel trap at 0xffffff801b6a3699, type 13=general protection, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000101401000, CR3: 0x000000019563304b, CR4: 0x00000000001606e0
    RAX: 0x0000000000000001, RBX: 0x0000ff000000ff00, RCX: 0xffffff804025c280, RDX: 0x0000000000000821
    RSP: 0xffffff8208c3b700, RBP: 0xffffff8208c3b730, RSI: 0x0000000020b4f3bf, RDI: 0xffffff80214c7c28
    R8:  0x0000000000000001, R9:  0x00000000cccccccd, R10: 0xffffff801bc010b8, R11: 0x00000000ffe00001
    R12: 0xffffff80214c7c28, R13: 0xffffff801f2e7000, R14: 0x0000000000057000, R15: 0xffffff803e4a93e0
    RFL: 0x0000000000010206, RIP: 0xffffff801b6a3699, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000101401000, Error code: 0x0000000000000000, Fault CPU: 0x2
    Backtrace (CPU 2), Frame : Return Address
    0xffffff81fcde5df0 : 0xffffff801b622f79
    0xffffff81fcde5e70 : 0xffffff801b6dc24e
    0xffffff81fcde6040 : 0xffffff801b6f3746
    0xffffff81fcde6060 : 0xffffff801b6a3699
    0xffffff8208c3b730 : 0xffffff801b69be8b
    0xffffff8208c3baa0 : 0xffffff801b69b95f
    0xffffff8208c3bb80 : 0xffffff801babc2e9
    0xffffff8208c3bc80 : 0xffffff801babc58e
    0xffffff8208c3bcb0 : 0xffffff801baba35b
    0xffffff8208c3bd50 : 0xffffff801bab9935
    0xffffff8208c3bda0 : 0xffffff7f9c13da32
    0xffffff8208c3bdc0 : 0xffffff801bacd9ad
    0xffffff8208c3be10 : 0xffffff801b6b675e
    0xffffff8208c3be50 : 0xffffff801b626bc1
    0xffffff8208c3be80 : 0xffffff801b6139c5
    0xffffff8208c3bef0 : 0xffffff801b61e013
    0xffffff8208c3bf70 : 0xffffff801b6c9b8d
    0xffffff8208c3bfb0 : 0xffffff801b6f3f66
          Kernel Extensions in backtrace:
             tc.tctechnologies.driver.Saffire(4.1.4)[2A457423-886A-3738-BB87-189075721B57]@0 xffffff7f9c136000->0xffffff7f9c156fff
                dependency: com.apple.iokit.IOAudioFamily(1.9.7fc2)[092DA230-DD20-3369-A32B-E162A496C638]@0 xffffff7f9c07b000
                dependency: com.apple.iokit.IOFireWireFamily(4.5.5)[C83215A8-3406-35EC-8C24-A1746E9565DF]@0 xffffff7f9c0b2000
    BSD process name corresponding to current thread: MIDIServer
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x000000001b400000
    Kernel text base: 0xffffff801b600000
    System model name: MacBookPro11,2 (Mac-3CBD00234E554E41)
    System uptime in nanoseconds: 2896508957958
    last loaded kext at 244870054456: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7f9d76f000, size 65536)
    last unloaded kext at 305063763791: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7f9d76f000, size 57344)
    loaded kexts:
    com.paceap.kext.pacesupport.snowleopard 5.9
    tc.tctechnologies.driver.Saffire 4.1.4 18735
    com.apple.driver.AudioAUUC 1.60
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleGraphicsDevicePolicy 3.6.22
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.ApplePlatformEnabler 2.0.9d6
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleIntelHD5000Graphics 8.2.8
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleIntelFramebufferAzul 8.2.8
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleCameraInterface 4.26.0
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleUSBCardReader 3.4.1
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AirPort.Brcm4360 842.21.65
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.kext.triggers 1.0
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOAcceleratorFamily2 98.22
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.6
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IO80211Family 640.36
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    System Profile:
    Model: MacBookPro11,2, BootROM MBP112.0138.B07, 4 processors, Intel Core i7, 2.2 GHz, 16 GB, SMC 2.18f15
    Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (6.30.223.154.65)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM0256F, 251 GB
    USB Device: Internal Memory Card Reader
    USB Device: My Passport 0741
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1
         This is what happened according to console:
    26/01/15 08:49:41,876 Ableton Index[560]: BUG in libdispatch client: kevent[EVFILT_WRITE] delete: "No such file or directory" - 0x2
    26/01/15 08:50:02,000 bootlog[0]: BOOT_TIME 1422258602 0
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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".
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 kernel[0]: Longterm timer threshold: 1000 ms
    26/01/15 08:50:04,000 kernel[0]: PMAP: PCID enabled
    26/01/15 08:50:04,000 kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    26/01/15 08:50:04,000 kernel[0]: Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    26/01/15 08:50:04,000 kernel[0]: vm_page_bootstrap: 3957319 free pages and 204217 wired pages
    26/01/15 08:50:04,000 kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    26/01/15 08:50:04,000 kernel[0]: zone leak detection enabled
    26/01/15 08:50:04,000 kernel[0]: "vm_compressor_mode" is 4
    26/01/15 08:50:04,000 kernel[0]: standard timeslicing quantum is 10000 us
    26/01/15 08:50:04,000 kernel[0]: standard background quantum is 2500 us
    26/01/15 08:50:04,000 kernel[0]: mig_table_max_displ = 74
    26/01/15 08:50:04,000 kernel[0]: TSC Deadline Timer supported and enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    26/01/15 08:50:04,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    26/01/15 08:50:04,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    26/01/15 08:50:04,000 kernel[0]: calling mpo_policy_init for Sandbox
    26/01/15 08:50:04,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    26/01/15 08:50:04,000 kernel[0]: calling mpo_policy_init for Quarantine
    26/01/15 08:50:04,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    26/01/15 08:50:04,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    26/01/15 08:50:04,000 kernel[0]: The Regents of the University of California. All rights reserved.
    26/01/15 08:50:04,000 kernel[0]: MAC Framework successfully initialized
    26/01/15 08:50:04,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    26/01/15 08:50:04,000 kernel[0]: AppleKeyStore starting (BUILT: Jun  3 2014 21:40:51)
    26/01/15 08:50:04,000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    26/01/15 08:50:04,000 kernel[0]: ACPI: sleep states S3 S4 S5
    26/01/15 08:50:04,000 kernel[0]: pci (build 21:30:51 Jun  3 2014), flags 0x63008, pfm64 (39 cpu) 0x7f80000000, 0x80000000
    26/01/15 08:50:04,000 kernel[0]: [ PCI configuration begin ]
    26/01/15 08:50:04,000 kernel[0]: console relocated to 0x7f90000000
    26/01/15 08:50:04,000 kernel[0]: [ PCI configuration end, bridges 12, devices 12 ]
    26/01/15 08:50:04,000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    26/01/15 08:50:04,000 kernel[0]: SATA WARNING: IDENTIFY DEVICE checksum not implemented.
    26/01/15 08:50:04,000 kernel[0]: mcache: 8 CPU(s), 64 bytes CPU cache line size
    26/01/15 08:50:04,000 kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    26/01/15 08:50:04,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    26/01/15 08:50:04,000 kernel[0]: rooting via boot-uuid from /chosen: 0A52658A-4BA7-33D9-BA7C-167E7384CECF
    26/01/15 08:50:04,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>
    26/01/15 08:50:04,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    26/01/15 08:50:04,000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN kmod start
    26/01/15 08:50:04,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    26/01/15 08:50:04,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    26/01/15 08:50:04,000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN load succeeded
    26/01/15 08:50:04,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    26/01/15 08:50:04,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPP/SSD0@0/Ap pleAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlo ckStorageDriver/APPLE SSD SM0256F Media/IOGUIDPartitionScheme/Customer@2
    26/01/15 08:50:04,000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    26/01/15 08:50:04,000 kernel[0]: jnl: b(1, 2): replay_journal: from: 4720128 to: 12338688 (joffset 0x19502000)
    26/01/15 08:50:04,000 kernel[0]: srom rev:11
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.626017: ChangeVCO => vco:960, xtalF:40, frac: 98, ndivMode: 3, ndivint: 24
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.626030: Data written into the PLL_CNTRL_ADDR2: 00000c31
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.626093: Data written into the PLL_CNTRL_ADDR3 (Fractional): 0000100e
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.632856: BTCOEXIST off
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.633046: BRCM tunables:
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.633051:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.633620: wl0: Broadcom BCM43a0, vendorID[0x14e4] BAR0[0xa0600004]
    26/01/15 08:50:04,000 kernel[0]: 6.30.223.154 (r420397)
    26/01/15 08:50:04,000 kernel[0]: jnl: b(1, 2): journal replay done.
    26/01/15 08:50:04,000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    26/01/15 08:50:04,000 kernel[0]: XCPM: registered
    26/01/15 08:50:04,000 kernel[0]: IOThunderboltSwitch<0xffffff803795f800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    26/01/15 08:50:04,000 kernel[0]: IOThunderboltSwitch<0xffffff803795f800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    26/01/15 08:50:04,000 kernel[0]: USBMSC Identifier (non-unique): 575838314135333131333039 0x1058 0x741 0x1022, 3
    26/01/15 08:50:04,000 kernel[0]: USBMSC Identifier (non-unique): 000000000820 0x5ac 0x8406 0x820, 3
    26/01/15 08:50:04,000 kernel[0]: hfs: Removed 73 orphaned / unlinked files and 31 directories
    26/01/15 08:50:02,701 com.apple.launchd[1]: *** launchd[1] has started up. ***
    26/01/15 08:50:02,701 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    26/01/15 08:50:04,000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    26/01/15 08:50:04,130 com.apple.SecurityServer[22]: Session 100000 created
    26/01/15 08:50:04,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    26/01/15 08:50:04,000 kernel[0]: IO80211Interface::efiNVRAMPublished():
    26/01/15 08:50:04,205 com.apple.SecurityServer[22]: Entering service
    26/01/15 08:50:04,000 kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    26/01/15 08:50:04,223 configd[25]: dhcp_arp_router: en0 SSID unavailable
    26/01/15 08:50:04,250 UserEventAgent[18]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    26/01/15 08:50:04,254 UserEventAgent[18]: Captive: CNPluginHandler en0: Inactive
    26/01/15 08:50:04,279 configd[25]: network changed.
    26/01/15 08:50:04,280 configd[25]: setting hostname to "MacBook-Pro-di-Antonio.local"
    26/01/15 08:50:04,000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    26/01/15 08:50:04,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    26/01/15 08:50:04,000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    26/01/15 08:50:04,000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    26/01/15 08:50:04,000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    26/01/15 08:50:04,000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    26/01/15 08:50:04,000 kernel[0]: Previous Shutdown Cause: 5
    26/01/15 08:50:04,000 kernel[0]: AppleCamIn::init
    26/01/15 08:50:04,000 kernel[0]: AppleCamIn::probe
    26/01/15 08:50:04,000 kernel[0]: AppleCamIn::start
    26/01/15 08:50:04,000 kernel[0]: AppleCamIn::start: fS2DeviceRegs=0xffffff82032c0000 (len=65536)
    26/01/15 08:50:04,000 kernel[0]: AppleCamIn::start: fS2DeviceMemory=0xffffff82034f9000 (len=268435456)
    26/01/15 08:50:04,000 kernel[0]: AppleCamIn::start: fISPRegsMem=0xffffff8038b05a00 (len=1048576)
    26/01/15 08:50:04,000 kernel[0]: virtual bool AppleCamIn::start(IOService *): about to configure DDR
    26/01/15 08:50:04,000 kernel[0]: IOBluetoothUSBDFU::probe
    26/01/15 08:50:04,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8289 FirmwareVersion - 0x0079
    26/01/15 08:50:04,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x1800 ****
    26/01/15 08:50:04,000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x1800 ****
    26/01/15 08:50:04,000 kernel[0]: init
    26/01/15 08:50:04,000 kernel[0]: probe
    26/01/15 08:50:04,390 fseventsd[49]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (27917 2 27939)
    26/01/15 08:50:04,000 kernel[0]: IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
    26/01/15 08:50:04,000 kernel[0]: IOPPF: XCPM mode
    26/01/15 08:50:04,431 fseventsd[49]: log dir: /.fseventsd getting new uuid: 05C90AFF-5046-423D-BE55-B87AFF7743C5
    26/01/15 08:50:04,000 kernel[0]: save_ddr_phy_regs: saving 127 DDR PHY shmoo-calibrated registers
    26/01/15 08:50:04,000 kernel[0]: SMC::smcIH WARNING: unexpected interrupt: 0x55
    26/01/15 08:50:04,000 kernel[0]: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x20 not set) notif=0x0
    26/01/15 08:50:04,000 kernel[0]: SMC::smcIH WARNING: unexpected interrupt: 0x54
    26/01/15 08:50:05,000 kernel[0]: start
    26/01/15 08:50:05,000 kernel[0]: DSMOS has arrived
    26/01/15 08:50:05,000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x1800
    26/01/15 08:50:05,000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    26/01/15 08:50:05,000 kernel[0]: Saffire - 4.1.4.18735 (x86_64) Jun  4 2014 19:12:40
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path_object = 0xffffff8037446620
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path = IOACPIPlane:/_SB/PCI0@0/RP04@1c0003/CMRA@0
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_device_entry = 0xffffff80378c2e00
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIDevice = 0xffffff80378c2e00
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIPowerEnabled = 1
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::start - link control offset in PCI bridge = 0x50
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::start - pmcsr offset in PCI bridge = 0xa4
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::power_off_hardware
    26/01/15 08:50:05,000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    26/01/15 08:50:05,000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x2b40 -- 0x2000 -- 0x1800 ****
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::initForPM
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    26/01/15 08:50:06,000 kernel[0]: hmm.. mismatch sizes: 3100 vs 20
    26/01/15 08:50:06,000 kernel[0]: fGPUIdleIntervalMS = 0
    26/01/15 08:50:06,000 kernel[0]: fGPUIdleIntervalMS = 0
    26/01/15 08:50:06,000 kernel[0]: fGPUIdleIntervalMS = 0
    26/01/15 08:50:06,000 kernel[0]: fGPUIdleIntervalMS = 0
    26/01/15 08:50:06,000 kernel[0]: en1: promiscuous mode enable succeeded
    26/01/15 08:50:06,000 kernel[0]: en2: promiscuous mode enable succeeded
    26/01/15 08:50:06,000 kernel[0]: VM Swap Subsystem is ON
    26/01/15 08:50:06,677 hidd[88]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    26/01/15 08:50:06,681 hidd[88]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    26/01/15 08:50:06,689 SystemStarter[64]: lstat("/Library/StartupItems/StartupParameters.plist/StartupParameters.plist"): Not a directory
    26/01/15 08:50:06,694 DumpPanic[91]: Saved panic report for kernel to /Library/Logs/DiagnosticReports/Kernel_2015-01-26-085006_MacBook-Pro-di-Antonio .panic
    26/01/15 08:50:06,721 com.apple.usbmuxd[62]: usbmuxd-344.3 on Oct 13 2014 at 21:10:09, running 64 bit
    26/01/15 08:50:06,773 loginwindow[83]: Login Window Application Started
    26/01/15 08:50:06,786 digest-service[105]: label: default
    26/01/15 08:50:06,786 digest-service[105]: dbname: od:/Local/Default
    26/01/15 08:50:06,786 digest-service[105]: mkey_file: /var/db/krb5kdc/m-key
    26/01/15 08:50:06,786 digest-service[105]: acl_file: /var/db/krb5kdc/kadmind.acl
    26/01/15 08:50:06,788 digest-service[105]: digest-request: uid=0
    26/01/15 08:50:06,789 mDNSResponder[80]: mDNSResponder mDNSResponder-522.92.1 (Jun  3 2014 12:57:56) starting OSXVers 13
    26/01/15 08:50:06,795 awacsd[99]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    26/01/15 08:50:06,799 awacsd[99]: InnerStore CopyAllZones: no info in Dynamic Store
    26/01/15 08:50:06,824 digest-service[105]: digest-request: netr probe 0
    26/01/15 08:50:06,824 digest-service[105]: digest-request: init request
    26/01/15 08:50:06,833 digest-service[105]: digest-request: init return domain: BUILTIN server: MACBOOK-PRO-DI-ANTONIO indomain was: <NULL>
    26/01/15 08:50:06,848 WindowServer[114]: Server is starting up
    26/01/15 08:50:06,852 WindowServer[114]: Session 256 retained (2 references)
    26/01/15 08:50:06,852 WindowServer[114]: Session 256 released (1 references)
    26/01/15 08:50:06,856 mds[79]: (Normal) FMW: FMW 0 0
    26/01/15 08:50:06,870 com.apple.kextd[19]: kext com.paceap.kext.pacesupport.snowleopard  509009000 is in exception list, allowing to load
    26/01/15 08:50:06,874 WindowServer[114]: Session 256 retained (2 references)
    26/01/15 08:50:06,876 WindowServer[114]: init_page_flip: page flip mode is on
    26/01/15 08:50:06,878 systemkeychain[116]: done file: /var/run/systemkeychaincheck.done
    26/01/15 08:50:06,888 configd[25]: network changed.
    26/01/15 08:50:06,891 configd[25]: network changed: DNS*
    26/01/15 08:50:06,906 apsd[101]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    26/01/15 08:50:06,906 airportd[103]: airportdProcessDLILEvent: en0 attached (up)
    26/01/15 08:50:06,000 kernel[0]: AirPort_Brcm4360_P2PInterface::init name <p2p0> role 1
    26/01/15 08:50:06,000 kernel[0]: AirPort_Brcm4360_P2PInterface::init() <p2p> role 1
    26/01/15 08:50:06,939 mds[79]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    26/01/15 08:50:06,939 mds[79]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    26/01/15 08:50:06,946 locationd[85]: NBB-Could not get UDID for stable refill timing, falling back on random
    26/01/15 08:50:06,961 mds[79]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    26/01/15 08:50:06,973 WindowServer[114]: Found 27 modes for display 0x00000000 [27, 0]
    26/01/15 08:50:06,000 kernel[0]: nspace-handler-set-snapshot-time: 1422258608
    26/01/15 08:50:06,976 com.apple.mtmd[78]: Set snapshot time: 2015-01-26 08:50:08 +0100 (current time: 2015-01-26 08:50:06 +0100)
    26/01/15 08:50:07,009 WindowServer[114]: Found 1 modes for display 0x00000000 [1, 0]
    26/01/15 08:50:07,010 locationd[85]: Location icon should now be in state 'Inactive'
    26/01/15 08:50:07,016 locationd[85]: locationd was started after an unclean shutdown
    26/01/15 08:50:07,036 WindowServer[114]: Found 1 modes for display 0x00000000 [1, 0]
    26/01/15 08:50:07,054 WindowServer[114]: Found 1 modes for display 0x00000000 [1, 0]
    26/01/15 08:50:07,055 WindowServer[114]: mux_initialize: Couldn't find any matches
    26/01/15 08:50:07,056 WindowServer[114]: Found 27 modes for display 0x00000000 [27, 0]
    26/01/15 08:50:07,061 WindowServer[114]: Found 1 modes for display 0x00000000 [1, 0]
    26/01/15 08:50:07,061 WindowServer[114]: Found 1 modes for display 0x00000000 [1, 0]
    26/01/15 08:50:07,061 WindowServer[114]: Found 1 modes for display 0x00000000 [1, 0]
    26/01/15 08:50:07,100 WindowServer[114]: WSMachineUsesNewStyleMirroring: true
    26/01/15 08:50:07,100 WindowServer[114]: Display 0x04280880: GL mask 0x1; bounds (0, 0)[1440 x 900], 27 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a022, S/N 0, Unit 0, Rotation 0
    UUID 0xfd6e905353b752245892f9f7ec52cef3
    26/01/15 08:50:07,100 WindowServer[114]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    26/01/15 08:50:07,100 WindowServer[114]: 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
    26/01/15 08:50:07,100 WindowServer[114]: 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
    26/01/15 08:50:07,101 WindowServer[114]: 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
    26/01/15 08:50:07,114 WindowServer[114]: WSSetWindowTransform: Singular matrix
    26/01/15 08:50:07,114 WindowServer[114]: WSSetWindowTransform: Singular matrix
    26/01/15 08:50:07,114 WindowServer[114]: WSSetWindowTransform: Singular matrix
    26/01/15 08:50:07,118 mDNSResponder[80]: D2D_IPC: Loaded
    26/01/15 08:50:07,118 mDNSResponder[80]: D2DInitialize succeeded
    26/01/15 08:50:07,122 mDNSResponder[80]:   4: Listening for incoming Unix Domain Socket client requests
    26/01/15 08:50:07,131 WindowServer[114]: Display 0x04280880: GL mask 0x1; bounds (0, 0)[1440 x 900], 27 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a022, S/N 0, Unit 0, Rotation 0
    UUID 0xfd6e905353b752245892f9f7ec52cef3
    26/01/15 08:50:07,131 WindowServer[114]: Display 0x003f0040: GL mask 0x10; bounds (2464, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    26/01/15 08:50:07,131 WindowServer[114]: Display 0x003f003f: GL mask 0x8; bounds (2465, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    26/01/15 08:50:07,131 WindowServer[114]: Display 0x003f003e: GL mask 0x4; bounds (2466, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    26/01/15 08:50:07,132 WindowServer[114]: Display 0x003f003d: GL mask 0x2; bounds (2467, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    26/01/15 08:50:07,132 WindowServer[114]: CGXPerformInitialDisplayConfiguration
    26/01/15 08:50:07,132 WindowServer[114]:   Display 0x04280880: Unit 0; Vendor 0x610 Model 0xa022 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 2
    26/01/15 08:50:07,132 WindowServer[114]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    26/01/15 08:50:07,132 WindowServer[114]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    26/01/15 08:50:07,132 WindowServer[114]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    26/01/15 08:50:07,132 WindowServer[114]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2467,0)[1 x 1], Rotation 0, Resolution 1
    26/01/15 08:50:07,143 networkd[136]: networkd.136 built Aug 24 2013 22:08:46
    26/01/15 08:50:07,148 WindowServer[114]: GLCompositor: GL renderer id 0x01024502, GL mask 0x0000001f, accelerator 0x000034a7, unit 0, caps QEX|MIPMAP, vram 1536 MB
    26/01/15 08:50:07,148 WindowServer[114]: GLCompositor: GL renderer id 0x01024502, GL mask 0x0000001f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    26/01/15 08:50:07,148 WindowServer[114]: GLCompositor enabled for tile size [256 x 256]
    26/01/15 08:50:07,148 WindowServer[114]: CGXGLInitMipMap: mip map mode is on
    26/01/15 08:50:07,154 loginwindow[83]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    26/01/15 08:50:07,232 WindowServer[114]: Display 0x04280880: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    26/01/15 08:50:07,249 launchctl[143]: com.apple.findmymacmessenger: Already loaded
    26/01/15 08:50:07,262 com.apple.SecurityServer[22]: Session 100005 created
    26/01/15 08:50:07,292 UserEventAgent[145]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    26/01/15 08:50:07,309 loginwindow[83]: Setting the initial value of the magsave brightness level 2
    26/01/15 08:50:07,333 loginwindow[83]: Login Window Started Security Agent
    26/01/15 08:50:07,391 SecurityAgent[152]: This is the first run
    26/01/15 08:50:07,391 SecurityAgent[152]: MacBuddy was run = 0
    26/01/15 08:50:07,402 WindowServer[114]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280880 device: 0x7fb46a710840  isBackBuffered: 1 numComp: 3 numDisp: 3
    26/01/15 08:50:07,402 WindowServer[114]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fb46a710840) - enabling OpenGL
    26/01/15 08:50:07,000 kernel[0]: hfs: early journal init: volume on disk1s2 is read-only and journal is dirty.  Can not mount volume.
    26/01/15 08:50:07,000 kernel[0]: hfs_mountfs: hfs_early_journal_init failed, erroring out
    26/01/15 08:50:07,000 kernel[0]: hfs_mount: hfs_mountfs returned error=22 for device disk1s2
    26/01/15 08:50:07,493 diskarbitrationd[23]: unable to mount /dev/disk1s2 (status code 0x00000001).
    26/01/15 08:50:07,000 kernel[0]: jnl: disk1s2: replay_journal: from: 97083392 to: 98193408 (joffset 0x3a38000)
    26/01/15 08:50:07,935 parentalcontrolsd[172]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    These ones happened yesterday (on 30th January):
    Anonymous UUID:       78A4FC09-16F0-BC38-5EF6-E614CA9766E1
    Fri Jan 30 18:29:07 2015
    panic(cpu 6 caller 0xffffff8012adc24e): Kernel trap at 0xffffff8012aa3699, type 13=general protection, registers:
    CR0: 0x000000008001003b, CR2: 0x00007fdc78dc5000, CR3: 0x000000001521e000, CR4: 0x00000000001606e0
    RAX: 0x0000000000000001, RBX: 0x0000ff000000ff00, RCX: 0xffffff8035881cf0, RDX: 0x0000000000000821
    RSP: 0xffffff82118ab610, RBP: 0xffffff82118ab640, RSI: 0x0000000020b4f3bf, RDI: 0xffffff80188993d0
    R8:  0x0000000000000000, R9:  0x0000000000000001, R10: 0x0000000000000fff, R11: 0x0000000000001301
    R12: 0xffffff80188993d0, R13: 0xffffff80166e7000, R14: 0x00000000000ad000, R15: 0xffffff804921db20
    RFL: 0x0000000000010206, RIP: 0xffffff8012aa3699, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x00007fdc78dc5000, Error code: 0x0000000000000000, Fault CPU: 0x6
    Backtrace (CPU 6), Frame : Return Address
    0xffffff81f40c5df0 : 0xffffff8012a22f79
    0xffffff81f40c5e70 : 0xffffff8012adc24e
    0xffffff81f40c6040 : 0xffffff8012af3746
    0xffffff81f40c6060 : 0xffffff8012aa3699
    0xffffff82118ab640 : 0xffffff8012a9be8b
    0xffffff82118ab9b0 : 0xffffff8012a7368b
    0xffffff82118aba10 : 0xffffff8012ebc311
    0xffffff82118abb10 : 0xffffff8012ebc58e
    0xffffff82118abb40 : 0xffffff7f945fbc3d
    0xffffff82118abb70 : 0xffffff7f945fbb3f
    0xffffff82118abb90 : 0xffffff7f945fca3e
    0xffffff82118abbb0 : 0xffffff7f94682afb
    0xffffff82118abbc0 : 0xffffff7f94613947
    0xffffff82118abbf0 : 0xffffff7f94685565
    0xffffff82118abd80 : 0xffffff7f94612682
    0xffffff82118abde0 : 0xffffff7f94621ebe
    0xffffff82118abe20 : 0xffffff7f93907222
    0xffffff82118abe40 : 0xffffff7f939071b5
    0xffffff82118abe70 : 0xffffff7f94610bae
    0xffffff82118abea0 : 0xffffff7f94622a05
    0xffffff82118abed0 : 0xffffff7f946208a8
    0xffffff82118abef0 : 0xffffff8012eb07f0
    0xffffff82118abf30 : 0xffffff8012eaf292
    0xffffff82118abf80 : 0xffffff8012eaf367
    0xffffff82118abfb0 : 0xffffff8012ad7417
          Kernel Extensions in backtrace:
             com.apple.iokit.IOAcceleratorFamily2(98.22)[0EC64777-94B9-32E3-AC03-A2367895744 B]@0xffffff7f945fa000->0xffffff7f9465efff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7f930be000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[75D81741-64C1-3941-ADFA-9D6B6C434EE4]@0 xffffff7f939f1000
             com.apple.iokit.IOSurface(91.1)[5E4EA3A2-5AB6-3577-B32D-EF5717A0EF5B]@0xffffff7 f93902000->0xffffff7f93914fff
             com.apple.driver.AppleIntelHD5000Graphics(8.2.8)[E2455B1B-94F0-3555-AE3A-55B6D2 7F1383]@0xffffff7f9466c000->0xffffff7f946bcfff
                dependency: com.apple.iokit.IOSurface(91.1)[5E4EA3A2-5AB6-3577-B32D-EF5717A0EF5B]@0xffffff7 f93902000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7f930be000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[75D81741-64C1-3941-ADFA-9D6B6C434EE4]@0 xffffff7f939f1000
                dependency: com.apple.iokit.IOAcceleratorFamily2(98.22)[0EC64777-94B9-32E3-AC03-A2367895744 B]@0xffffff7f945fa000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x0000000012800000
    Kernel text base: 0xffffff8012a00000
    System model name: MacBookPro11,2 (Mac-3CBD00234E554E41)
    System uptime in nanoseconds: 11097825308845
    last loaded kext at 3901466674596: com.apple.filesystems.smbfs 2.0.2 (addr 0xffffff7f94b82000, size 335872)
    last unloaded kext at 3227205451902: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f94b6f000, size 32768)
    loaded kexts:
    com.paceap.kext.pacesupport.snowleopard 5.9
    tc.tctechnologies.driver.Saffire 4.1.4 18735
    com.apple.filesystems.smbfs 2.0.2
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleGraphicsDevicePolicy 3.6.22
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.ApplePlatformEnabler 2.0.9d6
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleIntelHD5000Graphics 8.2.8
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleIntelFramebufferAzul 8.2.8
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleCameraInterface 4.26.0
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleUSBCardReader 3.4.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AirPort.Brcm4360 842.21.65
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOAcceleratorFamily2 98.22
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.6
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IO80211Family 640.36
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    System Profile:
    Model: MacBookPro11,2, BootROM MBP112.0138.B07, 4 processors, Intel Core i7, 2.2 GHz, 16 GB, SMC 2.18f15
    Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (6.30.223.154.65)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM0256F, 251 GB
    USB Device: Internal Memory Card Reader
    USB Device: My Passport 0741
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: USB-PS/2 Optical Mouse
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1
    This is what happened according to console:
    30/01/15 18:28:42,000 kernel[0]: Google Chrome He (map: 0xffffff8037e0bd20) triggered DYLD shared region unnest for map: 0xffffff8037e0bd20, region 0x7fff87600000->0x7fff87800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    30/01/15 18:28:43,000 kernel[0]: Google Chrome He (map: 0xffffff8038273870) triggered DYLD shared region unnest for map: 0xffffff8038273870, region 0x7fff87600000->0x7fff87800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    30/01/15 18:29:03,000 bootlog[0]: BOOT_TIME 1422638943 0
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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".
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 kernel[0]: Longterm timer threshold: 1000 ms
    30/01/15 18:29:05,000 kernel[0]: PMAP: PCID enabled
    30/01/15 18:29:05,000 kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    30/01/15 18:29:05,000 kernel[0]: Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    30/01/15 18:29:05,000 kernel[0]: vm_page_bootstrap: 3964999 free pages and 196537 wired pages
    30/01/15 18:29:05,000 kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    30/01/15 18:29:05,000 kernel[0]: zone leak detection enabled
    30/01/15 18:29:05,000 kernel[0]: "vm_compressor_mode" is 4
    30/01/15 18:29:05,000 kernel[0]: standard timeslicing quantum is 10000 us
    30/01/15 18:29:05,000 kernel[0]: standard background quantum is 2500 us
    30/01/15 18:29:05,000 kernel[0]: mig_table_max_displ = 74
    30/01/15 18:29:05,000 kernel[0]: TSC Deadline Timer supported and enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    30/01/15 18:29:05,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    30/01/15 18:29:05,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    30/01/15 18:29:05,000 kernel[0]: calling mpo_policy_init for Sandbox
    30/01/15 18:29:05,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    30/01/15 18:29:05,000 kernel[0]: calling mpo_policy_init for Quarantine
    30/01/15 18:29:05,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    30/01/15 18:29:05,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    30/01/15 18:29:05,000 kernel[0]: The Regents of the University of California. All rights reserved.
    30/01/15 18:29:05,000 kernel[0]: MAC Framework successfully initialized
    30/01/15 18:29:05,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    30/01/15 18:29:05,000 kernel[0]: AppleKeyStore starting (BUILT: Jun  3 2014 21:40:51)
    30/01/15 18:29:05,000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    30/01/15 18:29:05,000 kernel[0]: ACPI: sleep states S3 S4 S5
    30/01/15 18:29:05,000 kernel[0]: pci (build 21:30:51 Jun  3 2014), flags 0x63008, pfm64 (39 cpu) 0x7f80000000, 0x80000000
    30/01/15 18:29:05,000 kernel[0]: [ PCI configuration begin ]
    30/01/15 18:29:05,000 kernel[0]: console relocated to 0x7f90000000
    30/01/15 18:29:05,000 kernel[0]: [ PCI configuration end, bridges 12, devices 12 ]
    30/01/15 18:29:05,000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    30/01/15 18:29:05,000 kernel[0]: SATA WARNING: IDENTIFY DEVICE checksum not implemented.
    30/01/15 18:29:05,000 kernel[0]: mcache: 8 CPU(s), 64 bytes CPU cache line size
    30/01/15 18:29:05,000 kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    30/01/15 18:29:05,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    30/01/15 18:29:05,000 kernel[0]: rooting via boot-uuid from /chosen: 0A52658A-4BA7-33D9-BA7C-167E7384CECF
    30/01/15 18:29:05,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>
    30/01/15 18:29:05,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    30/01/15 18:29:05,000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN kmod start
    30/01/15 18:29:05,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    30/01/15 18:29:05,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    30/01/15 18:29:05,000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN load succeeded
    30/01/15 18:29:05,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    30/01/15 18:29:05,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPP/SSD0@0/Ap pleAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlo ckStorageDriver/APPLE SSD SM0256F Media/IOGUIDPartitionScheme/Customer@2
    30/01/15 18:29:05,000 kernel[0]: BSD root: disk0s2, major 1, minor 3
    30/01/15 18:29:05,000 kernel[0]: jnl: b(1, 3): replay_journal: from: 8826368 to: 15343104 (joffset 0x19502000)
    30/01/15 18:29:05,000 kernel[0]: srom rev:11
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.834519: ChangeVCO => vco:960, xtalF:40, frac: 98, ndivMode: 3, ndivint: 24
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.834530: Data written into the PLL_CNTRL_ADDR2: 00000c31
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.834582: Data written into the PLL_CNTRL_ADDR3 (Fractional): 0000100e
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.841195: BTCOEXIST off
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.841383: BRCM tunables:
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.841387:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.841946: wl0: Broadcom BCM43a0, vendorID[0x14e4] BAR0[0xa0600004]
    30/01/15 18:29:05,000 kernel[0]: 6.30.223.154 (r420397)
    30/01/15 18:29:05,000 kernel[0]: jnl: b(1, 3): journal replay done.
    30/01/15 18:29:03,502 com.apple.launchd[1]: *** launchd[1] has started up. ***
    30/01/15 18:29:03,502 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    30/01/15 18:29:05,000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    30/01/15 18:29:05,000 kernel[0]: XCPM: registered
    30/01/15 18:29:05,000 kernel[0]: IOThunderboltSwitch<0xffffff8035c26800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    30/01/15 18:29:05,000 kernel[0]: IOThunderboltSwitch<0xffffff8035c26800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    30/01/15 18:29:05,000 kernel[0]: hfs: Removed 127 orphaned / unlinked files and 2415 directories
    30/01/15 18:29:05,000 kernel[0]: USBMSC Identifier (non-unique): 575838314135333131333039 0x1058 0x741 0x1022, 3
    30/01/15 18:29:05,000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    30/01/15 18:29:05,000 kernel[0]: USBMSC Identifier (non-unique): 000000000820 0x5ac 0x8406 0x820, 3
    30/01/15 18:29:05,099 com.apple.SecurityServer[22]: Session 100000 created
    30/01/15 18:29:05,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    30/01/15 18:29:05,000 kernel[0]: IO80211Interface::efiNVRAMPublished():
    30/01/15 18:29:05,178 com.apple.SecurityServer[22]: Entering service
    30/01/15 18:29:05,000 kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    30/01/15 18:29:05,193 configd[25]: dhcp_arp_router: en0 SSID unavailable
    30/01/15 18:29:05,224 UserEventAgent[18]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    30/01/15 18:29:05,228 UserEventAgent[18]: Captive: CNPluginHandler en0: Inactive
    30/01/15 18:29:05,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    30/01/15 18:29:05,000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    30/01/15 18:29:05,000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    30/01/15 18:29:05,000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    30/01/15 18:29:05,000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    30/01/15 18:29:05,000 kernel[0]: Previous Shutdown Cause: 5
    30/01/15 18:29:05,000 kernel[0]: AppleCamIn::init
    30/01/15 18:29:05,000 kernel[0]: AppleCamIn::probe
    30/01/15 18:29:05,000 kernel[0]: AppleCamIn::start
    30/01/15 18:29:05,000 kernel[0]: AppleCamIn::start: fS2DeviceRegs=0xffffff820162d000 (len=65536)
    30/01/15 18:29:05,000 kernel[0]: AppleCamIn::start: fS2DeviceMemory=0xffffff8202176000 (len=268435456)
    30/01/15 18:29:05,000 kernel[0]: AppleCamIn::start: fISPRegsMem=0xffffff8036eb5480 (len=1048576)
    30/01/15 18:29:05,000 kernel[0]: virtual bool AppleCamIn::start(IOService *): about to configure DDR
    30/01/15 18:29:05,000 kernel[0]: IOBluetoothUSBDFU::probe
    30/01/15 18:29:05,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8289 FirmwareVersion - 0x0079
    30/01/15 18:29:05,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][star

    UPDATE!
    I've tried to use Ableton Live 9.1.7 with MIDI tracks open with and without Google Chrome open.
    Chrome just appears to be the problem, because I encountered another kernel panic while it was open. Here you are the kernel report and the console events:
    Anonymous UUID:       78A4FC09-16F0-BC38-5EF6-E614CA9766E1
    Sat Jan 31 15:13:39 2015
    panic(cpu 0 caller 0xffffff8006edc24e): Kernel trap at 0xffffff8006ea3699, type 13=general protection, registers:
    CR0: 0x0000000080010033, CR2: 0x00007fff89a43e37, CR3: 0x000000006583c07b, CR4: 0x00000000001606e0
    RAX: 0x0000000000000001, RBX: 0x0000ff000000ff00, RCX: 0xffffff802d933000, RDX: 0x0000000000000821
    RSP: 0xffffff81f42fbd20, RBP: 0xffffff81f42fbd50, RSI: 0x0000000020b4f3bf, RDI: 0xffffff800cb80950
    R8:  0x0000000000000000, R9:  0xffffff81f42fbed0, R10: 0x0000000000000010, R11: 0x00007fff89a409b0
    R12: 0xffffff800cb80950, R13: 0xffffff800aae7000, R14: 0x00000000015eb000, R15: 0xffffff80286cf8e0
    RFL: 0x0000000000010206, RIP: 0xffffff8006ea3699, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x00007fff89a43e37, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81c85f7c50 : 0xffffff8006e22f79
    0xffffff81c85f7cd0 : 0xffffff8006edc24e
    0xffffff81c85f7ea0 : 0xffffff8006ef3746
    0xffffff81c85f7ec0 : 0xffffff8006ea3699
    0xffffff81f42fbd50 : 0xffffff8006e7833e
    0xffffff81f42fbf20 : 0xffffff8006edc68c
    0xffffff81f42fbfb0 : 0xffffff8006ef364b
    BSD process name corresponding to current thread: Google Chrome He
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x0000000006c00000
    Kernel text base: 0xffffff8006e00000
    System model name: MacBookPro11,2 (Mac-3CBD00234E554E41)
    System uptime in nanoseconds: 8538647824795
    last loaded kext at 245051319940: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7f88f6f000, size 65536)
    last unloaded kext at 305315012555: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7f88f6f000, size 57344)
    loaded kexts:
    com.paceap.kext.pacesupport.snowleopard 5.9
    tc.tctechnologies.driver.Saffire 4.1.4 18735
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleGraphicsDevicePolicy 3.6.22
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.ApplePlatformEnabler 2.0.9d6
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleCameraInterface 4.26.0
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleIntelHD5000Graphics 8.2.8
    com.apple.driver.AppleIntelFramebufferAzul 8.2.8
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleUSBCardReader 3.4.1
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AirPort.Brcm4360 842.21.65
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.kext.triggers 1.0
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleSMC 3.1.8
    com.apple.iokit.IOSurface 91.1
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOAcceleratorFamily2 98.22
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.6
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IO80211Family 640.36
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    Model: MacBookPro11,2, BootROM MBP112.0138.B07, 4 processors, Intel Core i7, 2.2 GHz, 16 GB, SMC 2.18f15
    Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (6.30.223.154.65)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM0256F, 251 GB
    USB Device: Internal Memory Card Reader
    USB Device: My Passport 0741
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: USB-PS/2 Optical Mouse
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1
    This is the console log:
    31/01/15 15:13:35,000 bootlog[0]: BOOT_TIME 1422713615 0
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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".
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:35,611 com.apple.launchd[1]: *** launchd[1] has started up. ***
    31/01/15 15:13:35,611 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    31/01/15 15:13:37,000 kernel[0]: Longterm timer threshold: 1000 ms
    31/01/15 15:13:37,000 kernel[0]: PMAP: PCID enabled
    31/01/15 15:13:37,000 kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    31/01/15 15:13:37,000 kernel[0]: Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    31/01/15 15:13:37,000 kernel[0]: vm_page_bootstrap: 4019271 free pages and 142265 wired pages
    31/01/15 15:13:37,000 kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    31/01/15 15:13:37,000 kernel[0]: zone leak detection enabled
    31/01/15 15:13:37,000 kernel[0]: "vm_compressor_mode" is 4
    31/01/15 15:13:37,000 kernel[0]: standard timeslicing quantum is 10000 us
    31/01/15 15:13:37,000 kernel[0]: standard background quantum is 2500 us
    31/01/15 15:13:37,000 kernel[0]: mig_table_max_displ = 74
    31/01/15 15:13:37,000 kernel[0]: TSC Deadline Timer supported and enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    31/01/15 15:13:37,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    31/01/15 15:13:37,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    31/01/15 15:13:37,000 kernel[0]: calling mpo_policy_init for Sandbox
    31/01/15 15:13:37,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    31/01/15 15:13:37,000 kernel[0]: calling mpo_policy_init for Quarantine
    31/01/15 15:13:37,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    31/01/15 15:13:37,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    31/01/15 15:13:37,000 kernel[0]: The Regents of the University of California. All rights reserved.
    31/01/15 15:13:37,000 kernel[0]: MAC Framework successfully initialized
    31/01/15 15:13:37,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    31/01/15 15:13:37,000 kernel[0]: AppleKeyStore starting (BUILT: Jun  3 2014 21:40:51)
    31/01/15 15:13:37,000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    31/01/15 15:13:37,000 kernel[0]: ACPI: sleep states S3 S4 S5
    31/01/15 15:13:37,000 kernel[0]: pci (build 21:30:51 Jun  3 2014), flags 0x63008, pfm64 (39 cpu) 0x7f80000000, 0x80000000
    31/01/15 15:13:37,000 kernel[0]: [ PCI configuration begin ]
    31/01/15 15:13:37,000 kernel[0]: console relocated to 0x7f90000000
    31/01/15 15:13:37,000 kernel[0]: [ PCI configuration end, bridges 12, devices 12 ]
    31/01/15 15:13:37,000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    31/01/15 15:13:37,000 kernel[0]: SATA WARNING: IDENTIFY DEVICE checksum not implemented.
    31/01/15 15:13:37,000 kernel[0]: mcache: 8 CPU(s), 64 bytes CPU cache line size
    31/01/15 15:13:37,000 kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    31/01/15 15:13:37,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    31/01/15 15:13:37,000 kernel[0]: rooting via boot-uuid from /chosen: 0A52658A-4BA7-33D9-BA7C-167E7384CECF
    31/01/15 15:13:37,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>
    31/01/15 15:13:37,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    31/01/15 15:13:37,000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN kmod start
    31/01/15 15:13:37,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    31/01/15 15:13:37,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    31/01/15 15:13:37,000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN load succeeded
    31/01/15 15:13:37,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    31/01/15 15:13:37,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPP/SSD0@0/Ap pleAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlo ckStorageDriver/APPLE SSD SM0256F Media/IOGUIDPartitionScheme/Customer@2
    31/01/15 15:13:37,000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    31/01/15 15:13:37,000 kernel[0]: jnl: b(1, 2): replay_journal: from: 24870400 to: 8900608 (joffset 0x19502000)
    31/01/15 15:13:37,000 kernel[0]: srom rev:11
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.854452: ChangeVCO => vco:960, xtalF:40, frac: 98, ndivMode: 3, ndivint: 24
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.854464: Data written into the PLL_CNTRL_ADDR2: 00000c31
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.854522: Data written into the PLL_CNTRL_ADDR3 (Fractional): 0000100e
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.861539: BTCOEXIST off
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.861735: BRCM tunables:
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.861739:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.862329: wl0: Broadcom BCM43a0, vendorID[0x14e4] BAR0[0xa0600004]
    31/01/15 15:13:37,000 kernel[0]: 6.30.223.154 (r420397)
    31/01/15 15:13:37,000 kernel[0]: jnl: b(1, 2): journal replay done.
    31/01/15 15:13:37,000 kernel[0]: IOThunderboltSwitch<0xffffff8028477800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    31/01/15 15:13:37,000 kernel[0]: IOThunderboltSwitch<0xffffff8028477800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    31/01/15 15:13:37,000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    31/01/15 15:13:37,000 kernel[0]: XCPM: registered
    31/01/15 15:13:37,000 kernel[0]: hfs: Removed 60 orphaned / unlinked files and 978 directories
    31/01/15 15:13:37,000 kernel[0]: USBMSC Identifier (non-unique): 575838314135333131333039 0x1058 0x741 0x1022, 3
    31/01/15 15:13:37,000 kernel[0]: USBMSC Identifier (non-unique): 000000000820 0x5ac 0x8406 0x820, 3
    31/01/15 15:13:37,000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    31/01/15 15:13:37,106 com.apple.SecurityServer[22]: Session 100000 created
    31/01/15 15:13:37,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    31/01/15 15:13:37,000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    31/01/15 15:13:37,181 com.apple.SecurityServer[22]: Entering service
    31/01/15 15:13:37,000 kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    31/01/15 15:13:37,203 configd[25]: dhcp_arp_router: en0 SSID unavailable
    31/01/15 15:13:37,227 UserEventAgent[18]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    31/01/15 15:13:37,235 UserEventAgent[18]: Captive: CNPluginHandler en0: Inactive
    31/01/15 15:13:37,000 kernel[0]: init
    31/01/15 15:13:37,000 kernel[0]: probe
    31/01/15 15:13:37,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    31/01/15 15:13:37,000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    31/01/15 15:13:37,000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    31/01/15 15:13:37,000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    31/01/15 15:13:37,000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    31/01/15 15:13:37,000 kernel[0]: Previous Shutdown Cause: 5
    31/01/15 15:13:37,000 kernel[0]: AppleCamIn::init
    31/01/15 15:13:37,000 kernel[0]: AppleCamIn::probe
    31/01/15 15:13:37,000 kernel[0]: AppleCamIn::start
    31/01/15 15:13:37,000 kernel[0]: AppleCamIn::start: fS2DeviceRegs=0xffffff81f4245000 (len=65536)
    31/01/15 15:13:37,000 kernel[0]: AppleCamIn::start: fS2DeviceMemory=0xffffff8200014000 (len=268435456)
    31/01/15 15:13:37,000 kernel[0]: AppleCamIn::start: fISPRegsMem=0xffffff8029837380 (len=1048576)
    31/01/15 15:13:37,000 kernel[0]: virtual bool AppleCamIn::start(IOService *): about to configure DDR
    31/01/15 15:13:37,309 configd[25]: setting hostname to "MacBook-Pro-di-Antonio.local"
    31/01/15 15:13:37,315 configd[25]: network changed.
    31/01/15 15:13:37,000 kernel[0]: IOBluetoothUSBDFU::probe
    31/01/15 15:13:37,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8289 FirmwareVersion - 0x0079
    31/01/15 15:13:37,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xf000 ****
    31/01/15 15:13:37,000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xf000 ****
    31/01/15 15:13:37,000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    31/01/15 15:13:37,000 kernel[0]: IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
    31/01/15 15:13:37,000 kernel[0]: IOPPF: XCPM mode
    31/01/15 15:13:37,000 kernel[0]: save_ddr_phy_regs: saving 127 DDR PHY shmoo-calibrated registers
    31/01/15 15:13:37,744 fseventsd[52]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (47507 2 47545)
    31/01/15 15:13:37,745 fseventsd[52]: log dir: /.fseventsd getting new uuid: D0CEFB1E-6108-4BBE-9BA0-7EFFC8121A51
    31/01/15 15:13:38,000 kernel[0]: SMC::smcIH WARNING: unexpected interrupt: 0x55
    31/01/15 15:13:38,000 kernel[0]: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x20 not set) notif=0x0
    31/01/15 15:13:38,000 kernel[0]: SMC::smcIH WARNING: unexpected interrupt: 0x54
    31/01/15 15:13:38,000 kernel[0]: start
    31/01/15 15:13:38,000 kernel[0]: DSMOS has arrived
    31/01/15 15:13:38,000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xf000
    31/01/15 15:13:38,000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    31/01/15 15:13:38,000 kernel[0]: Saffire - 4.1.4.18735 (x86_64) Jun  4 2014 19:12:40
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path_object = 0xffffff8027f5c620
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path = IOACPIPlane:/_SB/PCI0@0/RP04@1c0003/CMRA@0
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_device_entry = 0xffffff80283d9e00
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIDevice = 0xffffff80283d9e00
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIPowerEnabled = 1
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::start - link control offset in PCI bridge = 0x50
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::start - pmcsr offset in PCI bridge = 0xa4
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::power_off_hardware
    31/01/15 15:13:38,000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    31/01/15 15:13:38,000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x1b40 -- 0xb000 -- 0xf000 ****
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::initForPM
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    31/01/15 15:13:39,000 kernel[0]: hmm.. mismatch sizes: 3100 vs 20
    31/01/15 15:13:39,000 kernel[0]: fGPUIdleIntervalMS = 0
    31/01/15 15:13:39,000 kernel[0]: fGPUIdleIntervalMS = 0
    31/01/15 15:13:39,000 kernel[0]: fGPUIdleIntervalMS = 0
    31/01/15 15:13:39,000 kernel[0]: fGPUIdleIntervalMS = 0
    31/01/15 15:13:39,000 kernel[0]: en1: promiscuous mode enable succeeded
    31/01/15 15:13:39,000 kernel[0]: en2: promiscuous mode enable succeeded
    31/01/15 15:13:39,000 kernel[0]: VM Swap Subsystem is ON
    31/01/15 15:13:39,658 hidd[88]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    31/01/15 15:13:39,659 hidd[88]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    31/01/15 15:13:39,664 SystemStarter[64]: lstat("/Library/StartupItems/StartupParameters.plist/StartupParameters.plist"): Not a directory
    31/01/15 15:13:39,665 DumpPanic[91]: Saved panic report for kernel to /Library/Logs/DiagnosticReports/Kernel_2015-01-31-151339_MacBook-Pro-di-Antonio .panic
    31/01/15 15:13:39,693 com.apple.usbmuxd[62]: usbmuxd-344.3 on Oct 13 2014 at 21:10:09, running 64 bit
    31/01/15 15:13:39,744 loginwindow[83]: Login Window Application Started
    31/01/15 15:13:39,760 awacsd[99]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    31/01/15 15:13:39,764 awacsd[99]: InnerStore CopyAllZones: no info in Dynamic Store
    31/01/15 15:13:39,773 mDNSResponder[80]: mDNSResponder mDNSResponder-522.92.1 (Jun  3 2014 12:57:56) starting OSXVers 13
    31/01/15 15:13:39,775 digest-service[105]: label: default
    31/01/15 15:13:39,776 digest-service[105]: dbname: od:/Local/Default
    31/01/15 15:13:39,776 digest-service[105]: mkey_file: /var/db/krb5kdc/m-key
    31/01/15 15:13:39,776 digest-service[105]: acl_file: /var/db/krb5kdc/kadmind.acl
    31/01/15 15:13:39,778 digest-service[105]: digest-request: uid=0
    31/01/15 15:13:39,826 WindowServer[115]: Server is starting up
    31/01/15 15:13:39,827 digest-service[105]: digest-request: netr probe 0
    31/01/15 15:13:39,828 digest-service[105]: digest-request: init request
    31/01/15 15:13:39,830 WindowServer[115]: Session 256 retained (2 references)
    31/01/15 15:13:39,830 WindowServer[115]: Session 256 released (1 references)
    31/01/15 15:13:39,835 mds[79]: (Normal) FMW: FMW 0 0
    31/01/15 15:13:39,836 digest-service[105]: digest-request: init return domain: BUILTIN server: MACBOOK-PRO-DI-ANTONIO indomain was: <NULL>
    31/01/15 15:13:39,841 com.apple.kextd[19]: kext com.paceap.kext.pacesupport.snowleopard  509009000 is in exception list, allowing to load
    31/01/15 15:13:39,851 WindowServer[115]: Session 256 retained (2 references)
    31/01/15 15:13:39,852 WindowServer[115]: init_page_flip: page flip mode is on
    31/01/15 15:13:39,854 systemkeychain[116]: done file: /var/run/systemkeychaincheck.done
    31/01/15 15:13:39,864 configd[25]: network changed.
    31/01/15 15:13:39,867 configd[25]: network changed: DNS*
    31/01/15 15:13:39,878 apsd[101]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    31/01/15 15:13:39,905 mds[79]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    31/01/15 15:13:39,906 mds[79]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    31/01/15 15:13:39,926 mds[79]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    31/01/15 15:13:39,938 airportd[103]: airportdProcessDLILEvent: en0 attached (up)
    31/01/15 15:13:39,000 kernel[0]: nspace-handler-set-snapshot-time: 1422713621
    31/01/15 15:13:39,000 kernel[0]: AirPort_Brcm4360_P2PInterface::init name <p2p0> role 1
    31/01/15 15:13:39,000 kernel[0]: AirPort_Brcm4360_P2PInterface::init() <p2p> role 1
    31/01/15 15:13:39,939 com.apple.mtmd[78]: Set snapshot time: 2015-01-31 15:13:41 +0100 (current time: 2015-01-31 15:13:39 +0100)
    31/01/15 15:13:39,952 WindowServer[115]: Found 27 modes for display 0x00000000 [27, 0]
    31/01/15 15:13:39,977 locationd[85]: NBB-Could not get UDID for stable refill timing, falling back on random
    31/01/15 15:13:39,988 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    31/01/15 15:13:40,018 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    31/01/15 15:13:40,035 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    31/01/15 15:13:40,036 WindowServer[115]: mux_initialize: Couldn't find any matches
    31/01/15 15:13:40,037 WindowServer[115]: Found 27 modes for display 0x00000000 [27, 0]
    31/01/15 15:13:40,042 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    31/01/15 15:13:40,042 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    31/01/15 15:13:40,042 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    31/01/15 15:13:40,066 mDNSResponder[80]: D2D_IPC: Loaded
    31/01/15 15:13:40,067 mDNSResponder[80]: D2DInitialize succeeded
    31/01/15 15:13:40,068 WindowServer[115]: WSMachineUsesNewStyleMirroring: true
    31/01/15 15:13:40,068 WindowServer[115]: Display 0x04280880: GL mask 0x1; bounds (0, 0)[1440 x 900], 27 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a022, S/N 0, Unit 0, Rotation 0
    UUID 0xfd6e905353b752245892f9f7ec52cef3
    31/01/15 15:13:40,069 WindowServer[115]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    31/01/15 15:13:40,069 WindowServer[115]: 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
    31/01/15 15:13:40,069 WindowServer[115]: 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
    31/01/15 15:13:40,069 WindowServer[115]: 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
    31/01/15 15:13:40,069 WindowServer[115]: WSSetWindowTransform: Singular matrix
    31/01/15 15:13:40,069 WindowServer[115]: WSSetWindowTransform: Singular matrix
    31/01/15 15:13:40,069 WindowServer[115]: WSSetWindowTransform: Singular matrix
    31/01/15 15:13:40,069 mDNSResponder[80]:   4: Listening for incoming Unix Domain Socket client requests
    31/01/15 15:13:40,079 WindowServer[115]: Display 0x04280880: GL mask 0x1; bounds (0, 0)[1440 x 900], 27 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a022, S/N 0, Unit 0, Rotation 0
    UUID 0xfd6e905353b752245892f9f7ec52cef3
    31/01/15 15:13:40,079 WindowServer[115]: Display 0x003f0040: GL mask 0x10; bounds (2464, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    31/01/15 15:13:40,079 WindowServer[115]: Display 0x003f003f: GL mask 0x8; bounds (2465, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    31/01/15 15:13:40,079 WindowServer[115]: Display 0x003f003e: GL mask 0x4; bounds (2466, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    31/01/15 15:13:40,079 WindowServer[115]: Display 0x003f003d: GL mask 0x2; bounds (2467, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    31/01/15 15:13:40,079 WindowServer[115]: CGXPerformInitialDisplayConfiguration
    31/01/15 15:13:40,079 WindowServer[115]:   Display 0x04280880: Unit 0; Vendor 0x610 Model 0xa022 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 2
    31/01/15 15:13:40,079 WindowServer[115]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    31/01/15 15:13:40,079 WindowServer[115]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    31/01/15 15:13:40,079 WindowServer[115]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    31/01/15 15:13:40,079 WindowServer[115]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2467,0)[1 x 1], Rotation 0, Resolution 1
    31/01/15 15:13:40,091 networkd[136]: networkd.136 built Aug 24 2013 22:08:46
    31/01/15 15:13:40,092 locationd[85]: Location icon should now be in state 'Inactive'
    31/01/15 15:13:40,093 WindowServer[115]: GLCompositor: GL renderer id 0x01024502, GL mask 0x0000001f, accelerator 0x000034a7, unit 0, caps QEX|MIPMAP, vram 1536 MB
    31/01/15 15:13:40,094 WindowServer[115]: GLCompositor: GL renderer id 0x01024502, GL mask 0x0000001f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    31/01/15 15:13:40,094 WindowServer[115]: GLCompositor enabled for tile size [256 x 256]
    31/01/15 15:13:40,094 WindowServer[115]: CGXGLInitMipMap: mip map mode is on
    31/01/15 15:13:40,099 locationd[85]: locationd was started after an unclean shutdown
    31/01/15 15:13:40,101 loginwindow[83]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    31/01/15 15:13:40,185 WindowServer[115]: Display 0x04280880: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    31/01/15 15:13:40,203 launchctl[143]: com.apple.findmymacmessenger: Already loaded
    31/01/15 15:13:40,219 com.apple.SecurityServer[22]: Session 100005 created
    31/01/15 15:13:40,272 loginwindow[83]: Setting the initial value of the magsave brightness level 1
    31/01/15 15:13:40,294 UserEventAgent[144]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    31/01/15 15:13:40,300 loginwindow[83]: Login Window Started Security Agent
    31/01/15 15:13:40,360 SecurityAgent[152]: This is the first run
    31/01/15 15:13:40,360 SecurityAgent[152]: MacBuddy was run = 0
    31/01/15 15:13:40,384 WindowServer[115]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280880 device: 0x7fc788c0de10  isBackBuffered: 1 numComp: 3 numDisp: 3
    31/01/15 15:13:40,384 WindowServer[115]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fc788c0de10) - enabling OpenGL
    31/01/15 15:13:40,000 kernel[0]: hfs: early journal init: volume on disk1s2 is read-only and journal is dirty.  Can not mount volume.
    31/01/15 15:13:40,000 kernel[0]: hfs_mountfs: hfs_early_journal_init failed, erroring out
    31/01/15 15:13:40,000 kernel[0]: hfs_mount: hfs_mountfs returned error=22 for device disk1s2
    31/01/15 15:13:40,421 diskarbitrationd[24]: unable to mount /dev/disk1s2 (status code 0x00000001).
    31/01/15 15:13:40,000 kernel[0]: jnl: disk1s2: replay_journal: from: 103047168 to: 106344448 (joffset 0x3a38000)
    31/01/15 15:13:40,869 parentalcontrolsd[172]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    31/01/15 15:13:41,000 kernel[0]: en0: 802.11d country code set to 'AL'.
    31/01/15 15:13:41,000 kernel[0]: en0: 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
    31/01/15 15:13:42,070 WindowServer[115]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    31/01/15 15:13:42,090 WindowServer[115]: Display 0x04280880: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    31/01/15 15:13:42,115 WindowServer[115]: Display 0x04280880: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    31/01/15 15:13:43,000 kernel[0]: ARPT: 8.880612: MacAuthEvent en0   Auth result for: 00:04:ed:93:06:00  MAC AUTH succeeded
    31/01/15 15:13:43,000 kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    31/01/15 15:13:43,000 kernel[0]: AirPort: Link Up on en0
    31/01/15 15:13:43,000 kernel[0]: en0: BSSID changed to 00:04:ed:93:06:00
    31/01/15 15:13:43,000 kernel[0]: AirPort: RSN handshake complete on en0
    31/01/15 15:13:43,000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    31/01/15 15:13:45,091 mtmfs[77]: mount succeeded for /Volumes/MobileBackups
    31/01/15 15:13:45,100 mds[79]: (Normal) Volume: volume:0x7fcf9481fc00 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    31/01/15 15:13:45,101 mds[79]: (Normal) Volume: volume:0x7fcf9481fc00 ********** Created snapshot backup index
    31/01/15 15:13:45,000 kernel[0]: jnl: disk1s2: journal replay done.
    31/01/15 15:13:45,709 configd[25]: network changed: DNS* Proxy
    31/01/15 15:13:45,709 UserEventAgent[18]: Captive: [CNInfoNetworkActive:1655] en0: SSID 'Rete Wireless Casa' making interface primary (protected network)
    31/01/15 15:13:45,709 UserEventAgent[18]: Captive: CNPluginHandler en0: Evaluating
    31/01/15 15:13:45,710 UserEventAgent[18]: Captive: en0: Probing 'Rete Wireless Casa'
    31/01/15 15:13:45,713 configd[25]: network changed: v4(en0!:192.168.1.100) DNS+ Proxy+ SMB
    31/01/15 15:13:45,806 UserEventAgent[18]: Captive: CNPluginHandler en0: Authenticated
    31/01/15 15:13:45,707 ntpd[59]: proto: precision = 1.000 usec
    31/01/15 15:13:47,013 SecurityAgent[152]: User info context values set for antoniopastore
    31/01/15 15:13:47,108 apsd[101]: Unrecognized leaf certificate
    31/01/15 15:13:47,000 kernel[0]: hfs: Removed 0 orphaned / unlinked files and 49 directories
    31/01/15 15:13:47,000 kernel[0]: hfs: mounted PASTO on device disk1s2
    31/01/15 15:13:47,191 SecurityAgent[152]: Login Window login proceeding
    31/01/15 15:13:47,438 fseventsd[52]: event logs in /Volumes/PASTO/.fseventsd out of sync with volume.  destroying old logs. (47555 7 47555)
    31/01/15 15:13:47,620 fseventsd[52]: log dir: /Volumes/PASTO/.fseventsd getting new uuid: 4ED00700-ADC7-436D-80F4-E34671CA64AF
    31/01/15 15:13:47,673 fseventsd[52]: Events arrived for /Volumes/PASTO after an unmount request! Re-initializing.
    31/01/15 15:13:47,673 fseventsd[52]: creating a dls for /Volumes/PASTO but it already has one...
    31/01/15 15:13:50,000 kernel[0]: hfs: unmount initiated on PASTO on device disk1s2
    31/01/15 15:13:51,176 loginwindow[83]: Login Window - Returned from Security Agent
    31/01/15 15:13:51,209 loginwindow[83]: USER_PROCESS: 83 console
    31/01/15 15:13:51,226 airportd[103]: _doAutoJoin: Already associated to “Rete Wireless Casa”. Bailing on auto-join.
    31/01/15 15:13:51,000 kernel[0]: AppleKeyStore:Sending lock change 0
    31/01/15 15:13:51,289 com.apple.launchd.peruser.501[185]: Background: Aqua: Registering new GUI session.
    31/01/15 15:13:51,305 com.apple.launchd.peruser.501[185]: (com.spotify.webhelper) Unknown key: SpotifyPath
    31/01/15 15:13:51,305 com.apple.launchd.peruser.501[185]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    31/01/15 15:13:51,306 com.apple.launchd.peruser.501[185]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    31/01/15 15:13:51,308 launchctl[188]: com.apple.pluginkit.pkd: Already loaded
    31/01/15 15:13:51,308 launchctl[188]: com.apple.sbd: Already loaded
    31/01/15 15:13:51,315 distnoted[190]: # distnote server agent  absolute time: 17.423483612   civil time: Sat Jan 31 15:13:51 2015   pid: 190 uid: 501  root: no
    31/01/15 15:13:51,491 WindowServer[115]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    31/01/15 15:13:51,546 sharingd[218]: Starting Up...
    31/01/15 15:13:51,000 kernel[0]: Google Chrome (map: 0xffffff802ba3ac30) triggered DYLD shared region unnest for map: 0xffffff802ba3ac30, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:51,569 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    31/01/15 15:13:51,571 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    31/01/15 15:13:51,571 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    31/01/15 15:13:51,571 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    31/01/15 15:13:51,571 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    31/01/15 15:13:51,588 WindowServer[115]: Display 0x04280880: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    31/01/15 15:13:51,594 com.apple.audio.DriverHelper[211]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    31/01/15 15:13:51,594 com.apple.audio.DriverHelper[211]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    31/01/15 15:13:51,594 com.apple.audio.DriverHelper[211]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    31/01/15 15:13:51,682 xpcproxy[228]: assertion failed: 13E28: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    31/01/15 15:13:51,789 com.apple.SecurityServer[22]: Session 100008 created
    31/01/15 15:13:51,809 SystemUIServer[203]: MenuCracker 2.2 (/Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/MenuCracker.me nu)
      See http://sourceforge.net/projects/menucracker
      MenuCracker is now loaded. Ready to accept new menu extras.
    31/01/15 15:13:51,809 SystemUIServer[203]: failed to instantiate and get the principal class of bundle: NSBundle </Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/MenuCracker.me nu> (loaded)
    31/01/15 15:13:51,819 SystemUIServer[203]: MenuCracker: Allowing "MenuMeterCPUExtra".
    31/01/15 15:13:51,819 xpcproxy[234]: assertion failed: 13E28: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    31/01/15 15:13:51,820 SystemUIServer[203]: MenuCracker: Allowing "MenuMeterDiskExtra".
    31/01/15 15:13:51,821 SystemUIServer[203]: MenuCracker: Allowing "MenuMeterMemExtra".
    31/01/15 15:13:51,822 SystemUIServer[203]: MenuCracker: Allowing "MenuMeterNetExtra".
    31/01/15 15:13:51,826 SystemUIServer[203]: Could not load menu extra NSBundle </Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/MenuCracker.me nu> (loaded) for Class (null)
    31/01/15 15:13:51,827 SystemUIServer[203]: Cannot find executable for CFBundle 0x7fa632662fa0 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    31/01/15 15:13:51,841 SystemUIServer[203]: Cannot find executable for CFBundle 0x7fa6326614d0 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    31/01/15 15:13:51,842 SystemUIServer[203]: Cannot find executable for CFBundle 0x7fa632660100 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    31/01/15 15:13:51,851 UserEventAgent[189]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    31/01/15 15:13:51,892 com.apple.IconServicesAgent[236]: IconServicesAgent launched.
    31/01/15 15:13:51,905 Finder[204]: Failed to mmap file. The file has zero length.
    31/01/15 15:13:51,905 Finder[204]: Failed to mmap file. The file has zero length.
    31/01/15 15:13:51,905 Finder[204]: Failed to mmap file. The file has zero length.
    31/01/15 15:13:51,905 Finder[204]: Failed to mmap file. The file has zero length.
    31/01/15 15:13:51,905 Finder[204]: Failed to mmap file. The file has zero length.
    31/01/15 15:13:51,915 com.apple.IconServicesAgent[236]: Failed to mmap file. The file has zero length.
    31/01/15 15:13:51,932 SystemUIServer[203]: MenuMeterCPU loaded.
    31/01/15 15:13:51,944 SystemUIServer[203]: MenuMeterDisk loaded.
    31/01/15 15:13:51,951 SystemUIServer[203]: MenuMeterMem loaded.
    31/01/15 15:13:51,962 SystemUIServer[203]: MenuMeterNet loaded.
    31/01/15 15:13:51,997 SystemUIServer[203]: *** WARNING: Method convertRectToBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications.
    31/01/15 15:13:51,997 SystemUIServer[203]: *** WARNING: Method convertRectFromBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications.
    31/01/15 15:13:52,006 SystemUIServer[203]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    31/01/15 15:13:52,006 SystemUIServer[203]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    31/01/15 15:13:52,083 Console[199]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    31/01/15 15:13:52,213 com.apple.SecurityServer[22]: Session 100012 created
    31/01/15 15:13:52,303 com.apple.IconServicesAgent[236]: main Failed to composit image for binding VariantBinding [0x12d] flags: 0x8 binding: FileInfoBinding [0x21f] - extension: mov, UTI: com.apple.quicktime-movie, fileType: ????.
    31/01/15 15:13:52,304 quicklookd[237]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: mov, UTI: com.apple.quicktime-movie, fileType: ???? request size:128 scale: 1
    31/01/15 15:13:52,305 com.apple.IconServicesAgent[236]: main Failed to composit image for binding VariantBinding [0x221] flags: 0x8 binding: FileInfoBinding [0x12f] - extension: MOV, UTI: com.apple.quicktime-movie, fileType: ????.
    31/01/15 15:13:52,306 quicklookd[237]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: MOV, UTI: com.apple.quicktime-movie, fileType: ???? request size:128 scale: 1
    31/01/15 15:13:52,329 com.apple.time[189]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    31/01/15 15:13:52,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9bd20) triggered DYLD shared region unnest for map: 0xffffff802cc9bd20, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:52,345 SystemUIServer[203]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    31/01/15 15:13:52,345 SystemUIServer[203]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    31/01/15 15:13:52,410 com.apple.SecurityServer[22]: Session 100013 created
    31/01/15 15:13:52,000 kernel[0]: hfs: mounted PASTO on device disk1s2
    31/01/15 15:13:52,809 accountsd[256]: assertion failed: 13E28: liblaunch.dylib + 25164 [A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A]: 0x25
    31/01/15 15:13:52,953 AirPlayUIAgent[257]: 2015-01-31 03:13:52.952738 PM [AirPlayUIAgent] Changed PIN pairing: no
    31/01/15 15:13:52,955 AirPlayUIAgent[257]: 2015-01-31 03:13:52.955107 PM [AirPlayUIAgent] Changed PIN pairing: no
    31/01/15 15:13:53,003 com.apple.time[189]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    31/01/15 15:13:53,026 com.apple.NotesMigratorService[259]: Joined Aqua audit session
    31/01/15 15:13:53,043 com.apple.internetaccounts[234]: An instance 0x7fa6fb230d10 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fa6fb230e30> (
    <NSKeyValueObservance 0x7fa6fb230dc0: Observer: 0x7fa6fb22a380, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff97ad143b, Property: 0x7fa6fb232f70>
    31/01/15 15:13:53,046 com.apple.internetaccounts[234]: An instance 0x7fa6fb12ff00 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fa6fb130120> (
    <NSKeyValueObservance 0x7fa6fb12ffb0: Observer: 0x7fa6fb12f810, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff97ad143b, Property: 0x7fa6fb232f70>
    31/01/15 15:13:53,056 com.apple.internetaccounts[234]: An instance 0x7fa6f96a5460 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fa6f96a55f0> (
    <NSKeyValueObservance 0x7fa6f96a5510: Observer: 0x7fa6f96a4390, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff97ad143b, Property: 0x7fa6fb232f70>
    31/01/15 15:13:53,059 com.apple.internetaccounts[234]: An instance 0x7fa6fb3c56a0 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fa6fb3b8220> (
    <NSKeyValueObservance 0x7fa6fb3c5720: Observer: 0x7fa6fb397350, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff97ad143b, Property: 0x7fa6fb232f70>
    31/01/15 15:13:53,076 com.apple.internetaccounts[234]: An instance 0x7fa6f945d7f0 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fa6f945d910> (
    <NSKeyValueObservance 0x7fa6f945d8a0: Observer: 0x7fa6f945c100, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff97ad143b, Property: 0x7fa6fb232f70>
    31/01/15 15:13:53,309 com.apple.IconServicesAgent[236]: main Failed to composit image for binding VariantBinding [0x24b] flags: 0x8 binding: FileInfoBinding [0x159] - extension: midi, UTI: public.midi-audio, fileType: ????.
    31/01/15 15:13:53,310 quicklookd[237]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: midi, UTI: public.midi-audio, fileType: ???? request size:256 scale: 1
    31/01/15 15:13:53,314 com.apple.IconServicesAgent[236]: main Failed to composit image for binding VariantBinding [0x15b] flags: 0x8 binding: FileInfoBinding [0x24d] - extension: sib, UTI: com.sibelius.score, fileType: ????.
    31/01/15 15:13:53,315 quicklookd[237]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x803] flags: 0x8 binding: FileInfoBinding [0x703] - extension: sib, UTI: com.sibelius.score, fileType: ???? request size:256 scale: 1
    31/01/15 15:13:53,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9b1e0) triggered DYLD shared region unnest for map: 0xffffff802cc9b1e0, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:53,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9b2d0) triggered DYLD shared region unnest for map: 0xffffff802cc9b2d0, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:53,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9b000) triggered DYLD shared region unnest for map: 0xffffff802cc9b000, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:53,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9b0f0) triggered DYLD shared region unnest for map: 0xffffff802cc9b0f0, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:54,000 kernel[0]: Google Chrome He (map: 0xffffff802ddb0f00) triggered DYLD shared region unnest for map: 0xffffff802ddb0f00, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:54,476 awacsd[99]: Exiting
    31/01/15 15:13:55,887 com.apple.dock.extra[260]: <NSXPCConnection: 0x7fef0ca03f90>: received an undecodable message (no exported object to receive message). Dropping message.
    31/01/15 15:13:57,076 com.apple.launchd.peruser.501[185]: (com.apple.iTunesHelper.45440[305]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,094 com.apple.launchd.peruser.501[185]: (com.spotify.client.78704[306]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,107 com.apple.launchd.peruser.501[185]: (com.google.GoogleDrive.75712[307]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,117 com.apple.launchd.peruser.501[185]: (com.google.android.mtpagent.115664[308]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,137 com.apple.launchd.peruser.501[185]: (com.yourcompany.KiesAgent.116192[309]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,149 com.apple.launchd.peruser.501[185]: (OpenObject.fuspredownloader.117776[310]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,240 KiesAgent[309]: KiesAgent started, 0
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,364 Paragon Updater[300]: opening log at /Users/antoniopastore/Library/Logs/paragon.Paragon-Updater.log ...
    31/01/15 15:13:57,365 Paragon Updater[300]: done
    31/01/15 15:13:57,367 Paragon Updater[300]: Updater started. Updater version: 1.97
    31/01/15 15:13:57,368 Paragon Updater[300]: Arguments: --check, --delay=30
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,441 Skip Tunes[315]: Can't find app with identifier com.rdio.desktop
    31/01/15 15:13:57,471 Google Drive[307]: PyObjCPointer created: at 0xa02b2438 of type {__CFBoolean=}
    31/01/15 15:13:57,472 Google Drive[307]: PyObjCPointer created: at 0xa02b2430 of type {__CFBoolean=}
    31/01/15 15:13:57,474 Google Drive[307]: PyObjCPointer created: at 0xa02b2440 of type {__CFNumber=}
    31/01/15 15:13:57,474 Google Drive[307]: PyObjCPointer created: at 0xa02b2450 of type {__CFNumber=}
    31/01/15 15:13:57,475 Google Drive[307]: PyObjCPointer created: at 0xa02b2460 of type {__CFNumber=}
    31/01/15 15:13:57,516 WiFiKeychainProxy[288]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    31/01/15 15:13:57,517 WiFiKeychainProxy[288]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    31/01/15 15:13:53,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9b000) triggered DYLD shared region unnest for map: 0xffffff802cc9b000, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:53,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9b0f0) triggered DYLD shared region unnest for map: 0xffffff802cc9b0f0, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:54,000 kernel[0]: Google Chrome He (map: 0xffffff802ddb0f00) triggered DYLD shared region unnest for map: 0xffffff802ddb0f00, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:54,476 awacsd[99]: Exiting
    31/01/15 15:13:55,887 com.apple.dock.extra[260]: <NSXPCConnection: 0x7fef0ca03f90>: received an undecodable message (no exported object to receive message). Dropping message.
    31/01/15 15:13:57,076 com.apple.launchd.peruser.501[185]: (com.apple.iTunesHelper.45440[305]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,094 com.apple.launchd.peruser.501[185]: (com.spotify.client.78704[306]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,107 com.apple.launchd.peruser.501[185]: (com.google.GoogleDrive.75712[307]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,117 com.apple.launchd.peruser.501[185]: (com.google.android.mtpagent.115664[308]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,137 com.apple.launchd.peruser.501[185]: (com.yourcompany.KiesAgent.116192[309]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,149 com.apple.launchd.peruser.501[185]: (OpenObject.fuspredownloader.117776[310]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,240 KiesAgent[309]: KiesAgent started, 0
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,364 Paragon Updater[300]: opening log at /Users/antoniopastore/Library/Logs/paragon.Paragon-Updater.log ...
    31/01/15 15:13:57,365 Paragon Updater[300]: done
    31/01/15 15:13:57,367 Paragon Updater[300]: Updater started. Updater version: 1.97
    31/01/15 15:13:57,368 Paragon Updater[300]: Arguments: --check, --delay=30
    31

  • Finder Crash in 10.9

    First crash of the Finder under 10.9 after 3 weeks of Mavericks.
    Minutes before I had the new "WD_Drive_Manager_Installer_3_1_0_14" installed.
    The restart was done, I open the finder and every Icon on the right disappeared in addition to the Finder Window.
    Why did I installed it? To be able to see the state of the 2 disk in my WD Studio working in raid1.
    It was one of the first time (since 10.9) I dare plug my WD Studio on the MBP.
    Now, the WD Studio is unplugged once again!
    I uninstalled WD_Drive_Manager with the WD_Drive_Manager-uninstaller and removed by hand some other WD files.
    I think the WD program was the problem, BUT I am not able to confirm it by reading the crash report.
    Can someone spot the problem in the Finder Crash Report?
    Thank you.
    My System:
    Hardware Information:
              MacBook Pro (17-inch 2.4GHZ)
              MacBook Pro - model: MacBookPro3,1
              1 2.4 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              GeForce 8600M GT     - VRAM: 256 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 1:46:58
    Disk Information:
              WDC WD7500BPKT-00PK4T0 disk0 : (750,16 GB)
                        EFI (disk0s1) <not mounted>: 209,7 MB
                        Macintosh HD (disk0s2) /: 749,3 GB (599,49 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple Inc. Built-in iSight
              EPSON EPSON Scanner
              Apple Inc. Bluetooth USB Host Controller
              Apple Computer Apple Internal Keyboard / Trackpad
              Apple Computer, Inc. IR Receiver
    FireWire Information:
              Maxtor 1394 Storage Front Panel* 400mbit - 400mbit max
                        EFI (disk1s1) <not mounted>: 209,7 MB
                        Maxtor Backup (disk1s2) /Volumes/Maxtor Backup: 203,58 GB (56,22 GB free)
    Thunderbolt Information:
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
    Launch Agents:
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist
              [loaded] com.spotify.webhelper.plist
    User Login Items:
              iTunesHelper
              Dropbox
    3rd Party Preference Panes:
              Flash Player
              Flip4Mac WMV
    Internet Plug-ins:
              Default Browser.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              GarminGpsControl.plugin
              NPVirtools.plugin
              QuickTime Plugin.plugin
              Silverlight.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 749,3 GB Disk used: 149,8 GB
              Destinations:
                        Untitled [Local] (Last used)
                        Total size: 203,58 GB
                        Total number of backups: 28
                        Oldest backup: 2013-11-10 17:30:42 +0000
                        Last backup: 2013-11-28 16:08:35 +0000
                        Size of backup disk: Too small
                                  Backup size 203,58 GB < (Disk used 149,8 GB X 3)
    Top Processes by CPU:
                   8%          syncdefaultsd
                   5%          WindowServer
                   2%          EtreCheck
                   1%          Finder
                   1%          com.apple.WebKit.WebContent
                   0%          fontd
                   0%          firefox
                   0%          taskgated
                   0%          launchservicesd
                   0%          EPSON Scanner
    Top Processes by Memory:
              360 MB             firefox
              246 MB             Finder
              164 MB             com.apple.WebKit.WebContent
              143 MB             Safari
              135 MB             com.apple.IconServicesAgent
              123 MB             Pages
              102 MB             WindowServer
              94 MB              Calendar
              82 MB              mds_stores
              82 MB              Console
    Virtual Memory Statistics:
              160 MB             Free RAM
              1.85 GB            Active RAM
              1.44 GB            Inactive RAM
              504 MB             Wired RAM
              470 MB             Page-ins
              2 MB               Page-outs
    User Diagnostic Reports: FinderComputer.Crash
    Process:         Finder [177]
    Path:            /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier:      com.apple.finder
    Version:         10.9 (10.9)
    Build Info:      Finder_FE-885000002000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [165]
    Responsible:     Finder [177]
    User ID:         502
    Date/Time:       2013-11-28 12:17:13.488 +0000
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  C1B9D9C6-2AAA-AC82-5179-CF0D8A96B535
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    External Modification Warnings:
    Thread creation by external task.
    Application Specific Information:
    Still some observers on overlayerController: <NSKeyValueObservationInfo 0x60000144f5d0> (
    <NSKeyValueObservance 0x6000006c6120: Observer: 0x600001083f70, Key path: canGoToPreviousPage, Options: <New: NO, Old: NO, Prior: NO> Context: 0x6000004fa300, Property: 0x600000c50590>
    <NSKeyValueObservance 0x6000006d7d80: Observer: 0x6000010859b0, Key path: canGoToNextPage, Options: <New: NO, Old: NO, Prior: NO> Context: 0x6000004e6200, Property: 0x60000064add0>
    <NSKeyValueObservance 0x6000006c3d40: Observer: 0x60000
    Performing @selector(_outlineControlClicked:) from sender NSButton 0x608000158f70
    abort() called
    Application Specific Signatures:
    Still some observers on overlayerController: <NSKeyValueObservationInfo 0x60000144f5d0> (
    <NSKeyValueObservance 0x6000006c6120: Observer: 0x600001083f70, Key path: canGoToPreviousPage, Options: <New: NO, Old: NO, Prior: NO> Context: 0x6000004fa300, Property: 0x600000c50590>
    <NSKeyValueObservance 0x6000006d7d80: Observer: 0x6000010859b0, Key path: canGoToNextPage, Options: <New: NO, Old: NO, Prior: NO> Context: 0x6000004e6200, Property: 0x60000064add0>
    <NSKeyValueObservance 0x6000006c3d40: Observer: 0x60000
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x0000000114a05866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x0000000114b1035c pthread_kill + 92
    2   libsystem_c.dylib                       0x000000011493ebba abort + 125
    3   com.apple.QuickLookFramework            0x000000010f2e9381 _QLCrashForGoodReason + 189
    4   com.apple.QuickLookUIFramework          0x000000010faa84d9 -[QLPreviewView _deactivateOverlayControls] + 249
    5   com.apple.QuickLookUIFramework          0x000000010faa7854 -[QLPreviewView _updateControls] + 112
    6   com.apple.QuickLookUIFramework          0x000000010faa4f33 -[QLPreviewView _setDisplayable:transition:] + 1650
    7   com.apple.QuickLookUIFramework          0x000000010faa48ad -[QLPreviewView _updateDisplayableWithTransition:] + 206
    8   com.apple.QuickLookUIFramework          0x000000010faa40e2 -[QLPreviewView _setDisplayedDocument:transition:] + 615
    9   com.apple.QuickLookUIFramework          0x000000010faa3dbd -[QLPreviewView _setDocument:canDelayDisplay:] + 225
    10  com.apple.QuickLookUIFramework          0x000000010faaf079 -[QLInlinePreviewController setInlinePreviewItem:] + 317
    11  com.apple.finder                        0x000000010e40bd19 0x10e303000 + 1084697
    12  com.apple.finder                        0x000000010e5fe5a2 0x10e303000 + 3126690
    13  com.apple.CoreFoundation                0x00000001121cafcc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    14  com.apple.CoreFoundation                0x00000001120bec5d _CFXNotificationPost + 2893
    15  com.apple.Foundation                    0x00000001115234aa -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    16  com.apple.AppKit                        0x0000000112b66cc5 -[NSOutlineView _postItemDidCollapseNotification:] + 127
    17  com.apple.AppKit                        0x0000000112b65ff7 -[NSOutlineView _collapseItemEntry:collapseChildren:clearExpandState:] + 408
    18  com.apple.AppKit                        0x0000000112b662d9 -[NSOutlineView _batchCollapseItemsWithItemEntries:collapseChildren:clearExpandState:] + 399
    19  com.apple.AppKit                        0x0000000112b66514 -[NSOutlineView _collapseItem:collapseChildren:clearExpandState:] + 228
    20  com.apple.finder                        0x000000010e4b2dd0 0x10e303000 + 1768912
    21  com.apple.AppKit                        0x0000000112b67577 -[NSOutlineView _doUserExpandOrCollapseOfItem:isExpand:optionKeyWasDown:] + 645
    22  com.apple.AppKit                        0x0000000112b6d2da -[NSOutlineView _outlineControlClicked:] + 172
    23  com.apple.finder                        0x000000010e44c458 0x10e303000 + 1348696
    24  com.apple.AppKit                        0x00000001127c23d0 -[NSApplication sendAction:to:from:] + 327
    25  com.apple.AppKit                        0x00000001127c224e -[NSControl sendAction:to:] + 86
    26  com.apple.AppKit                        0x000000011280ed7d -[NSCell _sendActionFrom:] + 128
    27  com.apple.AppKit                        0x0000000112828715 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2316
    28  com.apple.AppKit                        0x0000000112827ae7 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 487
    29  com.apple.AppKit                        0x00000001128271fd -[NSControl mouseDown:] + 706
    30  com.apple.AppKit                        0x00000001127a8d08 -[NSWindow sendEvent:] + 11296
    31  com.apple.AppKit                        0x0000000112747744 -[NSApplication sendEvent:] + 2021
    32  com.apple.finder                        0x000000010e3279d5 0x10e303000 + 149973
    33  com.apple.AppKit                        0x0000000112597a29 -[NSApplication run] + 646
    34  com.apple.AppKit                        0x0000000112582803 NSApplicationMain + 940
    35  com.apple.finder                        0x000000010e3095cc 0x10e303000 + 26060
    36  libdyld.dylib                           0x00000001148735fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x0000000114a06662 kevent64 + 10
    1   libdispatch.dylib                       0x000000011483c43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x000000011483c152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x0000000114a01a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000114a00d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000011211f315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000011211e939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000011211e275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00000001127441ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x0000000114b0f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x0000000114b0f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x0000000114b13fc9 thread_start + 13
    Thread 3:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x0000000114a01a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000114a00d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000011211f315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000011211e939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000011211e275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x0000000111587907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x000000011158770b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x0000000114b0f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x0000000114b0f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x0000000114b13fc9 thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x0000000114a059aa __select + 10
    1   com.apple.CoreFoundation                0x000000011216ad43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x0000000114b0f899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x0000000114b0f72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x0000000114b13fc9 thread_start + 13
    Thread 5:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x0000000114a01a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000114a00d18 mach_msg + 64
    2   com.apple.QuartzCore                    0x000000010ef083b7 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore                    0x000000010ef082ed thread_fun + 25
    4   libsystem_pthread.dylib                 0x0000000114b0f899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x0000000114b0f72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x0000000114b13fc9 thread_start + 13
    Thread 6:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x0000000114a05716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0000000114b11c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x000000011a5d6145 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore                0x000000011a5cb44f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib                 0x0000000114b0f899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x0000000114b0f72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x0000000114b13fc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000114a05716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0000000114b11c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x000000011a5d6bb7 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x000000011a5d6a48 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x000000011a5cb44f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x0000000114b0f899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x0000000114b0f72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x0000000114b13fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x0000000114a05716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0000000114b11c3b _pthread_cond_wait + 727
    2   com.apple.desktopservices               0x000000010e9cb475 TConditionVariable::Wait(TDSMutex&) + 31
    3   com.apple.desktopservices               0x000000010e9ac1e0 TBlockingQueue<TSuboperationRequest>::Dequeue(TSuboperationRequest*&, int) + 90
    4   com.apple.desktopservices               0x000000010e9abe08 TSuboperationTask::OperationTaskProcedure() + 212
    5   com.apple.desktopservices               0x000000010e990b0b TNodeOperationTask::OperationTaskProc(void*) + 23
    6   libsystem_pthread.dylib                 0x0000000114b0f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x0000000114b0f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x0000000114b13fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x0000000114a05716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0000000114b11c3b _pthread_cond_wait + 727
    2   com.apple.desktopservices               0x000000010e9cb475 TConditionVariable::Wait(TDSMutex&) + 31
    3   com.apple.desktopservices               0x000000010e9ac1e0 TBlockingQueue<TSuboperationRequest>::Dequeue(TSuboperationRequest*&, int) + 90
    4   com.apple.desktopservices               0x000000010e9abe08 TSuboperationTask::OperationTaskProcedure() + 212
    5   com.apple.desktopservices               0x000000010e990b0b TNodeOperationTask::OperationTaskProc(void*) + 23
    6   libsystem_pthread.dylib                 0x0000000114b0f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x0000000114b0f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x0000000114b13fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x0000000114a05716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0000000114b11c3b _pthread_cond_wait + 727
    2   com.apple.desktopservices               0x000000010e9cb475 TConditionVariable::Wait(TDSMutex&) + 31
    3   com.apple.desktopservices               0x000000010e9ac1e0 TBlockingQueue<TSuboperationRequest>::Dequeue(TSuboperationRequest*&, int) + 90
    4   com.apple.desktopservices               0x000000010e9abe08 TSuboperationTask::OperationTaskProcedure() + 212
    5   com.apple.desktopservices               0x000000010e990b0b TNodeOperationTask::OperationTaskProc(void*) + 23
    6   libsystem_pthread.dylib                 0x0000000114b0f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x0000000114b0f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x0000000114b13fc9 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x0000000114a05e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000114b10f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000114b13fb9 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x0000000114a05a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x000000011495de60 nanosleep + 200
    2   com.apple.Foundation                    0x00000001115d1212 +[NSThread sleepUntilDate:] + 176
    3   com.apple.imageKit                      0x000000010f6938ec -[IKTaskManager taskLoop] + 1906
    4   com.apple.Foundation                    0x000000011158770b __NSThread__main__ + 1318
    5   libsystem_pthread.dylib                 0x0000000114b0f899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x0000000114b0f72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x0000000114b13fc9 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x0000000114a05e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000114b10f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000114b13fb9 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x0000000114a05e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000114b10f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000114b13fb9 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x0000000114a05e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000114b10f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000114b13fb9 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x0000000114a05e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000114b10f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000114b13fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000114b16310  rcx: 0x00007fff518fb988  rdx: 0x0000000000000000
      rdi: 0x0000000000000807  rsi: 0x0000000000000006  rbp: 0x00007fff518fb9b0  rsp: 0x00007fff518fb988
       r8: 0x0000000114af62ec   r9: 0x0000000114966900  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x0000000111a64080  r13: 0x0000000111a64080  r14: 0x0000000000000006  r15: 0x0000000000000080
      rip: 0x0000000114a05866  rfl: 0x0000000000000206  cr2: 0x000000011493eb3d
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x10e303000 -        0x10e7c9ffd  com.apple.finder (10.9 - 10.9) <0B3CE495-BEB9-323B-9C50-CEBDF5C465F4> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
           0x10e8fc000 -        0x10ea2cff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10eaae000 -        0x10eb11ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10eb4d000 -        0x10eb87ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x10eb9c000 -        0x10eba1fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10ebae000 -        0x10ec18ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10ec4d000 -        0x10ec79ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <36C562FF-5D91-318C-A19C-6B4453FB78B9> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
           0x10ecaa000 -        0x10ed8efff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10ee53000 -        0x10ee9efff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
           0x10eee1000 -        0x10f07dff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10f157000 -        0x10f165fff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10f170000 -        0x10f233ff7  com.apple.backup.framework (1.5 - 1.5) <92C8038F-CC00-3202-90D8-3C3AEC90986F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x10f2bf000 -        0x10f310fff  com.apple.QuickLookFramework (5.0 - 622.3) <AB6CCD09-ECDF-3F01-9C42-34B37DDCF12D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
           0x10f351000 -        0x10f509ff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
           0x10f5b1000 -        0x10f5b8fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10f5c6000 -        0x10f827ff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
           0x10fa79000 -        0x10fb4aff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
           0x10fbfd000 -        0x10fe85ff7  com.apple.CommerceKit (1.2.0 - 232) <442AE798-E07F-3E68-BB80-4C41B61408E3> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
           0x10ff1f000 -        0x10ff71ff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
           0x10ffbb000 -        0x11010eff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x1101a9000 -        0x11027aff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
           0x1102e1000 -        0x1102e2ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
           0x1102ed000 -        0x110378fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
           0x1103a7000 -        0x1103edff7  com.apple.DiskManagement (6.0 - 744) <FE9F0616-FFCA-31D2-A0B5-E6C943326543> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
           0x110414000 -        0x11041eff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
           0x11042e000 -        0x11046ffff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x110cc7000 -        0x110cf5ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x110d28000 -        0x110d2bfff  com.apple.AppleSystemInfo (3.0 - 3.0) <4D032152-AA40-350E-BB96-44BC55C5C69C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
           0x110d35000 -        0x110d41fff  com.apple.Collaboration (71 - 71) <0CD617F3-354C-3FEF-A966-C2553B7662EE> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
           0x110d56000 -        0x110faeff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x1110f9000 -        0x1110f9fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x1110fc000 -        0x1113a6ffd  com.apple.HIToolbox (2.1 - 695) <C4DE35FF-D0AC-35C3-A7E6-F54CD153825C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x1114ff000 -        0x11150cfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
           0x111520000 -        0x11181ffff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x111a5f000 -        0x111c0cf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
           0x111c33000 -        0x111c85fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
           0x111ce5000 -        0x111ce6ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
           0x111cf3000 -        0x111db5ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x111e2a000 -        0x111f9aff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x1120a6000 -        0x1120a6fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x1120ae000 -        0x112293ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x11240c000 -        0x112511fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x112580000 -        0x1130f4ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x11387b000 -        0x11387bfff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x113881000 -        0x1138f4ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x113935000 -        0x11425105f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
           0x114383000 -        0x114393fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
           0x11439f000 -        0x1143b8ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x1143d1000 -        0x1143dcff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x1143ee000 -        0x11441efff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
           0x11444e000 -        0x1144bdff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x1144ed000 -        0x114576fff  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
           0x1145c2000 -        0x114607ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x114640000 -        0x11464fff8  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
           0x114663000 -        0x1146b0ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x1146e1000 -        0x11471aff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x114737000 -        0x114740fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x114758000 -        0x114769ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
           0x114771000 -        0x114774ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x11477d000 -        0x11477dfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x114785000 -        0x114789ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
           0x114791000 -        0x11479bfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
           0x1147ab000 -        0x1147b2fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
           0x1147bf000 -        0x1147c6ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
           0x1147d3000 -        0x114821fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
           0x114839000 -        0x114853fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
           0x114870000 -        0x114873ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
           0x11487e000 -        0x11487eff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
           0x114885000 -        0x11488cff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
           0x11489a000 -        0x11489ffff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
           0x1148a8000 -        0x1148aaff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
           0x1148b7000 -        0x1148b8ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
           0x1148be000 -        0x1148cfff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
           0x1148db000 -        0x1148dcff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
           0x1148e2000 -        0x11496bff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
           0x114998000 -        0x11499aff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
           0x1149a0000 -        0x1149a8fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
           0x1149b0000 -        0x1149d7ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
           0x1149f0000 -        0x114a0cff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
           0x114a32000 -        0x114a61fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
           0x114a6d000 -        0x114a88ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
           0x114a96000 -        0x114a96ff9 +cl_kernels (???) <278F9E98-B9ED-40B8-92EF-2649D5DF2335> cl_kernels
           0x114a98000 -        0x114abfff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
           0x114ae0000 -        0x114ae9ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
           0x114af2000 -        0x114af8ff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
           0x114b0e000 -        0x114b15ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
           0x114b21000 -        0x114b22ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
           0x114b2a000 -        0x114b2efff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
           0x114b3c000 -        0x114b3dfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
           0x114b46000 -        0x114b4bff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
           0x114b52000 -        0x114b53ffa +cl_kernels (???) <4B61629B-61F6-41AD-BF95-C60B745F6C1B> cl_kernels
           0x114b58000 -        0x114b7cfff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
           0x114b9d000 -        0x114bdfff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
           0x114bf9000 -        0x114c22ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
           0x114c37000 -        0x114c42fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
           0x114c4d000 -        0x114f37fff  com.apple.CoreServices.CarbonCore (1077.13 - 1077.13) <21324540-8B84-3333-ADB8-D3D5181D4639> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x114fbb000 -        0x11504aff7  com.apple.Metadata (10.7.0 - 800.12) <04486C95-3E49-36C4-89B6-925E925BB417> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x1150b6000 -        0x11512dfff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x1151d7000 -        0x115244fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x11528a000 -        0x1152e5ffb  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
           0x115317000 -        0x1153e0fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x115456000 -        0x11547ffff  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
           0x1154a4000 -        0x11558efff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
           0x1155a9000 -        0x115690ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
           0x1156ca000 -        0x1156d7ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
           0x1156e5000 -        0x1156e9fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
           0x1156f1000 -        0x1156f1ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
           0x1156fb000 -        0x115708ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
           0x11570e000 -        0x11570ffff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
           0x115715000 -        0x115730ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
           0x11573b000 -        0x11579fff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x1157e0000 -        0x1157e3fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x1157ea000 -        0x115801fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x115821000 -        0x11582bff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x11583c000 -        0x115864ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
           0x115876000 -        0x115b4afc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x115b8f000 -        0x115b8ffff  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
           0x115b98000 -        0x115c63fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x115c74000 -        0x115d24ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x115d37000 -        0x116118ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x11617d000 -        0x1162ebff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x116314000 -        0x116403fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x11647d000 -        0x1164c4fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x1164eb000 -        0x11650fff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x11651a000 -        0x116573fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x116586000 -        0x1165a1ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x1165aa000 -        0x1165aeff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x1165b4000 -        0x1166a2fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x1166cf000 -        0x1166d1fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x1166da000 -        0x116721ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
           0x11673a000 -        0x116753ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x116770000 -        0x11679fff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x1167bf000 -        0x1167dbfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
           0x1167ed000 -        0x1168deff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
           0x1168f0000 -        0x116954ff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x116986000 -        0x116987fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x11698e000 -        0x116992ff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
           0x11699e000 -        0x1169aaff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x1169bf000 -        0x1169c8fff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x1169d5000 -        0x116a26ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x116a51000 -        0x116a69ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x116a7a000 -        0x116a9fff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x116aad000 -        0x116ab9ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x116ac8000 -        0x116ad3ff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <F8566D1F-450F-3571-911F-75C68E45919F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x116ae1000 -        0x116ae4ff7  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
           0x116aec000 -        0x116aedff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
           0x116af4000 -        0x116bacff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
           0x116c14000 -        0x116c59ff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
           0x116c6d000 -        0x116c9efff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
           0x116cb6000 -        0x116cb8fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
           0x116cc1000 -        0x116cc3ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
           0x116cc9000 -        0x116ccffff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
           0x116cdb000 -        0x116d10ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <7E31A674-C6AB-33BE-BD5E-F5E3C6E22894> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x116d24000 -        0x116d34ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
           0x116d3b000 -        0x116e1afff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
           0x116e87000 -        0x116ebbfff  libssl.0.9.

    Okay .. after EVERYTHING was working WELL I made the mistake of taking an ADOBE UPDATE to my Photoshop CC.  Directly following THAT update (from ADOBE) both LR and PS fail as before.   Since ONLY Adobe made changes to my computer, how can Apple be the culprit?  As a matter of fact, even though my coverflow is NOT on, both LR and PS open their diaglogs in that view and I am unable to change that.  Certainly my Adobe programs are revealing this issue.  It sounds from your note above that Adobe is just treating it like an Apple issue.
    Fortunately I did take a Time Machine backup BEFORE installing the Adobe updates so I can roll back.
    UPDATE:
    I opened InDesign and the open dialog opened in CoverFlow and failed.  The next time I used the open dialog I quickly changed the view to details (InDesign runs a little slower so I was able to do that).  Once I had changed the view, no problems .. all fixed (in InDesign)
    Since I had successfully changed the view from CF to details in InDesign, I figured "maybe" all the adobe programs would recognize the change.  I then successfully opened Photoshop, which now opens with the details view and is successful.
    At least I know HOW to make it work if it gets messed up again .. which happens whenever I update an Adobe program.
    My finder was in DETAIL view before and after my updates.
    The ONLY place where coverflow showed up was in the Adobe programs.

  • After 10.9.2 Update computer keeps restarting

    I updated on to 10.9.2 on 3/3/14 on 3/4/14 I started getting messages that the system will reboot in 1 minute. This has happened serveral times since then including this morning. I have reviewed the logs but I am not as skilled in Mac diagnostics as I should be so nothing really stood out as the problem. Any help on this would be greatlly apprecaited
    Logs go back about 40 minutes prior to restart
    2014-03-10 08:23:45 -0700 scanserver[66]: IDEs:
    Using IDE files:
              age-afih.ide  age-afjq.ide  age-afkf.ide  age-afkh.ide  age-afko.ide  age-afkq.ide  age-afkw.ide  age-afls.ide  age-afmj.ide 
              age-afms.ide  age-afmx.ide  age-afng.ide  age-afoa.ide  age-afob.ide  age-afoc.ide  age-afoy.ide  age-afpa.ide  age-afpw.ide 
              age-afqs.ide  age-afqt.ide  age-afqv.ide  age-afra.ide  age-afrl.ide  age-afro.ide  age-afru.ide  age-aftj.ide  age-aftr.ide 
              age-aftu.ide  age-afuc.ide  age-afuh.ide  age-afun.ide  age-afuv.ide  age-afve.ide  age-afvn.ide  age-afwa.ide  age-afxg.ide 
              age-afxi.ide  age-afxl.ide  age-afyk.ide  age-afzm.ide  age-afzp.ide  age-afzq.ide  age-afzr.ide  age-agan.ide  age-agat.ide 
              age-agbh.ide  age-agdo.ide  age-ageb.ide  age-ager.ide  age-agez.ide  age-agfa.ide  age-agfd.ide  age-agfe.ide  age-agfl.ide 
              age-agfn.ide  age-agfu.ide  age-agga.ide  age-aggf.ide  agen-ank.ide  andro-br.ide  andro-bv.ide  auto-abj.ide  auto-abo.ide 
              auto-abp.ide  auto-acm.ide  auto-acn.ide  auto-aco.ide  auto-acp.ide  auto-adk.ide  auto-adm.ide  auto-adn.ide  auto-ado.ide 
              auto-adq.ide  auto-adz.ide  auto-aeo.ide  auto-aet.ide  auto-aev.ide  auto-aff.ide  backd-jy.ide  baffec-a.ide  banc-bxn.ide 
              banc-bxq.ide  banc-bxu.ide  bank-gan.ide  bank-gao.ide  bank-gaq.ide  bank-gar.ide  bank-gbf.ide  banlo-al.ide  banlo-rr.ide 
              banlo-rs.ide  banlo-rt.ide  banlo-sc.ide  banlo-sj.ide  banlo-sl.ide  banlo-tg.ide  banlo-to.ide  bckd-rrk.ide  bckd-rro.ide 
              bdoo-bfs.ide  betabo-c.ide   blada-a.ide  bladab-k.ide  boaxx-ac.ide  boaxx-ad.ide    boht-b.ide  bred-alq.ide  bred-als.ide 
              bred-alv.ide  bred-alx.ide  bred-amg.ide  bred-ami.ide  bred-amk.ide  bred-amn.ide  bredo-vg.ide  bredo-wh.ide  buzus-hw.ide 
              capha-bh.ide  capha-bj.ide  chisbu-m.ide  chisbu-p.ide  cride-dv.ide  cride-dw.ide  cride-dx.ide  cride-dz.ide  cride-ec.ide 
              cutwa-bc.ide  danglo-g.ide  darkko-l.ide  darkko-m.ide  delf-fry.ide  delf-fsj.ide  delf-fsl.ide  delf-fsn.ide  delf-fst.ide 
              delfdl-c.ide  delfi-bv.ide  dloa-dtu.ide  docdr-bg.ide  dwnl-lgf.ide  dwnl-lhq.ide  dwnl-lhz.ide  dwnl-lid.ide  dwnl-lif.ide 
              dwnl-lih.ide  dwnl-lij.ide  dwnl-lja.ide  dwnl-ljc.ide  dwnl-ljt.ide  dwnl-ljx.ide  encpk-al.ide  expiro-t.ide  expiro-v.ide 
              fake-hay.ide  fake-hbe.ide  fake-hbk.ide  fake-hbl.ide  fake-hce.ide  fake-hch.ide  farei-bw.ide  fbjack-c.ide   fondu-d.ide 
               fondu-h.ide   fondu-p.ide   fondu-r.ide  gamar-ce.ide  gamar-cg.ide  hioles-d.ide  hkmain-o.ide  ifram-ll.ide  inje-ast.ide 
              inje-asw.ide  inje-atf.ide  inje-atg.ide  inje-atl.ide  inje-atv.ide  inje-aug.ide  inje-aui.ide  inje-aul.ide  inje-aux.ide 
              inje-ava.ide  injec-ct.ide   java-ry.ide   java-sh.ide  javab-rs.ide  javab-ru.ide  javab-rw.ide  javab-rx.ide  jsred-mz.ide 
              jvjack-b.ide   kazy-cd.ide  keyge-ll.ide  keygen-y.ide  keylo-pr.ide  keylo-pt.ide  keylo-pw.ide  krypt-cq.ide  krypt-cs.ide 
              krypt-ct.ide  kuluo-ah.ide  malit-ad.ide  malit-af.ide  malit-ah.ide  malit-ak.ide  malit-at.ide   malit-m.ide   malit-q.ide 
               malit-r.ide   malit-w.ide   malit-y.ide  matsn-bc.ide  matsn-bd.ide  mdro-frg.ide  mdro-frj.ide  mdro-frr.ide  mdro-fsc.ide 
              mdro-fsi.ide  mdro-fss.ide  mdro-fst.ide  mdro-fte.ide  mdro-ftg.ide  mdro-ftx.ide  mdro-fud.ide  mdro-***.ide  mdro-fun.ide 
              mdro-fuo.ide  mdro-fut.ide  mdro-fvh.ide  mdro-fvj.ide  mdro-fvn.ide  mdro-fvv.ide   miner-r.ide   miner-t.ide   miner-u.ide 
              miuref-d.ide  miuref-h.ide   morix-k.ide   msil-hh.ide   msil-ir.ide   msil-it.ide   msil-iy.ide   msil-ji.ide   msil-jn.ide 
               msil-js.ide   msil-kd.ide   msil-kf.ide   msil-kk.ide   msil-kr.ide   msil-ks.ide   msil-ku.ide   msil-kv.ide   msil-kx.ide 
               msil-lr.ide   msil-mb.ide   msil-mf.ide   msil-mg.ide   msil-mh.ide   msil-mv.ide   msil-nc.ide  msili-av.ide  msilin-a.ide 
              napola-b.ide  necur-ba.ide  necur-bc.ide  neurev-f.ide  nimnul-a.ide  nymaim-c.ide  obfjs-eq.ide     pdf-j.ide  perldo-a.ide 
                 php-r.ide  phpdoo-o.ide   pws-cft.ide   ramdo-d.ide   ramdo-e.ide   ramdo-k.ide  ramni-ee.ide  ramni-eg.ide  ramni-ek.ide 
              rans-afd.ide  rans-afj.ide  rans-afk.ide  rans-afm.ide  rans-afn.ide  rans-afp.ide  rans-afq.ide  rans-aft.ide  rans-afu.ide 
              rans-afv.ide  rans-age.ide  rans-agm.ide  rans-agn.ide  rebhi-aw.ide  redym-aa.ide  revetr-a.ide  rovnix-a.ide  sharik-e.ide 
              sharik-f.ide  silly-lm.ide  sniffe-u.ide  snifie-c.ide  snuffy-b.ide   spy-aci.ide  stealf-b.ide  swfex-cm.ide   symmi-s.ide 
               symmi-u.ide   symmi-w.ide  tepfe-au.ide  tepfe-av.ide  themas-a.ide  themas-g.ide  themeb-a.ide  tiotu-ec.ide  tproxy-a.ide 
              tracu-bs.ide   turla-a.ide   turla-c.ide  upatr-aa.ide  upatre-h.ide  upatre-n.ide  upatre-o.ide  upatre-p.ide  upatre-u.ide 
              upatre-w.ide    vb-gzu.ide    vb-haw.ide    vb-hbj.ide    vb-hbm.ide    vb-hbo.ide    vb-hbq.ide    vb-hby.ide    vb-hcp.ide 
                vb-hct.ide    vb-hdg.ide    vb-hdq.ide    vb-hdy.ide    vb-hef.ide    vb-heh.ide  vbagen-v.ide  vbdwnl-d.ide  vbinj-hb.ide 
              vbinj-hp.ide    vbs-do.ide       vdl.dat  vobfu-dn.ide  weels-cl.ide  wonton-h.ide  wonton-j.ide  wonton-m.ide  wonton-p.ide 
              wonton-r.ide  wonton-t.ide  wonton-z.ide  wowspy-c.ide  zbot-hev.ide  zbot-hge.ide  zbot-hgh.ide  zbot-hgq.ide  zbot-hgs.ide 
              zbot-hhx.ide  zbot-hij.ide  zbot-hio.ide  zbot-hit.ide  zbot-hiu.ide  zbot-hjf.ide  zbot-hjo.ide  zbot-hjs.ide  zbot-hjt.ide 
              zbot-hkl.ide  zbot-hko.ide  zbot-hkp.ide  zbot-hks.ide  zbot-hku.ide  zbot-hlc.ide  zbot-hlk.ide  zbot-hlr.ide  zbot-hlu.ide 
              zbot-hlv.ide  zbot-hmf.ide  zbot-hmy.ide  zbot-hmz.ide  zbot-hnc.ide  zbot-hni.ide  zbot-hno.ide  zbot-hnv.ide  zbot-hot.ide 
              zbot-hpe.ide  zbot-hph.ide  zbot-hpl.ide  zbot-hpv.ide  zbot-hqu.ide  zbot-hrd.ide  zbot-hru.ide  zbot-hrz.ide  zbot-hsf.ide 
              zbot-hsh.ide  zbot-hsj.ide  zbot-hsr.ide  zbot-hsw.ide  zbot-htf.ide  zbot-htr.ide  zbot-hud.ide  zbot-hup.ide  zbot-huu.ide 
              zegos-cg.ide  zipma-dn.ide    zusy-r.ide  zxshel-a.ide 
    2014-03-10 08:23:45 -0700 sandboxd[186]: airportd(63) deny file-read-metadata /Library/Preferences/com.apple.security-common.plist
    2014-03-10 08:23:45 -0700 sandboxd[186]: airportd(63) deny file-read-data /Library/Preferences/com.apple.security-common.plist
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    2014-03-10 08:23:45 -0700 com.apple.audio.DriverHelper[190]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    2014-03-10 08:23:45 -0700 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    2014-03-10 08:23:45 -0700 coreaudiod[188]: 2014-03-10 08:23:45.548914 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2
    2014-03-10 08:23:50 -0700 UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Fat City' making interface primary (protected network)
    2014-03-10 08:23:50 -0700 configd[56]: network changed: DNS* Proxy
    2014-03-10 08:23:50 -0700 UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    2014-03-10 08:23:50 -0700 UserEventAgent[11]: Captive: en1: Probing 'Fat City'
    2014-03-10 08:23:50 -0700 SophosSXLD[65]: Unusable network configuration, sxl daemon is not listenning for queries.
    2014-03-10 08:23:50 -0700 configd[56]: network changed: v4(en1!:10.1.10.84) DNS+ Proxy+ SMB
    2014-03-10 08:23:50 -0700 SophosSXLD[65]: sxl started
    2014-03-10 08:23:50 -0700 SophosSXLD[65]: sxl configuration succeeded
    2014-03-10 08:23:50 -0700 configd[56]: setting hostname to "lpt-xpp-01.fats.local"
    2014-03-10 08:23:49 -0700 ntpd[148]: proto: precision = 1.000 usec
    2014-03-10 08:23:49 -0700 UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    2014-03-10 08:23:50 -0700 apsd[61]: Unrecognized leaf certificate
    2014-03-10 08:23:51 -0700 kernel[0]: Sophos Anti-Virus on-access kext activated
    2014-03-10 08:23:53 -0700 mds[35]: (Error) Queue: [prePop journals.live_user:0x7fa90bf04640] ERROR! retired:0 lastSerialNumberRetired:779233 popped:3 count:463 Insufficient files
    2014-03-10 08:23:54 -0700 digest-service[82]: digest-request: uid=0
    2014-03-10 08:23:54 -0700 digest-service[82]: digest-request: init request
    2014-03-10 08:23:54 -0700 digest-service[82]: digest-request: init return domain: MACBOOKPRO-468E server: LPT-XPP-01 indomain was: <NULL>
    2014-03-10 08:23:54 -0700 digest-service[82]: digest-request: uid=0
    2014-03-10 08:23:54 -0700 digest-service[82]: digest-request: init request
    2014-03-10 08:23:54 -0700 digest-service[82]: digest-request: init return domain: LPT-XPP-01 server: LPT-XPP-01 indomain was: <NULL>
    2014-03-10 08:24:08 -0700 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0PS (kSMCKeyNotFound)
    2014-03-10 08:24:08 -0700 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0OS (kSMCKeyNotFound)
    2014-03-10 08:24:25 -0700 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x8800 ****
    2014-03-10 08:24:33 -0700 distnoted[1330]: # distnote server agent  absolute time: 126.914796048   civil time: Mon Mar 10 08:24:33 2014   pid: 1330 uid: 501  root: no
    2014-03-10 08:24:51 -0700 com.apple.SecurityServer[15]: Session 100008 created
    2014-03-10 08:24:51 -0700 com.apple.SecurityServer[15]: Session 100009 created
    2014-03-10 08:25:06 -0700 SecurityAgent[173]: User info context values set for kevinfat
    2014-03-10 08:25:08 -0700 SecurityAgent[173]: Login Window login proceeding
    2014-03-10 08:25:08 -0700 loginwindow[39]: Login Window - Returned from Security Agent
    2014-03-10 08:25:08 -0700 airportd[63]: _doAutoJoin: Already associated to “Fat City”. Bailing on auto-join.
    2014-03-10 08:25:08 -0700 loginwindow[39]: USER_PROCESS: 39 console
    2014-03-10 08:25:08 -0700 kernel[0]: AppleKeyStore:Sending lock change 0
    2014-03-10 08:25:08 -0700 com.apple.launchd.peruser.501[1324]: Background: Aqua: Registering new GUI session.
    2014-03-10 08:25:08 -0700 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x8800 ****
    2014-03-10 08:25:08 -0700 com.apple.launchd.peruser.501[1324]: Unknown key: seatbelt-profiles
    2014-03-10 08:25:09 -0700 com.apple.launchd.peruser.501[1324]: Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    2014-03-10 08:25:09 -0700 launchctl[1355]: com.apple.pluginkit.pkd: Already loaded
    2014-03-10 08:25:09 -0700 launchctl[1355]: com.apple.sbd: Already loaded
    2014-03-10 08:25:09 -0700 WindowServer[155]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2014-03-10 08:25:09 -0700 sharingd[1369]: Starting Up...
    2014-03-10 08:25:10 -0700 com.apple.launchd.peruser.501[1324]: Exited with code: 2
    2014-03-10 08:25:10 -0700 WindowServer[155]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    2014-03-10 08:25:11 -0700 accountsd[1411]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2014-03-10 08:25:11 -0700 WindowServer[155]: Display 0x04272100: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    2014-03-10 08:25:12 -0700 SocialPushAgent[1379]: ApplePushService: APSConnection being used without a delegate queue
    2014-03-10 08:25:12 -0700 WindowServer[155]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 2.30 seconds (server forcibly re-enabled them after 1.00 seconds)
    2014-03-10 08:25:12 -0700 SystemUIServer[1362]: Cannot find executable for CFBundle 0x7fcaa2548d30 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    2014-03-10 08:25:12 -0700 SystemUIServer[1362]: Cannot find executable for CFBundle 0x7fcaa2571090 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    2014-03-10 08:25:12 -0700 SystemUIServer[1362]: Cannot find executable for CFBundle 0x7fcaa25881a0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    2014-03-10 08:25:13 -0700 Support-LogMeInRescue[1399]: Rescue GUI started
    2014-03-10 08:25:13 -0700 WiFiKeychainProxy[1377]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    2014-03-10 08:25:13 -0700 WiFiKeychainProxy[1377]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    2014-03-10 08:25:13 -0700 xpcproxy[1415]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    2014-03-10 08:25:13 -0700 UserEventAgent[1356]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2014-03-10 08:25:13 -0700 com.apple.SecurityServer[15]: Session 100011 created
    2014-03-10 08:25:13 -0700 com.apple.IconServicesAgent[1417]: IconServicesAgent launched.
    2014-03-10 08:25:14 -0700 sandboxd[186]: ubd(1373) deny file-read-data /Library/Preferences/com.apple.security-common.plist
    2014-03-10 08:25:14 -0700 parentalcontrolsd[1420]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    2014-03-10 08:25:15 -0700 SystemUIServer[1362]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    2014-03-10 08:25:15 -0700 SystemUIServer[1362]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    2014-03-10 08:25:16 -0700 sandboxd[186]: assistantd(1392) deny file-read-data /Library/Preferences/com.apple.security-common.plist
    2014-03-10 08:25:18 -0700 xpcproxy[1425]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    2014-03-10 08:25:22 -0700 accountsd[1411]: /SourceCache/Accounts/Accounts-336.9/ACDAuthenticationPluginManager.m - -[ACDAuthenticationPluginManager credentialForAccount:client:handler:] - 230 - The authentication plugin for account "[email protected]" (DEFEA45F-7FCC-44D8-980D-F9072E78DC1B) could not be found!
    2014-03-10 08:25:22 -0700 accountsd[1411]: /SourceCache/Accounts/Accounts-336.9/ACDAccountStore.m - __62-[ACDAccountStore credentialForAccountWithIdentifier:handler:]_block_invoke389 - 857 - No plugin provides credentials for account [email protected]. Falling back to legacy behavior.
    2014-03-10 08:25:37 -0700 syncdefaultsd[1401]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    2014-03-10 08:25:48 -0700 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x8800 ****
    2014-03-10 08:25:54 -0700 com.apple.InputMethodKit.UserDictionary[1482]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  kevinfat~1A9D4134-DD7F-5AC2-B955-D13A225125F7:UserDictionary
    Using local storage: 1
    2014-03-10 08:25:55 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:25:56 -0700 com.apple.SecurityServer[15]: Session 100015 created
    2014-03-10 08:26:00 -0700 gamed[1405]: CKSoftwareMap: Registering with Daemon
    2014-03-10 08:26:01 -0700 com.apple.InputMethodKit.UserDictionary[1482]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  kevinfat~1A9D4134-DD7F-5AC2-B955-D13A225125F7:UserDictionary
    Using local storage: 0
    2014-03-10 08:26:06 -0700 sandboxd[186]: storeagent(1471) deny file-read-data /Library/Preferences/com.apple.security-common.plist
    2014-03-10 08:26:07 -0700 LKDCHelper[1500]: Starting (uid=501)
    2014-03-10 08:26:13 -0700 com.apple.internetaccounts[1425]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    2014-03-10 08:26:13 -0700 com.apple.internetaccounts[1425]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    2014-03-10 08:26:14 -0700 com.apple.NotesMigratorService[1506]: Joined Aqua audit session
    2014-03-10 08:26:14 -0700 com.apple.internetaccounts[1425]: An instance 0x7ffcd175a030 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7ffcd176e0d0> (
    <NSKeyValueObservance 0x7ffcd176e240: Observer: 0x7ffcd1771590, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8d63943b, Property: 0x7ffcd176e0a0>
    2014-03-10 08:26:32 -0700 WindowServer[155]: disable_update_timeout: UI updates were forcibly disabled by application "Dropbox" for over 1.00 seconds. Server has re-enabled them.
    2014-03-10 08:26:39 -0700 WindowServer[155]: common_reenable_update: UI updates were finally reenabled by application "Dropbox" after 8.20 seconds (server forcibly re-enabled them after 1.00 seconds)
    2014-03-10 08:26:39 -0700 Dropbox[1409]: PyObjCPointer created: at 0x7f8fc88 of type {OpaqueJSContext=}
    2014-03-10 08:26:43 -0700 kernel[0]: fsevents: watcher dbfseventsd (pid: 1579) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    2014-03-10 08:26:43 -0700 Dropbox[1409]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    2014-03-10 08:26:49 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:26:49 -0700 com.apple.dock.extra[1503]: <NSXPCConnection: 0x7ff02bd88460>: received an undecodable message (no exported object to receive message). Dropping message.
    2014-03-10 08:26:50 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:26:51 -0700 CalendarAgent[1391]: [com.apple.calendar.store.log.notifications.totals] [Warning: Alarm for recurring event Sarina & Kevin's Anniversary has large relative trigger of 18446744073520075816.  Ignoring.]
    2014-03-10 08:26:51 -0700 CalendarAgent[1391]: [com.apple.calendar.store.log.notifications.totals] [Warning: Alarm for recurring event Sarina & Kevin's Anniversary has large relative trigger of 18446744073520075816.  Ignoring.]
    2014-03-10 08:26:51 -0700 CalendarAgent[1391]: [com.apple.calendar.store.log.notifications.totals] [Warning: Alarm for recurring event Sarina & Kevin's Anniversary has large relative trigger of 18446744073520075816.  Ignoring.]
    2014-03-10 08:26:51 -0700 CalendarAgent[1391]: [com.apple.calendar.store.log.notifications.totals] [Warning: Alarm for recurring event Sarina & Kevin's Anniversary has large relative trigger of 18446744073551611816.  Ignoring.]
    2014-03-10 08:26:51 -0700 CalendarAgent[1391]: [com.apple.calendar.store.log.notifications.totals] [Warning: Alarm for recurring event Sarina & Kevin's Anniversary has large relative trigger of 18446744073551611816.  Ignoring.]
    2014-03-10 08:26:53 -0700 kernel[0]: process Support-LogMeInR[1399] caught causing excessive wakeups. Observed wakeups rate (per sec): 436; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45042
    2014-03-10 08:26:53 -0700 ReportCrash[1589]: Invoking spindump for pid=1399 wakeups_rate=436 duration=104 because of excessive wakeups
    2014-03-10 08:27:05 -0700 spindump[1590]: Saved wakeups_resource.spin report for Support-LogMeInRescue version ??? (???) to /Library/Logs/DiagnosticReports/Support-LogMeInRescue_2014-03-10-082705_Kevins- MacBook-Pro.wakeups_resource.spin
    2014-03-10 08:27:18 -0700 mds[35]: (Normal) Volume: volume:0x7fa90c118000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.mt1MYC
    2014-03-10 08:27:19 -0700 loginwindow[39]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    2014-03-10 08:27:19 -0700 loginwindow[39]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    2014-03-10 08:27:21 -0700 com.apple.launchd.peruser.501[1324]: Exited: Terminated: 15
    2014-03-10 08:27:25 -0700 apsd[61]: Failed to send activation record to service com.apple.ManagedClient.enroll
    2014-03-10 08:27:27 -0700 WindowServer[155]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    2014-03-10 08:27:27 -0700 com.apple.SecurityServer[15]: Session 100018 created
    2014-03-10 08:27:28 -0700 WindowServer[155]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 2.00 seconds (server forcibly re-enabled them after 1.00 seconds)
    2014-03-10 08:27:35 -0700 sandboxd[186]: com.apple.WebKit(1664) deny file-read-data /Library/Preferences/com.apple.security-common.plist
    2014-03-10 08:27:41 -0700 InstallHelper[1670]: SophosAutoUpdate: Starting installation
    2014-03-10 08:27:41 -0700 InstallHelper[1670]: SophosAutoUpdate: Home Edition Installation Deployer
    2014-03-10 08:27:54 -0700 scanserver[66]: Scan server shutting down...
    2014-03-10 08:27:54 -0700 scanserver[66]: Server stopped
    2014-03-10 08:28:03 -0700 scanserver[1681]: server started!
    2014-03-10 08:28:04 -0700 Mail[1658]: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
    2014-03-10 08:28:04 -0700 Mail[1658]: CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
    2014-03-10 08:28:04 -0700 fontd[1374]: BUG in libdispatch client: dispatch_mig_server: mach_msg() failed (ipc/send) invalid memory - 0x1000000c
    2014-03-10 08:28:04 -0700 Mail[1658]: could not consume extension for  () -- (22:Invalid argument)
    2014-03-10 08:28:04 -0700 Mail[1658]: failed consuming extension 0 of 50331648
    2014-03-10 08:28:17 -0700 scanserver[1681]: IDEs:
    Using IDE files:
              age-afih.ide  age-afjq.ide  age-afkf.ide  age-afkh.ide  age-afko.ide  age-afkq.ide  age-afkw.ide  age-afls.ide  age-afmj.ide 
              age-afms.ide  age-afmx.ide  age-afng.ide  age-afoa.ide  age-afob.ide  age-afoc.ide  age-afoy.ide  age-afpa.ide  age-afpw.ide 
              age-afqs.ide  age-afqt.ide  age-afqv.ide  age-afra.ide  age-afrl.ide  age-afro.ide  age-afru.ide  age-aftj.ide  age-aftr.ide 
              age-aftu.ide  age-afuc.ide  age-afuh.ide  age-afun.ide  age-afuv.ide  age-afve.ide  age-afvn.ide  age-afwa.ide  age-afxg.ide 
              age-afxi.ide  age-afxl.ide  age-afyk.ide  age-afzm.ide  age-afzp.ide  age-afzq.ide  age-afzr.ide  age-agan.ide  age-agat.ide 
              age-agbh.ide  age-agdo.ide  age-ageb.ide  age-ager.ide  age-agez.ide  age-agfa.ide  age-agfd.ide  age-agfe.ide  age-agfl.ide 
              age-agfn.ide  age-agfu.ide  age-agga.ide  age-aggf.ide  agen-ank.ide  andro-br.ide  andro-bv.ide  auto-abj.ide  auto-abo.ide 
              auto-abp.ide  auto-acm.ide  auto-acn.ide  auto-aco.ide  auto-acp.ide  auto-adk.ide  auto-adm.ide  auto-adn.ide  auto-ado.ide 
              auto-adq.ide  auto-adz.ide  auto-aeo.ide  auto-aet.ide  auto-aev.ide  auto-aff.ide  backd-jy.ide  baffec-a.ide  banc-bxn.ide 
              banc-bxq.ide  banc-bxu.ide  bank-gan.ide  bank-gao.ide  bank-gaq.ide  bank-gar.ide  bank-gbf.ide  banlo-al.ide  banlo-rr.ide 
              banlo-rs.ide  banlo-rt.ide  banlo-sc.ide  banlo-sj.ide  banlo-sl.ide  banlo-tg.ide  banlo-to.ide  bckd-rrk.ide  bckd-rro.ide 
              bdoo-bfs.ide  betabo-c.ide   blada-a.ide  bladab-k.ide  boaxx-ac.ide  boaxx-ad.ide    boht-b.ide  bred-alq.ide  bred-als.ide 
              bred-alv.ide  bred-alx.ide  bred-amg.ide  bred-ami.ide  bred-amk.ide  bred-amn.ide  bredo-vg.ide  bredo-wh.ide  buzus-hw.ide 
              capha-bh.ide  capha-bj.ide  chisbu-m.ide  chisbu-p.ide  cride-dv.ide  cride-dw.ide  cride-dx.ide  cride-dz.ide  cride-ec.ide 
              cutwa-bc.ide  danglo-g.ide  darkko-l.ide  darkko-m.ide  delf-fry.ide  delf-fsj.ide  delf-fsl.ide  delf-fsn.ide  delf-fst.ide 
              delfdl-c.ide  delfi-bv.ide  dloa-dtu.ide  docdr-bg.ide  dwnl-lgf.ide  dwnl-lhq.ide  dwnl-lhz.ide  dwnl-lid.ide  dwnl-lif.ide 
              dwnl-lih.ide  dwnl-lij.ide  dwnl-lja.ide  dwnl-ljc.ide  dwnl-ljt.ide  dwnl-ljx.ide  encpk-al.ide  expiro-t.ide  expiro-v.ide 
              fake-hay.ide  fake-hbe.ide  fake-hbk.ide  fake-hbl.ide  fake-hce.ide  fake-hch.ide  farei-bw.ide  fbjack-c.ide   fondu-d.ide 
               fondu-h.ide   fondu-p.ide   fondu-r.ide  gamar-ce.ide  gamar-cg.ide  hioles-d.ide  hkmain-o.ide  ifram-ll.ide  inje-ast.ide 
              inje-asw.ide  inje-atf.ide  inje-atg.ide  inje-atl.ide  inje-atv.ide  inje-aug.ide  inje-aui.ide  inje-aul.ide  inje-aux.ide 
              inje-ava.ide  injec-ct.ide   java-ry.ide   java-sh.ide  javab-rs.ide  javab-ru.ide  javab-rw.ide  javab-rx.ide  jsred-mz.ide 
              jvjack-b.ide   kazy-cd.ide  keyge-ll.ide  keygen-y.ide  keylo-pr.ide  keylo-pt.ide  keylo-pw.ide  krypt-cq.ide  krypt-cs.ide 
              krypt-ct.ide  kuluo-ah.ide  malit-ad.ide  malit-af.ide  malit-ah.ide  malit-ak.ide  malit-at.ide  malit-aw.ide   malit-m.ide 
               malit-q.ide   malit-r.ide   malit-w.ide   malit-y.ide  matsn-bc.ide  matsn-bd.ide  mdro-frg.ide  mdro-frj.ide  mdro-frr.ide 
              mdro-fsc.ide  mdro-fsi.ide  mdro-fss.ide  mdro-fst.ide  mdro-fte.ide  mdro-ftg.ide  mdro-ftx.ide  mdro-fud.ide  mdro-***.ide 
              mdro-fun.ide  mdro-fuo.ide  mdro-fut.ide  mdro-fvh.ide  mdro-fvj.ide  mdro-fvn.ide  mdro-fvv.ide   miner-r.ide   miner-t.ide 
               miner-u.ide  miuref-d.ide  miuref-h.ide   morix-k.ide   msil-hh.ide   msil-ir.ide   msil-it.ide   msil-iy.ide   msil-ji.ide 
               msil-jn.ide   msil-js.ide   msil-kd.ide   msil-kf.ide   msil-kk.ide   msil-kr.ide   msil-ks.ide   msil-ku.ide   msil-kv.ide 
               msil-kx.ide   msil-lr.ide   msil-mb.ide   msil-mf.ide   msil-mg.ide   msil-mh.ide   msil-mv.ide   msil-nc.ide  msili-av.ide 
              msilin-a.ide  napola-b.ide  necur-ba.ide  necur-bc.ide  neurev-f.ide  nimnul-a.ide  nymaim-c.ide  obfjs-eq.ide     pdf-j.ide 
              perldo-a.ide     php-r.ide  phpdoo-o.ide   pws-cft.ide   ramdo-d.ide   ramdo-e.ide   ramdo-k.ide  ramni-ee.ide  ramni-eg.ide 
              ramni-ek.ide  rans-afd.ide  rans-afj.ide  rans-afk.ide  rans-afm.ide  rans-afn.ide  rans-afp.ide  rans-afq.ide  rans-aft.ide 
              rans-afu.ide  rans-afv.ide  rans-age.ide  rans-agm.ide  rans-agn.ide  rebhi-aw.ide  redym-aa.ide  revetr-a.ide  rovnix-a.ide 
              sharik-e.ide  sharik-f.ide  silly-lm.ide  sniffe-u.ide  snifie-c.ide  snuffy-b.ide   spy-aci.ide  stealf-b.ide  swfex-cm.ide 
               symmi-s.ide   symmi-u.ide   symmi-w.ide  tepfe-au.ide  tepfe-av.ide  themas-a.ide  themas-g.ide  themeb-a.ide  tiotu-ec.ide 
              tproxy-a.ide  tracu-bs.ide   turla-a.ide   turla-c.ide  upatr-aa.ide  upatre-h.ide  upatre-n.ide  upatre-o.ide  upatre-p.ide 
              upatre-u.ide  upatre-w.ide    vb-gzu.ide    vb-haw.ide    vb-hbj.ide    vb-hbm.ide    vb-hbo.ide    vb-hbq.ide    vb-hby.ide 
                vb-hcp.ide    vb-hct.ide    vb-hdg.ide    vb-hdq.ide    vb-hdy.ide    vb-hef.ide    vb-heh.ide  vbagen-v.ide  vbdwnl-d.ide 
              vbinj-hb.ide  vbinj-hp.ide    vbs-do.ide       vdl.dat  vobfu-dn.ide  weels-cl.ide  wonton-h.ide  wonton-j.ide  wonton-m.ide 
              wonton-p.ide  wonton-r.ide  wonton-t.ide  wonton-z.ide  wowspy-c.ide  zbot-hev.ide  zbot-hge.ide  zbot-hgh.ide  zbot-hgq.ide 
              zbot-hgs.ide  zbot-hhx.ide  zbot-hij.ide  zbot-hio.ide  zbot-hit.ide  zbot-hiu.ide  zbot-hjf.ide  zbot-hjo.ide  zbot-hjs.ide 
              zbot-hjt.ide  zbot-hkl.ide  zbot-hko.ide  zbot-hkp.ide  zbot-hks.ide  zbot-hku.ide  zbot-hlc.ide  zbot-hlk.ide  zbot-hlr.ide 
              zbot-hlu.ide  zbot-hlv.ide  zbot-hmf.ide  zbot-hmy.ide  zbot-hmz.ide  zbot-hnc.ide  zbot-hni.ide  zbot-hno.ide  zbot-hnv.ide 
              zbot-hot.ide  zbot-hpe.ide  zbot-hph.ide  zbot-hpl.ide  zbot-hpv.ide  zbot-hqu.ide  zbot-hrd.ide  zbot-hru.ide  zbot-hrz.ide 
              zbot-hsf.ide  zbot-hsh.ide  zbot-hsj.ide  zbot-hsr.ide  zbot-hsw.ide  zbot-htf.ide  zbot-htr.ide  zbot-htz.ide  zbot-hud.ide 
              zbot-hup.ide  zbot-huu.ide  zegos-cg.ide  zipma-dn.ide    zusy-r.ide  zxshel-a.ide 
    2014-03-10 08:28:17 -0700 kernel[0]: Sophos Anti-Virus on-access kext activated
    2014-03-10 08:28:27 -0700 WindowServer[155]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    2014-03-10 08:28:27 -0700 WindowServer[155]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 1.04 seconds (server forcibly re-enabled them after 1.00 seconds)
    2014-03-10 08:30:11 -0700 ReportCrash[2468]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    2014-03-10 08:30:12 -0700 ReportCrash[2468]: Saved crash report for cont_asset[1901] version ??? to /Library/Logs/DiagnosticReports/cont_asset_2014-03-10-083012_Kevins-MacBook-Pro .crash
    2014-03-10 08:31:13 -0700 apsd[61]: Unrecognized leaf certificate
    2014-03-10 08:33:32 -0700 xpcproxy[2732]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    2014-03-10 08:33:43 -0700 syncdefaultsd[2739]: Fixing push token
    2014-03-10 08:35:05 -0700 Mail[1658]: [WEB BUNDLE] Could not execute script: ReferenceError: Can't find variable: MUIWebDocumentDisplayController_sharedInstance
    2014-03-10 08:35:19 -0700 SophosWebD[64]: <SMENode: 0x7f8fa3d2cce0> localNode csc:1ERROR! encountered an error while writing to outputstream| error:Error Domain=NSPOSIXErrorDomain Code=32 "The operation couldn’t be completed. Broken pipe"
    2014-03-10 08:35:19 -0700 SophosWebD[64]: <SMENode: 0x7f8fa3c65ef0> localNode csc:1ERROR! encountered an error while writing to outputstream| error:Error Domain=NSPOSIXErrorDomain Code=32 "The operation couldn’t be completed. Broken pipe"
    2014-03-10 08:35:29 -0700 sandboxd[186]: Mail(1658) deny file-issue-extension /Applications/Firefox.app
    2014-03-10 08:35:34 -0700 WindowServer[155]: disable_update_timeout: UI updates were forcibly disabled by application "Firefox" for over 1.00 seconds. Server has re-enabled them.
    2014-03-10 08:35:34 -0700 WindowServer[155]: common_reenable_update: UI updates were finally reenabled by application "Firefox" after 1.45 seconds (server forcibly re-enabled them after 1.00 seconds)
    2014-03-10 08:36:15 -0700 apsd[61]: Unrecognized leaf certificate
    2014-03-10 08:36:59 -0700 sandboxd[186]: com.apple.WebKit(2733) deny file-read-data /Library/Preferences/com.apple.security-common.plist
    2014-03-10 08:38:02 -0700 com.apple.launchd.peruser.501[1324]: Exited with code: 1
    2014-03-10 08:41:04 -0700 ReportCrash[3620]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    2014-03-10 08:41:04 -0700 ReportCrash[3620]: Saved crash report for cont_asset[3305] version ??? to /Library/Logs/DiagnosticReports/cont_asset_2014-03-10-084104_Kevins-MacBook-Pro .crash
    2014-03-10 08:41:10 -0700 ntpd[148]: SYNC state ignoring +0.481889 s
    2014-03-10 08:41:18 -0700 apsd[61]: Unrecognized leaf certificate
    2014-03-10 08:41:26 -0700 plugin-container[3973]: CoreText performance note: Client called CTFontCreateWithName() using name "Times Roman" and got font with PostScript name "Times-Roman". For best performance, only use PostScript names when calling this API.
    2014-03-10 08:41:26 -0700 plugin-container[3973]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    2014-03-10 08:41:27 -0700 plugin-container[3973]: CoreText performance note: Client called CTFontCreateWithName() using name "Arial" and got font with PostScript name "ArialMT". For best performance, only use PostScript names when calling this API.
    2014-03-10 08:43:48 -0700 kernel[0]: process firefox[2942] thread 10544 caught burning CPU! It used more than 50% CPU (Actual recent usage: 63%) over 180 seconds. thread lifetime cpu usage 155.410699 seconds, (149.104674 user, 6.306025 system) ledger info: balance: 90002853584 credit: 152956524196 debit: 62953670612 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 140810338295
    2014-03-10 08:43:48 -0700 ReportCrash[4117]: Invoking spindump for pid=2942 thread=10544 percent_cpu=63 duration=143 because of excessive cpu utilization
    2014-03-10 08:43:53 -0700 SophosWebD[64]: <SMENode: 0x7f8fa3d75bd0> localNode csc:2ERROR! encountered an error while writing to outputstream| error:Error Domain=NSPOSIXErrorDomain Code=32 "The operation couldn’t be completed. Broken pipe"
    2014-03-10 08:43:53 -0700 SophosWebD[64]: <SMENode: 0x7f8fa3d2fa70> localNode csc:1ERROR! encountered an error while writing to outputstream| error:Error Domain=NSPOSIXErrorDomain Code=32 "The operation couldn’t be completed. Broken pipe"
    2014-03-10 08:43:55 -0700 spindump[4118]: Saved cpu_resource.spin report for firefox version 27.0.1 (2714.2.12) to /Library/Logs/DiagnosticReports/firefox_2014-03-10-084355_Kevins-MacBook-Pro.cp u_resource.spin
    2014-03-10 08:46:14 -0700 firefox[2942]: CGSNewCIFilterByName
    2014-03-10 08:46:14 -0700 WindowServer[155]: CGXSetCIFilterValues: Invalid filter 0
    2014-03-10 08:46:14 -0700 WindowServer[155]: CGXSetWindowFilter: Invalid filter 0
    2014-03-10 08:46:20 -0700 apsd[61]: Unrecognized leaf certificate
    2014-03-10 08:50:05 -0700 ReportCrash[5154]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    2014-03-10 08:50:06 -0700 ReportCrash[5154]: Saved crash report for cont_asset[4679] version ??? to /Library/Logs/DiagnosticReports/cont_asset_2014-03-10-085006_Kevins-MacBook-Pro .crash
    2014-03-10 08:51:23 -0700 apsd[61]: Unrecognized leaf certificate
    2014-03-10 08:53:34 -0700 SophosWebD[64]: <SMENode: 0x7f8fa3d370f0> localNode csc:1ERROR! encountered an error while writing to outputstream| error:Error Domain=NSPOSIXErrorDomain Code=32 "The operation couldn’t be completed. Broken pipe"
    2014-03-10 08:55:18 -0700 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x8800 ****
    2014-03-10 08:55:57 -0700 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x8800 ****
    2014-03-10 08:56:24 -0700 apsd[61]: Unrecognized leaf certificate
    2014-03-10 08:59:58 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 08:59:59 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 09:00:00 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 09:00:48 -0700 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    2014-03-10 09:00:48 -0700 fseventsd[46]: Logging disabled completely for device:1: /Volumes/Recovery HD
    2014-03-10 09:00:48 -0700 mds[35]: (Normal) Volume: volume:0x7fa90c118000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    2014-03-10 09:00:49 -0700 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    2014-03-10 09:01:25 -0700 apsd[61]: Unrecognized leaf certificate
    2014-03-10 09:01:28 -0700 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    2014-03-10 09:01:29 -0700 mds[35]: (Normal) Volume: volume:0x7fa90c04d000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    2014-03-10 09:01:29 -0700 fseventsd[46]: Logging disabled completely for device:1: /Volumes/Recovery HD
    2014-03-10 09:01:29 -0700 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    2014-03-10 09:01:44 -0700 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    2014-03-10 09:01:44 -0700 mds[35]: (Normal) Volume: volume:0x7fa90c8af800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    2014-03-10 09:01:44 -0700 fseventsd[46]: Logging disabled completely for device:1: /Volumes/Recovery HD
    2014-03-10 09:01:44 -0700 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    2014-03-10 09:01:53 -0700 cont_rebootpopup[8245]: objc[8245]: Class CkoCert is implemented in both /usr/local/lib/libchilkatCocoaDyn.dylib and /opt/local/share/continuum_mac/bin/cont_rebootpopup.app/Contents/MacOS/cont_reb ootpopup. One of the two will be used. Which one is undefined.
    2014-03-10 09:01:53 -0700 cont_rebootpopup[8245]: objc[8245]: Class CkoCrypt2 is implemented in both /usr/local/lib/libchilkatCocoaDyn.dylib and /opt/local/share/continuum_mac/bin/cont_rebootpopup.app/Contents/MacOS/cont_reb ootpopup. One of the two will be used. Which one is undefined.
    2014-03-10 09:01:53 -0700 cont_rebootpopup[8245]: objc[8245]: Class CkoPrivateKey is implemented in both /usr/local/lib/libchilkatCocoaDyn.dylib and /opt/local/share/continuum_mac/bin/cont_rebootpopup.app/Contents/MacOS/cont_reb ootpopup. One of the two will be used. Which one is undefined.
    2014-03-10 09:01:53 -0700 cont_rebootpopup[8245]: objc[8245]: Class CkoPublicKey is implemented in both /usr/local/lib/libchilkatCocoaDyn.dylib and /opt/local/share/continuum_mac/bin/cont_rebootpopup.app/Contents/MacOS/cont_reb ootpopup. One of the two will be used. Which one is undefined.
    2014-03-10 09:01:53 -0700 cont_rebootpopup[8245]: objc[8245]: Class CkoXml is implemented in both /usr/local/lib/libchilkatCocoaDyn.dylib and /opt/local/share/continuum_mac/bin/cont_rebootpopup.app/Contents/MacOS/cont_reb ootpopup. One of the two will be used. Which one is undefined.
    2014-03-10 09:02:20 -0700 SophosWebD[64]: <SMENode: 0x7f8fa3d403f0> localNode csc:1ERROR! encountered an error while writing to outputstream| error:Error Domain=NSPOSIXErrorDomain Code=32 "The operation couldn’t be completed. Broken pipe"
    2014-03-10 09:05:42 -0700 SophosWebD[64]: <SMENode: 0x7f8fa3e02fc0> localNode csc:1ERROR! encountered an error while writing to outputstream| error:Error Domain=NSPOSIXErrorDomain Code=32 "The operation couldn’t be completed. Broken pipe"
    2014-03-10 09:06:29 -0700 ntpd[148]: ntpd: time set +1.186663 s
    2014-03-10 09:06:29 -0700 apsd[61]: Unrecognized leaf certificate
    2014-03-10 09:06:30 -0700 cups-exec[8802]: sandbox cache error 11: database disk image is malformed
    2014-03-10 09:06:31 -0700 cups-exec[8801]: sandbox cache error 1: no such table: profiles
    2014-03-10 09:06:37 -0700 com.apple.time[1356]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2014-03-10 09:06:39 -0700 CalendarAgent[1391]: [com.apple.calendar.store.log.notifications.totals] [Warning: Alarm for recurring event Sarina & Kevin's Anniversary has large relative trigger of 18446744073520075816.  Ignoring.]
    2014-03-10 09:06:39 -0700 CalendarAgent[1391]: [com.apple.calendar.store.log.notifications.totals] [Warning: Alarm for recurring event Sarina & Kevin's Anniversary has large relative trigger of 18446744073520075816.  Ignoring.]
    2014-03-10 09:06:39 -0700 CalendarAgent[1391]: [com.apple.calendar.store.log.notifications.totals] [Warning: Alarm for recurring event Sarina & Kevin's Anniversary has large relative trigger of 18446744073520075816.  Ignoring.]
    2014-03-10 09:06:39 -0700 CalendarAgent[1391]: [com.apple.calendar.store.log.notifications.totals] [Warning: Alarm for recurring event Sarina & Kevin's Anniversary has large relative trigger of 18446744073551611816.  Ignoring.]
    2014-03-10 09:06:39 -0700 CalendarAgent[1391]: [com.apple.calendar.store.log.notifications.totals] [Warning: Alarm for recurring event Sarina & Kevin's Anniversary has large relative trigger of 18446744073551611816.  Ignoring.]
    2014-03-10 09:06:56 -0700 com.apple.launchd[1]: assertion failed: 13C64: launchd + 73282 [425516B6-9F3E-342F-87B3-EC461EBA6A1A]: 0x0
    2014-03-10 09:06:56 -0700 com.apple.launchd[1]: Switching sessions is not allowed in the system Mach bootstrap.
    2014-03-10 09:06:56 -0700 com.apple.launchd[1]: _vprocmgr_switch_to_session(): kr = 0x44c
    2014-03-10 09:07:56 -0700 shutdown[8830]: reboot by _appleevents: System will reboot in 1 minute
    2014-03-10 09:07:56 -0700 kernel[0]: Kext loading now disabled.
    2014-03-10 09:07:56 -0700 kernel[0]: Kext unloading now disabled.
    2014-03-10 09:07:56 -0700 kernel[0]: Kext autounloading now disabled.
    2014-03-10 09:07:56 -0700 kernel[0]: Kernel requests now disabled.
    2014-03-10 09:07:56 -0700 shutdown[8830]: SHUTDOWN_TIME: 1394467676 433114

    I was unable to access the laptop last night to create a new user; however my client would perfer not to try a second account since that would make it unusable for him while we test the second profile.
    Also John Sophos was installed after this started to verify that it was not a virus/malware (I know pointless step but it has happened to me before) so I don't think that is the problem

Maybe you are looking for