AppleScript: How to reload a Safari window without bring the window to the foreground while I am on other Desktop space

I want to write an AppleScript to achive a simple task. That is, I open a Safari window on Desktop 1 and automatically reload every 30 minutes while I do my dialy work on desktop 2.
Here is my script:
tell application "Safari"
    activate
    tell application "System Events"
        tell process "Safari"
            keystroke "r" using {command down}
        end tell
    end tell
end tell
This script works. However, whenever the script is executed, my current Desktop 2 will be brought back to Desktop 1. It is distracting to my workflow.
Is there any way to just let Safari to reload in the background without bring Safari window to foreground on Desktop 1?
I have done a coumple of researches; many of them say I should not use "activate" in my script. I tried that but then the script will just do nothing.

Hi, Hiroto
your approach works perfectly fine. Thank you.
I just found there is also a more generic approach without tweaking of javascript or any third party scripting language involed:
#!/usr/bin/osascript
tell application "Safari"
    set docUrl to URL of document 1
    set URL of document 1 to docUrl
end tell
From there, I can do a simple cron job task now.

Similar Messages

  • How can I print a booklet without a white outline around the border?

    How can I print a booklet without a white outline around the border? I'd like the front page to be covered entirely.

    You either need a borderless printer, or you have to print on oversize paper and trim off the bleed.

  • How can I resize an image without losing resolution or using the crop tool? I am using Photoshop Elements 13 on a PC.

    How can I resize an image without losing resolution or using the crop tool? I am using Photoshop Elements 13 on a PC.

    Hi Peru Bob,
    I've tried two images, the results were:
    Image 1
    Jpg, original file size 923KB, dimensions 848px x 279px.
    After resizing to 848px x 180px with 72dpi, the file size decreased to 164KB.
    Image 2
    Jpg, original file size 809KB, dimensions 1200px x 1800px.
    After resizing to 668px x 722px with 72dpi, the file size decreased to 307KB.
    So, there seems to be a fair file size loss - is this to be expected?

  • Hello  I have an I mac with Yosemite operating system.  I installed a windows seven 64 bit on it. also i have a parallels desk top with version 10. if i run my windows  without parallels my windows and my office is activated ,but if i run my parallel

    Hello
    I have an I mac with Yosemite operating system.
    I installed a windows seven 64 bit on it.
    also i have a parallels desk top with version 10.
    if i run my windows  without parallels my windows and my office is activated ,but if i run my parallels then my windows and my office can not be activated .
    My problem is activating my windows and office through parallels desktop .
    i had installed windows an parallel desktop several times ,also i installed several times parallel tools with menu bar in parallels desk top and when i am installing parallels desktop tools in any way i can see the (CTRL+ALT )
    all of my application in windows works properly through parallels desktop except 
    activation of office and windows .
    I do not no any solution for my problem , i need for helps .thanks 

    It is not W10, it is the Technical Preview version of W10.
    Search on the Windows forums (fora for the latinist) for activation in the TP W10.

  • How do I keep Safari stable with 40-60 windows/tabs/sites open all at once?

    I have an iMac 2.66 GHz Intel Core i5 with 4 GB RAM running 10.6.4. One internal drive of 1TB half full and good external FW with plenty of room.
    Recently, I have been needing to keep 60+ windows open (or tabs) in Safari. It's a long story… This has proven to be unstable and the browser locks up unpredictably.
    Would adding more RAM help me keep MORE browser windows open and have better browser stability?
    Firefox is OK but seems to have the same limits on number of windows. Actually, maybe less.
    The web sites are a mix. Regular HTML, with Flash, PHP, the whole mix. Some sites require activity after X amount of time. The most unstable sites seem to be state and government sites. They are just not made for Mac or just stink.
    Interestingly, by using Spaces - keeping about half the windows in one space and half the other (yes, it can be done!) Safari seems to last about 50% longer before becoming unstable. But I could be wrong or just lucky since using Spaces a week or so ago.
    BTW: there is an extension called Auto Refresh for Safari that automatically refreshes pages. But I have not tried it yet. Not that it would solve this problem.

    What about using multiple browsers simultaneously? IOW, instead of all 60 tabs in one program, open 30 in Safari and 30 in Firefox, for example. The one app may not have enough internal resources to handle that many tabs. So split them between different apps.
    Me personally, some websites I only open in specific web browsers. For example, I open the Apple forums in Safari, but I open the VMware forums in Firefox. Each forum, I'll have multiple tabs open. (Not 60, but sometimes 15-20 tabs.) Although both are using Jive forum software, VMware's implementation has issues with Safari. Later, I found it was advantageous because now my "sites" were "organized" and viewing all the tabs related to one site was as simple as clicking on the Safari or Firefox icons in the Dock. And I do use Spaces, although not for organizing sites. For example, all the browsers go to Space 1, and Mail/iCal/Addressbook are in Space 4, so that I can leave multiple Mail messages open without cluttering the "web desktop". (Space 4 is pseudo-Outlook space.) So web apps to organize different websites, and Spaces to organize apps or tasks.
    YMMV, of course. Just a thought.

  • How do I set Safari to automatically resize new window when opening a link?

    Here is the scenario. I have one Safari window open, I click a link that is on that page, I have Safari set to open a new window (not a new tab) so that is what it does. It opens a new window from that link, but the new window is too small. It is about 1/4 the size of a window that fills up the screen. How do I set up Safari so that when I open a link in a window, it automatically resizes the new window to fill the screen?
    Thanks much,
    Paula Jo

    Hi Paula Jo
    Next time a new window automatically opens, resize it to the desired size by dragging the lower right corner. Then, click on the red button in the upper left to close it.
    Now, select a link in your existing browser window to open the 2nd window. It ought to be the same size as what was set previously.
    Let me know if that works.

  • How to listen a key event without having any window component

    Hi all,
    I would like to know how can I listen key events from an application that doesn't use windows
    Thanks

    yoiu can make a Thread run inside your application. This will listen for inputs in the command line. For examplethis is part of a chat server (on the console) with let the server manager to enter messages or commands.
    The message or command entered on the console by the user is catched and processed as a String. The string is passed to the processConsole() method, you must define yourself.
    Th Thread is never stopped, so the user may enter any message at any time
    The core of you application should also be a Thread for better performance, but maybe it will also work without. Jst try and provide needed importstatements.
    Runnable runInput = new Runnable() {
            public void run() {
              while(true) {
                try {
                  byte buffer[] = new byte[255];
                  System.out.print(prompt);
                  System.in.read(buffer);//, 0, 255);
                  String inputString = new String(buffer, "Default");
                  processConsole(inputString);
                catch(NullPointerException npe) {
                  System.out.println("Syntax error");
                catch(Exception e) {e.printStackTrace(); }
          Thread inputThread = new Thread(runInput);
          inputThread.start();

  • How to reset my safari browser without opening it on yosemite

    last night I booted up my computer to do some work and went to safari, when I tried to open it it gave the the usual "last time safari quit unexpectedly" message and I hit reopen however, it did not solve my problem and another error message popped up. I have tried to delete the app to reinstall it only for my computer to tell me that it is required by os x and cant be tampered with, I am currently using chrome to write this and would be very grateful for a solution. Alternately I can go to an apple store but that is quite far away and I need a fix ASAP!
    here is the message that pops up:
    Process:               Safari [825]
    Path:                  /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:            com.apple.Safari
    Version:               8.0 (10600.1.25.1)
    Build Info:            WebBrowser-7600001025001000~1
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Safari [825]
    User ID:               501
    Date/Time:             2015-01-05 10:53:10.062 +0000
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        2D877190-2D00-8B91-3D34-F4353D204DC2
    Sleep/Wake UUID:       4BDE3A4C-5BAD-4A3F-A8DB-369D7989DFB6
    Time Awake Since Boot: 2400 seconds
    Time Since Wake:       470 seconds
    Crashed Thread:        17
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
        __TEXT                 0000000101788000-0000000101789000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Enabled Extensions:
    com.betafish.adblockforsafari-UAMUU4S2D9 (102.15 - 2.15) AdBlock
    com.genieo.safari-K444F5Z2ZH (1 - 1.2) Omnibar
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_platform.dylib       0x00007fff9075b380 _platform_memmove$VARIANT$Nehalem + 64
    1   com.apple.coreui               0x00007fff89e66ee7 BOMStorageCopyFromBlockRange + 589
    2   com.apple.coreui               0x00007fff89e6deb6 _findIndexForKey + 286
    3   com.apple.coreui               0x00007fff89e6ff57 _findPagesForKey + 79
    4   com.apple.coreui               0x00007fff89e6e48f BOMTreeGetValue + 86
    5   com.apple.coreui               0x00007fff89e2ed73 -[CUICommonAssetStorage assetExistsForKey:] + 82
    6   com.apple.coreui               0x00007fff89e351c0 -[CUIStructuredThemeStore assetExistsForKey:] + 57
    7   com.apple.coreui               0x00007fff89e37545 -[CUIStructuredThemeStore _canGetRenditionWithKey:isFPO:lookForSubstitutions:] + 493
    8   com.apple.coreui               0x00007fff89e262f4 +[CUIThemeFacet assetExistsForRenditionKey:fromTheme:] + 138
    9   com.apple.coreui               0x00007fff89dc656a CUICoreThemeRenderer::CommonGetLayerContents(CUIDescriptor const*, long, CGImage**, CGRect*, CUIRenditionKey*) + 354
    10  com.apple.coreui               0x00007fff89dc66e3 CUICoreThemeRenderer::CreateMaskImageForWindowBackground(CUIDescriptor const*, CGImage**, CGRect*) + 111
    11  com.apple.coreui               0x00007fff89d925dc CUIRenderer::CreateLayerContents(__CFDictionary const*, CGImage**, CGRect*) + 182
    12  com.apple.AppKit               0x00007fff880c8387 __52-[NSAppearance _createLayerContents:contentsCenter:]_block_invoke + 40
    13  com.apple.AppKit               0x00007fff880c9dd3 -[NSCompositeAppearance _callCoreUIWithBlock:] + 183
    14  com.apple.AppKit               0x00007fff880c831f -[NSAppearance _createLayerContents:contentsCenter:] + 144
    15  com.apple.AppKit               0x00007fff87e92f2e -[NSThemeFrame _createWindowShapeMask:centerRect:scale:] + 239
    16  com.apple.AppKit               0x00007fff87e95afc -[NSThemeFrame updateWindowCornerMaskOnLayer:forTitlebar:] + 54
    17  com.apple.AppKit               0x00007fff878db353 -[_NSViewBackingLayer display] + 399
    18  com.apple.QuartzCore           0x00007fff8ffb3641 CA::Layer::display_if_needed(CA::Transaction*) + 603
    19  com.apple.QuartzCore           0x00007fff8ffb2d7d CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 35
    20  com.apple.QuartzCore           0x00007fff8ffb250e CA::Context::commit_transaction(CA::Transaction*) + 242
    21  com.apple.QuartzCore           0x00007fff8ffb2164 CA::Transaction::commit() + 390
    22  com.apple.AppKit               0x00007fff87e9ac41 -[NSThemeFrame _floatTitlebarAndToolbarFromInit:] + 104
    23  com.apple.AppKit               0x00007fff877f574e -[NSThemeFrame initWithFrame:styleMask:owner:] + 243
    24  com.apple.AppKit               0x00007fff877f3c96 -[NSWindow _commonInitFrame:styleMask:backing:defer:] + 614
    25  com.apple.AppKit               0x00007fff877f33fc -[NSWindow _initContent:styleMask:backing:defer:contentView:] + 1477
    26  com.apple.AppKit               0x00007fff87a2a40e -[NSPanel _initContent:styleMask:backing:defer:contentView:] + 51
    27  com.apple.AppKit               0x00007fff877f2e2a -[NSWindow initWithContentRect:styleMask:backing:defer:] + 45
    28  com.apple.AppKit               0x00007fff87a2a3c1 -[NSPanel initWithContentRect:styleMask:backing:defer:] + 78
    29  com.apple.AppKit               0x00007fff877f0745 -[NSWindowTemplate nibInstantiate] + 567
    30  com.apple.AppKit               0x00007fff877c573b -[NSIBObjectData instantiateObject:] + 309
    31  com.apple.AppKit               0x00007fff87ca7d01 -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 452
    32  com.apple.AppKit               0x00007fff877b9f05 loadNib + 384
    33  com.apple.AppKit               0x00007fff87d27f80 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:options:withZone:ownerBundle:] + 313
    34  com.apple.AppKit               0x00007fff87d2867d +[NSBundle(NSNibLoadingInternal) _loadNibFile:externalNameTable:options:withZone:] + 150
    35  com.apple.AppKit               0x00007fff87aca3af _NXLoadNib + 196
    36  com.apple.AppKit               0x00007fff87ac9d8f -[NSAlert init] + 95
    37  com.apple.AppKit               0x00007fff87b099f3 +[NSAlert alertWithMessageText:defaultButton:alternateButton:otherButton:informativeTextW ithFormat:] + 131
    38  com.apple.AppKit               0x00007fff877db64d __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1021
    39  com.apple.AppKit               0x00007fff877db20e -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    40  com.apple.AppKit               0x00007fff877db1ad -[NSPersistentUIRestorer promptToIgnorePersistentState] + 247
    41  com.apple.AppKit               0x00007fff877dae9a -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 255
    42  com.apple.AppKit               0x00007fff877dac69 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    43  com.apple.AppKit               0x00007fff877da6b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    44  com.apple.Foundation           0x00007fff93bca458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    45  com.apple.Foundation           0x00007fff93bca2c9 _NSAppleEventManagerGenericHandler + 102
    46  com.apple.AE                   0x00007fff8667899c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    47  com.apple.AE                   0x00007fff86678719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    48  com.apple.AE                   0x00007fff86678623 aeProcessAppleEvent + 295
    49  com.apple.HIToolbox           0x00007fff8e42037e AEProcessAppleEvent + 56
    50  com.apple.AppKit               0x00007fff877d6d76 _DPSNextEvent + 2665
    51  com.apple.AppKit               0x00007fff877d5e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    52  com.apple.Safari.framework     0x00007fff9314fb90 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    53  com.apple.AppKit               0x00007fff877c9e23 -[NSApplication run] + 594
    54  com.apple.AppKit               0x00007fff877b52d4 NSApplicationMain + 1832
    55  libdyld.dylib                 0x00007fff8cf675c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff901fc22e kevent64 + 10
    1   libdispatch.dylib             0x00007fff920e7a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff901fb946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff902204a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff901fb946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff902204a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff901fb946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff902204a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff901fb946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff902204a1 start_wqthread + 13
    Thread 6:: WebCore: IconDatabase
    0   libsystem_kernel.dylib         0x00007fff901fb132 __psynch_cvwait + 10
    1   com.apple.WebCore             0x00007fff86813e3b WebCore::IconDatabase::syncThreadMainLoop() + 411
    2   com.apple.WebCore             0x00007fff86810f89 WebCore::IconDatabase::iconDatabaseSyncThread() + 361
    3   com.apple.JavaScriptCore       0x00007fff8d299a9f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff902222fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff90222279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff902204b1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff901fb946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff902204a1 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff901fb946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff902204a1 start_wqthread + 13
    Thread 9:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib         0x00007fff901f652e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff901f569f mach_msg + 55
    2   com.apple.QuartzCore           0x00007fff8ffc6d63 CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore           0x00007fff8ffc6c96 thread_fun + 25
    4   libsystem_pthread.dylib       0x00007fff902222fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff90222279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff902204b1 thread_start + 13
    Thread 10:: com.apple.NSURLConnectionLoader
    0   libsystem_platform.dylib       0x00007fff9075d348 OSAtomicCompareAndSwapPtrBarrier$VARIANT$mp + 8
    1   libsystem_pthread.dylib       0x00007fff90220be2 pthread_mutex_unlock + 63
    2   com.apple.security             0x00007fff8c5b7ba7 Security::Mutex::unlock() + 9
    3   com.apple.security             0x00007fff8c5bb046 Security::MappingHandle<long>::State::find(long, int) + 74
    4   com.apple.security             0x00007fff8c75ddf7 Attachment& Security::MappingHandle<long>::find<Attachment>(long, int) + 39
    5   com.apple.security             0x00007fff8c75da49 Attachment::upcallMalloc(long, unsigned long) + 19
    6   com.apple.security             0x00007fff8c5c7b5a Security::PluginSession::malloc(unsigned long) + 22
    7   com.apple.security             0x00007fff8c5cd6c9 Security::DLPluginSession::malloc(unsigned long) + 9
    8   com.apple.security             0x00007fff8c5bf235 Security::TrackingAllocator::malloc(unsigned long) + 27
    9   com.apple.security             0x00007fff8c5bf2a0 Security::TypedMetaAttribute<Security::UInt32Value>::unpackValue(Security::Read Section const&, unsigned int&, cssm_data&, Security::Allocator&) const + 50
    10  com.apple.security             0x00007fff8c5bf198 Security::MetaAttribute::unpackAttribute(Security::ReadSection const&, Security::Allocator&, unsigned int&, cssm_data*&) const + 126
    11  com.apple.security             0x00007fff8c5bee37 Security::MetaRecord::unpackRecord(Security::ReadSection const&, Security::Allocator&, cssm_db_record_attribute_data*, Security::CssmData*, unsigned int) const + 309
    12  com.apple.security             0x00007fff8c5c0298 Security::LinearCursor::next(unsigned int&, cssm_db_record_attribute_data*, Security::CssmData*, Security::Allocator&, Security::RecordId&) + 228
    13  com.apple.security             0x00007fff8c6be06c Security::AppleDatabase::dataGetNext(Security::DbContext&, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 100
    14  com.apple.security             0x00007fff8c5c06a9 Security::DatabaseSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 105
    15  com.apple.security             0x00007fff8c5d105e cssm_DataGetNext(cssm_dl_db_handle, long, cssm_db_record_attribute_data*, cssm_data*, cssm_db_unique_record**) + 212
    16  com.apple.security             0x00007fff8c5d0eb5 CSSM_DL_DataGetNext + 105
    17  com.apple.security             0x00007fff8c5d11bd SSDLSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 257
    18  com.apple.security             0x00007fff8c5d105e cssm_DataGetNext(cssm_dl_db_handle, long, cssm_db_record_attribute_data*, cssm_data*, cssm_db_unique_record**) + 212
    19  com.apple.security             0x00007fff8c5d0eb5 CSSM_DL_DataGetNext + 105
    20  com.apple.security             0x00007fff8c5ccc45 Security::CssmClient::DbDbCursorImpl::next(Security::CssmClient::DbAttributes*, Security::CssmDataContainer*, Security::CssmClient::DbUniqueRecord&) + 339
    21  com.apple.security             0x00007fff8c6736fc Security::CssmClient::SSDbCursorImpl::next(Security::CssmClient::DbAttributes*, Security::CssmDataContainer*, Security::CssmClient::DbUniqueRecord&, cssm_access_credentials const*) + 342
    22  com.apple.security             0x00007fff8c5cfe1b Security::KeychainCore::KeychainSchemaImpl::KeychainSchemaImpl(Security::CssmCl ient::Db const&) + 755
    23  com.apple.security             0x00007fff8c5cfb00 Security::KeychainCore::KeychainSchema::KeychainSchema(Security::CssmClient::Db const&) + 40
    24  com.apple.security             0x00007fff8c5cfa58 Security::KeychainCore::KeychainImpl::keychainSchema() + 86
    25  com.apple.security             0x00007fff8c5cf52a Security::KeychainCore::DefaultCredentials::operator()(Security::CssmClient::Db ) + 70
    26  com.apple.security             0x00007fff8c5cf36a Security::KeychainCore::KeychainImpl::defaultCredentials() + 186
    27  com.apple.security             0x00007fff8c5cacc0 Security::CssmClient::DbImpl::open() + 262
    28  com.apple.security             0x00007fff8c5d3d8b Security::KeychainCore::KCCursorImpl::next(Security::KeychainCore::Item&) + 577
    29  com.apple.security             0x00007fff8c604cab SecIdentityCopyPreference + 724
    30  com.apple.CFNetwork           0x00007fff92bdee6f HTTPProtocolSSLSupport::getSSLCertsCached(__CFString const*) + 237
    31  com.apple.CFNetwork           0x00007fff92c7db90 HTTPProtocol::copyProtocolPropertiesForStream() + 620
    32  com.apple.CFNetwork           0x00007fff92c74d8f ___ZN4Tube11prepStreamsEU13block_pointerFvvEU13block_pointerFvlE_block_invoke44 + 58
    33  com.apple.CFNetwork           0x00007fff92bc83fc RunloopBlockContext::_invoke_block(void const*, void*) + 72
    34  com.apple.CoreFoundation       0x00007fff8ec0a1e4 CFArrayApplyFunction + 68
    35  com.apple.CFNetwork           0x00007fff92bc82bd RunloopBlockContext::perform() + 133
    36  com.apple.CFNetwork           0x00007fff92bc815e MultiplexerSource::perform() + 282
    37  com.apple.CFNetwork           0x00007fff92bc7f80 MultiplexerSource::_perform(void*) + 72
    38  com.apple.CoreFoundation       0x00007fff8ec3e661 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    39  com.apple.CoreFoundation       0x00007fff8ec307ed __CFRunLoopDoSources0 + 269
    40  com.apple.CoreFoundation       0x00007fff8ec2fe1f __CFRunLoopRun + 927
    41  com.apple.CoreFoundation       0x00007fff8ec2f838 CFRunLoopRunSpecific + 296
    42  com.apple.CFNetwork           0x00007fff92c4cd20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    43  com.apple.Foundation           0x00007fff93c10b7a __NSThread__main__ + 1345
    44  libsystem_pthread.dylib       0x00007fff902222fc _pthread_body + 131
    45  libsystem_pthread.dylib       0x00007fff90222279 _pthread_start + 176
    46  libsystem_pthread.dylib       0x00007fff902204b1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff901fb946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff902204a1 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x00007fff901fb946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff902204a1 start_wqthread + 13
    Thread 13:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff901fb132 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8ca0dd2e std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::m utex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 126
    2   com.apple.JavaScriptCore       0x00007fff8d4b53fa JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 170
    3   com.apple.JavaScriptCore       0x00007fff8d2a4244 JSC::BlockAllocator::blockFreeingThreadMain() + 84
    4   com.apple.JavaScriptCore       0x00007fff8d299a9f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff902222fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff90222279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff902204b1 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff901fb132 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8ca0dc95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d2a486b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d2a46c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d299a9f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff902222fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff90222279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff902204b1 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff901fb132 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8ca0dc95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d2a486b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d2a46c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d299a9f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff902222fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff90222279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff902204b1 thread_start + 13
    Thread 16:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff901fb132 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8ca0dc95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d2a486b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d2a46c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d299a9f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff902222fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff90222279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff902204b1 thread_start + 13
    Thread 17 Crashed:
    0   libsystem_pthread.dylib       0x00007fff90220695 _pthread_mutex_lock + 87
    1   libsystem_c.dylib             0x00007fff8bd65b78 vfprintf_l + 28
    2   libsystem_c.dylib             0x00007fff8bd5e620 fprintf + 186
    3   ???                           0x00000001074f95dc 0 + 4417623516
    Thread 17 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff761481d8  rcx: 0x00007fff761481f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff761481f0  rsi: 0x00007fff90220b14  rbp: 0x00000001074f5e30  rsp: 0x00000001074f5db0
       r8: 0x0000000107465000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff761476b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff90220695  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x101788000 -        0x101788fff  com.apple.Safari (8.0 - 10600.1.25.1) <0BA1FEA6-91DF-36CF-B0AD-6098E1841641> /Applications/Safari.app/Contents/MacOS/Safari
           0x10685a000 -        0x10685aff5 +cl_kernels (???) <2661472E-D7FF-4FD3-85FF-23910FCEDEDF> cl_kernels
           0x10733a000 -        0x107420fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x107474000 -        0x107474fef +cl_kernels (???) <C0DA3C1D-9BF3-4988-B7DA-360460F2D37F> cl_kernels
        0x7fff65543000 -     0x7fff65579837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff851f3000 -     0x7fff85284fff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff85285000 -     0x7fff853b5fff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff853e7000 -     0x7fff8545bff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8545c000 -     0x7fff8548aff7  com.apple.CommerceKit (1.2.0 - 376.0.5) <651BD237-2055-3D9D-8B12-8A4474D26AC1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        0x7fff8558c000 -     0x7fff8564bfff  com.apple.backup.framework (1.6.1 - 1.6.1) <A7BBE57D-D5E7-39DD-812C-31190159F679> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8564c000 -     0x7fff8564cfff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8564d000 -     0x7fff85664fff  com.apple.login (3.0 - 3.0) <95726FE9-E732-3A3C-A7A1-2566678967D3> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff85665000 -     0x7fff85a3cfe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff85a3d000 -     0x7fff86294ff3  com.apple.CoreGraphics (1.600.0 - 772) <6364CBE3-3635-3A53-B448-9D19EF9FEA96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff86295000 -     0x7fff8629cfff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff862a7000 -     0x7fff86384ff7  com.apple.QuickLookUIFramework (5.0 - 675) <84FEB409-7D7A-35AC-83BE-F79FB293E23E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff86471000 -     0x7fff86505fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff86513000 -     0x7fff86537ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff86538000 -     0x7fff86544ff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff86545000 -     0x7fff86572fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff86573000 -     0x7fff86576ff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff86577000 -     0x7fff86587ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff8658f000 -     0x7fff865abfff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8666b000 -     0x7fff866caff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff866cb000 -     0x7fff866cbfff  com.apple.Carbon (154 - 157) <6E3AEB9D-7643-36BE-A7E5-D08886649257> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff866cc000 -     0x7fff866d5ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff866d6000 -     0x7fff866f9fff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff86709000 -     0x7fff86734fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff8674a000 -     0x7fff86761ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff86762000 -     0x7fff86800fff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff86801000 -     0x7fff8680cff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8680d000 -     0x7fff877b1ffb  com.apple.WebCore (10600 - 10600.1.25.2) <B4FEC5E3-C0A9-3E91-93F5-548C001C560E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff877b2000 -     0x7fff882f3fff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff882f4000 -     0x7fff883afff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff883b0000 -     0x7fff883b7fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff883b8000 -     0x7fff88687ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff886fe000 -     0x7fff8874dff7  com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8874e000 -     0x7fff88ab9fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff88aba000 -     0x7fff88acffff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
        0x7fff88ad0000 -     0x7fff88ad2ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff88ad9000 -     0x7fff88ae4ff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff88bc2000 -     0x7fff88cf4ff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff88cf5000 -     0x7fff88d41ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff88d42000 -     0x7fff88d5fffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff88d60000 -     0x7fff8924cfff  com.apple.MediaToolbox (1.0 - 1562.19) <36062C5F-CC37-3F50-8383-07A9C8C75F33> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8924d000 -     0x7fff89258fff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8934d000 -     0x7fff89355ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff89356000 -     0x7fff8935bff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff89be5000 -     0x7fff89be5fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <A48738CA-5B6F-3D14-97E9-2BFDFC3DCC06> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff89be6000 -     0x7fff89be8fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff89be9000 -     0x7fff89c0eff7  libPng.dylib (1231) <2D5AC0EE-4056-3F76-97E7-BBD415F072B5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff89c0f000 -     0x7fff89d51fff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
        0x7fff89d52000 -     0x7fff89d5dff7  com.apple.DirectoryService.Framework (10.10 - 187) <813211CD-725D-31B9-ABEF-7B28DE2CB224> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff89d89000 -     0x7fff89eb0fff  com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff89f53000 -     0x7fff89fa0ff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8a035000 -     0x7fff8a04fff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8a050000 -     0x7fff8a0c1ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8a0c2000 -     0x7fff8a0c4ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff8a0c5000 -     0x7fff8a0c5fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8a0c6000 -     0x7fff8a0efffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff8a0f0000 -     0x7fff8a0f0fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <227E2491-1DDB-336F-BF83-773CECEC66F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8a0f1000 -     0x7fff8a25cff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8a294000 -     0x7fff8a2e7ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8a2e8000 -     0x7fff8a346fff  com.apple.StoreFoundation (1.0 - 1) <50F9E283-FCE4-306C-AF5D-D0AEA434C04E> /System/Library/PrivateFrameworks/StoreFoundation.framework/Versions/A/StoreFou ndation
        0x7fff8a347000 -     0x7fff8a3efff7  com.apple.PackageKit (3.0 - 434) <B6C2831E-914D-3E5F-B0E9-A7079489A6FD> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff8a3f0000 -     0x7fff8a42bfff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8a42d000 -     0x7fff8a42eff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8a42f000 -     0x7fff8a448fff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8a449000 -     0x7fff8a44dfff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8a44e000 -     0x7fff8a450fff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8a451000 -     0x7fff8a453fff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8a77c000 -     0x7fff8a77efff  com.apple.EFILogin (2.0 - 2) <F0269EE2-3686-3A8A-8B83-F86974E35E90> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8a77f000 -     0x7fff8a78dfff  com.apple.AddressBook.ContactsFoundation (9.0 - 1499) <1F879F4E-369A-38F7-A768-8B9009617479> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff8a78e000 -     0x7fff8a7fcffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8b143000 -     0x7fff8b1d8ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8b20c000 -     0x7fff8b217ff7  com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8b2f8000 -     0x7fff8b486fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8b487000 -     0x7fff8b48bff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8b48c000 -     0x7fff8b8bcfff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8b8bd000 -     0x7fff8b8e9fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <F2A164C7-4813-3F27-ABF7-810A5F4FA51D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8b8ea000 -     0x7fff8bacfff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
        0x7fff8bbe4000 -     0x7fff8bd20ffb  com.apple.WebKitLegacy (10600 - 10600.1.25) <EE3A7515-AC7B-30D3-A4DC-EB0D36E88E4B> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy. framework/Versions/A/WebKitLegacy
        0x7fff8bd21000 -     0x7fff8bdadfff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff8bdae000 -     0x7fff8bdb5ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8bdb6000 -     0x7fff8bdbbff7  com.apple.ServerInformation (2.0 - 1) <020F4A0E-F1A2-38AE-8F2B-22200CF1FC82> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff8bdc6000 -     0x7fff8be6cfff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8be6d000 -     0x7fff8be81ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8bfc3000 -     0x7fff8bfcefdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8bfcf000 -     0x7fff8bfeafff  com.apple.PackageKit.PackageUIKit (3.0 - 434) <BE4B6C6F-4A32-3DB1-B81B-EF9ADD70E6EA> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
        0x7fff8bfeb000 -     0x7fff8bff3ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff8bff4000 -     0x7fff8c078ff7  com.apple.ViewBridge (99.1 - 99.1) <B36779D4-BEAF-36DD-83AF-E67F639BFF36> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8c07b000 -     0x7fff8c095ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8c1c2000 -     0x7fff8c250ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8c251000 -     0x7fff8c257fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff8c258000 -     0x7fff8c262ff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8c263000 -     0x7fff8c3c1ff3  com.apple.avfoundation (2.0 - 889.10) <4D1735C4-D055-31E9-8051-FED29F41F4F6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8c3c2000 -     0x7fff8c3c2ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff8c3c3000 -     0x7fff8c4dafe7  libvDSP.dylib (512) <52777555-F051-3BC2-A2D2-9645907E836D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8c4db000 -     0x7fff8c4defff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8c4df000 -     0x7fff8c5b5ff3  com.apple.DiskImagesFramework (10.10 - 389.1) <7DE2208C-BD55-390A-8167-4F9F11750C4B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8c5b6000 -     0x7fff8c81effb  com.apple.security (7.0 - 57031.1.35) <96141D1F-614E-32C4-8AC2-F47481F23F43> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8c81f000 -     0x7fff8c82cfff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff8c82d000 -     0x7fff8c838fff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8c839000 -     0x7fff8c882ff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8c883000 -     0x7fff8c8dbff7  com.apple.accounts.AccountsDaemon (113 - 113) <E0074FA1-1872-3F20-8445-3E2FEA290CFB> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
        0x7fff8c8dc000 -     0x7fff8c9cfff7  libJP2.dylib (1231) <58849E48-9CD2-38A1-9D48-FCE630F473EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8ca06000 -     0x7fff8ca5afff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8ca6f000 -     0x7fff8ca7cfff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8ca7d000 -     0x7fff8caadffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8cad1000 -     0x7fff8cb45fff  com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8cb46000 -     0x7fff8cdb0ff7  com.apple.imageKit (2.6 - 838) <DDFE019E-DF3E-37DA-AEC0-9182454B7312> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8cdb1000 -     0x7fff8cdb5fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff8ce37000 -     0x7fff8ce85fff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff8ce86000 -     0x7fff8ce94ff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8ce95000 -     0x7fff8cea2ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff8cf64000 -     0x7fff8cf67ff7  libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
        0x7fff8cf68000 -     0x7fff8cf70ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff8cf71000 -     0x7fff8cf76ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff8cf77000 -     0x7fff8cfb8fff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8d149000 -     0x7fff8d15fff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8d160000 -     0x7fff8d26fffb  com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8d270000 -     0x7fff8d28bff7  com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8d28c000 -     0x7fff8d28efff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff8d28f000 -     0x7fff8d7a2ff3  com.apple.JavaScriptCore (10600 - 10600.1.17) <CE5255CC-E13F-3694-B6DD-5285356BFCC0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8d7a3000 -     0x7fff8d7bdff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff8d7be000 -     0x7fff8d7e6fff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff8d7e7000 -     0x7fff8d7f2ff7  com.apple.CommerceCore (1.0 - 376.0.5) <57E5C067-52F6-3854-86C0-D878EDA24B55> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8d7f3000 -     0x7fff8db26ff7  libmecabra.dylib (666.1) <CAFBC813-4894-3352-9B22-FFF116773A06> /usr/lib/libmecabra.dylib
        0x7fff8db27000 -     0x7fff8db30fff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8db31000 -     0x7fff8db35fff  com.apple.LoginUICore (3.0 - 3.0) <D76AB05B-B627-33EE-BA8A-515D85275DCD> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8db36000 -     0x7fff8db52ff7  com.apple.pluginkit.framework (1.0 - 1) <566FECEA-620F-3E70-8B87-C69A4486811F> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
        0x7fff8db53000 -     0x7fff8dba0ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8dbae000 -     0x7fff8dbb2ff7  libGIF.dylib (1231) <A349BA73-301E-3EDE-8A31-8ACE827C289E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8dc99000 -     0x7fff8dca1fe7  libcldcpuengine.dylib (2.4.5) <DF810F9A-1755-3283-82C3-D8192BCD8016> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff8dca5000 -     0x7fff8dd68ff7  libvMisc.dylib (512) <A4E39464-52EA-34CB-9FFE-53E79B3C65F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8dd69000 -     0x7fff8deadff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8e008000 -     0x7fff8e06fff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8e070000 -     0x7fff8e082ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8e083000 -     0x7fff8e089ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8e0f0000 -     0x7fff8e14bfff  com.apple.QuickLookFramework (5.0 - 675) <D71CD23B-643B-341B-A890-57FE099B36C7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8e14c000 -     0x7fff8e160ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8e161000 -     0x7fff8e167ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8e168000 -     0x7fff8e186ff7  com.apple.addressbook.vCard (9.0 - 1499) <B1BC7C0A-A783-3574-8248-BC689F43A0A0> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
        0x7fff8e3e5000 -     0x7fff8e6e7fff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8e6f1000 -     0x7fff8e716ff7  libJPEG.dylib (1231) <35F13BD9-AA92-3510-B5BB-420DA15AE7F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8e717000 -     0x7fff8e854fff  com.apple.ImageIO.framework (3.3.0 - 1038) <611BDFBA-4BAA-36A8-B7E0-3830F3375E53> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8e855000 -     0x7fff8eafdff7  com.apple.RawCamera.bundle (6.02 - 768) <3156D0F8-335C-3380-A849-D47ED4163D3A> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8eafe000 -     0x7fff8eb26fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff8eb27000 -     0x7fff8eb41ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8eb42000 -     0x7fff8eb4bfff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8eb4c000 -     0x7fff8eb77fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8eb83000 -     0x7fff8ebbdffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8ebbe000 -     0x7fff8ef54fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8ef7f000 -     0x7fff8efdafff  libTIFF.dylib (1231) <ACC9ED11-EED8-3A23-B452-3F40FF7EF435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8f045000 -     0x7fff8f073fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8f074000 -     0x7fff8f328ff7  com.apple.WebKit (10600 - 10600.1.25) <84496A10-D8E5-3E8C-93B1-98D5AE790922> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8f329000 -     0x7fff8f36bfff  com.apple.sociald.Social (87 - 87) <A32F7CCA-6D52-3F4E-8779-548E07A84738> /System/Library/Frameworks/Social.framework/Versions/A/Social
        0x7fff8f36c000 -     0x7fff8f376fff  com.apple.IntlPreferences (2.0 - 150.1) <F2DE1784-F780-3E3F-A626-D9CBD38F20EE> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
        0x7fff8f377000 -     0x7fff8f377fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8f378000 -     0x7fff8f55d267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff8f55e000 -     0x7fff8f680ff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8f681000 -     0x7fff8f689fff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff8f6a4000 -     0x7fff8f6a8fff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
        0x7fff8f6a9000 -     0x7fff8f6c6fff  com.apple.DistributionKit (700 - 920) <079B0A4A-97CD-34D6-B50D-AB5D656B2A38> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff8f6c7000 -     0x7fff8f6c9fff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8f6ca000 -     0x7fff8f6d2ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8f6ef000 -     0x7fff8f6f6ff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8f6f7000 -     0x7fff8f9deffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8f9f7000 -     0x7fff8fa37ff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8fa38000 -     0x7fff8fb2afff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff8fedf000 -     0x7fff8fee5fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8fee6000 -     0x7fff8fee6ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff8fefc000 -     0x7fff8ff42ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff8ff7f000 -     0x7fff8ff82fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8ff9f000 -     0x7fff9014fff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff901ab000 -     0x7fff901dafff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Fram

    There is no need to download anything to solve this problem.
    If Safari crashes on launch and you don't have another web browser, you should be able to launch Safari by starting up in safe mode.
    You may have installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those.
    After removing the malware, remember to reset your home page in all the web browsers affected, if it was changed.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

  • I would like to know how to fix my safari. There are many pages that the text and links appear as "AAAAAAA" and I dont know where to click or what to do

    Please if anyone knows how to solve this problem, I bought this mac brand new, first time using it and many pages dont render the texts or links. It shows it like a series of "A"s.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software — potentially for the worse. The following procedure will help identify which such modifications you've installed. Don’t be alarmed by the complexity of these instructions — they’re easy to carry out and won’t change anything on your Mac.
    These steps are to be taken while booted in “normal” mode, not in safe mode. If you’re now running in safe mode, reboot as usual before continuing.
    Below are instructions to enter some UNIX shell commands. The commands are harmless, but they must be entered exactly as given in order to work. If you have doubts about the safety of the procedure suggested here, search this site for other discussions in which it’s been followed without any report of ill effects.
    Some of the commands will line-wrap or scroll in your browser, but each one is really just a single line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then either copy or drag it. The headings “Step 1” and so on are not part of the commands.
    Note: If you have more than one user account, Step 2 must be taken as an administrator. Ordinarily that would be the user created automatically when you booted the system for the first time. The other steps should be taken as the user who has the problem, if different. Most personal Macs have only one user, and in that case this paragraph doesn’t apply.
    Launch the 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 page that opens.
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign (“$”) or a percent sign (“%”). If you get the percent sign, enter “sh” and press return. You should then get a new line ending in a dollar sign.
    Step 1
    Copy or drag — do not type — the line below into the Terminal window, then press return:
    kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}'
    Post the lines of output (if any) that appear below what you just entered (the text, please, not a screenshot.) You can omit the final line ending in “$”.
    Step 2
    Repeat with this line:
    sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|edu\.mit|org\.(amavis|apache|cups|isc|ntp|postfix|x)/{print $3}'
    This time, you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. You don't need to post the warning.
    Note: If you don’t have a login password, you’ll need to set one before taking this step. If that’s not possible, skip to the next step.
    Step 3
    launchctl list | sed 1d | awk '!/0x|com\.apple|edu\.mit|org\.(x|openbsd)/{print $3}'
    Step 4
    ls -1A /e*/mach* {,/}L*/{Ad,Compon,Ex,Fram,In,Keyb,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Spo,Sta}* L*/Fonts 2> /dev/null
    Important: If you formerly synchronized with a MobileMe account, your me.com email address may appear in the output of the above command. If so, anonymize it before posting.
    Step 5
    osascript -e 'tell application "System Events" to get name of every login item' 2> /dev/null
    Remember, steps 1-5 are all drag-and-drop or copy-and-paste, whichever you prefer — no typing, except your password. Also remember to post the output.
    You can then quit Terminal.

  • How do you create an array without using a shell on the FP?

    I want to be able to read the status of front panel controls (value, control box selection, etc.) and save it to a file, as a "configuration" file -- then be able to load it and have all the controls set to the same states as were saved in the file. I was thinking an array would be a way to do this, as I have done that in VB. (Saving it as a text file, then reading lines back into the array when the file is read and point the control(s) values/states to the corresponding array element.
    So how do I create an array of X dimensions without using a shell on the front panel? Or can someone suggest a better way to accomplish what I am after? (Datalogging doesn't allow for saving the status by a filename, so I
    do not want to go that route.)

    Thanks so much m3nth! This definitely looks like what I was wanting... just not really knowing how to get there.
    I'm not sure I follow all the icons. Is that an array (top left with 0 constant) in the top example? And if so, that gets back to part of my original question of how to create an array without using a shell on the FP. Do I follow your diagram correctly?
    If I seem a tad green... well I am.
    I hope you understand the LabVIEW environment and icons are still very new to me.
    Also, I had a response from an NI app. engineer about this problem. He sent me a couple of VI's that he threw together approaching this by using Keys. (I still think you are pointing to the best solution.) I assume he wouldn't mind m
    e posting his reply and the VI's for the sake of a good, thorough, Roundtable discussion. So here are his comments with VI's attached:
    "I was implementing this exact functionality this morning for an application I'm working on. I only have five controls I want to save, but they are all of different data types. I simply wrote a key for each control, and read back that key on initialization. I simply passed in property node values to the save VI at the end, and passed the values out to property nodes at
    the beginning. I've attached my initialize and save VI's for you to view. If you have so many controls that this would not be feasible, you may want to look into clustering the controls and saving the cluster as a datalog file.
    Attachments:
    Initialize_Settings.vi ‏55 KB
    Save_Settings.vi ‏52 KB

  • How can I make different windows of the same application I have open remain on their respective desktops/spaces after reboot?

    Hi all,
    I use the same applications for work, entertainment and other personal activities, so it's impossible to simply assign different apps to different desktops/spaces. Thus, I have open windows of the same programs (Pages, TextEdit, Preview) arranged on several desktops. If I reboot my laptop, the windows are just crammed on Desktop 1. Can something be done about it?

    Barney,
    many thanks for your efforts and your time (preparing and posting the screenshot, answering to this question,...).
    Unfortunately, moving the focus to the next window only works with windows on the same desktop.
    btw, using a german keyboard layout and german language settings the shortcut is "cmd+<".
    I can switch with this shortcut between different windows of my Safari which reside on the same desktop, but I cannot swith between different safari windows distributed over several desktops.
    Thanks,
    equi    

  • I forgot the passcode for my iphone 4s, how do i get it back without losing all data on the phone?

    I forgot the passcod on my iphone4s, how do I get it back without losing all the data on the phone?

    You can't unless you have backups.
    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    7. iOS - Unable to update or restore
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

  • I have apps that needs to be updated that shows my old account. How do I delete this info without losing my purchases? The old account was hacked and I do not want to update anything using that account! Help. Wonderer

    I have apps that needs to be updated that shows my old account. How do I delete this info without losing my purchases?

    iTunes purchases cannot be transferred between accounts. If you no longer wish to use the old account at all, you should delete those apps and repurchase them with the new account.
    On the other hand, you could also (and should have before creating a new account - contact iTunes support to deal with account security: https://getsupport.apple.com/Issues.action

  • How do you find your iPhone without downloading iCloud or having the find my iphone app???

    How do you find your iPhone without downloading the find my iphone app, or having your iCloud app/ ID setup????

    I HAVE THE SAME **** ?????'S & THE SAY SPEND $800.00 TO BUY ANOTHER IPHONE???? *** WHY CANT WE GET ANOTHER IPHONE FROM SPRINT AFTER A 2YEAR CONTRACT U STILL HAVE TO PAY PER AGREEMENT WHICH MEANS A MONTHLY BILL OF $100 4 2 YRS $2400 DOLLARS ($100X24MONTHS=$2400) + WHAT U PAID 4 THE IPHONE $150 SIGN UP 4 THE CONTRACT?

  • How can I export a Video without making it darker than the original file?

    Hi there!
    I'm working on a footage shot with the Canon 5D and since the first step in the post I exported the raw footage with Apple ProRes 422 (HQ) and worked with it in After Effects and later on FCP and then the usual Color and Compressor. But somehow every time I exported it, it got darker and darker... I tried using Animation codec instead of Apple ProRes 422 (HQ) and it didn't get dark but the files are HUGE and in the end I have to export the video in H.264 for internet. Does anybody out there have any idea what should I do and which compression should I use and how?
    Thanks a lot!
    Davi

    When you say you exported the raw footage... are you working with native H.264s in FCP?

Maybe you are looking for

  • Help with exporting an excel spreadsheet to sharepoint

    I've downloaded the 'Synchronising with sharepoint lists' add-in and have linked my spreadsheet to a sharepoint list, where any changes made to the spreadsheet then updates the sharepoint list. This spreadsheet is full of formulas but as soon as I cl

  • Issue with iCloud and PC Outlook 2007 Contacts

    Hey,   So I finally managed to update to iOS 5, and it's fun playing around and learning the new things, but I already got issues.  Minor, but still a nuissance.   Once synced, My Outlook Calendar became duplicated, and with the slide down tab starte

  • How do I Create a Log File?

    Hi All Been up for a while trying to figure this out with no luck. I created an app that will uninstall a program and all of it's files. example try                     do shell script "rm -rf /Applications/TestFakeApp"           end try           tr

  • Passing a Parameter to JSF / ADF

    Hi, I am using the MVC architecture with the model provided by ADF business components and the view/controller provided by JSF. Any help would be great since this project was due 'yesterday'. Thanks. I want going to pass a few parameters to a JSF (ex

  • PR for spare parts.

    Hi,all, While creating PR for spare parts,I need to enter multiple line items say around 30 line items(i.e.30 nos of different material).My problem is for selecting every line item ,I need to open the selection screen every time and pick up each mate