Frame (no) resize not browser consistent - help.

I've got a simple left frame/right frame setup. I have my
navigation frame set for no resizing and it works great in Safari,
but no other browser. If I resize the window, the main content area
pushes over the navigation frame. In Safari, it works perfectly.
Any suggestions anyone?

Tangier Clarke wrote:
> Thanks Gary, but I am not clear on something. First I
don't have the
> option in Dreamweaver (2004) to type in diret frame
sizes. I checked
> the properties inspector as well as tried to see my
options while
> typing code (when DW prompts you for code options to
choose from).
>
> Here's the site by the way as you can see in a
non-Safari browser
> that by resizing the entire window, my right frame
starts cutting
> into my left frame.
>
>
http://www.tangierclarke.com/Guillermo/
You have this:
cols="170,757"
You want this:
cols="170,*"
This may help too:
http://www.tjkdesign.com/articles/frames/
Thierry
Articles and Tutorials:
http://www.TJKDesign.com/go/?0
The perfect FAQ page:
http://www.TJKDesign.com/go/?9
CSS-P Templates:
http://www.TJKDesign.com/go/?1
CSS Tab Menu:
http://www.TJKDesign.com/go/?3

Similar Messages

  • Frame (no) resize not broser consistent - help.

    I've got a simple left frame/right frame setup. I have my
    navigation frame set for no resizing and it works great in Safari,
    but no other browser. If I resize the window, the main content area
    pushes over the navigation frame. In Safari, it works perfectly.
    Any suggestions anyone?

    Tangier Clarke wrote:
    > Thanks Gary, but I am not clear on something. First I
    don't have the
    > option in Dreamweaver (2004) to type in diret frame
    sizes. I checked
    > the properties inspector as well as tried to see my
    options while
    > typing code (when DW prompts you for code options to
    choose from).
    >
    > Here's the site by the way as you can see in a
    non-Safari browser
    > that by resizing the entire window, my right frame
    starts cutting
    > into my left frame.
    >
    >
    http://www.tangierclarke.com/Guillermo/
    You have this:
    cols="170,757"
    You want this:
    cols="170,*"
    This may help too:
    http://www.tjkdesign.com/articles/frames/
    Thierry
    Articles and Tutorials:
    http://www.TJKDesign.com/go/?0
    The perfect FAQ page:
    http://www.TJKDesign.com/go/?9
    CSS-P Templates:
    http://www.TJKDesign.com/go/?1
    CSS Tab Menu:
    http://www.TJKDesign.com/go/?3

  • When trying to copy and paste on my MAC using firefox, I keep coming across a message "your browser security settings don't permit the editor to automatically execute pasting operations". This only happens with firfox, not Safari. any help??

    When trying to copy and paste on my MAC using firefox, I keep coming across a message "your browser security settings don't permit the editor to automatically execute pasting operations". This only happens with firefox, not Safari. any help??

    See:<br />
    http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard
    https://addons.mozilla.org/firefox/addon/852 - AllowClipboard Helper

  • Robohelp 9 Adobe Air Browser Based Help not rendering on IIS Server 7.5

    Hello everyone,
    I'm having an issue where the output (Adobe Air browser based help) is not rendering properly on the IIS Server 7.5 that it is published to.
    I have updated the icons in the skin, and when viewed locally the site works fine. When it is published to the webserver the new icons do not show up, and the banner does not render in the new color. The site is using the unipane adobe air browser based help template.
    I've had the dev team restart the webserver twice, and for some reason the flash object simply won't update.
    Anyone else see this before?
    Thanks,
    Jerry

    Hi Jerry
    If memory serves, Browser Based AIRHelp uses Flash elements like FlashHelp does. I recall a few years ago that FlashHelp had the same issues on some servers. Further, if memory serves, the fix was to ask your web server folks to tweak the server by adjusting the MIME types so it will properly serve Flash items.
    Adobe used to have a KB article on this. Unfortunately, time seems to have caused it to evaporate. Grrrrr
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • I can not instal some apps on my iPad. For example Dolphin browser. the icone of this app is not activated. Help Help help!

    I can not instal some apps on my iPad. For example Dolphin browser. the icone of this app is not activated. Help Help help!

    As Johnathan has written yes apps for iPhone will work in the iPad, however there is a '+' mark on the icon you touch or click for download which indicates both iPhone AND iPad apps. Those apps will display perfectly for the iPad.

  • How do I resize my flash to fit browser? Help plz

    Yes I searched but none of the answers I saw made any sense so how do I make my flash fit any browser? like I made it 1280x800 to fit mine and then how do I make it fit a bigger or small one eg. 1800x1200?

    There's is a way to do it? Flash Builder?
    Basicaly, this is what i want: www.parasuco.com (resize the browser to see!)
    Thanks!

  • How not to affect two horizontal panels when resizing the browser?

    I've two horizontal panels within a Canvas. When I resize the browser (IE), PanelB overlaps with PanelA. How do I go about preventing this from happening? How can I make the panels resize when the browser is resized?
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"
               xmlns:controls="org.frb.atl.xxxx.ui.controls.*"
               width="100%"
               height="100%"
               preinitialize="preinit()"
               creationComplete="init()">
    <mx:constraintColumns>
            <mx:ConstraintColumn id="col1" width="30%" />
            <mx:ConstraintColumn id="col2" width="70%" />
        </mx:constraintColumns>
        <mx:constraintRows>
            <mx:ConstraintRow id="row1" height="25%" />
            <mx:ConstraintRow id="row2" height="100%" />
        </mx:constraintRows>
    <mx:Panel id="PanelA"
                  width="100%"
                  height="100%"
                  title="Search"
                  left="col1:0"
                  right="col1:5"
                  top="row1:0"
                  bottom="row2:0"
                  layout="vertical">
    </mxPanel>
    <mx:Panel id="PanelB"
                  title="Articles: {contentFoundCount.text}"
                  width="100%"
                  height="100%"
                  left="col2:5"
                  right="col2:0">
       </mx:Panel>
    </mx:Canvas>

    This code shows no overlap:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"
      width="100%" height="100%">
      <mx:constraintColumns>
        <mx:ConstraintColumn id="col1" width="30%" />
        <mx:ConstraintColumn id="col2" width="70%" />
      </mx:constraintColumns>   
      <mx:constraintRows>
        <mx:ConstraintRow id="row1" height="25%" />
        <mx:ConstraintRow id="row2" height="100%" />
      </mx:constraintRows>
      <mx:Panel id="PanelA" width="100%" height="100%"
        title="Search" left="col1:0" right="col1:5"
        top="row1:0" bottom="row2:0" layout="vertical"/>
      <mx:Panel id="PanelB" title="Articles"
        width="100%" height="100%" left="col2:5" right="col2:0"/>
    </mx:Canvas>

  • Making a seperate frame non resizable

    Is it possible to make a seperate frame non-resizable and if so how? If I set the resizable property of the window then this simply makes the browser non-resizable rather than the seperate frame. Is there some PL/SQL code that can do this for me or is it possible to set this in the forms web config? Thanks for any help
    Dan

    I have tried this method, it looks like it should run, but when i compile it the browser displays................
    "Untitled1.java": Error #: 750 : initialization error: com.borland.compiler.symtab.LoadError: neither class nor source found for java.lang.Object
    public class Untitled1 extends Component {
    public void createPanel()
    JFrame frame = new JFrame();
    frame.setUndecorated(true);
    frame.setLayout(new BorderLayout());
    MyDisplay test = new MyDisplay(frame);
    test.setLayout(new BorderLayout());
    frame.add(test, BorderLayout.CENTER);
    JLabel label = new JLabel("This is just a test");
    test.add(label, BorderLayout.CENTER);
    frame.pack();
    frame.setSize(500, 500);
    // make sure you pack and/or set size first...
    Dimension dS = Toolkit.getDefaultToolkit().getScreenSize();
    Dimension dF = frame.getSize();
    // make sure it's not off screen
    int x = (dS.width/2)-(dF.width/2);
    int y = (dS.height/2)-(dF.height/2);
    if(x < 0) x = 0;
    if(y < 0) y = 0;
    frame.setLocation(x, y);
    frame.setVisible(true);
    contentpane.add(sc);
    jscrollpane sc = new jscrollpane();
    jtextarea ta = new jtextarea();
    /**Main method*/
    public static void main(String[] args) {
    try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    catch(Exception e) {
    e.printStackTrace();
    new untitled1();
    Do you know how i can correct this erreor!

  • Scrollable frames. Buttons not working.

    Hello.
    I have a problem with buttons in the scrollable frames.
    I have a slideshow with a thumb's. Each thumb consist of MSO (non active icon and active icon) and clear frame - button to that MSO and to slide foto. The thumb's grouped and placed into the frame with horizontal scroll overlay effect.
    That frame placed into another frame-pull out tab, which have vertical scroll effect. And when I pressed the button, slide fotos changes correctly, but button MSO not working.
    See files from dropbox --  https://www.dropbox.com/sh/rsbf1jto3a39jug/IVcQxaYJOW
    Sorry for my english. I need help very much.
    Thanks.

    Hi,
    I understand that I can use two 'states'  of the buttons. And I tried it. But. Buttons renditions are raster images. And on the retina display we had bad quality. My target was to create vector buttons. With good quality on both displays.
    Any suggestions?
    04.10.2013, в 12:03, Christophe_Quinzoni <[email protected]> написал(а):
    Re: Scrollable frames. Buttons not working.
    created by Christophe_Quinzoni in Digital Publishing Suite - View the full discussion
    Hi (again),
    It seems that you built your stuff in a very complicated way.
    First, try to make simple!
    You mixed MSO and buttons functions. Useless and unfonctional.
    Yous should use only button panel, with two different 'states' ('Normal' and 'Clic').
    See below (no MSO function used at all for the button):
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468602/445-605/Button_ 1.jpg http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468603/448-605/Button_ 2.jpg
    Use the layer panel to easily select the objects you want to modify.
    Please find your file here: https://dl.dropboxusercontent.com/u/46115208/slideshowButton.indd
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5735625#5735625
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5735625#5735625
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5735625#5735625. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Safari is not browsing

    Hi,
    don't know what is wrong with safari but for the last hours it is not browsing any website. This error appears:
    Process:    
    WebProcess [653]
    Path:       
    /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/MacO S/WebProcess
    Identifier: 
    com.apple.WebProcess
    Version:    
    7534.56 (7534.56.5)
    Build Info: 
    WebKit2-7534056005000000~1
    Code Type:  
    X86-64 (Native)
    Parent Process:  Safari [565]
    Date/Time:  
    2012-07-17 15:02:51.058 +0200
    OS Version: 
    Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:     
    50972 sec
    Crashes Since Last Report:      
    694
    Per-App Interval Since Last Report:  207133 sec
    Per-App Crashes Since Last Report:   689
    Anonymous UUID:                 
    1FB813BF-7676-4B0B-963D-0EC05C0F3757
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000001c2
    VM Regions Near 0x1c2:
    -->
    __TEXT            
    0000000104d3c000-0000000104d3d000 [
    4K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Application Specific Information:
    objc[653]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.WebCore        
    0x00000001052ded76 WebCore::FrameView::setTransparent(bool) + 4
    1   com.apple.WebKit2        
    0x00007fff955c93ca WebKit::WebFrameLoaderClient::transitionToCommittedForNewPage() + 218
    2   com.apple.WebCore        
    0x00000001052dd4d5 WebCore::FrameLoader::transitionToCommitted(***::PassRefPtr<WebCore::CachedPage >) + 639
    3   com.apple.WebCore        
    0x00000001052dc97b WebCore::FrameLoader::commitProvisionalLoad() + 395
    4   com.apple.WebCore        
    0x00000001052dc7bd WebCore::DocumentLoader::finishedLoading() + 57
    5   com.apple.WebCore        
    0x00000001052db257 WebCore::FrameLoader::init() + 903
    6   com.apple.WebKit2        
    0x00007fff955c658c WebKit::WebFrame::init(WebKit::WebPage*, ***::String const&, WebCore::HTMLFrameOwnerElement*) + 162
    7   com.apple.WebKit2        
    0x00007fff955c5364 WebKit::WebFrame::createMainFrame(WebKit::WebPage*) + 96
    8   com.apple.WebKit2        
    0x00007fff955d341b WebKit::WebPage::WebPage(unsigned long long, WebKit::WebPageCreationParameters const&) + 1863
    9   com.apple.WebKit2        
    0x00007fff955cce1b WebKit::WebPage::create(unsigned long long, WebKit::WebPageCreationParameters const&) + 47
    10  com.apple.WebKit2        
    0x00007fff955e35d5 WebKit::WebProcess::createWebPage(unsigned long long, WebKit::WebPageCreationParameters const&) + 101
    11  com.apple.WebKit2        
    0x00007fff9560b66e void CoreIPC::handleMessage<Messages::WebProcess::CreateWebPage, WebKit::WebProcess, void (WebKit::WebProcess::*)(unsigned long long, WebKit::WebPageCreationParameters const&)>(CoreIPC::ArgumentDecoder*, WebKit::WebProcess*, void (WebKit::WebProcess::*)(unsigned long long, WebKit::WebPageCreationParameters const&)) + 144
    12  com.apple.WebKit2        
    0x00007fff9555fc32 CoreIPC::Connection::dispatchMessage(CoreIPC::Connection::Message<CoreIPC::Argu mentDecoder>&) + 172
    13  com.apple.WebKit2        
    0x00007fff9555fb4b CoreIPC::Connection::dispatchMessages() + 145
    14  com.apple.WebKit2        
    0x00007fff9555c8a3 RunLoop::performWork() + 111
    15  com.apple.WebKit2        
    0x00007fff9555c814 RunLoop::performWork(void*) + 76
    16  com.apple.CoreFoundation 
    0x00007fff8b3f54f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    17  com.apple.CoreFoundation 
    0x00007fff8b3f4d5d __CFRunLoopDoSources0 + 253
    18  com.apple.CoreFoundation 
    0x00007fff8b41bb49 __CFRunLoopRun + 905
    19  com.apple.CoreFoundation 
    0x00007fff8b41b486 CFRunLoopRunSpecific + 230
    20  com.apple.HIToolbox      
    0x00007fff8bbcf4d3 RunCurrentEventLoopInMode + 277
    21  com.apple.HIToolbox      
    0x00007fff8bbd66d3 ReceiveNextEventCommon + 181
    22  com.apple.HIToolbox      
    0x00007fff8bbd660e BlockUntilNextEventMatchingListInMode + 62
    23  com.apple.AppKit         
    0x00007fff9171ae31 _DPSNextEvent + 659
    24  com.apple.AppKit         
    0x00007fff9171a735 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    25  com.apple.AppKit         
    0x00007fff91717071 -[NSApplication run] + 470
    26  com.apple.WebKit2        
    0x00007fff955e663b WebKit::WebProcessMain(WebKit::CommandLine const&) + 553
    27  com.apple.WebKit2        
    0x00007fff955ccc30 WebKitMain + 272
    28  com.apple.WebProcess     
    0x0000000104d3ce56 0x104d3c000 + 3670
    29  com.apple.WebProcess     
    0x0000000104d3cd64 0x104d3c000 + 3428
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff8f29c7e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff8b65c78a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff8b65b31a _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff8f29c192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff949be594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff949bfb85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff8f29c192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff949be594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff949bfb85 start_wqthread + 13
    Thread 4:: WebCore: LocalStorage
    0   libsystem_kernel.dylib   
    0x00007fff8f29bbca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff949c0274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore 
    0x0000000104f0aa50 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore        
    0x00000001052d0fda ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 132
    4   com.apple.WebCore        
    0x00000001052d0f33 WebCore::LocalStorageThread::threadEntryPoint() + 99
    5   com.apple.WebCore        
    0x00000001052d0e7b WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 9
    6   libsystem_c.dylib        
    0x00007fff949bc8bf _pthread_start + 335
    7   libsystem_c.dylib        
    0x00007fff949bfb75 thread_start + 13
    Thread 5:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff8f29a67a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8f299d71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff8b41350c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff8b41bc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff8b41b486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation     
    0x00007fff900bcfd7 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation     
    0x00007fff900b172a -[NSThread main] + 68
    7   com.apple.Foundation     
    0x00007fff900b16a2 __NSThread__main__ + 1575
    8   libsystem_c.dylib        
    0x00007fff949bc8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff949bfb75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000106791400  rbx: 0x00000001067157f0  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x0000000000000000  rsi: 0x0000000000000000  rbp: 0x00007fff64939b30  rsp: 0x00007fff64939b30
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x000000009d336d4d  r11: 0x00000001067ac0c0
      r12: 0x000000010678b800  r13: 0x00007fff64939f80  r14: 0x0000000106741b00  r15: 0x00007fff7bcd5ad0
      rip: 0x00000001052ded76  rfl: 0x0000000000010202  cr2: 0x00000000000001c2
    Logical CPU: 1
    Binary Images:
    0x104d3c000 -   
    0x104d3cfff  com.apple.WebProcess (7534.56 - 7534.56.5) <70906893-775B-3246-92A6-9E900347BF6E> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    0x104d42000 -   
    0x104d42fff  WebProcessShim.dylib (534.56.5 - compatibility 1.0.0) <1B38F4F6-F0F5-355A-898B-2E84414DD375> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
    0x104f00000 -   
    0x105222fff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <519848A3-D6C0-3CF8-B2E4-D4B41FD91E76> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
    0x1052b2000 -   
    0x105fe9fef  com.apple.WebCore (7534.57 - 7534.57.2) <0DDABF2E-FF0F-3E94-8EC5-A48F613211AE> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
    0x108e53000 -   
    0x108fddff7  com.apple.WebKit (7534.57 - 7534.57.2) <F0E93391-BD24-3180-9FC8-66003896A654> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
    0x7fff6493c000 -
    0x7fff64970baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
    0x7fff8a5b4000 -
    0x7fff8a5caff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff8ae57000 -
    0x7fff8b2e7ff7  com.apple.Safari.framework (7534 - 7534.57.2) <D61DA7E6-8153-31E2-B277-CEE5090F54B3> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7fff8b2e8000 -
    0x7fff8b2ebfff  libMatch.1.dylib (??? - ???) <42305BB6-25F9-355A-9076-FED38B21A7F9> /usr/lib/libMatch.1.dylib
    0x7fff8b2ec000 -
    0x7fff8b2ecfff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
    0x7fff8b2ed000 -
    0x7fff8b3e2fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
    0x7fff8b3e3000 -
    0x7fff8b5b7ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8b5b8000 -
    0x7fff8b5d5fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
    0x7fff8b5dd000 -
    0x7fff8b5defff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
    0x7fff8b5df000 -
    0x7fff8b652fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    0x7fff8b653000 -
    0x7fff8b658fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8b659000 -
    0x7fff8b667fff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
    0x7fff8b6a7000 -
    0x7fff8b6a9fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff8b6aa000 -
    0x7fff8b6d3fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8b9f7000 -
    0x7fff8b9fafff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8bbcd000 -
    0x7fff8bef9ff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8bf10000 -
    0x7fff8bf10fff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff8c012000 -
    0x7fff8c020ff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
    0x7fff8c021000 -
    0x7fff8c026fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff8c033000 -
    0x7fff8c040fff  com.apple.CrashReporterSupport (10.7.4 - 352) <9C16B49C-CF02-38F9-A7CD-969C140D3961> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff8c041000 -
    0x7fff8c9dec9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8c9df000 -
    0x7fff8c9e5fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8c9e6000 -
    0x7fff8ca0efff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff8ca57000 -
    0x7fff8ca58fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8ca59000 -
    0x7fff8cb65fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8cb66000 -
    0x7fff8cbbaff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff8d46a000 -
    0x7fff8d470fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8d471000 -
    0x7fff8d576fff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8d603000 -
    0x7fff8d622fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
    0x7fff8d623000 -
    0x7fff8d665fff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8d676000 -
    0x7fff8d7cffff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8d9fc000 -
    0x7fff8da5eff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8da5f000 -
    0x7fff8dadaff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff8dadb000 -
    0x7fff8db46ff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8db47000 -
    0x7fff8de30ff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8de31000 -
    0x7fff8de71ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
    0x7fff8e1d3000 -
    0x7fff8e2e0fff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8ebeb000 -
    0x7fff8ebf0fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    0x7fff8ebf1000 -
    0x7fff8ec30fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff8ec46000 -
    0x7fff8ed25ff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff8ed26000 -
    0x7fff8ee8dfff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff8eea3000 -
    0x7fff8eeb8fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8eeb9000 -
    0x7fff8eebefff  com.apple.OpenDirectory (10.7 - 146) <91A87249-6A2F-3F89-A8DE-0E95C0B54A3A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8eebf000 -
    0x7fff8eed2ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
    0x7fff8eed3000 -
    0x7fff8ef13fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
    0x7fff8ef14000 -
    0x7fff8ef1afff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
    0x7fff8ef76000 -
    0x7fff8efc4fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
    0x7fff8efc8000 -
    0x7fff8f167ff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff8f1c6000 -
    0x7fff8f260ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff8f261000 -
    0x7fff8f278fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8f285000 -
    0x7fff8f2a5fff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8f2a6000 -
    0x7fff8f2baff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff8f2fe000 -
    0x7fff8f33dff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8f3c1000 -
    0x7fff8f444fef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8f445000 -
    0x7fff8f44afff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
    0x7fff8f450000 -
    0x7fff8f47bff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff8f47c000 -
    0x7fff8f4beff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8f53b000 -
    0x7fff8f584ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.2) <5E421E2D-50EA-340E-A5EE-C848DD6FC34F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff8f8f3000 -
    0x7fff8f969fff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
    0x7fff8f96a000 -
    0x7fff8f995ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
    0x7fff8f9a4000 -
    0x7fff8f9bbfff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff8f9bc000 -
    0x7fff8f9ceff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    0x7fff8f9dd000 -
    0x7fff8fa1efff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8fb8c000 -
    0x7fff8fb8eff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff8fb8f000 -
    0x7fff90056fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff90057000 -
    0x7fff90370fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff90371000 -
    0x7fff903cdff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff9077a000 -
    0x7fff90796ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff907dc000 -
    0x7fff90dc0fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff90dc1000 -
    0x7fff90dc8ff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff90dc9000 -
    0x7fff90dc9fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff90dca000 -
    0x7fff90dfffff  com.apple.securityinterface (5.0 - 55022.4) <09EC371E-0B6E-3849-A6C9-F8E9DB17BBCD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff90e00000 -
    0x7fff90eb3ff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff90f06000 -
    0x7fff90f9cff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff90f9d000 -
    0x7fff90fa0ff7  com.apple.securityhi (4.0 - 1) <7146CB8E-B754-3B0E-A74E-77E9138A81C5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff90fa1000 -
    0x7fff90fa1fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff91155000 -
    0x7fff911f7fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff91647000 -
    0x7fff9164dfff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff9164e000 -
    0x7fff9165bff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
    0x7fff9165c000 -
    0x7fff91661ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    0x7fff9169d000 -
    0x7fff91705ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff91712000 -
    0x7fff92318ff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff9266d000 -
    0x7fff9269aff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff926a9000 -
    0x7fff926fdfff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff92819000 -
    0x7fff9283ffff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff92840000 -
    0x7fff928b6fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff928b7000 -
    0x7fff92b2afff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff92b72000 -
    0x7fff92b83ff7  SyndicationUI (??? - ???) <4E1B17F1-7F88-324F-B7F5-CEB760310B2B> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff92bed000 -
    0x7fff92c28fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
    0x7fff92cc4000 -
    0x7fff92d34fff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff9316a000 -
    0x7fff93175ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    0x7fff93176000 -
    0x7fff93193ff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff93194000 -
    0x7fff931b8fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff931b9000 -
    0x7fff932bbfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
    0x7fff932c1000 -
    0x7fff93337fff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff93338000 -
    0x7fff9333cff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff9333d000 -
    0x7fff93361fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff93362000 -
    0x7fff933c2fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff933c3000 -
    0x7fff937f0fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff93839000 -
    0x7fff93839fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff93879000 -
    0x7fff93879fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff9387a000 -
    0x7fff93885fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff945be000 -
    0x7fff945c5fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff945c6000 -
    0x7fff945c9fff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff945ca000 -
    0x7fff9466bff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff946bc000 -
    0x7fff946bcfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff946bd000 -
    0x7fff946c7ff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
    0x7fff946c8000 -
    0x7fff946daff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
    0x7fff94711000 -
    0x7fff94713fff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff94714000 -
    0x7fff9471fff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff94720000 -
    0x7fff94720fff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff94721000 -
    0x7fff94725fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
    0x7fff94777000 -
    0x7fff94786fff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
    0x7fff9481b000 -
    0x7fff9481dfff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
    0x7fff9488c000 -
    0x7fff94910ff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff94911000 -
    0x7fff94941ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff94942000 -
    0x7fff94943ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff94944000 -
    0x7fff9496dfff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff9496e000 -
    0x7fff94a4bfef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
    0x7fff94a4c000 -
    0x7fff94a4dfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
    0x7fff94a4e000 -
    0x7fff94a5eff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff94a88000 -
    0x7fff94b8ffe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
    0x7fff94b90000 -
    0x7fff94c74fff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff94cc9000 -
    0x7fff94cf1fff  libsandbox.1.dylib (??? - ???) <0D46379D-BCD1-3888-9ED7-513F79D3970A> /usr/lib/libsandbox.1.dylib
    0x7fff94cf2000 -
    0x7fff94cf3ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
    0x7fff94cf4000 -
    0x7fff94cfaff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    0x7fff94d17000 -
    0x7fff94e30fff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff94eb9000 -
    0x7fff94f05ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff94f06000 -
    0x7fff94f0fff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
    0x7fff94f10000 -
    0x7fff94f79fff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff94f7a000 -
    0x7fff94fccff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff95028000 -
    0x7fff9515efff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff954a1000 -
    0x7fff95546fff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff95547000 -
    0x7fff956fffff  com.apple.WebKit2 (7534.56 - 7534.56.5) <3391ED70-7855-3238-AAB4-461828BDDBFB> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x7fff95700000 -
    0x7fff95802ff7  com.apple.PubSub (1.0.5 - 65.28) <0D52431F-D0B3-3175-85FF-8213615A4526> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff95f3c000 -
    0x7fff95f69fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <095FDD3C-3961-3865-A59B-A5B0A4B8B923> /usr/lib/libSystem.B.dylib
    0x7fff95fd4000 -
    0x7fff962f0fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff96398000 -
    0x7fff963d2fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff963d3000 -
    0x7fff963e2ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
    0x7fff963e3000 -
    0x7fff963ebfff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff963ec000 -
    0x7fff963f3fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
    0x7fff963f4000 -
    0x7fff963f7fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff96441000 -
    0x7fff96474ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff96577000 -
    0x7fff965fcff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff96922000 -
    0x7fff96b4cfe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff96be6000 -
    0x7fff96beafff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
    0x7fff96beb000 -
    0x7fff96becfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
    0x7fff96bed000 -
    0x7fff96cb4ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff96eb8000 -
    0x7fff96eb8fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff96eb9000 -
    0x7fff96f11fff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff96f5c000 -
    0x7fff96f72fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff97069000 -
    0x7fff9706aff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
    0x7fff97226000 -
    0x7fff97246fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff972a4000 -
    0x7fff972cdff7  com.apple.framework.Apple80211 (7.2.1 - 721.3) <4BA49D6F-373B-3F4E-A2B3-453C2ED66318> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff972ce000 -
    0x7fff974d0fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
    0x7fff97518000 -
    0x7fff975fce5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    0x7fff9760a000 -
    0x7fff97618fff  com.apple.NetAuth (3.1 - 3.1) <FE7EC4D7-5632-3B8D-9094-A0AC8D60EDEE> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 2
    thread_create: 0
    thread_set_state: 0
      Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
      Calls made by all processes on this machine:
    task_for_pid: 5226
    thread_create: 0
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=174.7M resident=118.9M(68%) swapped_out_or_unallocated=55.8M(32%)
    Writable regions: Total=1.0G written=4020K(0%) resident=4700K(0%) swapped_out=0K(0%) unallocated=1.0G(100%)
    REGION TYPE                   
    VIRTUAL
    ===========                   
    =======
    CG shared images                 
    128K
    CoreServices                    
    2492K
    JS JIT generated code              
    8K
    JS JIT generated code (reserved) 
    1.0G   
    reserved VM address space (unallocated)
    MALLOC                          
    21.9M
    MALLOC guard page                 
    32K
    Memory tag=242                    
    12K
    SQLite page cache                
    384K
    STACK GUARD                     
    56.0M
    Stack                           
    10.5M
    VM_ALLOCATE                     
    16.0M
    __CI_BITMAP                       
    80K
    __DATA                          
    14.9M
    __IMAGE                          
    528K
    __LINKEDIT                      
    54.4M
    __TEXT                         
    120.3M
    __UNICODE                        
    544K
    mapped file                     
    16.5M
    shared memory                    
    308K
    ===========                   
    =======
    TOTAL                            
    1.3G
    TOTAL, minus reserved VM space 
    315.0M
    Model: MacBookAir3,1, BootROM MBA31.0061.B07, 2 processors, Intel Core 2 Duo, 1.6 GHz, 4 GB, SMC 1.67f4
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D5946382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D5946382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD1), Broadcom BCM43xx 1.0 (5.106.198.4.20)
    Bluetooth: Version 4.0.5f11, 2 service, 18 devices, 1 incoming serial ports
    Network Service: WLAN_DB, AirPort, en0
    Serial ATA Device: APPLE SSD TS128C, 121,33 GB
    USB Device: FaceTime Camera (Built-in), apple_vendor_id, 0x850a, 0x24600000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x04500000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821b, 0x04530000 / 5
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0243, 0x04300000 / 2
    ANY IDEAS??
    KIND REGARDS
    xavier

    Hi Neville and Carolyn,
    thank you for your help, but neither of the 2 solutions worked for me.
    Carolyn: deleting Cache.db file did not produce any change.
    Neville: copying your instructions into terminal did not change Safari  to crash.
    Here is the entire content of the crash log retrieved from ~/Library/Logs/CrashReporter
    Any new ideas?
    What is the main problem??
    I am trying to restore Safari from an early day (from TimeMachine) but it is impossible.
    Many thanks
    xavier
    Process:    
    WebProcess [625]
    Path:       
    /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/MacO S/WebProcess
    Identifier: 
    com.apple.WebProcess
    Version:    
    7534.56 (7534.56.5)
    Build Info: 
    WebKit2-7534056005000000~1
    Code Type:  
    X86-64 (Native)
    Parent Process:  Safari [607]
    Date/Time:  
    2012-07-19 19:26:57.215 +0200
    OS Version: 
    Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000001c2
    VM Regions Near 0x1c2:
    -->
    __TEXT            
    000000010e608000-000000010e609000 [
    4K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Application Specific Information:
    objc[625]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.WebCore        
    0x000000010ebded76 WebCore::FrameView::setTransparent(bool) + 4
    1   com.apple.WebKit2        
    0x00007fff90b5c3ca WebKit::WebFrameLoaderClient::transitionToCommittedForNewPage() + 218
    2   com.apple.WebCore        
    0x000000010ebdd4d5 WebCore::FrameLoader::transitionToCommitted(***::PassRefPtr<WebCore::CachedPage >) + 639
    3   com.apple.WebCore        
    0x000000010ebdc97b WebCore::FrameLoader::commitProvisionalLoad() + 395
    4   com.apple.WebCore        
    0x000000010ebdc7bd WebCore::DocumentLoader::finishedLoading() + 57
    5   com.apple.WebCore        
    0x000000010ebdb257 WebCore::FrameLoader::init() + 903
    6   com.apple.WebKit2        
    0x00007fff90b5958c WebKit::WebFrame::init(WebKit::WebPage*, ***::String const&, WebCore::HTMLFrameOwnerElement*) + 162
    7   com.apple.WebKit2        
    0x00007fff90b58364 WebKit::WebFrame::createMainFrame(WebKit::WebPage*) + 96
    8   com.apple.WebKit2        
    0x00007fff90b6641b WebKit::WebPage::WebPage(unsigned long long, WebKit::WebPageCreationParameters const&) + 1863
    9   com.apple.WebKit2        
    0x00007fff90b5fe1b WebKit::WebPage::create(unsigned long long, WebKit::WebPageCreationParameters const&) + 47
    10  com.apple.WebKit2        
    0x00007fff90b765d5 WebKit::WebProcess::createWebPage(unsigned long long, WebKit::WebPageCreationParameters const&) + 101
    11  com.apple.WebKit2        
    0x00007fff90b9e66e void CoreIPC::handleMessage<Messages::WebProcess::CreateWebPage, WebKit::WebProcess, void (WebKit::WebProcess::*)(unsigned long long, WebKit::WebPageCreationParameters const&)>(CoreIPC::ArgumentDecoder*, WebKit::WebProcess*, void (WebKit::WebProcess::*)(unsigned long long, WebKit::WebPageCreationParameters const&)) + 144
    12  com.apple.WebKit2        
    0x00007fff90af2c32 CoreIPC::Connection::dispatchMessage(CoreIPC::Connection::Message<CoreIPC::Argu mentDecoder>&) + 172
    13  com.apple.WebKit2        
    0x00007fff90af2b4b CoreIPC::Connection::dispatchMessages() + 145
    14  com.apple.WebKit2        
    0x00007fff90aef8a3 RunLoop::performWork() + 111
    15  com.apple.WebKit2        
    0x00007fff90aef814 RunLoop::performWork(void*) + 76
    16  com.apple.CoreFoundation 
    0x00007fff8d0524f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    17  com.apple.CoreFoundation 
    0x00007fff8d051d5d __CFRunLoopDoSources0 + 253
    18  com.apple.CoreFoundation 
    0x00007fff8d078b49 __CFRunLoopRun + 905
    19  com.apple.CoreFoundation 
    0x00007fff8d078486 CFRunLoopRunSpecific + 230
    20  com.apple.HIToolbox      
    0x00007fff8a61a4d3 RunCurrentEventLoopInMode + 277
    21  com.apple.HIToolbox      
    0x00007fff8a6216d3 ReceiveNextEventCommon + 181
    22  com.apple.HIToolbox      
    0x00007fff8a62160e BlockUntilNextEventMatchingListInMode + 62
    23  com.apple.AppKit         
    0x00007fff8b430e31 _DPSNextEvent + 659
    24  com.apple.AppKit         
    0x00007fff8b430735 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    25  com.apple.AppKit         
    0x00007fff8b42d071 -[NSApplication run] + 470
    26  com.apple.WebKit2        
    0x00007fff90b7963b WebKit::WebProcessMain(WebKit::CommandLine const&) + 553
    27  com.apple.WebKit2        
    0x00007fff90b5fc30 WebKitMain + 272
    28  com.apple.WebProcess     
    0x000000010e608e56 0x10e608000 + 3670
    29  com.apple.WebProcess     
    0x000000010e608d64 0x10e608000 + 3428
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff8d0167e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff9636278a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff9636131a _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff8d016192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff93f87594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff93f88b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff8d016192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff93f87594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff93f88b85 start_wqthread + 13
    Thread 4:: WebCore: LocalStorage
    0   libsystem_kernel.dylib   
    0x00007fff8d015bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff93f89274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore 
    0x000000010e80aa50 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore        
    0x000000010ebd0fda ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 132
    4   com.apple.WebCore        
    0x000000010ebd0f33 WebCore::LocalStorageThread::threadEntryPoint() + 99
    5   com.apple.WebCore        
    0x000000010ebd0e7b WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 9
    6   libsystem_c.dylib        
    0x00007fff93f858bf _pthread_start + 335
    7   libsystem_c.dylib        
    0x00007fff93f88b75 thread_start + 13
    Thread 5:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff8d01467a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8d013d71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff8d07050c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff8d078c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff8d078486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation     
    0x00007fff91b97fd7 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation     
    0x00007fff91b8c72a -[NSThread main] + 68
    7   com.apple.Foundation     
    0x00007fff91b8c6a2 __NSThread__main__ + 1575
    8   libsystem_c.dylib        
    0x00007fff93f858bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff93f88b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000011005f400  rbx: 0x00000001100157f0  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x0000000000000000  rsi: 0x0000000000000000  rbp: 0x00007fff6e205b30  rsp: 0x00007fff6e205b30
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x000000000985c5d9  r11: 0x000000011007b390
      r12: 0x0000000110058800  r13: 0x00007fff6e205f80  r14: 0x000000011003cb00  r15: 0x00007fff7ac73ad0
      rip: 0x000000010ebded76  rfl: 0x0000000000010202  cr2: 0x00000000000001c2
    Logical CPU: 0
    Binary Images:
    0x10e608000 -   
    0x10e608fff  com.apple.WebProcess (7534.56 - 7534.56.5) <70906893-775B-3246-92A6-9E900347BF6E> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    0x10e60d000 -   
    0x10e60dfff  WebProcessShim.dylib (534.56.5 - compatibility 1.0.0) <1B38F4F6-F0F5-355A-898B-2E84414DD375> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
    0x10e800000 -   
    0x10eb22fff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <519848A3-D6C0-3CF8-B2E4-D4B41FD91E76> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
    0x10ebb2000 -   
    0x10f8e9fef  com.apple.WebCore (7534.57 - 7534.57.2) <0DDABF2E-FF0F-3E94-8EC5-A48F613211AE> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
    0x112733000 -   
    0x1128bdff7  com.apple.WebKit (7534.57 - 7534.57.2) <F0E93391-BD24-3180-9FC8-66003896A654> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
    0x7fff6e208000 -
    0x7fff6e23cbaf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
    0x7fff89ef4000 -
    0x7fff8a05bfff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff8a0ca000 -
    0x7fff8a0cbff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8a618000 -
    0x7fff8a944ff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8a945000 -
    0x7fff8a952fff  com.apple.CrashReporterSupport (10.7.4 - 352) <9C16B49C-CF02-38F9-A7CD-969C140D3961> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff8a98c000 -
    0x7fff8a9e4fff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8a9ff000 -
    0x7fff8aa0efff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
    0x7fff8aa39000 -
    0x7fff8aa61fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff8aa66000 -
    0x7fff8acd9fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff8acda000 -
    0x7fff8acdefff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8ad1a000 -
    0x7fff8ad76ff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff8ad77000 -
    0x7fff8ad7dfff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
    0x7fff8ad7e000 -
    0x7fff8ad85fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
    0x7fff8ad86000 -
    0x7fff8ada3ff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8ada4000 -
    0x7fff8b234ff7  com.apple.Safari.framework (7534 - 7534.57.2) <D61DA7E6-8153-31E2-B277-CEE5090F54B3> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7fff8b364000 -
    0x7fff8b3c6ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8b40e000 -
    0x7fff8b40ffff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
    0x7fff8b410000 -
    0x7fff8b416fff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8b428000 -
    0x7fff8c02eff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8c25b000 -
    0x7fff8c261fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8c3a5000 -
    0x7fff8c3a5fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8c3a6000 -
    0x7fff8c3cfff7  com.apple.framework.Apple80211 (7.2.1 - 721.3) <4BA49D6F-373B-3F4E-A2B3-453C2ED66318> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff8c3d0000 -
    0x7fff8c40fff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8c410000 -
    0x7fff8c413ff7  com.apple.securityhi (4.0 - 1) <7146CB8E-B754-3B0E-A74E-77E9138A81C5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff8c4bc000 -
    0x7fff8c4d1fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8c90b000 -
    0x7fff8c916ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    0x7fff8c917000 -
    0x7fff8c942ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
    0x7fff8c943000 -
    0x7fff8c943fff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8c944000 -
    0x7fff8ca28e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    0x7fff8ca29000 -
    0x7fff8ca34fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8ca35000 -
    0x7fff8ca89ff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff8ca8a000 -
    0x7fff8caa1fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8caa2000 -
    0x7fff8cae4fff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8cbd6000 -
    0x7fff8cbdafff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
    0x7fff8cbdb000 -
    0x7fff8cbe0ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    0x7fff8cfff000 -
    0x7fff8d01ffff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8d040000 -
    0x7fff8d214ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8d215000 -
    0x7fff8d34bfff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff8d34c000 -
    0x7fff8d34cfff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8d34d000 -
    0x7fff8d34ffff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
    0x7fff8d350000 -
    0x7fff8d3c6fff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
    0x7fff8d3cd000 -
    0x7fff8d3f1fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8d4be000 -
    0x7fff8d50aff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8d58e000 -
    0x7fff8d5b7fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8d61b000 -
    0x7fff8d620fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
    0x7fff8d621000 -
    0x7fff8d626fff  com.apple.OpenDirectory (10.7 - 146) <91A87249-6A2F-3F89-A8DE-0E95C0B54A3A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8d646000 -
    0x7fff8d651ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff8d652000 -
    0x7fff8d87cfe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8d8d0000 -
    0x7fff8d8fdfe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <095FDD3C-3961-3865-A59B-A5B0A4B8B923> /usr/lib/libSystem.B.dylib
    0x7fff8d8fe000 -
    0x7fff8d911ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
    0x7fff8d912000 -
    0x7fff8d92ffff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
    0x7fff8d930000 -
    0x7fff8df14fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff8df15000 -
    0x7fff8df15fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8df16000 -
    0x7fff8e01bfff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8e068000 -
    0x7fff8e0dbfff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    0x7fff8e877000 -
    0x7fff8e87afff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8e87b000 -
    0x7fff8e92eff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff8eaba000 -
    0x7fff8ebd3fff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff8f317000 -
    0x7fff8f356fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff8f357000 -
    0x7fff8f357fff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff8f358000 -
    0x7fff8f45ffe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
    0x7fff90198000 -
    0x7fff9023dfff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff909cc000 -
    0x7fff90ad9fff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff90ada000 -
    0x7fff90c92fff  com.apple.WebKit2 (7534.56 - 7534.56.5) <3391ED70-7855-3238-AAB4-461828BDDBFB> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x7fff90c93000 -
    0x7fff90cc6ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff90cc7000 -
    0x7fff90cccfff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff90ccd000 -
    0x7fff90d43fff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff90d44000 -
    0x7fff90d92fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
    0x7fff90d93000 -
    0x7fff90d93fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff90d94000 -
    0x7fff90d96fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff90d97000 -
    0x7fff90e8cfff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
    0x7fff90e8d000 -
    0x7fff90ec7fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff90ec8000 -
    0x7fff90edeff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff90fb1000 -
    0x7fff90fc5ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff90fc6000 -
    0x7fff91006fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
    0x7fff91010000 -
    0x7fff91064fff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff91065000 -
    0x7fff91066ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
    0x7fff91067000 -
    0x7fff910fdff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff910fe000 -
    0x7fff9113ffff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff91230000 -
    0x7fff912a6fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff91a8a000 -
    0x7fff91aeafff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff91aeb000 -
    0x7fff91aebfff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff91b11000 -
    0x7fff91b31fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff91b32000 -
    0x7fff91e4bfff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff91e51000 -
    0x7fff91e67fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff91ed9000 -
    0x7fff91eebff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
    0x7fff91f4c000 -
    0x7fff91fd0ff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff91fd1000 -
    0x7fff91fdbff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
    0x7fff91fdc000 -
    0x7fff92045fff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff92046000 -
    0x7fff9206cfff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff92070000 -
    0x7fff92071fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
    0x7fff9207d000 -
    0x7fff92081ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff92090000 -
    0x7fff92093fff  libMatch.1.dylib (??? - ???) <42305BB6-25F9-355A-9076-FED38B21A7F9> /usr/lib/libMatch.1.dylib
    0x7fff924fc000 -
    0x7fff92518ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff92575000 -
    0x7fff9257bfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff9257c000 -
    0x7fff92589ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
    0x7fff9258a000 -
    0x7fff9258bfff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff9258c000 -
    0x7fff9258ffff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff92590000 -
    0x7fff92592fff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff92593000 -
    0x7fff925feff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff925ff000 -
    0x7fff92600fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
    0x7fff92642000 -
    0x7fff92682ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
    0x7fff926c2000 -
    0x7fff9275cff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff927d1000 -
    0x7fff927d7ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    0x7fff927d8000 -
    0x7fff92801fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff92878000 -
    0x7fff928a5ff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff928ce000 -
    0x7fff92a6dff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff92aa4000 -
    0x7fff92dc0fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff92dc1000 -
    0x7fff92ea0ff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff92ea1000 -
    0x7fff92ec9fff  libsandbox.1.dylib (??? - ???) <0D46379D-BCD1-3888-9ED7-513F79D3970A> /usr/lib/libsandbox.1.dylib
    0x7fff92eca000 -
    0x7fff92f1cff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff92f1d000 -
    0x7fff93076fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff93077000 -
    0x7fff93088ff7  SyndicationUI (??? - ???) <4E1B17F1-7F88-324F-B7F5-CEB760310B2B> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff93596000 -
    0x7fff93798fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
    0x7fff93906000 -
    0x7fff9393bfff  com.apple.securityinterface (5.0 - 55022.4) <09EC371E-0B6E-3849-A6C9-F8E9DB17BBCD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff93a98000 -
    0x7fff93ac8ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff93ac9000 -
    0x7fff93db2ff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff93e07000 -
    0x7fff93e0eff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff93e0f000 -
    0x7fff93e7ffff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff93e80000 -
    0x7fff93f21ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff93f22000 -
    0x7fff93f22fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff93f23000 -
    0x7fff93f33ff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff93f34000 -
    0x7fff93f36ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff93f37000 -
    0x7fff94014fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
    0x7fff94015000 -
    0x7fff9401dfff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff9401e000 -
    0x7fff94023fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff94227000 -
    0x7fff942a2ff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff942a3000 -
    0x7fff942acff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
    0x7fff942ad000 -
    0x7fff94c4ac9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff94c4b000 -
    0x7fff94c59ff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
    0x7fff94c5a000 -
    0x7fff94c95fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
    0x7fff94c96000 -
    0x7fff950c3fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff950c4000 -
    0x7fff950d3ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
    0x7fff950d4000 -
    0x7fff951e0fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff955cb000 -
    0x7fff956cdff7  com.apple.PubSub (1.0.5 - 65.28) <0D52431F-D0B3-3175-85FF-8213615A4526> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff95a19000 -
    0x7fff95ae0ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff95ae1000 -
    0x7fff95b66ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff95b67000 -
    0x7fff95c4bfff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff95c4c000 -
    0x7fff95c4cfff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
    0x7fff95c4d000 -
    0x7fff95cd0fef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff95cd1000 -
    0x7fff95cd8fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff95f8f000 -
    0x7fff95faefff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
    0x7fff9621e000 -
    0x7fff96260ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff96261000 -
    0x7fff962c9ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff962ca000 -
    0x7fff962d8fff  com.apple.NetAuth (3.1 - 3.1) <FE7EC4D7-5632-3B8D-9094-A0AC8D60EDEE> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff962d9000 -
    0x7fff96322ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.2) <5E421E2D-50EA-340E-A5EE-C848DD6FC34F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff9635f000 -
    0x7fff9636dfff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
    0x7fff963b4000 -
    0x7fff9687bfff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff96948000 -
    0x7fff96949ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff969e7000 -
    0x7fff969f9ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    0x7fff969fa000 -
    0x7fff96a9cfff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff96a9d000 -
    0x7fff96aa0fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff96aa1000 -
    0x7fff96ab8fff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff96ab9000 -
    0x7fff96addfff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff96ade000 -
    0x7fff96be0fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
    0x7fff96be1000 -
    0x7fff96c0cff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff96f2a000 -
    0x7fff96f2ffff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 2
    thread_create: 0
    thread_set_state: 0
      Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
      Calls made by all processes on this machine:
    task_for_pid: 1274
    thread_create: 0
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=174.7M resident=79.8M(46%) swapped_out_or_unallocated=94.9M(54%)
    Writable regions: Total=1.0G written=3568K(0%) resident=4400K(0%) swapped_out=36K(0%) unallocated=1.0G(100%)
    REGION TYPE                   
    VIRTUAL
    ===========                   
    =======
    CG shared images                  
    96K
    CoreServices                    
    2556K
    JS JIT generated code              
    8K
    JS JIT generated code (reserved) 
    1.0G   
    reserved VM address space (unallocated)
    MALLOC                          
    21.9M
    MALLOC guard page                 
    32K
    Memory tag=242                    
    12K
    SQLite page cache                
    192K
    STACK GUARD                     
    56.0M
    Stack                           
    10.5M
    VM_ALLOCATE                     
    16.0M
    __CI_BITMAP                       
    80K
    __DATA                          
    15.0M
    __IMAGE                          
    528K
    __LINKEDIT                      
    54.4M
    __TEXT                         
    120.3M
    __UNICODE                        
    544K
    mapped file                     
    16.5M
    shared memory                    
    308K
    ===========                   
    =======
    TOTAL                            
    1.3G
    TOTAL, minus reserved VM space 
    314.9M

  • When i resize my browser my content goes all over the place?

    I have made a new page on muse. It is complete and i like the way it looks but when i resize the browser my images and content move around and it doesnt align like i want it to. It needs to lign up with the background image. How do i get the content and images to stay where they are and not move when i resize my browser? My other pages do this just fine. If anyone can help me out that would be great!

    In general the site appears to being working normally in a desktop browser. However the content on the page is too wide for many site visitors. (At ~1600 px it's too wide for my 15" 1440 pixel Mac display.)
    The "lines2.png" is 1900 px wide and thus makes the content area of your site 1900 px wide. When a site is loaded in a mobile browser, the browser will zoom out so the content area fits in the width of the device.
    Given your current design I think you want to set the page with in Site Properties to roughly 1200 pixels (it looks like it's currently 960, but your main header sticks out on both the left and right so you probably want to make your page large enough so the full header fits).
    For the lines, perhaps I'm missing something about the precise appearance of the lines, but it seems this could just be a Muse rectangle with only the top and bottom stroke weights set (left and right strokes set to zero in the Stroke panel, click on the word Stroke in the Control Strip). If a Muse rectangle is dragged so its left and right edges are both at the left and right edge of the browser area, then the rectangle will automatically change width in the browser to always be the full with of the browser window (and there won't be another http request to download a .png for the lines, as there is now).

  • Since I upgraded to OSX 10.7 I can not browse my photos in Time Machine

    since I upgraded to OSX 10.7 I can not browse my photos in Time Machine.The instructions in Help do not help.

    This option was removed in v9.1.5
    IPhoto menu -> Provide iPhoto Feedback

  • Tried to update firefox to 9.0.1, did not work, tried to go back to 8.0.1, now it will not browse and no bookmarks are showing.

    I got message that a Firefox browser update was available. I tried to update a couple times and got message that another Firefox browser was running on my computer, so I tried removing version 8.0.1 and used Internet Explorer to download Firefox 9.0.1 and install it. I had saved what I thought was my bookmarkbackups folder on a separate hard drive. The new version would never load or open and kept giving me .dll files that were missing, so I uninstalled that version 9.0.1 and tried going BACK to Firefox v 8.0.1 . Now that will open but will not browse to any sites, not even Google, and all my bookmarks are not showint even though I pasted them from the hard drive copy to the bookmarkbackups folder. Can someone help me get Mozilla Firefox working again and how to import my bookmarks?
    Also, when Firefox opens I get this message every time:
    "Alert:
    Could not initialize the application’s security component. The most likely cause is problems with files in your application’s profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features."

    I went to the link you said to and then clicked on the "Firefox Free Download, 9.0.1 for Windows, English (US)" and that took me to ''http://www.mozilla.org/en-US/products/download.html?product=firefox-9.0.1&os=win&lang=en-US'' which had another limk to click on to start the download.
    The file downloaded but when I tried to run it my AntiVirus (ZoneAlarm) said that it was corrupt. So I removed that file and downloaded another from the same site and ZoneAlarm said that was infected and a contained possible malicious virus.
    So now I have no Mozilla Firefox and do not know how to get it back in a version that will run.
    Anyone, please help if you can.

  • Cross-frame scripting is not working in Safari 3.0.4. Minimal example code.

    Hello,
    I've found that cross-frame scripting is not working in Safari 3.0.4, as it worked
    ok on Safari 3.0.1, and in other browsers I tried: Firefox, Mozilla, IE.
    document.domain property is set to "ds2ps.net", correctly to the best of my knowledge
    in the frameset and in both frames. Both frames and frameset are loaded
    from subdomains of the same domain "ds2ps.net"
    Please have a look at this mimimal example:
    http://frameset.ds2ps.net/frames-test/frameset.html
    Press buttons to get alert with value of a variable defined in the frameset
    and in the first frame.
    This gives "undefined" in Safari 3.0.4, and give following message in Safari
    JavaScript console:
    Unsafe JavaScript attempt to access frame with URL http://frameset.ds2ps.net/frames-test/frameset.html from frame with URL http://frame2.ds2ps.net/frames-test/frame2.html. Domains, protocols and ports must match.
    Works ok in all other browsers and in earlier versions of Safari.
    Apperently, I'm doing something incorrectly.
    I would appreciate if Apple Safari developers have a look at this problem and suggest solution.
    My company is developing web application which depends on cross-frame scripting,
    and we would like to continue supporting Safari browser.
    Thank you,
    John

    Thank you, iBod,
    We've submitted this bug at http://bugs.webkit.org
    Bug 16444: Cross-frame scripting not working in Safari 3.0.4 despite proper document.domain set in all frames
    Thank you for your suggestion!

  • My iTunes wont open in Microsoft 7 when I've tried opening it in safe mode it still will not open any help would be great, My iTunes wont open in Microsoft 7 when I've tried opening it in safe mode it still will not open any help would be great

    My iTunes wont open in Microsoft 7 when I've tried opening it in safe mode it still will not open any help would be great, My iTunes wont open in Microsoft 7 when I've tried opening it in safe mode it still will not open any help would be great

    HI,
    First, there are no Mac viruses in the wild.
    recently random sites have had a warning message thing come up that looks like a Norton Anti-virus telling me to run my browser in 'safe' mode or something.
    So far it hasn't really done anything malicious, but I'd like to stop it before it does.
    The file is an .exe file and unless you are running a Windows partition on your Mac, the Mac OS X cannot open those files. You're OK! If you are running Windows then you would need anti virus software, but it would be installed on the Windows partition, not the Mac OS X.
    Nothing to be worry about. They are trying to get your to purchase anti virus software. Norton a/v for a Mac is the worst thing you could install. It's invasive and impossible to UNinstall.
    You are running Snow Leopard... read here.
    Mac Has You Covered - Defense against viruses and other malware
    Carolyn

Maybe you are looking for

  • Question about using JavaMail API to read the calendar folder...

    Hi, I've made an application that goes to the mail server, fetches all mails in the calendar folder and tells you the meetings you have in a particular day. I'm using JavaMail API for this. My problem is that the application is very slow because I'm

  • How much Creative Cloud storage comes with Student and Teacher Edition?

    Hi! I work for the art college called the Maryland Institute College of Art, and I was recently asked a question that I don't have the answer for. Basically, I'm wondering why my (and the student who asked me) only show 2 GBs of possible storage in o

  • What's max free space on the MBA w/SSD

    I reinstalled the system on my MBA w/SSD using the bundled Installer DVD. I deselected everything during the Custom install except for Brother and Epson printer drivers and performed an Erase&Install. My SSD's free space is now sitting at 44.5 GB wit

  • WebAnalyzer security????

    Can we access Hyperion Reporting and Analysis with Essbase Security? Now we are using 11.1.1.3 Essbase as stand alone. Earlier we used version 7, In that we used essbase user name and password for Web Analyzer also. Please let me know If we are going

  • TS1702 Retrieve info from Icloud

    How do I upload info from the icloud?  I lost all info on LISTS and wanted to retrieve uploaded LISTS from Icloud.