CS3 JS progress bar function

I'm trying to create a progress bar function but the code below creates 6 instances of the progress window rather than updating the info in the first window.  I've gone the for loop process to make progress bars work is this the only way it can be used or is there a way to tell if a window is open on if so update the bar and info of that window?
to call the bar I use stagesLeft("Looking for duplicates",1)
function stagesLeft(myText,stageVal){
    var myStop =6;
    var myPbValue = stageVal;
    var myWindow = new Window ( 'window',' Progress');
    var myProgressBar = myWindow.add ('progressbar', [12, 12, 350, 24], 0, myStop);
    var myStaticText = myWindow.add('statictext');
    myStaticText.bounds = [0, 0, 340, 20];
    myStaticText.alignment = "left";
        myWindow.show();
        myProgressBar.value = myPbValue;
        myStaticText.text = myText;
        myWindow.text = 'Stage '+ myPbValue + ' out of ' + myStop;
        if(myPbValue == 6){
        myWindow.close();

Thanks Jongware I knew it had to be something simple.
Working version:
    var myStop =6;
    var myWindow = new Window ( 'window','Progress');
    var myProgressBar = myWindow.add ('progressbar', [12, 12, 350, 24], 0, myStop);
    var myStaticText = myWindow.add('statictext');
    myStaticText.bounds = [0, 0, 340, 20];
    myStaticText.alignment = "left";
function stagesLeft(myText,stageVal){
    if(stageVal == 1){   
        myWindow.show();
        myProgressBar.value = stageVal;
        myStaticText.text = myText;
        myWindow.text = 'Stage '+ stageVal + ' out of ' + myStop;
        if(stageVal == 6){
        myWindow.close();
To use the function:
stagesLeft("This is the first stage",1)
then further on in the script when another process is taking place
stagesLeft("Here is stage 2 of this script",2)
etc etc.
Cheers, John.

Similar Messages

  • Unable to send email of photo in either a collection or in a HD Mac folder. The address is validated. Progress bar functions to end of "sending email" The "email not sent"  Suggestions please.

    Unable to send email of photo in either a collection or in a HD Mac folder. The address is validated. Progress bar functions to end of "sending email" The "email not sent"  Suggestions please.

    Hi,
    According to your description, I find that there is a single user cannot send email.
    I suggest using Outlook on Windows machine and sending emails via this single user to verify whether the emails can be sent.
    If the single user can send email via Outlook on Windows machine, it seems an issue on the Mac side.
    I suggest asking Outlook for Mac Forum for help so that we can get more professional suggestions.
    For your convenience:
    http://answers.microsoft.com/en-us/mac/forum/macoutlook?tab=Threads
    If can't send emails in Outlook, it seems an issue on the single user side.
    I suggest trying to access the single user's mailbox via OWA to verify whether the mailbox has been migrated completely.
    Thanks
    Mavis
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Mavis Huang
    TechNet Community Support

  • [JS] CS3 ScriptUI - Progress Bar

    Hi
    I know I am late to the game with ScriptUI in CS3, but I would like to use a progress bar with some of my longer scripts. 
    I have read through the relevant part of the scripting guide, but cannot seem to make things work, the guide seems to reference a script that is not in the file.
    Can anyone offer some simple guidance on what I need to do, or point me in the direction of a script that uses this feature that I can pull apart and use?
    Thanks in advance,
    Roy Marshall

    Hi Roy,
    I just looked at my archives of the old forums, and it looks like you asked the same question almost two years ago...
    Here's a quote of xbytor's response from back then:
    Here's my contribution to this thread. This function creates and returns a
    Progress Palette. You specify the window's title, the max/min for the progress
    bar, and whether or not you want to use a Cancel button. If you decided to have
    a Cancel button, you should also specify an 'onCancel' on the Palette.
    Code:
    // createProgressWindow
    //   title     the window title
    //   min       the minimum value for the progress bar
    //   max       the maximum value for the progress bar
    //   parent    the parent ScriptUI window (opt)
    //   useCancel flag for having a Cancel button (opt)
    //   onCancel  This method will be called when the Cancel button is pressed.
    //             This method should return 'true' to close the progress window
    function createProgressWindow(title, min, max, parent, useCancel) {
       var win = new Window('palette', title);
       win.bar = win.add('progressbar', undefined, min, max);
       win.bar.preferredSize = [300, 20];
       win.parent = undefined;
       if (parent) {
         if (parent instanceof Window) {
           win.parent = parent;
         } else if (useCancel == undefined) {
           useCancel = parent;
       if (useCancel) {
         win.cancel = win.add('button', undefined, 'Cancel');
         win.cancel.onClick = function() {
           try {
             if (win.onCancel) {
               var rc = win.onCancel();
               if (rc || rc == undefined) {
                 win.close();
             } else {
               win.close();
           } catch (e) {
             alert(e);
       win.updateProgress = function(val) {
         var win = this;
         win.bar.value = val;
         // recenter the progressWindow if desired
         // win.center(win.parent);
         win.show();
         win.hide();
         win.show();
       win.center(win.parent);
       return win;
    And here's an example of how it would be used. In this example, we are
    processing an array of files. We call a 'processFile' method for each file in
    the array.
    We also add an 'isDone' property to the Palette, which we set to 'true' in an
    'onCancel' method. This makes it possible for the user to terminate the file
    processing loop before all of the files have been processed.
    Sample Code (in some function):
       // we have to process an array of 'files'
       var progressWindow = createProgressWindow("Progress...",
                                                 0, files.length, true);
       progressWindow.isDone = false;
       progressWindow.onCancel = function() {
         this.isDone = true;
         return true;  // return 'true' to close the window
       try {
         for (var i = 0; i < files.length; i++) {
           // check to see if the user pressed the 'Cancel' button...
           if (progressWindow.isDone) {
             break;
           progressWindow.text = ("Processing file " + (i+1) + " of " + files.length
    + "...");
           progressWindow.updateProgress(i);
            // now process the next file
            processFile(files[i]);
       } catch (e) {
         alert(e);
       } finally {
         progressWindow.close();
    I've tested this in PSCS2 and PSCS3. It should work without change in IDCS3.
    -X
    -- for photoshop scripting solutions of all sorts contact: [email protected]

  • CS3 install silent with progress bar ??

    Is it possible to install full CS3 with progress bar showing when the program silently installs?
    Install works fine using UI mode Silent and Full, but I can't find andy other options?
    My problem is when using the silent install of full CS3, shortcuts are available before the installation is finished. Since the installation takes time, users may click the shortcut before the installation is finished, resulting installation fails.
    Using the UI Mode Full is dependent on the users, and not accepted by company.
    -Odesti

    We too are in the same boat, we need a progress bar so that our users know that we are deploying the application.
    I've tried various random switch for the "UI mode" but none work. There must be others than silent or Full.
    Phil H

  • 'setProgress is not a function' error while setting the progress of a progress bar manually

    I want to set value of a progress bar in an accordian but I am encountering 'setProgress is not a function' error. Any idea what's wrong with following code.
    Observation:
    If I move the progress bar out of the Accordian then the error goes away and the progress bar appears fine.
    I want to set the progress bar eventually to {repMonitor.currentItem.threatLevel} but for now I am just testing with hypothetical threat value i.e 60
        <mx:Accordion id="monAccordian" includeIn="Monitoring" x="10" y="10" width="554" height="242" change="monAccordianChange()" >       
           <mx:Repeater id="repMonitor" dataProvider="{monitoringArray}">
              <mx:Canvas width="100%" height="100%" label="{repMonitor.currentItem.firstName+' '+ repMonitor.currentItem.lastName}" >
                <mx:Image x="10" y="10" source="{repMonitor.currentItem.imageName}" width="175" height="118"/>
                  <s:Label x="200" y="14" text="Threat Level:"/>
                  <mx:ProgressBar x="200" y="30" mode="manual" label="" id="bar" width="200" creationComplete="bar.setProgress(60,100);" />
              </mx:Canvas>
           </mx:Repeater>
        </mx:Accordion>

    Okay.. Thanks.
    On another forum I ve been told that I need to use getRepeaterItem. How can I use it to set my progress bar such the value of progress may be taken from repMonitor.currentItem.threatLevel?

  • I have an iphone 4 and I have just upgraded to iOS 5. I have lost my progress bar and song repeat function, how can I get them back?

    I have an iphone 4 and I have just upgraded to iOS 5. Unlike some people, I have not really had any problems but I am really annoyed with the new music feature. I have lost my progress bar abd song repeat function. Does anyone know how I can get them back?

    Glad to hear it all works for you.
    For future reference, if your iPhone misbehaves, always try a Reset. It's painless and often solves the problem.
       Press and hold both the Sleep/Wake button and the Home button for at least ten seconds, until the Apple logo appears (ignore the Slide to Power Off option that shows up first).
    Enjoy.

  • Progress bar Fl cs3 as3.0

    below is my very simple code to load images from a instance
    of button component into an instance of UIloader component.
    there are multiple buttons like this one
    i can't get it... the way to get progress bar to listen and
    respond to the loading of the image
    img_02_btn.addEventListener(MouseEvent.CLICK, onClick2);
    function onClick2(event:MouseEvent):void
    trace("typeMe");
    loaderOne.source = "assets/b300.png";
    loaderOne.load();
    }

    Thanks Jongware I knew it had to be something simple.
    Working version:
        var myStop =6;
        var myWindow = new Window ( 'window','Progress');
        var myProgressBar = myWindow.add ('progressbar', [12, 12, 350, 24], 0, myStop);
        var myStaticText = myWindow.add('statictext');
        myStaticText.bounds = [0, 0, 340, 20];
        myStaticText.alignment = "left";
    function stagesLeft(myText,stageVal){
        if(stageVal == 1){   
            myWindow.show();
            myProgressBar.value = stageVal;
            myStaticText.text = myText;
            myWindow.text = 'Stage '+ stageVal + ' out of ' + myStop;
            if(stageVal == 6){
            myWindow.close();
    To use the function:
    stagesLeft("This is the first stage",1)
    then further on in the script when another process is taking place
    stagesLeft("Here is stage 2 of this script",2)
    etc etc.
    Cheers, John.

  • Progress bar completion function

    How do we control the progress bar completion functions @ the end of the pages, so they reflect reasonably correct amounts?

    For single page forms we never show progress
    For multiple page forms the first page always shows 0% and we don't show progress on the last page. For the pages in between we take the number of questions completed on the previous pages and divide by the total number of questions in the entire form to get the percentage for the current visible page.
    Hope that explains this better.
    Randy

  • Can you add seek handle/function to a progress Bar?

    I've got a nice little brogress bar working for my AS3 app,
    but I also want to provide a seek/scrub function. I haven't been
    able to figure out how to make one yet, let alone add it to the
    progress display. But I did what I want to do (provide a great
    little scrubber/progress bar combination) at
    http://www.gotoandlearn.com
    (video basics 5). The problem is it's in AS2 and I can't seem to
    figure out the equivalent functionality in AS3 - I'm having issues
    understanding the migration of components/functions in AS3.
    The code for the AS2 example is below:(it sits on frame 1 of
    the .fla rather than in a package/.as file)
    Any ideas where to find/adapt what would be "equivalent"
    using AS3 classes?

    But I don't want that the user actually sees the dummy page, I want them to get directly to the external page. is it possible to make clicking on the dummy page immediately send the user to the external page?

  • A second non-functional progress bar is always visible on the status bar, how can I get rid of it?

    The second bar is inside of the sizing grip on the right side of the status bar. It does nothing, but take up space. The functional progress bar appears only when it is working inside of the message panel and outside of the authentication panel on the left side of the status bar. I've turned the status bar off and then on again--no luck. I've also tried disabling all add-ons--no luck. I've also changed themes--no luck. Do I need to re-install the browser?

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    If you have many extensions then you can first enable half of the extensions to test which half has the problem.
    Continue to divide the bad half that still has the issue until you find which one is causing it.

  • How to create a progress bar showing status on timeout of TCP Read function

    Is there any way of creating a progress bar showing the status of a 'TCP Read timeout' time ... ?
    I'm sending a data request to an intranet server via TCP Write, and then using TCP Read with a 2 min. timeout to receive the requested data. During this time i want to show the actual progress of the timeout in a progress bar.
    Can this be done?
    And do i have to implement some kind of multitasking to make it happen?
    TIA

    Soulstorm wrote:
    > Is there any way of creating a progress bar showing the status of a
    > 'TCP Read timeout' time ... ?
    >
    > I'm sending a data request to an intranet server via TCP Write, and
    > then using TCP Read with a 2 min. timeout to receive the requested
    > data. During this time i want to show the actual progress of the
    > timeout in a progress bar.
    > Can this be done?
    > And do i have to implement some kind of multitasking to make it
    > happen?
    It can be done and you need to do some multitasking yes, but that is
    quite easy in LabVIEW. A separate loop or subVI with loop will be
    responsible for the progress bar. Set its scale to 0 and the number of
    seconds of your timeout. In parallel to the TCP Read let this loop or VI
    execute reading the time every few
    seconds and calculating the
    difference to its start time, passing this value to the progress bar
    slider. Have an extra boolean global which aborts the loop and set this
    boolean to FALSE before starting the loop/VI and TCP Read and setting it
    to TRUE on return of the TCP Read.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Unloading my progress bar

    I  have have applied the progress bar from the componets panel in Flash CS3 using AS2 and I have been able to make it function: however, I have not been successful in getting the progress bar to unload once my file loads. I have tried a couple of things like using an if statement and the unLoadMovieClip but I seem to be wording the code wrong because neither have worked at all, they even have cancelled out all the other code. Can anyone help me write this statemen correctly? Here is my code:
      Requires:
       - Loader component on Stage (instance name: my_ldr)
       - ProgressBar component on Stage (instance name: my_pb)
    System.security.allowDomain("ModularWebsite.swf");
    var my_ldr:mx.controls.Loader;
    var my_pb:mx.controls.ProgressBar;
    my_pb.source = my_ldr;
    my_ldr.autoLoad = false;
    my_ldr.contentPath = "ModularWebsite.swf";
    // when autoLoad is false loading does not start until load() is invoked
    my_ldr.load();

    I wound up doing this instead:
    var img_mcl:MovieClipLoader = new MovieClipLoader();
    var mclListener:Object = new Object();
    mclListener.onLoadProgress = function(target_mc:MovieClip, numBytesLoaded:Number, numBytesTotal:Number) {
        my_pb.setProgress(numBytesLoaded, numBytesTotal);
    mclListener.onLoadComplete = function(target_mc:MovieClip) {
    my_pb._visible = false;
    img_mcl.addListener(mclListener);
    this.createEmptyMovieClip("image_mc", 20);
    img_mcl.loadClip("ModularWebsite.swf", image_mc);

  • How can I add a Progress bar to show the "render to JPG" progress?

    Hi everyone, I have a button which renders my component to
    JPG.
    How can I attach a progress bar to show the progress of the
    rendering?
    <mx:Button label="render" click="renderasJPEG ()"/>
    public function renderasJPEG( ):void
    convertToImage( component001, new JPEGEncoder( 100));
    private function convertToImage( object:IUICompon ent,
    encoder:IImageEncod er):void
    var base64string: String = ImageSnapshot. encodeImageAsBas
    e64(
    ImageSnapshot. captureImage( object, 72, encoder));
    var variables:URLVariab les = new URLVariables( );
    variables.encoded = base64string;
    variables.type = "jpeg";
    var request:URLRequest = new URLRequest(" script_saveasima
    ge.php");
    request.method = "POST";
    request.data = variables;
    navigateToURL( request, "_blank");
    Thanks in advance.

    Hi,
    I would have thrown a prompt to the user in the renderasJpeg
    function and removed it in last line of convertToImage function.
    Isn't this what you want?
    Hope this helps.

  • Progress bar on startup

    Hi Guys,
    I keep getting a progress bar on startup. Not every time, but at least every few days. I've had this before since installing Mavericks and eventually my drive was not reparable in disk utility and I had to do a clean install and start from scratch.
    I'm using a Macbook Pro 2012 with a Sandisk Ultra Plus SSD.
    One thing I've noticed is that it seems to happen when I shutdown and close the lid of the macbook overnight and leave it unplugged. I'm not sure if this is a coincidence or not.
    I'm not sure exactly what is causing this issue and I can't seem to find what it is from the log files. I've pasted my log file in below, hopefully there's someone out there who can see what it is!
    22/11/13 8:50:32.000 am bootlog[0]: BOOT_TIME 1385081432 0
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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".
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am syslogd[20]: 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.
    22/11/13 8:51:08.000 am kernel[0]: Longterm timer threshold: 1000 ms
    22/11/13 8:51:08.000 am kernel[0]: PMAP: PCID enabled
    22/11/13 8:51:08.000 am kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    22/11/13 8:51:08.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
    22/11/13 8:51:08.000 am kernel[0]: vm_page_bootstrap: 3908857 free pages and 252679 wired pages
    22/11/13 8:51:08.000 am kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    22/11/13 8:51:08.000 am kernel[0]: zone leak detection enabled
    22/11/13 8:51:08.000 am kernel[0]: "vm_compressor_mode" is 4
    22/11/13 8:51:08.000 am kernel[0]: standard timeslicing quantum is 10000 us
    22/11/13 8:51:08.000 am kernel[0]: standard background quantum is 2500 us
    22/11/13 8:51:08.000 am kernel[0]: mig_table_max_displ = 74
    22/11/13 8:51:08.000 am kernel[0]: TSC Deadline Timer supported and enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    22/11/13 8:51:08.000 am kernel[0]: calling mpo_policy_init for TMSafetyNet
    22/11/13 8:51:08.000 am kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    22/11/13 8:51:08.000 am kernel[0]: calling mpo_policy_init for Sandbox
    22/11/13 8:51:08.000 am kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    22/11/13 8:51:08.000 am kernel[0]: calling mpo_policy_init for Quarantine
    22/11/13 8:51:08.000 am kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    22/11/13 8:51:08.000 am kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    22/11/13 8:51:08.000 am kernel[0]: The Regents of the University of California. All rights reserved.
    22/11/13 8:51:08.000 am kernel[0]: MAC Framework successfully initialized
    22/11/13 8:51:08.000 am kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    22/11/13 8:51:08.000 am kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    22/11/13 8:51:08.000 am kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    22/11/13 8:51:08.000 am kernel[0]: ACPI: sleep states S3 S4 S5
    22/11/13 8:51:08.000 am kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    22/11/13 8:51:08.000 am kernel[0]: AppleIntelCPUPowerManagement: (built 22:16:38 Sep 19 2013) initialization complete
    22/11/13 8:51:08.000 am kernel[0]: pci (build 22:16:29 Sep 19 2013), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    22/11/13 8:51:08.000 am kernel[0]: [ PCI configuration begin ]
    22/11/13 8:51:08.000 am kernel[0]: console relocated to 0xf80000000
    22/11/13 8:51:08.000 am kernel[0]: [ PCI configuration end, bridges 11, devices 15 ]
    22/11/13 8:51:08.000 am kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    22/11/13 8:51:08.000 am kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    22/11/13 8:51:08.000 am kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    22/11/13 8:51:08.000 am kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 10ddb1fffe8da9e6; max speed s800.
    22/11/13 8:51:08.000 am kernel[0]: rooting via boot-uuid from /chosen: 159A8D24-BC1B-3397-A3F5-A6F84517DC1A
    22/11/13 8:51:08.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>
    22/11/13 8:51:08.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    22/11/13 8:51:08.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    22/11/13 8:51:08.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    22/11/13 8:51:08.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    22/11/13 8:51:08.000 am kernel[0]: AppleIntelCPUPowerManagementClient: ready
    22/11/13 8:51:08.000 am kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT1@1/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/SanDisk SDSSDHP128G Media/IOGUIDPartitionScheme/Mavericks@2
    22/11/13 8:51:08.000 am kernel[0]: BSD root: disk0s2, major 1, minor 3
    22/11/13 8:51:08.000 am kernel[0]: BTCOEXIST off
    22/11/13 8:51:08.000 am kernel[0]: BRCM tunables:
    22/11/13 8:51:08.000 am kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    22/11/13 8:51:08.000 am kernel[0]: hfs: mounted Mavericks on device root_device
    22/11/13 8:51:08.000 am kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    22/11/13 8:50:32.326 am com.apple.launchd[1]: *** launchd[1] has started up. ***
    22/11/13 8:50:32.326 am com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    22/11/13 8:51:08.100 am com.apple.SecurityServer[17]: Session 100000 created
    22/11/13 8:51:08.000 am kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    22/11/13 8:51:08.000 am kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    22/11/13 8:51:10.261 am com.apple.SecurityServer[17]: Entering service
    22/11/13 8:51:10.000 am kernel[0]: Previous Shutdown Cause: 5
    22/11/13 8:51:10.000 am kernel[0]: init
    22/11/13 8:51:10.000 am kernel[0]: probe
    22/11/13 8:51:10.000 am kernel[0]: start
    22/11/13 8:51:10.000 am kernel[0]: [IOBluetoothHCIController][start] -- completed
    22/11/13 8:51:10.000 am kernel[0]: IOBluetoothUSBDFU::probe
    22/11/13 8:51:10.000 am kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821D FirmwareVersion - 0x0131
    22/11/13 8:51:10.000 am kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x6400 ****
    22/11/13 8:51:10.000 am kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x6400 ****
    22/11/13 8:51:10.000 am kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x6400
    22/11/13 8:51:10.428 am UserEventAgent[14]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    22/11/13 8:51:10.440 am UserEventAgent[14]: Captive: CNPluginHandler en1: Inactive
    22/11/13 8:51:10.000 am kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    22/11/13 8:51:10.000 am kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x1400 -- 0xe800 -- 0x6400 ****
    22/11/13 8:51:10.000 am kernel[0]: DSMOS has arrived
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:10.000 am kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:10.000 am kernel[0]: m_tail has not been written to hardware: m_tail = 0x00000000, hardare tail register = 0x00000060
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:10.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.000 am kernel[0]: VM Swap Subsystem is ON
    22/11/13 8:51:11.108 am hidd[69]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    22/11/13 8:51:11.110 am hidd[69]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    22/11/13 8:51:11.156 am mDNSResponder[61]: mDNSResponder mDNSResponder-522.1.11 (Aug 24 2013 23:49:34) starting OSXVers 13
    22/11/13 8:51:11.000 am kernel[0]: en2: promiscuous mode enable succeeded
    22/11/13 8:51:11.247 am digest-service[86]: label: default
    22/11/13 8:51:11.247 am digest-service[86]:           dbname: od:/Local/Default
    22/11/13 8:51:11.247 am digest-service[86]:           mkey_file: /var/db/krb5kdc/m-key
    22/11/13 8:51:11.247 am digest-service[86]:           acl_file: /var/db/krb5kdc/kadmind.acl
    22/11/13 8:51:11.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.253 am digest-service[86]: digest-request: uid=0
    22/11/13 8:51:11.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.345 am digest-service[86]: digest-request: netr probe 0
    22/11/13 8:51:11.348 am digest-service[86]: digest-request: init request
    22/11/13 8:51:11.432 am digest-service[86]: digest-request: init return domain: BUILTIN server: LOCALHOST indomain was: <NULL>
    22/11/13 8:51:11.463 am com.apple.usbmuxd[45]: usbmuxd-323.1 on Oct  3 2013 at 12:43:24, running 64 bit
    22/11/13 8:51:11.540 am loginwindow[64]: Login Window Application Started
    22/11/13 8:51:11.587 am mDNSResponder[61]: D2D_IPC: Loaded
    22/11/13 8:51:11.587 am mDNSResponder[61]: D2DInitialize succeeded
    22/11/13 8:51:11.592 am mDNSResponder[61]:   4: Listening for incoming Unix Domain Socket client requests
    22/11/13 8:51:11.606 am mDNSResponder[61]: mDNSMacOSXGetEtcHostsFD etc hosts does not exist, watching etc
    22/11/13 8:51:11.692 am mds[60]: (Normal) FMW: FMW 0 0
    22/11/13 8:51:11.729 am WindowServer[107]: Server is starting up
    22/11/13 8:51:11.745 am WindowServer[107]: Session 256 retained (2 references)
    22/11/13 8:51:11.746 am WindowServer[107]: Session 256 released (1 references)
    22/11/13 8:51:11.789 am mDNSResponder[61]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 5028209798 MessageCount is 1
    22/11/13 8:51:11.798 am awacsd[81]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    22/11/13 8:51:11.803 am WindowServer[107]: Session 256 retained (2 references)
    22/11/13 8:51:11.808 am WindowServer[107]: init_page_flip: page flip mode is on
    22/11/13 8:51:11.811 am awacsd[81]: InnerStore CopyAllZones: no info in Dynamic Store
    22/11/13 8:51:11.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.000 am kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x6400 ****
    22/11/13 8:51:11.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.923 am WindowServer[107]: Found 16 modes for display 0x00000000 [8, 8]
    22/11/13 8:51:11.926 am apsd[83]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    22/11/13 8:51:11.930 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.934 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.937 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.943 am WindowServer[107]: mux_initialize: Couldn't find any matches
    22/11/13 8:51:11.946 am WindowServer[107]: Found 16 modes for display 0x00000000 [8, 8]
    22/11/13 8:51:11.952 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.953 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.953 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.972 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:11.989 am WindowServer[107]: WSMachineUsesNewStyleMirroring: true
    22/11/13 8:51:11.990 am WindowServer[107]: Display 0x042732c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 16 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ccb, S/N 0, Unit 0, Rotation 0
    UUID 0x4f159f59a71d63aefce94e26fc6d6edd
    22/11/13 8:51:11.990 am WindowServer[107]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[1920 x 1200], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:11.990 am WindowServer[107]: 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
    22/11/13 8:51:11.990 am WindowServer[107]: 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
    22/11/13 8:51:11.990 am WindowServer[107]: 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
    22/11/13 8:51:12.002 am WindowServer[107]: WSSetWindowTransform: Singular matrix
    22/11/13 8:51:12.002 am WindowServer[107]: WSSetWindowTransform: Singular matrix
    22/11/13 8:51:12.003 am WindowServer[107]: WSSetWindowTransform: Singular matrix
    22/11/13 8:51:12.018 am WindowServer[107]: Display 0x042732c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 16 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ccb, S/N 0, Unit 0, Rotation 0
    UUID 0x4f159f59a71d63aefce94e26fc6d6edd
    22/11/13 8:51:12.019 am WindowServer[107]: 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
    22/11/13 8:51:12.019 am WindowServer[107]: 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
    22/11/13 8:51:12.019 am WindowServer[107]: 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
    22/11/13 8:51:12.019 am WindowServer[107]: 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
    22/11/13 8:51:12.019 am WindowServer[107]: CGXPerformInitialDisplayConfiguration
    22/11/13 8:51:12.019 am WindowServer[107]:   Display 0x042732c0: Unit 0; Vendor 0x610 Model 0x9ccb S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1280 x 800], Rotation 0, Resolution 1
    22/11/13 8:51:12.020 am WindowServer[107]:   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
    22/11/13 8:51:12.020 am WindowServer[107]:   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
    22/11/13 8:51:12.020 am WindowServer[107]:   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
    22/11/13 8:51:12.021 am WindowServer[107]:   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
    22/11/13 8:51:12.027 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:12.033 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:12.058 am systemkeychain[91]: done file: /var/run/systemkeychaincheck.done
    22/11/13 8:51:12.061 am mDNSResponder[61]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 5028210070 MessageCount is 2
    22/11/13 8:51:12.068 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:12.080 am WindowServer[107]: GLCompositor: GL renderer id 0x01024400, GL mask 0x0000001f, accelerator 0x000048bb, unit 0, caps QEX|MIPMAP, vram 1024 MB
    22/11/13 8:51:12.081 am WindowServer[107]: GLCompositor: GL renderer id 0x01024400, GL mask 0x0000001f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    22/11/13 8:51:12.081 am WindowServer[107]: GLCompositor enabled for tile size [256 x 256]
    22/11/13 8:51:12.081 am WindowServer[107]: CGXGLInitMipMap: mip map mode is on
    22/11/13 8:51:12.093 am loginwindow[64]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    22/11/13 8:51:12.185 am networkd[119]: networkd.119 built Aug 24 2013 22:08:46
    22/11/13 8:51:12.199 am locationd[66]: NBB-Could not get UDID for stable refill timing, falling back on random
    22/11/13 8:51:12.229 am airportd[85]: airportdProcessDLILEvent: en1 attached (down)
    22/11/13 8:51:12.232 am locationd[66]: Location icon should now be in state 'Inactive'
    22/11/13 8:51:12.000 am kernel[0]: createVirtIf(): ifRole = 1
    22/11/13 8:51:12.000 am kernel[0]: in func createVirtualInterface ifRole = 1
    22/11/13 8:51:12.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    22/11/13 8:51:12.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    22/11/13 8:51:12.000 am kernel[0]: Created virtif 0xffffff8044e81400 p2p0
    22/11/13 8:51:12.254 am WindowServer[107]: Display 0x042732c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    22/11/13 8:51:12.333 am launchctl[122]: com.apple.findmymacmessenger: Already loaded
    22/11/13 8:51:12.378 am mDNSResponder[61]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 5028210387 MessageCount is 3
    22/11/13 8:51:12.000 am kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    22/11/13 8:51:12.418 am com.apple.SecurityServer[17]: Session 100004 created
    22/11/13 8:51:12.497 am loginwindow[64]: Setting the initial value of the magsave brightness level 1
    22/11/13 8:51:12.552 am loginwindow[64]: Login Window Started Security Agent
    22/11/13 8:51:12.565 am configd[21]: dhcp_arp_router: en1 SSID unavailable
    22/11/13 8:51:12.565 am configd[21]: [bootp_transmit.c:213] bootp_transmit(): bpf_write(en1) failed: Network is down (50)
    22/11/13 8:51:12.566 am configd[21]: DHCP en1: INIT-REBOOT transmit failed
    22/11/13 8:51:12.606 am configd[21]: network changed: DNS*
    22/11/13 8:51:12.607 am configd[21]: setting hostname to "Gareths-MacBook-Pro.local"
    22/11/13 8:51:12.000 am kernel[0]: hfs: mounted DATA on device disk1s3
    22/11/13 8:51:12.809 am SecurityAgent[140]: This is the first run
    22/11/13 8:51:12.809 am SecurityAgent[140]: MacBuddy was run = 0
    22/11/13 8:51:12.833 am WindowServer[107]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042732c0 device: 0x7fa22341bd70  isBackBuffered: 1 numComp: 3 numDisp: 3
    22/11/13 8:51:12.834 am WindowServer[107]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fa22341bd70) - enabling OpenGL
    22/11/13 8:51:12.840 am UserEventAgent[124]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    22/11/13 8:51:12.000 am kernel[0]: NTFS driver 3.11 [Flags: R/W].
    22/11/13 8:51:12.929 am SecurityAgent[140]: User info context values set for gareth
    22/11/13 8:51:13.000 am kernel[0]: hfs: mounted Recovery HD on device disk0s3
    22/11/13 8:51:13.236 am mds[60]: (Normal) Volume: volume:0x7f8bb2053800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    22/11/13 8:51:13.290 am fseventsd[70]: Logging disabled completely for device:1: /Volumes/Recovery HD
    22/11/13 8:51:13.386 am loginwindow[64]: Login Window - Returned from Security Agent
    22/11/13 8:51:13.428 am loginwindow[64]: USER_PROCESS: 64 console
    22/11/13 8:51:13.000 am kernel[0]: nspace-handler-set-snapshot-time: 1385081475
    22/11/13 8:51:13.441 am com.apple.mtmd[59]: Set snapshot time: 2013-11-22 08:51:15 +0800 (current time: 2013-11-22 08:51:13 +0800)
    22/11/13 8:51:13.000 am kernel[0]: AppleKeyStore:Sending lock change 0
    22/11/13 8:51:13.000 am kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    22/11/13 8:51:13.608 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:13.608 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:13.626 am com.apple.launchd.peruser.501[158]: Background: Aqua: Registering new GUI session.
    22/11/13 8:51:13.664 am com.apple.launchd.peruser.501[158]: (com.apple.cmfsyncagent) Ignored this key: UserName
    22/11/13 8:51:13.665 am com.apple.launchd.peruser.501[158]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    22/11/13 8:51:13.666 am com.apple.launchd.peruser.501[158]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    22/11/13 8:51:13.671 am launchctl[161]: com.apple.pluginkit.pkd: Already loaded
    22/11/13 8:51:13.672 am launchctl[161]: com.apple.sbd: Already loaded
    22/11/13 8:51:13.000 am kernel[0]: NTFS volume name BOOTCAMP, version 3.1.
    22/11/13 8:51:13.706 am distnoted[163]: # distnote server agent  absolute time: 42.115652323   civil time: Fri Nov 22 08:51:13 2013   pid: 163 uid: 501  root: no
    22/11/13 8:51:13.000 am kernel[0]: en1: 802.11d country code set to 'HK'.
    22/11/13 8:51:13.000 am 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 149 153 157 161 165
    22/11/13 8:51:13.934 am com.apple.SecurityServer[17]: Session 100006 created
    22/11/13 8:51:13.976 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputerIndexed"
    22/11/13 8:51:14.003 am WindowServer[107]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    22/11/13 8:51:14.101 am WindowServer[107]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    22/11/13 8:51:14.118 am mds[60]: (Normal) Volume: volume:0x7f8bb2833800 ********** Bootstrapped Creating a default store:1 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/BOOTCAMP
    22/11/13 8:51:14.394 am WindowServer[107]: Display 0x042732c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    22/11/13 8:51:14.435 am WindowServer[107]: Display 0x042732c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    22/11/13 8:51:14.690 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    22/11/13 8:51:14.692 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    22/11/13 8:51:14.692 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    22/11/13 8:51:14.692 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    22/11/13 8:51:14.692 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    22/11/13 8:51:14.810 am com.apple.audio.DriverHelper[184]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    22/11/13 8:51:14.810 am com.apple.audio.DriverHelper[184]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    22/11/13 8:51:14.811 am com.apple.audio.DriverHelper[184]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    22/11/13 8:51:14.895 am coreaudiod[173]: 2013-11-22 08:51:14.894059 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM,  44100 Hz, 16-bit, Stereo
    22/11/13 8:51:14.984 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:15.108 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:15.109 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:15.131 am sharingd[190]: Starting Up...
    22/11/13 8:51:15.244 am com.apple.IconServicesAgent[194]: IconServicesAgent launched.
    22/11/13 8:51:15.554 am SystemUIServer[169]: Cannot find executable for CFBundle 0x7fb3f8551950 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    22/11/13 8:51:15.635 am SystemUIServer[169]: Cannot find executable for CFBundle 0x7fb3f854dd30 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    22/11/13 8:51:15.636 am SystemUIServer[169]: Cannot find executable for CFBundle 0x7fb3f851a2a0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    22/11/13 8:51:15.788 am UserEventAgent[162]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    22/11/13 8:51:15.847 am WindowServer[107]: Display 0x042732c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    22/11/13 8:51:15.880 am revisiond[53]: objc[53]: 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.
    22/11/13 8:51:16.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=218[GoogleSoftwareUp] final status 0x0, allow (remove VALID)ing page
    22/11/13 8:51:16.140 am SystemUIServer[169]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    22/11/13 8:51:16.140 am SystemUIServer[169]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    22/11/13 8:51:16.609 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:16.610 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:16.887 am com.apple.SecurityServer[17]: Session 100009 created
    22/11/13 8:51:16.896 am accountsd[229]: assertion failed: 13A603: liblaunch.dylib + 25164 [FCBF0A02-0B06-3F97-9248-5062A9DEB32C]: 0x25
    22/11/13 8:51:17.009 am xpcproxy[232]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    22/11/13 8:51:17.037 am PlexHelper[217]: PlexHelper 0.7 starting up...
    22/11/13 8:51:17.079 am com.apple.launchd.peruser.501[158]: (com.apple.mrt.uiagent[205]) Exited with code: 255
    22/11/13 8:51:17.223 am apsd[83]: Unexpected connection from logged out uid 501
    22/11/13 8:51:17.392 am xpcproxy[235]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    22/11/13 8:51:17.960 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:17.966 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:18.110 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:18.144 am com.apple.dock.extra[195]: <NSXPCConnection: 0x7ff2a363a550>: received an undecodable message (no exported object to receive message). Dropping message.
    22/11/13 8:51:18.245 am com.apple.SecurityServer[17]: Session 100012 created
    22/11/13 8:51:18.252 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:18.504 am WiFiKeychainProxy[201]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    22/11/13 8:51:18.505 am WiFiKeychainProxy[201]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    22/11/13 8:51:18.558 am accountsd[229]: /SourceCache/Accounts/Accounts-336.9/ACDAuthenticationPluginManager.m - -[ACDAuthenticationPluginManager credentialForAccount:client:handler:] - 230 - The authentication plugin for account "[email protected]" (F14ADF42-657D-4C7F-B172-209A645CFA51) could not be found!
    22/11/13 8:51:18.558 am accountsd[229]: /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.
    22/11/13 8:51:18.891 am com.apple.NotesMigratorService[242]: Joined Aqua audit session
    22/11/13 8:51:18.000 am kernel[0]: MacAuthEvent en1   Auth result for: f8:1a:67:be:21:7a  MAC AUTH succeeded
    22/11/13 8:51:18.000 am kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    22/11/13 8:51:18.000 am kernel[0]: AirPort: Link Up on en1
    22/11/13 8:51:18.000 am kernel[0]: en1: BSSID changed to f8:1a:67:be:21:7a
    22/11/13 8:51:18.000 am kernel[0]: AirPort: RSN handshake complete on en1
    22/11/13 8:51:19.112 am com.apple.internetaccounts[235]: com.apple.internetaccounts(235,0x1165e5000) malloc: *** error for object 0x9000000000000006: pointer being freed was not allocated
    *** set a breakpoint in malloc_error_break to debug
    22/11/13 8:51:19.210 am com.apple.iCloudHelper[232]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro9,2> <Mac OS X;10.9;13A603> <com.apple.AOSKit/176>";
        "X-Mme-Country" = HK;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = HKT;
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc5b0c3a1f0 {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)
    22/11/13 8:51:19.253 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:19.284 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:19.286 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:19.307 am gamed[227]: CKSoftwareMap: Registering with Daemon
    22/11/13 8:51:19.383 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:19.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    22/11/13 8:51:19.610 am AddressBookSourceSync[225]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/] Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7feb9bd74760 {NSUnderlyingError=0x7feb9bf4cf60 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/, NSErrorFailingURLKey=https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/, NSLocalizedDescription=The Internet connection appears to be offline.}
    22/11/13 8:51:19.752 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:19.752 am mtmfs[58]: MTM fs Mount server failed to start because of too many retries
    22/11/13 8:51:19.752 am mtmfs[58]: MTM fs Mount server failed, last error -1
    22/11/13 8:51:19.761 am com.apple.launchd[1]: (com.apple.mtmfs[58]) Exited with code: 99
    22/11/13 8:51:19.761 am com.apple.launchd[1]: (com.apple.mtmfs) Throttling respawn: Will start in 2 seconds
    22/11/13 8:51:19.786 am com.apple.iCloudHelper[232]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro9,2> <Mac OS X;10.9;13A603> <com.apple.AOSKit/176>";
        "X-Mme-Country" = HK;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = HKT;
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc5b0e02510 {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)
    22/11/13 8:51:19.790 am com.apple.iCloudHelper[232]: AOSKit ERROR: Setup request failed, appleID=1021024264, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc5b0c3b950 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    22/11/13 8:51:19.856 am ReportCrash[244]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    22/11/13 8:51:20.335 am airportd[85]: _doAutoJoin: Already associated to “Hawking”. Bailing on auto-join.
    22/11/13 8:51:20.461 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:20.498 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:21.221 am Dropbox[223]: PyObjCPointer created: at 0xaf3fc88 of type {OpaqueJSContext=}
    22/11/13 8:51:21.279 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:21.854 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:22.929 am syncdefaultsd[224]: *** remoteObjectProxyWithErrorHandler failed: Error Domain=NSCocoaErrorDomain Code=4097 "Couldn’t communicate with a helper application."; {
    22/11/13 8:51:22.931 am CalendarAgent[213]: *** remoteObjectProxyWithErrorHandler failed: Error Domain=NSCocoaErrorDomain Code=4097 "Couldn’t communicate with a helper application."; {
    22/11/13 8:51:22.932 am CalendarAgent[213]: *** remoteObjectProxyWithErrorHandler failed: Error Domain=NSCocoaErrorDomain Code=4097 "Couldn’t communicate with a helper application."; {
    22/11/13 8:51:22.936 am com.apple.launchd[1]: (com.apple.internetaccounts[235]) Job appears to have crashed: Abort trap: 6
    22/11/13 8:51:23.191 am ReportCrash[244]: Saved crash report for com.apple.internetaccounts[235] version 1.0 (1) to /Library/Logs/DiagnosticReports/com.apple.internetaccounts_2013-11-22-085123_Ga reths-MacBook-Pro.crash
    22/11/13 8:51:23.402 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:23.402 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:23.674 am mds_stores[114]: (Error) SecureStore: Access token 6 changed uid from -1 to 501
    22/11/13 8:51:24.971 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:24.972 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:26.529 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:26.529 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:26.698 am parentalcontrolsd[266]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    22/11/13 8:51:26.821 am awacsd[81]: Exiting
    22/11/13 8:51:28.094 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:28.095 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:29.149 am AddressBookSourceSync[225]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/] Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7feb9be40570 {NSUnderlyingError=0x7feb9bf34660 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/, NSErrorFailingURLKey=https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/, NSLocalizedDescription=The Internet connection appears to be offline.}
    22/11/13 8:51:29.668 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:29.669 am mtmfs[254]: MTM fs Mount server failed to start because of too many retries
    22/11/13 8:51:29.669 am mtmfs[254]: MTM fs Mount server failed, last error -1
    22/11/13 8:51:29.671 am com.apple.launchd[1]: (com.apple.mtmfs[254]) Exited with code: 99
    22/11/13 8:51:29.671 am com.apple.launchd[1]: (com.apple.mtmfs) Throttling respawn: Will start in 3 seconds
    22/11/13 8:51:30.316 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x211] flags: 0x8 binding: FileInfoBinding [0x111] - extension: jpg, UTI: public.jpeg, fileType: ????.
    22/11/13 8:51:30.317 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xe03] flags: 0x8 binding: FileInfoBinding [0xd03] - extension: jpg, UTI: public.jpeg, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:31.251 am com.apple.InputMethodKit.UserDictionary[273]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  gareth~BC4B5F87-774E-5569-BE83-2926411DBD09:UserDictionary
    Using local storage: 1
    22/11/13 8:51:31.461 am com.apple.InputMethodKit.UserDictionary[273]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  gareth~BC4B5F87-774E-5569-BE83-2926411DBD09:UserDictionary
    Using local storage: 0
    22/11/13 8:51:32.416 am com.apple.SecurityServer[17]: Session 100016 created
    22/11/13 8:51:32.810 am mtmfs[275]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:33.957 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x115] flags: 0x8 binding: FileInfoBinding [0x215] - extension: mp3, UTI: public.mp3, fileType: MPG3.
    22/11/13 8:51:33.957 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1403] flags: 0x8 binding: FileInfoBinding [0x1303] - extension: mp3, UTI: public.mp3, fileType: MPG3 request size:16 scale: 1
    22/11/13 8:51:34.043 am configd[21]: network changed: DNS* Proxy
    22/11/13 8:51:34.043 am UserEventAgent[14]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Hawking' making interface primary (protected network)
    22/11/13 8:51:34.045 am UserEventAgent[14]: Captive: CNPluginHandler en1: Evaluating
    22/11/13 8:51:34.047 am UserEventAgent[14]: Captive: en1: Probing 'Hawking'
    22/11/13 8:51:34.058 am configd[21]: network changed: v4(en1!:192.168.1.107) DNS+ Proxy+ SMB
    22/11/13 8:51:34.077 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x217] flags: 0x8 binding: FileInfoBinding [0x117] - extension: ai, UTI: com.adobe.illustrator.ai-image, fileType: PDF .
    22/11/13 8:51:34.078 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1603] flags: 0x8 binding: FileInfoBinding [0x1503] - extension: ai, UTI: com.adobe.illustrator.ai-image, fileType: PDF  request size:16 scale: 1
    22/11/13 8:51:34.086 am configd[21]: setting hostname to "gareths-mbp"
    22/11/13 8:51:34.104 am UserEventAgent[14]: Captive: CNPluginHandler en1: Authenticated
    22/11/13 8:51:34.314 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:34.355 am ntpd[109]: proto: precision = 1.000 usec
    22/11/13 8:51:34.370 am mtmfs[275]: MTM fs Mount server retrying ...
    22/11/13 8:51:34.845 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x21b] flags: 0x8 binding: FileInfoBinding [0x119] - extension: m4a, UTI: com.apple.m4a-audio, fileType: ????.
    22/11/13 8:51:34.845 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1803] flags: 0x8 binding: FileInfoBinding [0x1703] - extension: m4a, UTI: com.apple.m4a-audio, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:37.294 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x11b] flags: 0x8 binding: FileInfoBinding [0x21d] - extension: mp4, UTI: public.mpeg-4, fileType: ????.
    22/11/13 8:51:37.295 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1a03] flags: 0x8 binding: FileInfoBinding [0x1903] - extension: mp4, UTI: public.mpeg-4, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:37.307 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x21f] flags: 0x8 binding: FileInfoBinding [0x11d] - extension: pptx, UTI: org.openxmlformats.presentationml.presentation, fileType: ????.
    22/11/13 8:51:37.308 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1c03] flags: 0x8 binding: FileInfoBinding [0x1b03] - extension: pptx, UTI: org.openxmlformats.presentationml.presentation, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:37.581 am syncdefaultsd[224]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    22/11/13 8:51:37.000 am kernel[0]: fsevents: watcher dbfseventsd (pid: 288) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    22/11/13 8:51:39.328 am digest-service[86]: digest-request: uid=0
    22/11/13 8:51:39.328 am digest-service[86]: digest-request: init request
    22/11/13 8:51:39.335 am digest-service[86]: digest-request: init return domain: MACBOOKPRO-BFDB server: GARETHS-MBP indomain was: <NULL>
    22/11/13 8:51:39.360 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x223] flags: 0x8 binding: FileInfoBinding [0x11f] - extension: ppt, UTI: com.microsoft.powerpoint.ppt, fileType: ????.
    22/11/13 8:51:39.360 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1e03] flags: 0x8 binding: FileInfoBinding [0x1d03] - extension: ppt, UTI: com.microsoft.powerpoint.ppt, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:39.380 am digest-service[86]: digest-request: uid=0
    22/11/13 8:51:39.380 am digest-service[86]: digest-request: init request
    22/11/13 8:51:39.385 am digest-service[86]: digest-request: init return domain: GARETHS-MBP server: GARETHS-MBP indomain was: <NULL>
    22/11/13 8:51:39.585 am mtmfs[275]: mount failed for /Volumes/MobileBackups
    22/11/13 8:51:39.588 am com.apple.launchd[1]: (com.apple.mtmfs[275]) Exited with code: 22
    22/11/13 8:51:39.588 am com.apple.launchd[1]: (com.apple.mtmfs) Throttling respawn: Will start in 4 seconds
    22/11/13 8:51:41.759 am Dropbox[223]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    22/11/13 8:51:45.429 am Google Chrome[308]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:45.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=310[ksadmin] final status 0x0, allow (remove VALID)ing page
    22/11/13 8:51:45.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=312[ksadmin] final status 0x0, allow (remove VALID)ing page
    22/11/13 8:51:45.719 am Google Chrome Helper[311]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:45.924 am Google Chrome Helper[313]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.092 am Google Chrome Helper[313]: 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
    22/11/13 8:51:46.093 am Google Chrome Helper[313]: 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.
    22/11/13 8:51:46.112 am Google Chrome Helper[313]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:46.147 am Google Chrome Helper[314]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.349 am Google Chrome Helper[314]: 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
    22/11/13 8:51:46.349 am Google Chrome Helper[314]: 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.
    22/11/13 8:51:46.361 am Google Chrome Helper[314]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:46.542 am Google Chrome Helper[315]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.597 am Google Chrome Helper[316]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.677 am Google Chrome Helper[317]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.682 am Google Chrome Helper[315]: 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
    22/11/13 8:51:46.683 am Google Chrome Helper[315]: 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.
    22/11/13 8:51:46.694 am Google Chrome Helper[315]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:46.732 am Google Chrome Helper[316]: 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
    22/11/13 8:51:46.732 am Google Chrome Helper[316]: 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.
    22/11/13 8:51:46.744 am Google Chrome Helper[316]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:46.823 am Google Chrome Helper EH[318]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.826 am Google Chrome Helper[317]: 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
    22/11/13 8:51:46.826 am Google Chrome Helper[317]: 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.
    22/11/13 8:51:46.837 am Google Chrome Helper[317]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:47.060 am Google Chrome Helper[319]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:47.083 am xpcproxy[320]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    22/11/13 8:51:47.241 am Google Chrome Helper[319]: 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
    22/11/13 8:51:47.241 am Google Chrome Helper[319]: 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.
    22/11/13 8:51:47.252 am Google Chrome Helper[319]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:47.566 am com.apple.NotesMigratorService[242]: Joined Aqua audit session
    22/11/13 8:51:47.599 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:47.719 am icbaccountsd[267]: -[ICBLocalDictionary writeLocalMapping:]: Status: Writing out local mapping to disk
    22/11/13 8:51:47.719 am icbaccountsd[267]: -[ICBLocalDictionary writeLocalMapping:]: Status: Ending writing out local mapping to disk
    22/11/13 8:51:47.719 am icbaccountsd[267]: -[ICBRemoteDictionary writeDevices]: Status: Writing out of devices
    22/11/13 8:51:47.720 am icbaccountsd[267]: -[ICBRemoteDictionary writeDevices]: Status: Ending writing out of device
    22/11/13 8:51:48.003 am Google Chrome Helper[321]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:48.135 am fontd[187]: BUG in libdispatch client: dispatch_mig_server: mach_msg() failed (ipc/send) invalid memory - 0x1000000c
    22/11/13 8:51:48.135 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.135 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.137 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.137 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.147 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.148 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.152 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.152 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:

    The progress bar usually means your Mac is booting into the Safe Boot startup, Safe Mode.
    Do you see "Safe Boot" in the upper right hand corner of the screen.

  • Macintosh HD greyed out and shut down after progress bar complets

    Hello everyone, after i manually closed my macbook by holding the shut down button for 5secs due to an application crush, my macbook pro doesnt seem to be able to boot anymore. It executes the progress bar under the apple  icon on the screen (trying to repair my hd) and after it completes the process, it shuts down. When i press cmd+R, i can see from disk utilities the 500GB hard drive and the macintosh hd. The 500GB total hard drive is normal (even with no problems to fix after running verify and repair) but the Macintosh HD-part is greyed out and verify/repair fail with an error when i click on them. What should i do? i dont think its a hard drive failure. At least, how can i back up my system or some files? from disk utilities the new image function should be executed for the macintosh hd partition and not for the parent 500GB hard disk in order to make a backup, right?

    1) In a Finder window, select the Macintosh HD. Can you see the contents? If yes, you can select to drag over files.
    2) Download SuperDuper (free) When it opens does it recognize the internal drive in the popup? If yes, you will need to make a second portion on your external drive for the clone of your internal drive.
    3) If you can't see the contents or the drive in Finder or SuperDuper then you will need to download and run Mavericks over the internal drive.

Maybe you are looking for

  • Can't open my borrowed library book on my kobo touch

    I have downloaded both adobe digital editions 2.0 and 1.7 and have authorized my device and my computer with my adobe id.  it still won't let me open my borrowed epub book.  it comes up as "oops! This document couldn't be opened...not currently autho

  • Crystal Reports for Eclipse ver. 2 fails on export to excel

    I have downloaded crystal reports for eclipse version 2 (full eclipse setup) and created the sample project. The new version of JRC looks awesome on the browser. Finally the visual appeal is as good as the .NET version. However I am having a problem

  • About auto de-interlacing and frame sizing

    Hi everyone, first post. I've been working on a project in FCP and, in looking at the DV files in my capture scratch folder, I've seen that that when I play one of these files in QT Player the video is sized to the correct aspect ratio and the fields

  • Quad gigaSwift Ethernet Driver for Solaris 10 Sparc

    I have been looking about for this all over the place and cannot find it anywhere, in the manual and the sun site all the downloads are for solaris 9. Are these cards not supported on Solaris 10 Sparc ? Cheers, Mike

  • Code for reading the and placing the file using java webservice

    Hi All, Can anybody can guide me on how to read a file and place the file using java. Let  me know if any code is available which has been completed using java. Regards, Rahul