JSObject in Firefox?

Hey Guys
I've done some searching and haven't found an answer yet. The question is, have any of you found a solution for using JSObject to call javascript methods from the applet in Firefox?
I've got code that works fine in IE.
Many thanks.
H
Update: Just to say that I've tried using the <Object> and <embed> tags in Firefox, but the only one that seems to render the applet is using <applet>. My search continues.
Message was edited by:
hagenr

You can call javascript from an applet in the following way:
this.getAppletContext().showDocument(
            new URL("javascript: alertInvokedByApplet();"));There is some problem with JSObject (some time ago):
http://forum.java.sun.com/thread.jspa?threadID=642380&tstart=225
reply 2
As for the call to javascript (use of JSObject) that is a bug in the plugin or in mozilla.
Tested with 1.5.0.04 and moz crashes. Looks like in the 04 and 02 version they've managed to completely
break the JSObject function in the mozilla plugin. I am using win 2k, Mozilla 1.7.5 and jre 1.5.0.04

Similar Messages

  • Java Plug-in / JSObject support with IE and Firefox

    Hi there,
    Basicaly, the idea behind is to write objects in Java to replace or extend functionnalities of a web page (like XMLHttpRequest object). Those objects should support event handler writen in Javascript.
    My first idea was to create JavaBeans and instantiate them through OBJECT tags in HTML (not as ActiveX objects). I don't find a way to instatiate a Javabean which was not also an applet.
    Does someone knows how to ?
    Anyway, the OBJECT tag may not work with Netscape. So, I went to use the APPLET tag with the Sun Java Plug-in.
    I've made some tests with IE and Firefox and there is at least two differences between them (both use the Sun Java Plug-in) :
    1/ Firefox / JSObject
    When you pass a Javascript object to a Java method, it seems that you
    cannot use methods like 'getMember', 'call', etc on this object.
    (invocation of the method works but returns null)
    But, if you access the same object form inside Java starting by
    JSObject.getWindows(...) and so on, it works fine.
    IE works in all cases.
    Example, with the Java applet and HTML below :
    . Java applet :
    | package JavaJS;
    |
    | import netscape.javascript.*;
    |
    | public class FirefoxApplet
    |        extends java.applet.Applet {
    |   netscape.javascript.JSObject win = null;
    |  
    |   public void init() {
    |     win = netscape.javascript.JSObject.getWindow(this);
    |   }
    |
    |   public Object getJSObjectMember( netscape.javascript.JSObject jso, String member ) {
    |     return jso.getMember(member);
    |   }
    |
    |   public netscape.javascript.JSObject getJSObjectFromPath( String jsoPath ) {
    |     String [] jsoNames = jsoPath.split("\\.");
    |     netscape.javascript.JSObject jso = win;
    |
    |     for( int i = 0; ( i < jsoNames.length ); i++ )
    |       jso = (netscape.javascript.JSObject)jso.getMember(jsoNames);
    |
    | return jso;
    | }
    |
    | public Object getJSObjectPathMember( String jsoPath, String member ) {
    | return getJSObjectMember(getJSObjectFromPath(jsoPath),member);
    | }
    | }
    [i]. HTML page :| <HTML>
    | <HEAD>
    | <TITLE>FirefoxApplet</TITLE>
    | <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    | <META http-equiv="Content-Script-Type" content="text/javascript">
    | <SCRIPT>
    | var ffxa = null;
    | var txa = null;
    |
    | var o = {
    | s : "object o, member s",
    | o : {
    | s : "object o.o, member s"
    | }
    | }
    |
    | function go() {
    | print(ffxa.getJSObjectMember(o,"s"));
    | print(ffxa.getJSObjectMember(o.o,"s"));
    | print(ffxa.getJSObjectPathMember("o","s"));
    | print(ffxa.getJSObjectPathMember("o.o","s"));
    | print(ffxa.getJSObjectMember(ffxa.getJSObjectFromPath("o"),"s"));
    | print(ffxa.getJSObjectMember(ffxa.getJSObjectFromPath("o.o"),"s"));
    | }
    |
    | function print( text ) {
    | txa.value = txa.value+text+"\n";
    | }
    |
    | function loaded() {
    | ffxa = document.getElementById("ffxa");
    | txa = document.getElementById("txa");
    |
    | }
    | </SCRIPT>
    | </HEAD>
    | <BODY onload="loaded()">
    | <APPLET id="ffxa"
    | code="JavaJS.FirefoxApplet.class"
    | width="0"
    | height="0"
    | MAYSCRIPT>
    | </APPLET><BR>
    | <INPUT type="button" onclick="go()" value="Go"><BR>
    | <TEXTAREA id="txa" rows="10" cols="40"></TEXTAREA>
    | </BODY>
    | </HTML>
    When the HTML page has loaded, a click on the Go button gives :
    . Firefox output :
    | null
    | null
    | object o, member s
    | object o.o, member s
    | null
    | null
    . IE output :
    | object o, member s
    | object o.o, member s
    | object o, member s
    | object o.o, member s
    | object o, member s
    | object o.o, member s
    2/ Internet Explorer / JSObject
    As we have seen in the previous example, passing Javascript object to
    an applet method works. Here, the problem comes when a Javascript object
    is pass to a method that's not an applet's method.
    If within the applet, you instantiate a new Java object and then
    call from Javascript a method on this object with a Javascript object as
    parameter then an Exception is raised when invoking that method.
    Firefox works fine here.
    Example, with the Java applet and HTML page below :
    . Java applet :
    | package JavaJS;
    |
    | public class IEApplet extends java.applet.Applet {
    |  
    |   public void init() {
    |   }
    |  
    |   public Object echo( Object object ) {
    |     return object;
    |   }
    |  
    |   public Object newEcho() {
    |     return new Echo();
    |   }
    | }
    . Java Echo class
    | package JavaJS;
    |
    | public class Echo {
    |  
    |   public Echo() {
    |   }
    |
    |   public Object echo(Object object) {
    |     return object;
    |   }
    | }
    . HTML page :
    | <HTML>
    |   <HEAD>
    |     <TITLE>IEApplet</TITLE>
    |     <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    |     <META http-equiv="Content-Script-Type" content="text/javascript">
    |     <SCRIPT>
    |       var iea = null;
    |       var txa = null;
    |
    |       var o = {
    |         s : "object o, member s",
    |         o : {
    |           s : "object o.o, member s"
    |         }
    |       }
    |
    |       function go() {
    |         print(iea.echo(o));
    |         print(iea.newEcho().echo(o));
    |       }
    |      
    |       function print( text ) {
    |         txa.value = txa.value+text+"\n";
    |       }
    |
    |       function loaded() {
    |         iea = document.getElementById("iea");
    |         txa = document.getElementById("txa");
    |        
    |       }
    |     </SCRIPT>
    |   </HEAD>
    |   <BODY onload="loaded()">
    |     <APPLET id="iea"
    |             code="JavaJS.IEApplet.class"
    |             width="0"
    |             height="0"
    |             MAYSCRIPT>
    |     </APPLET><BR>
    |     <INPUT type="button" onclick="go()" value="Go"><BR>
    |     <TEXTAREA id="txa" rows="10" cols="40"></TEXTAREA>
    |   </BODY>
    | </HTML>When the HTML page has loaded, a click on the Go button gives :
    . Firefox output :
    | [object Object]
    | [object Object]
    . IE output :
    | [object Object]
    with this Exception on the second method invocation :
    | java.lang.ClassCastException
    |      at sun.plugin.com.DispatchImpl.convertParams(Unknown Source)
    |      at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source)
    |      at sun.plugin.com.DispatchImpl$1.run(Unknown Source)
    |      at java.security.AccessController.doPrivileged(Native Method)
    |      at sun.plugin.com.DispatchImpl.invoke(Unknown Source)
    | java.lang.Exception: java.lang.ClassCastException
    |      at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source)
    |      at sun.plugin.com.DispatchImpl$1.run(Unknown Source)
    |      at java.security.AccessController.doPrivileged(Native Method)
    |      at sun.plugin.com.DispatchImpl.invoke(Unknown Source)There is a workaround for this, it's possible to wrap the Javascript object
    in a Java object with an applet method and then use this Java object as
    parameter.
    Anyway, my questions are : regarding points 1/ and 2/ are these bugs with the Sun Java Plug-in ? or someone could explain these behaviors ?
    Thanks for your reading.
    Software infos :
    . Firefox version 1.0.7
    . Internet Explorer version 6.0.2800.1106 / JScript version 5.6
    . Plug-in Java(TM): Version 1.4.2_08
    . JSDK version 1.4.2_08
    . Windows 2000 Server version 5.00.2195 sp4

    Please test with the new Java Plug-In available in 6u10 at http://jdk6.dev.java.net/6u10ea.html. The Java/JavaScript bridge has been completely rewritten and is now more complete and portable than ever before. Longstanding issues should be fixed with this new version. Please try it and post if you continue to have problems.

  • Firefox crashes after I close a 'sent email' window. I am using Windows 7 and have recently updated to Firefox 4.0.1, using AOL toolbar 2.1. ID: 9dafea24-ccbc-4c76-b3ea-fddeb2110430 Signature: JSObject::nativeSearch(int, bool)

    Firefox crashes every 2nd or 3rd email I send.

    Hi Kossa,
    You can also check if the issue occurs in
    Clean Boot. If the issue disappears in the Clean Boot environment, you can continue to narrow down which entry is causing the issue.
    Besides, uninstall it and re-download
    a fresh copy of FireFox to check the result. If the issue still exists, create a new user account to see if it occurs.
    If the issue persists, you can contact Mozilla Support directly and use Internet Explorer (IE) during the time.
    J
    Please Note: The third-party product discussed here is manufactured by a company that is independent of Microsoft. We make no warranty, implied or otherwise,
    regarding this product's performance or reliability.
    Regards,
    Linda

  • Crash signature "arena_dalloc | free | JSObject::finish(JSContext*)" not found when search mozilla suport. Firefox crashing every 5 mins or so.

    firefox crashes every five min or so. sometimes quicker sometimes will stay up all day but has crashed during the night with no activity (find it crashed in the morning).

  • Crash report JSObject::defaultValue(JSContext*, JSType, int*) firefox keeps crashing randomly

    firefox is crashing all of the time and randomly, not particularly when loading shutting down or certain web sites just random

    Hi
    I looked too quickly at the crash report. Usually the appearance of cookie references in the crash thread point to that area as being problematic. This is the first time I've seen a thread lined up this way. Wonder if this is something new with Safari 4?
    To elaborate a bit more with Bee's helpful suggestions:
    SIMBL is not a problem, per se, however PithHelmet is not Safari 4 compatible. To remove it, go to your Finder: HD>Library>Applications Support>SIMBL>Plugins folder. There, move PithHelmet to the trash.
    DuctTape is a framework installed as part of SIMBL.
    Go to HD>Library>Frameworks and move it to the trash
    SIMBL - HD>Library>InputManagers - move SIMBL to the trash, as there is no need for it.
    Restart Safari. If the above Plugins were the problem source, Safari ought to be stable.
    Next, as Bee mentioned, Flash is outdated:
    First, uninstall Flash.
    Next, install the latest version from here.
    After the install, go to your Applications>Utilities folder and open Disk Utility. When opened, highlight your HD, then in the First-Aid panel "repair permissions".
    Restart Safari

  • Why does my Safari, Chrome, and Firefox crash?

    Hi everyone,
    I have been searching through the forums trying to find a problem like this that has been solved but I've been without luck so I'll try posting instead.
    Sorry if I don't provide all the correct data, I'm trying to do this on my desktop because all my browsers are crashing far too often for me to finish a form on this website. I have a 2009 MacBook Pro 13" that has been updated to 10.8.2 Mountain Lion. For some reason, I keep getting unexpected crashes on Safari, Firefox, and Chrome. I have the information for one of the many crashes Safari has given me (as in every 5-10 minutes or so). I have cleared the cache, reset Safari, and uninstalled and reinstalled Firefox and Chrome to see if either was a problem. I removed any installed plug-ins on Safari, but even that didn't help. Here is the information from one of the crash reports. Hope you can figure it out, because I'm stuck and don't know what to do! Also, this crash report is from when I was attempting to sign in onto this website. I also get crashes on almost any website, watching videos, et cetera so I can't seem to discern any real pattern that is causing the crash. It simply always pops up as "Safari Web Content" has crashed or whatever.
    Thanks!
    Process:         WebProcess [6597]
    Path:            /System/Library/
    StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Contents/MacOS/WebProce ss
    Identifier:      com.apple.WebProcess
    Version:         8536 (8536.26.17)
    Build Info:      WebKit2-7536026017000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    User ID:         502
    Date/Time:       2013-01-11 04:44:02.507 +0200
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          139736 sec
    Crashes Since Last Report:           118
    Per-App Interval Since Last Report:  15037 sec
    Per-App Crashes Since Last Report:   40
    Anonymous UUID:                      2D554FA2-2FD6-938A-256E-B20AF0665EF1
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
         __TEXT                 0000000105db8000-0000000105db9000 [    4K] r-x/rwx SM=COW  /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcess
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                 000000000000000000 0 + 0
    1   com.apple.JavaScriptCore            0x00000001062ccea8 JSC::SlotVisitor::drain() + 312
    2   com.apple.JavaScriptCore            0x000000010627634c JSC::Heap::markRoots(bool) + 1452
    3   com.apple.JavaScriptCore            0x0000000106275a28 JSC::Heap::collect(JSC::Heap::SweepToggle) + 152
    4   com.apple.JavaScriptCore            0x000000010627485b JSC::DefaultGCActivityCallbackPlatformData::timerDidFire(__CFRunLoopTimer*, void*) + 315
    5   com.apple.CoreFoundation            0x00007fff9341dda4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    6   com.apple.CoreFoundation            0x00007fff9341d8bd __CFRunLoopDoTimer + 557
    7   com.apple.CoreFoundation            0x00007fff93403099 __CFRunLoopRun + 1513
    8   com.apple.CoreFoundation            0x00007fff934026b2 CFRunLoopRunSpecific + 290
    9   com.apple.HIToolbox                 0x00007fff8f7ea0a4 RunCurrentEventLoopInMode + 209
    10  com.apple.HIToolbox                 0x00007fff8f7e9e42 ReceiveNextEventCommon + 356
    11  com.apple.HIToolbox                 0x00007fff8f7e9cd3 BlockUntilNextEventMatchingListInMode + 62
    12  com.apple.AppKit                    0x00007fff91e2b613 _DPSNextEvent + 685
    13  com.apple.AppKit                    0x00007fff91e2aed2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    14  com.apple.AppKit                    0x00007fff91e22283 -[NSApplication run] + 517
    15  com.apple.WebCore                   0x0000000106f18def WebCore::RunLoop::run() + 63
    16  com.apple.WebKit2                   0x0000000105ef2c8a WebKit::WebProcessMain(WebKit::CommandLine const&) + 2586
    17  com.apple.WebKit2                   0x0000000105eba5bd WebKitMain + 285
    18  com.apple.WebProcess                0x0000000105db8e7b 0x105db8000 + 3707
    19  libdyld.dylib                       0x00007fff9831e7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib              0x00007fff9790cd16 kevent + 10
    1   libdispatch.dylib                   0x00007fff98fe9dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                   0x00007fff98fe99ee _dispatch_mgr_thread + 54
    Thread 2:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib              0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                   0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore            0x0000000106147f26 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore            0x0000000106369d0a JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore            0x000000010637f36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                   0x00007fff8d6aa742 _pthread_start + 327
    6   libsystem_c.dylib                   0x00007fff8d697181 thread_start + 13
    Thread 3:: JavaScriptCore::Marking
    0   com.apple.JavaScriptCore            0x00000001062a1152 JSC::JSObject::visitChildren(JSC::JSCell*, JSC::SlotVisitor&) + 322
    1   com.apple.JavaScriptCore            0x00000001062999db JSC::JSFunction::visitChildren(JSC::JSCell*, JSC::SlotVisitor&) + 27
    2   com.apple.JavaScriptCore            0x00000001062ccea8 JSC::SlotVisitor::drain() + 312
    3   com.apple.JavaScriptCore            0x00000001062cc776 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 294
    4   com.apple.JavaScriptCore            0x00000001062cc606 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    5   com.apple.JavaScriptCore            0x000000010637f36f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                   0x00007fff8d6aa742 _pthread_start + 327
    7   libsystem_c.dylib                   0x00007fff8d697181 thread_start + 13
    Thread 4:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib              0x00007fff9790a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib              0x00007fff97909c42 mach_msg + 70
    2   com.apple.CoreFoundation            0x00007fff933fd803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation            0x00007fff93402ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation            0x00007fff934026b2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                0x00007fff93d19586 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                0x00007fff93d77612 __NSThread__main__ + 1345
    7   libsystem_c.dylib                   0x00007fff8d6aa742 _pthread_start + 327
    8   libsystem_c.dylib                   0x00007fff8d697181 thread_start + 13
    Thread 5:: WebCore: Scrolling
    0   libsystem_kernel.dylib              0x00007fff9790a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib              0x00007fff97909c42 mach_msg + 70
    2   com.apple.CoreFoundation            0x00007fff933fd803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation            0x00007fff93402ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation            0x00007fff934026b2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation            0x00007fff93411371 CFRunLoopRun + 97
    6   com.apple.WebCore                   0x0000000106f2e291 WebCore::ScrollingThread::initializeRunLoop() + 273
    7   com.apple.JavaScriptCore            0x000000010637f36f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_c.dylib                   0x00007fff8d6aa742 _pthread_start + 327
    9   libsystem_c.dylib                   0x00007fff8d697181 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib              0x00007fff9790c322 __select + 10
    1   com.apple.CoreFoundation            0x00007fff934424e6 __CFSocketManager + 1302
    2   libsystem_c.dylib                   0x00007fff8d6aa742 _pthread_start + 327
    3   libsystem_c.dylib                   0x00007fff8d697181 thread_start + 13
    Thread 7:: WebCore: LocalStorage
    0   libsystem_kernel.dylib              0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                   0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore            0x0000000106147eed ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                   0x0000000106f53991 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                   0x00000001064a604a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore            0x000000010637f36f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                   0x00007fff8d6aa742 _pthread_start + 327
    7   libsystem_c.dylib                   0x00007fff8d697181 thread_start + 13
    Thread 8:: WebCore: LocalStorage
    0   libsystem_kernel.dylib              0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                   0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore            0x0000000106147eed ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                   0x0000000106f53991 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                   0x00000001064a604a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore            0x000000010637f36f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                   0x00007fff8d6aa742 _pthread_start + 327
    7   libsystem_c.dylib                   0x00007fff8d697181 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib              0x00007fff9790c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                   0x00007fff8d6aceec _pthread_workq_return + 25
    2   libsystem_c.dylib                   0x00007fff8d6accb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                   0x00007fff8d697171 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib              0x00007fff9790c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                   0x00007fff8d6aceec _pthread_workq_return + 25
    2   libsystem_c.dylib                   0x00007fff8d6accb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                   0x00007fff8d697171 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib              0x00007fff9790c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                   0x00007fff8d6aceec _pthread_workq_return + 25
    2   libsystem_c.dylib                   0x00007fff8d6accb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                   0x00007fff8d697171 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib              0x00007fff9790c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                   0x00007fff8d6aceec _pthread_workq_return + 25
    2   libsystem_c.dylib                   0x00007fff8d6accb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                   0x00007fff8d697171 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib              0x00007fff9790c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                   0x00007fff8d6aceec _pthread_workq_return + 25
    2   libsystem_c.dylib                   0x00007fff8d6accb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                   0x00007fff8d697171 start_wqthread + 13
    Thread 14:
    Thread 0 crashed with X86 Thread State (64-bit):
       rax: 0x00000001463e4ec0  rbx: 0x00000000ffffdf36  rcx: 0x000000014c704000  rdx: 0x0000000000000000
       rdi: 0x0000000155442a00  rsi: 0x0000000107e64e28  rbp: 0x00007fff59e45580  rsp: 0x00007fff59e45548
        r8: 0x0000000000000007   r9: 0x00007fff59e454c0  r10: 0x0000000153136c00  r11: 0x000000014cfdf860
       r12: 0x0000000107e64e28  r13: 0xffff000000000002  r14: 0x0000000107e64c40  r15: 0x00000001063e7a28
       rip: 0x0000000000000000  rfl: 0x0000000000010202  cr2: 0x0000000000000000
    Logical CPU: 1
    Binary Images:
            0x105db8000 -        0x105db8fff  com.apple.WebProcess (8536 - 8536.26.17) <E16DFC20-FF9E-3F21-946C-30170B247A86> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcess
            0x105dbe000 -        0x105dbefff  WebProcessShim.dylib (7536.26.17) <BF0CB1A0-C86D-31C3-99B7-1C2B50FB69EC> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcessShim.dylib
            0x105df1000 -        0x105fd8ff7  com.apple.WebKit2 (8536 - 8536.26.17) <83AB27D5-EF84-35E2-A4B7-78A4791771AF> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
            0x106141000 -        0x1063dbff7  com.apple.JavaScriptCore (8536 - 8536.26.15) <9FB8F262-C43B-3606-AF80-CAA7945DAE4D> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
            0x106487000 -        0x107440fff  com.apple.WebCore (8536 - 8536.26.15) <9D6C3EF1-FFC2-32FB-9953-BC76E3EAB5D8> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
            0x14a520000 -        0x14aa15fff  com.apple.Safari.framework (8536 - 8536.26.17) <A28655B2-8394-32D4-82C2-725FAD855E48> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
            0x14ad6a000 -        0x14aef4fff  com.apple.WebKit (8536 - 8536.26.17) <3D25C875-B5D1-390C-A449-C1D4FB7DECCB> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
            0x14b6eb000 -        0x14b701fff  com.apple.WebInspector (8536 - 8536.26.7) <695942A0-65F2-3E26-84D3-859D12938555> /System/Library/PrivateFrameworks/WebInspector.framework/Versions/A/WebInspecto r
            0x14d081000 -        0x14d08fff7  libGPUSupport.dylib (8.6.1) <C8A361A5-8A82-375D-B50E-E520662F76B1> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
            0x14d097000 -        0x14d0a0fe7  libcldcpuengine.dylib (2.1.19) <50800DA2-7233-32E5-9553-A02171B68399> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
            0x14d0a6000 -        0x14d0a9ff7  libCoreFSCache.dylib (24.4) <C375CAA0-F91F-3D9F-AF90-DB951BD86983> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
            0x14eaf8000 -        0x14eb0eff7  com.apple.webcontentfilter.framework (3.1 - 5) <D76F41C5-DAEF-3298-BFF7-B63A92B32ACA> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
            0x15ad90000 -        0x15af47fff  GLEngine (8.6.1) <94C4C4C0-E96C-30B2-8CD7-DE8D82CA74F1> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
            0x15af7e000 -        0x15b0c0fff  libGLProgrammability.dylib (8.6.1) <FC866EA6-6263-3F51-BF7C-EA1A9A4162B4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
            0x15b0f4000 -        0x15b121fff  GLRendererFloat (8.6.1) <B598274C-3C23-3EBB-A7C5-13C131FAC651> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
            0x200000000 -        0x200822ff7  com.apple.GeForceGLDriver (8.0.61 - 8.0.0) <CF32F783-46E3-3837-A993-01CB9C2BE6BC> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
         0x7fff659b8000 -     0x7fff659ec93f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
         0x7fff8c9a5000 -     0x7fff8c9a9fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
         0x7fff8c9aa000 -     0x7fff8c9cbfff  com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
         0x7fff8c9cc000 -     0x7fff8c9cefff  libCVMSPluginSupport.dylib (8.6.1) <7EFDA31E-E463-3897-A8DC-7FD266EB713E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
         0x7fff8c9cf000 -     0x7fff8ca17fff  com.apple.framework.CoreWiFi (1.0 - 100.10) <0E863B4A-1094-3F8D-BEDE-D99537E9C588> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
         0x7fff8ca18000 -     0x7fff8ca74fff  com.apple.QuickLookFramework (4.0 - 555.4) <B34DB61C-15F0-3CF8-98A4-152C2F54DF8D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
         0x7fff8cf6b000 -     0x7fff8cf95ff7  com.apple.CoreVideo (1.8 - 99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
         0x7fff8cfdd000 -     0x7fff8d121fef  com.apple.MediaControlSender (1.4.5 - 145.3) <3A308EA3-21F7-3213-9157-D3421EB43715> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
         0x7fff8d122000 -     0x7fff8d171ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
         0x7fff8d172000 -     0x7fff8d20cfff  com.apple.CoreSymbolication (3.0 - 87) <3D9CBE8D-F047-3DFA-B067-F9589E2AF8BA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
         0x7fff8d268000 -     0x7fff8d2b3fff  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <8370178E-438C-375C-AA41-A8DEE60B8636> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
         0x7fff8d2b4000 -     0x7fff8d2d6ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
         0x7fff8d2d7000 -     0x7fff8d2d9fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
         0x7fff8d2da000 -     0x7fff8d359ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
         0x7fff8d35a000 -     0x7fff8d3c7ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <142E19DD-1C8D-3D61-ABC8-83994A73279F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
         0x7fff8d483000 -     0x7fff8d4d4ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <E095637C-457F-3D8F-AE32-A032F9D5A46C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
         0x7fff8d4d5000 -     0x7fff8d5effff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
         0x7fff8d67e000 -     0x7fff8d695fff  com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
         0x7fff8d696000 -     0x7fff8d762fe7  libsystem_c.dylib (825.25) <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
         0x7fff8d763000 -     0x7fff8d7bcfff  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <2CC27836-1E1E-3633-B15C-A3BA1734D092> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
         0x7fff8d7c9000 -     0x7fff8d800ff7  libssl.0.9.8.dylib (47) <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
         0x7fff8d801000 -     0x7fff8d83dfff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
         0x7fff8d83e000 -     0x7fff8dc5bfff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
         0x7fff8dc61000 -     0x7fff8dcacff7  com.apple.CoreMedia (1.0 - 926.62) <CFBD094F-DA9C-3498-9D50-BC754B56F00A> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
         0x7fff8dcad000 -     0x7fff8dcb7fff  com.apple.DisplayServicesFW (2.6.1 - 353) <0505CB8A-47D9-3539-9A0D-24F09D99E9D8> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
         0x7fff8dcb8000 -     0x7fff8dd07ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
         0x7fff8dd2a000 -     0x7fff8e123ff7  com.apple.MediaToolbox (1.0 - 926.62) <83BBE53E-29FE-3874-9991-B6D009EADCC5> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
         0x7fff8e12e000 -     0x7fff8e230fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
         0x7fff8e25d000 -     0x7fff8e2b7fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
         0x7fff8e2b8000 -     0x7fff8e38bff7  com.apple.DiscRecording (7.0 - 7000.2.4) <E5F3F320-1049-32D8-8189-916EF5C40A1A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
         0x7fff8e38c000 -     0x7fff8e38efff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
         0x7fff8e38f000 -     0x7fff8e3f7fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
         0x7fff8e3f8000 -     0x7fff8e42afff  com.apple.framework.Admin (12.0 - 12.0) <5D6978C8-0B1B-3D0E-A122-C0ABD0AA8488> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
         0x7fff8e42b000 -     0x7fff8e42ffff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
         0x7fff8e430000 -     0x7fff8e532fff  libJP2.dylib (845) <405CAF25-0AA5-3C6B-A4A6-94471A1EDD2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
         0x7fff8e533000 -     0x7fff8e57dff7  libGLU.dylib (8.6.1) <DF45C1E3-3884-3991-B84F-F39B482E8BF8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
         0x7fff8e57e000 -     0x7fff8e975fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
         0x7fff8e976000 -     0x7fff8ea10fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
         0x7fff8ea11000 -     0x7fff8ea12ff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
         0x7fff8ea13000 -     0x7fff8ea16ff7  com.apple.LoginUICore (2.0 - 2.0) <965559B0-1F0E-3767-A16B-F91AABFA5275> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
         0x7fff8ea17000 -     0x7fff8ea1bfff  libCGXType.A.dylib (324.6) <2FC25246-A69F-3F81-9AC6-0A1753E1C6A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
         0x7fff8ea68000 -     0x7fff8ea9cfff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
         0x7fff8ea9d000 -     0x7fff8ebeefff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <833DA682-A3C1-39E7-AEC3-9EDC734DE2A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
         0x7fff8ebef000 -     0x7fff8ece0fff  com.apple.DiskImagesFramework (10.8 - 344) <B1B477F6-316D-32BD-8FCB-107F88649F69> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
         0x7fff8ece1000 -     0x7fff8ed19fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
         0x7fff8ed1a000 -     0x7fff8ed1afff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
         0x7fff8ed1b000 -     0x7fff8ed21fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
         0x7fff8ed22000 -     0x7fff8efe5ff7  com.apple.AddressBook.framework (7.1 - 1167) <92EF9CE4-A42B-3D30-8CA2-79C0A66BB4CE> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
         0x7fff8eff2000 -     0x7fff8f11bff7  com.apple.avfoundation (2.0 - 361.25) <1F5CACA6-9CF3-3FAB-BDE1-E6CC96A63FF7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
         0x7fff8f142000 -     0x7fff8f1e0ff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
         0x7fff8f1e1000 -     0x7fff8f2f992f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
         0x7fff8f33e000 -     0x7fff8f5c3ff7  com.apple.RawCamera.bundle (4.03 - 676) <21D098D4-35EC-3495-9227-2DA19B9BD640> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
         0x7fff8f5c4000 -     0x7fff8f5c7fff  libRadiance.dylib (845) <E8956A35-494E-3014-8B86-362D32576116> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
         0x7fff8f5f1000 -     0x7fff8f602ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
         0x7fff8f603000 -     0x7fff8f789fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
         0x7fff8f78a000 -     0x7fff8fabaff7  com.apple.HIToolbox (2.0 - 625) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
         0x7fff8fabb000 -     0x7fff8fabffff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
         0x7fff8fb02000 -     0x7fff8fb3ffe7  libGLImage.dylib (8.6.1) <7F31DD61-3110-3541-A9BB-035CD1262E50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
         0x7fff8fb40000 -     0x7fff8fb4bff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
         0x7fff8fb4c000 -     0x7fff8fbb4ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
         0x7fff8fbb5000 -     0x7fff8fbd0ff7  com.apple.frameworks.preferencepanes (15.0 - 15.0) <45E922F9-E5F5-3026-90BA-C1F5F8451C9B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
         0x7fff8fbd1000 -     0x7fff90561c67  com.apple.CoreGraphics (1.600.0 - 324.6) <DCC70C6E-AB6D-3457-A823-7569CB29B107> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
         0x7fff90562000 -     0x7fff905f3fff  com.apple.CorePDF (2.0 - 2) <EB5660B1-0D79-34F3-B242-B559AE0A5B4A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
         0x7fff90602000 -     0x7fff90618fff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
         0x7fff90619000 -     0x7fff9063eff7  libc++abi.dylib (24.4) <E7BD9363-1D25-3551-A68A-2E2FF6ABECD7> /usr/lib/libc++abi.dylib
         0x7fff9063f000 -     0x7fff90648fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
         0x7fff90649000 -     0x7fff9064dfff  libGIF.dylib (845) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
         0x7fff9064e000 -     0x7fff90691fff  com.apple.RemoteViewServices (2.0 - 80.5) <F3A897C9-A277-3B56-8FB3-2BC2C10C33BF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
         0x7fff90692000 -     0x7fff90719ff7  libCoreStorage.dylib (274.7) <8E13133C-1198-3555-9518-2BCC09C66C97> /usr/lib/libCoreStorage.dylib
         0x7fff9071a000 -     0x7fff90722ff7  libsystem_dnssd.dylib (379.32.1) <62AA0B84-188A-348B-8F9E-3E2DB08DB93C> /usr/lib/system/libsystem_dnssd.dylib
         0x7fff90723000 -     0x7fff908befef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
         0x7fff908bf000 -     0x7fff908e6fff  com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
         0x7fff918a1000 -     0x7fff918d7fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
         0x7fff918d8000 -     0x7fff918ffff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
         0x7fff91902000 -     0x7fff91905fff  libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
         0x7fff91906000 -     0x7fff91906fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
         0x7fff91b52000 -     0x7fff91b5dfff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
         0x7fff91b5e000 -     0x7fff91b60ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
         0x7fff91b61000 -     0x7fff91c56fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
         0x7fff91c57000 -     0x7fff91c80fff  libsandbox.1.dylib (220) <16C57341-F53E-3B9E-9DD7-247108522DD4> /usr/lib/libsandbox.1.dylib
         0x7fff91c81000 -     0x7fff91c8bfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
         0x7fff91c8c000 -     0x7fff91c90ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
         0x7fff91cd6000 -     0x7fff92903ff7  com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
         0x7fff92904000 -     0x7fff92906ff7  com.apple.EFILogin (2.0 - 2) <51A470D7-1F72-3369-AF0F-AD2340B42C12> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
         0x7fff92907000 -     0x7fff92916ff7  com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
         0x7fff92919000 -     0x7fff92940ff7  com.apple.speech.LatentSemanticMappingFramework (2.9.3 - 2.9.3) <CDB23C93-853B-3F18-985C-6D32D4704F26> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
         0x7fff92941000 -     0x7fff929aafff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
         0x7fff929ab000 -     0x7fff929c8fff  com.apple.openscripting (1.3.6 - 148.2) <33B87CFB-CACC-3EBC-893D-38AECB94FB8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
         0x7fff929c9000 -     0x7fff93171fff  com.apple.CoreAUC (6.16.00 - 6.16.00) <B0B4B5B8-6F8F-3221-9128-313E3B8C695D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
         0x7fff93172000 -     0x7fff933cdff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
         0x7fff933ce000 -     0x7fff935b7fff  com.apple.CoreFoundation (6.8 - 744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
         0x7fff935c0000 -     0x7fff935c6fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <F7DAF7CC-5893-3F06-9168-3B0192B66D15> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
         0x7fff935c7000 -     0x7fff935c9ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
         0x7fff935ca000 -     0x7fff935ceff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
         0x7fff935e4000 -     0x7fff93792fff  com.apple.QuartzCore (1.8 - 304.0) <897FAA5D-FF13-33FE-878B-B164D684F019> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
         0x7fff937ae000 -     0x7fff9380bfff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
         0x7fff9380c000 -     0x7fff93846fff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
         0x7fff93847000 -     0x7fff93855ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
         0x7fff93856000 -     0x7fff93ad6ff7  com.apple.AOSKit (1.05 - 151) <A34E8584-797C-318F-9E25-937A710C68AB> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
         0x7fff93ad7000 -     0x7fff93b64ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
         0x7fff93bdb000 -     0x7fff93be3fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
         0x7fff93c2c000 -     0x7fff93c4dff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
         0x7fff93c4e000 -     0x7fff93caaff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
         0x7fff93cab000 -     0x7fff93cb2fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
         0x7fff93cb3000 -     0x7fff93cb3fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
         0x7fff93cb4000 -     0x7fff93cb4fff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
         0x7fff93cb5000 -     0x7fff93cb5ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
         0x7fff93cb6000 -     0x7fff93ce1fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
         0x7fff93ce2000 -     0x7fff9403efff  com.apple.Foundation (6.8 - 945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
         0x7fff9403f000 -     0x7fff94040fff  libodfde.dylib (18) <015DD2A0-D59A-3547-909D-7C028A65C312> /usr/lib/libodfde.dylib
         0x7fff94041000 -     0x7fff94077fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
         0x7fff94078000 -     0x7fff9414aff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
         0x7fff9415a000 -     0x7fff94166ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <DA05EF06-8EBD-3759-B5D3-E6FC86C5D850> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
         0x7fff94167000 -     0x7fff94168ff7  libdnsinfo.dylib (453.18) <E7595861-ECF9-336E-9901-BED2620FAA80> /usr/lib/system/libdnsinfo.dylib
         0x7fff94169000 -     0x7fff94480ff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <DF7CABCA-F2CB-345B-8EFF-F0F4E937B7FF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
         0x7fff94481000 -     0x7fff94502fff  com.apple.Metadata (10.7.0 - 707.3) <A45D75C1-B311-39F0-AF4A-63FCCC098C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
         0x7fff94503000 -     0x7fff94503fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
         0x7fff9450d000 -     0x7fff9451afff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
         0x7fff9451b000 -     0x7fff9453aff7  com.apple.ChunkingLibrary (2.0 - 133.2) <D2A746DE-002A-3C6C-961E-BE94E71DB835> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
         0x7fff9453b000 -     0x7fff94541fff  libGFXShared.dylib (8.6.1) <CF55E720-1B9E-3E24-A1DA-7FA8B261CD8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
         0x7fff945f0000 -     0x7fff945f0fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
         0x7fff94652000 -     0x7fff94653ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
         0x7fff94654000 -     0x7fff9465ffff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
         0x7fff94660000 -     0x7fff946cdfff  com.apple.datadetectorscore (4.0 - 269.1) <B69645EB-C4BF-3D52-A49B-CB1A1A88512F> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
         0x7fff947e8000 -     0x7fff94816ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
         0x7fff949c9000 -     0x7fff94a03fff  com.apple.framework.internetaccounts (2.1 - 210) <0AB62FFA-42C8-3433-9C23-7D1AB411348F> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
         0x7fff94a04000 -     0x7fff94a0eff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
         0x7fff952c4000 -     0x7fff95334fff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
         0x7fff95335000 -     0x7fff95341fff  com.apple.CrashReporterSupport (10.8.2 - 415) <55783BF9-125E-3F9C-A412-6A095ECD9353> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
         0x7fff95342000 -     0x7fff9545bff7  com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
         0x7fff95710000 -     0x7fff95884fff  com.apple.CFNetwork (596.2.3 - 596.2.3) <6A16C2BD-1035-30F9-AE96-D9E3BB54A976> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
         0x7fff95885000 -     0x7fff958b6ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
         0x7fff958b7000 -     0x7fff958b8fff  libquit.dylib (130) <DC77F406-C5D4-301B-A96D-9A3DCA263756> /usr/lib/libquit.dylib
         0x7fff958f4000 -     0x7fff95920ff7  libRIP.A.dylib (324.6) <5A7EB5C2-BA60-36D7-BF41-9853F37837AA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
         0x7fff9594a000 -     0x7fff95bf8fff  com.apple.imageKit (2.2 - 667) <66A64289-6259-335E-9D8C-E3E02ECE7837> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
         0x7fff95bf9000 -     0x7fff95c4fff7  com.apple.opencl (2.1.20 - 2.1.20) <AF142CA4-EA1D-31B0-A48F-AA2B75D4309E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
         0x7fff95c50000 -     0x7fff95c51fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
         0x7fff95c52000 -     0x7fff95c92fff  com.apple.MediaKit (13 - 659) <0C56D7FF-0430-3199-9952-CF8577519449> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
         0x7fff95c93000 -     0x7fff95d39ff7  com.apple.CoreServices.OSServices (557.4 - 557.4) <841878A8-6F3E-300D-8F01-444B3CC1F41D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
         0x7fff95d5d000 -     0x7fff95e0efff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
         0x7fff96053000 -     0x7fff960a9fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
         0x7fff960aa000 -     0x7fff960acfff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
         0x7fff960fd000 -     0x7fff96102fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
         0x7fff96103000 -     0x7fff96117fff  libGL.dylib (8.6.1) <2E00615F-97F5-34EB-BE07-75A24F3C18D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
         0x7fff96118000 -     0x7fff9612ffff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
         0x7fff96130000 -     0x7fff96185ff7  libTIFF.dylib (845) <ADCB4683-69EB-318B-8BE7-5FDF38BCADAF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
         0x7fff96186000 -     0x7fff961cafff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
         0x7fff961cb000 -     0x7fff961dffff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
         0x7fff961e0000 -     0x7fff961e0fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
         0x7fff9656d000 -     0x7fff965a2ff7  libTrueTypeScaler.dylib (84.5) <DF2335F3-07BE-30BA-B73C-3204E95B42C3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
         0x7fff965a3000 -     0x7fff965a3fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
         0x7fff96847000 -     0x7fff96855fff  com.apple.Librarian (1.1 - 1) <1635162F-239A-341E-83C7-710C55E254AF> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
         0x7fff96856000 -     0x7fff96961fff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
         0x7fff96962000 -     0x7fff96975ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
         0x7fff96ad6000 -     0x7fff96ae8ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
         0x7fff96ae9000 -     0x7fff96bc3ff7  com.apple.backup.framework (1.4.1 - 1.4.1) <A3CFCA9E-717C-302D-821B-16FD35E6673F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
         0x7fff96bc7000 -     0x7fff96bc9fff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
         0x7fff96bd5000 -     0x7fff96c2cff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
         0x7fff96c2d000 -     0x7fff96c2dfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
         0x7fff96c2e000 -     0x7fff96c5cfff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
         0x7fff96d05000 -     0x7fff96d1afff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
         0x7fff96d7b000 -     0x7fff96fb0ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
         0x7fff97051000 -     0x7fff970a8ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <B75949DD-AC27-3848-8221-00D70D14C7E0> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
         0x7fff970a9000 -     0x7fff970d5fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
         0x7fff97146000 -     0x7fff97147fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
         0x7fff971c1000 -     0x7fff971ccff7  com.apple.aps.framework (3.0 - 3.0) <11E1A5D1-F5E5-3228-8B6F-77EB36B5C248> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
         0x7fff971d1000 -     0x7fff97296ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
         0x7fff97297000 -     0x7fff972daff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
         0x7fff97435000 -     0x7fff97533fff  com.apple.QuickLookUIFramework (4.0 - 555.4) <58EC2F30-0959-3586-A1DD-BDCAF589D2D3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
         0x7fff97579000 -     0x7fff975c1fff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
         0x7fff975cf000 -     0x7fff976ccfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
         0x7fff976cd000 -     0x7fff976d9fff  libCSync.A.dylib (324.6) <2033247A-CABC-3E20-8498-7367A8F44A08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
         0x7fff976da000 -     0x7fff9784bff7  com.apple.QTKit (7.7.1 - 2599.13) <5B24A892-ED69-3C01-8B00-DF3AD81A20D4> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
         0x7fff9784c000 -     0x7fff9786eff7  libxpc.dylib (140.41) <FAC04D8B-680E-325F-8F0C-DD69859D0E01> /usr/lib/system/libxpc.dylib
         0x7fff978fa000 -     0x7fff97915ff7  libsystem_kernel.dylib (2050.18.24) <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
         0x7fff9792a000 -     0x7fff97949ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
         0x7fff9794a000 -     0x7fff97985fff  com.apple.LDAPFramework (2.4.28 - 194.5) <0190B746-F684-3F43-B4D0-148EFE386CA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
         0x7fff97986000 -     0x7fff97986fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
         0x7fff97987000 -     0x7fff979a1fff  com.apple.CoreMediaAuthoring (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
         0x7fff979a2000 -     0x7fff979b1ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
         0x7fff979b2000 -     0x7fff979b3fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
         0x7fff979b4000 -     0x7fff97a01fff  com.apple.CoreMediaIO (301.0 - 4147) <3B748499-C173-357B-976C-9FF257C5171E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
         0x7fff97a02000 -     0x7fff97abfff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
         0x7fff97ac0000 -     0x7fff97b1dff7  com.apple.AE (645.3 - 645.3) <FF867ACA-8628-3E5A-8FA0-AF429B42C5D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
         0x7fff97b1e000 -     0x7fff97b34fff  com.apple.MultitouchSupport.framework (235.28 - 235.28) <BD78B16E-9B5A-3E07-93B4-13AD1A538CAC> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
         0x7fff97b35000 -     0x7fff97b3cfff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
         0x7fff97b3d000 -     0x7fff9827fff7  libclh.dylib (4.0.3 - 4.0.3) <16FC7127-61C7-3F3A-870E-16CD38E5BB37> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
         0x7fff982be000 -     0x7fff982befff  libOpenScriptingUtil.dylib (148.2) <B8061D13-C1B2-38D5-A723-9A98D64E67AC> /usr/lib/libOpenScriptingUtil.dylib
         0x7fff982bf000 -     0x7fff9831bfff  com.apple.corelocation (1.0 - 1239.39) <88EFC8F1-0A91-3EB6-A1F6-76294541D85D> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
         0x7fff9831c000 -     0x7fff9831fff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
         0x7fff98320000 -     0x7fff98520fff  libicucore.A.dylib (491.11.1) <CC318A27-878A-38CE-9292-1B98353FA9C7> /usr/lib/libicucore.A.dylib
         0x7fff98539000 -     0x7fff9853cfff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
         0x7fff9853d000 -     0x7fff9855dfff  libPng.dylib (845) <C3CDD2B4-3CB0-3F6D-8411-DAAF267E952B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
         0x7fff9855e000 -     0x7fff98571ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
         0x7fff985c3000 -     0x7fff986e3fff  com.apple.desktopservices (1.7.2 - 1.7.2) <CDE8C2C2-C505-31B0-8C61-E40E4EA364A5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
         0x7fff986e4000 -     0x7fff9870cfff  libJPEG.dylib (845) <A32618D7-FB91-3EE2-A105-5407B2F3F8D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
         0x7fff9870d000 -     0x7fff98712fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
         0x7fff98714000 -     0x7fff98b50fff  com.apple.VideoToolbox (1.0 - 926.62) <7D749558-08B6-3F86-A20E-05ECDACE6F17> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
         0x7fff98b51000 -     0x7fff98b5efff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
         0x7fff98b5f000 -     0x7fff98b65ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
         0x7fff98b66000 -     0x7fff98b70fff  libcsfde.dylib (274.7) <77562CC6-3D42-34BF-BAAB-660140479D55> /usr/lib/libcsfde.dylib
         0x7fff98b71000 -     0x7fff98b72ff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
         0x7fff98e3f000 -     0x7fff98e42fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
         0x7fff98f5d000 -     0x7fff98fa9ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
         0x7fff98fb6000 -     0x7fff98fbafff  com.apple.IOSurface (86.0.3 - 86.0.3) <C121DE83-ED12-3DC1-BDB3-4FCB29AB0571> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
         0x7fff98fbb000 -     0x7fff98fc6ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
         0x7fff98fc7000 -     0x7fff98fd5fff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
         0x7fff98fd6000 -     0x7fff98fe4ff7  libkxld.dylib (2050.18.24) <7027CE49-007D-3553-8FFA-3E3B428B2316> /usr/lib/system/libkxld.dylib
         0x7fff98fe5000 -     0x7fff98ffaff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
         0x7fff98ffb000 -     0x7fff99026fff  com.apple.framework.Apple80211 (8.0.1 - 801.17) <05786C8E-8C6F-31AF-80B5-9C98175757B4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
         0x7fff990b7000 -     0x7fff99137ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
         0x7fff99138000 -     0x7fff991d5ff7  com.apple.PDFKit (2.7.2 - 2.7.2) <DE5BE2EF-2570-3792-B1C3-AAD45765F533> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
         0x7fff991d6000 -     0x7fff99215ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
         0x7fff99216000 -     0x7fff994bafff  com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
         0x7fff994bb000 -     0x7fff994c8ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
         0x7fff994c9000 -     0x7fff995c6ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
         0x7fff995c7000 -     0x7fff99897fff  com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
         0x7fff99898000 -     0x7fff9989ffff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
         0x7fff998a0000 -     0x7fff998a5fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
         0x7fff998a6000 -     0x7fff99928fff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    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: 4536
         thread_create: 0
         thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=248.4M resident=132.0M(53%) swapped_out_or_unallocated=116.4M(47%)
    Writable regions: Total=1.4G written=236.8M(16%) resident=359.7M(24%) swapped_out=0K(0%) unallocated=1.1G(76%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG image                              264K
    CG raster data                       3648K
    CG shared images                     1184K
    CoreAnimation                        25.9M
    CoreServices                         1056K
    IOKit                                94.2M
    JS JIT generated code               256.0M
    JS JIT generated code (reserved)    768.0M        reserved VM address space (unallocated)
    JS VM register file                  4096K
    JS garbage collector  

    Hi again,
    Sorry for the delay, I wanted to make sure I did the testing properly.
    So when I logged into the Guest account (Step 1) I did get another crash. When I was in safe mode, I stayed on Safari and actively used it for around an hour and a half without any crashes so I think it was fine in safe mode, but given that I can't seem to actively reproduce the error I'm not sure if it was a fix. When I logged back onto my account after safe mode, I got a crash in Safari again (Step 2). The first crash report is of the Guest account, and the second crash report is after I rebooted from Safe Mode. I will title them and put space in accordingly to differentiate them.
    Thanks!
    Guest Login Test (Step 1)
    Process:         WebProcess [6835]
    Path:            /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcess
    Identifier:      com.apple.WebProcess
    Version:         8536 (8536.26.17)
    Build Info:      WebKit2-7536026017000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    User ID:         201
    Date/Time:       2013-01-11 12:12:15.348 +0200
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          852 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  292 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      2D554FA2-2FD6-938A-256E-B20AF0665EF1
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0xffffffffffffffc0
    VM Regions Near 0xffffffffffffffc0:
    --> shared memory          00007fffffff9000-00007fffffffa000 [    4K] r-x/r-x SM=SHM 
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                     0x000000011066f508 0 + 4570150152
    1   com.apple.JavaScriptCore                0x000000010e889ec0 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 912
    2   com.apple.JavaScriptCore                0x000000010e889b24 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 52
    3   com.apple.JavaScriptCore                0x000000010e9bf3e0 JSC::boundFunctionCall(JSC::ExecState*) + 400
    4   ???                                     0x00000001105bf265 0 + 4569428581
    5   com.apple.JavaScriptCore                0x000000010e889ec0 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 912
    6   com.apple.JavaScriptCore                0x000000010e889b24 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 52
    7   com.apple.WebCore                       0x000000010ec6d172 WebCore::JSEventListener::handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event*) + 898
    8   com.apple.WebCore                       0x000000010ec6cc94 WebCore::EventTarget::fireEventListeners(WebCore::Event*, WebCore::EventTargetData*, ***::Vector<WebCore::RegisteredEventListener, 1ul>&) + 212
    9   com.apple.WebCore                       0x000000010ebed305 WebCore::EventTarget::fireEventListeners(WebCore::Event*) + 69
    10  com.apple.WebCore                       0x000000010ebed3da WebCore::Node::handleLocalEvents(WebCore::Event*) + 170
    11  com.apple.WebCore                       0x000000010ebecb35 WebCore::EventDispatcher::dispatchEvent(***::PassRefPtr<WebCore::Event>) + 837
    12  com.apple.WebCore                       0x000000010ebec7b5 WebCore::EventDispatchMediator::dispatchEvent(WebCore::EventDispatcher*) const + 37
    13  com.apple.WebCore                       0x000000010f2a0edb WebCore::EventDispatcher::dispatchEvent(WebCore::Node*, ***::PassRefPtr<WebCore::EventDispatchMediator>) + 139
    14  com.apple.WebCore                       0x000000010ebec707 WebCore::Node::dispatchEvent(***::PassRefPtr<WebCore::Event>) + 55
    15  com.apple.WebCore                       0x000000010f3279c6 WebCore::HTMLMediaElement::dispatchEvent(***::PassRefPtr<WebCore::Event>) + 166
    16  com.apple.WebCore                       0x000000010f2de29a WebCore::GenericEventQueue::timerFired(WebCore::Timer<WebCore::GenericEventQueu e>*) + 122
    17  com.apple.WebCore                       0x000000010ebcfef4 WebCore::ThreadTimers::sharedTimerFiredInternal() + 148
    18  com.apple.WebCore                       0x000000010f670d13 WebCore::timerFired(__CFRunLoopTimer*, void*) + 51
    19  com.apple.CoreFoundation                0x00007fff9341dda4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    20  com.apple.CoreFoundation                0x00007fff9341d8bd __CFRunLoopDoTimer + 557
    21  com.apple.CoreFoundation                0x00007fff93403099 __CFRunLoopRun + 1513
    22  com.apple.CoreFoundation                0x00007fff934026b2 CFRunLoopRunSpecific + 290
    23  com.apple.HIToolbox                     0x00007fff8f7ea0a4 RunCurrentEventLoopInMode + 209
    24  com.apple.HIToolbox                     0x00007fff8f7e9e42 ReceiveNextEventCommon + 356
    25  com.apple.HIToolbox                     0x00007fff8f7e9cd3 BlockUntilNextEventMatchingListInMode + 62
    26  com.apple.AppKit                        0x00007fff91e2b613 _DPSNextEvent + 685
    27  com.apple.AppKit                        0x00007fff91e2aed2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    28  com.apple.AppKit                        0x00007fff91e22283 -[NSApplication run] + 517
    29  com.apple.WebCore                       0x000000010f644def WebCore::RunLoop::run() + 63
    30  com.apple.WebKit2                       0x000000010e61ec8a WebKit::WebProcessMain(WebKit::CommandLine const&) + 2586
    31  com.apple.WebKit2                       0x000000010e5e65bd WebKitMain + 285
    32  com.apple.WebProcess                    0x000000010e4e4e7b 0x10e4e4000 + 3707
    33  libdyld.dylib                           0x00007fff9831e7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff9790cd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff98fe9dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff98fe99ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff9790a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97909c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff933fd803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff93402ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff934026b2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff93d19586 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff93d77612 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 3:: WebCore: Scrolling
    0   libsystem_kernel.dylib                  0x00007fff9790a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97909c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff933fd803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff93402ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff934026b2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff93411371 CFRunLoopRun + 97
    6   com.apple.WebCore                       0x000000010f65a291 WebCore::ScrollingThread::initializeRunLoop() + 273
    7   com.apple.JavaScriptCore                0x000000010eaab36f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff9790c322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff934424e6 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 5:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x000000010e873f26 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x000000010ea95d0a JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x000000010eaab36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 6:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x000000010e9f8724 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x000000010e9f8606 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000010eaab36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 7:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x000000010e873eed ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                       0x000000010f67f991 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                       0x000000010ebd204a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore                0x000000010eaab36f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 8:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x000000010e873eed ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                       0x000000010f67f991 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                       0x000000010ebd204a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore                0x000000010eaab36f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 9:: QTKit: listenOnDelegatePort
    0   libsystem_kernel.dylib                  0x00007fff9790a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97909c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff933fd803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff93402ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff934026b2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff93411371 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff976ee496 listenOnDelegatePort + 403
    7   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 10:: QTKit: listenOnNotificationPort
    0   libsystem_kernel.dylib                  0x00007fff9790a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97909c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff933fd803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff93402ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff934026b2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff93411371 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff976ee931 listenOnNotificationPort + 371
    7   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 11:: com.apple.coremedia.networkbuffering
    0   libsystem_kernel.dylib                  0x00007fff9790a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97909c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff933fd803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff93402ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff934026b2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff93411371 CFRunLoopRun + 97
    6   com.apple.CoreMedia                     0x00007fff8dc7f980 FigThreadGlobalNetworkBufferingRunloop + 21
    7   com.apple.CoreMedia                     0x00007fff8dc814c9 figThreadMain + 382
    8   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 12:: com.apple.coremedia.asyncio
    0   libsystem_kernel.dylib                  0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8dc80ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8dd44c21 0x7fff8dd2a000 + 109601
    4   com.apple.CoreMedia                     0x00007fff8dc814c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 13:: com.apple.coremedia.player.async
    0   libsystem_kernel.dylib                  0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8dc80ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8dd8422f 0x7fff8dd2a000 + 369199
    4   com.apple.CoreMedia                     0x00007fff8dc814c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 14:: AQClient
    0   libsystem_kernel.dylib                  0x00007fff9790a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97909c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff933fd803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff93402ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff934026b2 CFRunLoopRunSpecific + 290
    5   com.apple.audio.toolbox.AudioToolbox          0x00007fff8eaa4c9c GenericRunLoopThread::Entry(void*) + 204
    6   com.apple.audio.toolbox.AudioToolbox          0x00007fff8eaa4b53 CAPThread::Entry(CAPThread*) + 175
    7   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 15:: com.apple.coremedia.audioqueue.source
    0   libsystem_kernel.dylib                  0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8dc80ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8dd5c15a 0x7fff8dd2a000 + 205146
    4   com.apple.CoreMedia                     0x00007fff8dc814c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 16:: com.apple.coremedia.imagequeue.coreanimation
    0   libsystem_kernel.dylib                  0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d6aefc3 _pthread_cond_wait + 927
    2   com.apple.CoreMedia                     0x00007fff8dc80fa5 FigSemaphoreWaitRelative + 190
    3   com.apple.MediaToolbox                  0x00007fff8de24294 0x7fff8dd2a000 + 1024660
    4   com.apple.CoreMedia                     0x00007fff8dc814c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 17:: com.apple.coremedia.videomediaconverter
    0   libsystem_kernel.dylib                  0x00007fff9790c386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8d734800 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff8d734717 usleep + 54
    3   com.apple.AppleGVAFramework             0x00000001675188b2 0x1674da000 + 256178
    4   com.apple.VideoToolbox                  0x00007fff9878b94c 0x7fff98714000 + 489804
    5   com.apple.VideoToolbox                  0x00007fff9871ca8c 0x7fff98714000 + 35468
    6   com.apple.VideoToolbox                  0x00007fff9871c82f VTDecompressionSessionDecodeFrame + 430
    7   com.apple.MediaToolbox                  0x00007fff8dd5d7c8 0x7fff8dd2a000 + 210888
    8   com.apple.MediaToolbox                  0x00007fff8de23b32 0x7fff8dd2a000 + 1022770
    9   com.apple.CoreMedia                     0x00007fff8dc814c9 figThreadMain + 382
    10  libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    11  libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff9790c386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8d734800 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff8d734717 usleep + 54
    3   com.apple.GeForceVADriver               0x00000001677be532 KernelConnection::waitForStamp(unsigned int, unsigned int) const + 86
    4   com.apple.GeForceVADriver               0x00000001677be918 ChannelTimeStamp::wait(unsigned int) const + 30
    5   com.apple.GeForceVADriver               0x00000001677d9c53 nvAVDQueryCommandStatus + 439
    6   com.apple.AppleGVAFramework             0x000000016750e4de 0x1674da000 + 214238
    7   com.apple.AppleGVAFramework             0x000000016750e47d 0x1674da000 + 214141
    8   com.apple.AppleGVAFramework             0x000000016750e333 0x1674da000 + 213811
    9   com.apple.AppleGVAFramework             0x000000016750e28d 0x1674da000 + 213645
    10  com.apple.AppleGVAFramework             0x000000016750e9dc 0x1674da000 + 215516
    11  libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    12  libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 19:: com.apple.coremedia.audiomentor
    0   libsystem_kernel.dylib                  0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8dc80ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8dda4b89 0x7fff8dd2a000 + 502665
    4   com.apple.CoreMedia                     0x00007fff8dc814c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 20:: com.apple.coremedia.videomentor
    0   libsystem_kernel.dylib                  0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8dc80ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8ddb1c27 0x7fff8dd2a000 + 556071
    4   com.apple.MediaToolbox                  0x00007fff8ddb0fd1 0x7fff8dd2a000 + 552913
    5   com.apple.MediaToolbox                  0x00007fff8ddac5ca 0x7fff8dd2a000 + 533962
    6   com.apple.CoreMedia                     0x00007fff8dc814c9 figThreadMain + 382
    7   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff9790c0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d6aef89 _pthread_cond_wait + 869
    2   com.apple.audio.toolbox.AudioToolbox          0x00007fff8eabd294 CAGuard::Wait() + 90
    3   com.apple.audio.toolbox.AudioToolbox          0x00007fff8eabb2f6 AQConverterManager::AQConverterThread::Run() + 294
    4   com.apple.audio.toolbox.AudioToolbox          0x00007fff8eabb162 AQConverterManager::AQConverterThread::ConverterThreadEntry(void*) + 22
    5   com.apple.audio.toolbox.AudioToolbox          0x00007fff8eaa4b53 CAPThread::Entry(CAPThread*) + 175
    6   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 22:: Dispatch queue: com.apple.coremedia.videolayer.notificationqueue
    0   libsystem_kernel.dylib                  0x00007fff9790a6c2 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff98febc32 _dispatch_thread_semaphore_wait + 16
    2   libdispatch.dylib                       0x00007fff98feba92 _dispatch_barrier_sync_f_slow + 188
    3   com.apple.MediaToolbox                  0x00007fff8deb493c 0x7fff8dd2a000 + 1616188
    4   libsystem_blocks.dylib                  0x00007fff979b36a3 _Block_release + 202
    5   libdispatch.dylib                       0x00007fff98fe70b6 _dispatch_client_callout + 8
    6   libdispatch.dylib                       0x00007fff98fe847f _dispatch_queue_drain + 235
    7   libdispatch.dylib                       0x00007fff98fe82f1 _dispatch_queue_invoke + 52
    8   libdispatch.dylib                       0x00007fff98fe81c3 _dispatch_worker_thread2 + 249
    9   libsystem_c.dylib                       0x00007fff8d6accab _pthread_wqthread + 404
    10  libsystem_c.dylib                       0x00007fff8d697171 start_wqthread + 13
    Thread 23:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x00007fff9790a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97909c42 mach_msg + 70
    2   com.apple.audio.CoreAudio               0x00007fff937db17a HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio               0x00007fff937db108 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio               0x00007fff937d98db HALC_ProxyIOContext::IOWorkLoop() + 1209
    5   com.apple.audio.CoreAudio               0x00007fff937d9391 HALC_ProxyIOContext::IOThreadEntry(void*) + 83
    6   com.apple.audio.CoreAudio               0x00007fff937d924b HALB_IOThread::Entry(void*) + 75
    7   libsystem_c.dylib                       0x00007fff8d6aa742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8d697181 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff9790c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6aceec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6accb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d697171 start_wqthread + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff9790c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d6aceec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d6accb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d697171 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000156b06500  rbx: 0x0000000156b48020  rcx: 0x0000000000000005  rdx: 0x0000000156b065a0
      rdi: 0x00000001611e5038  rsi: 0x000000000000000a  rbp: 0x00007fff51719b90  rsp: 0x00007fff51719af0
       r8: 0xffffffff00000000   r9: 0x000000000000000f  r10: 0x0000000164f33e80  r11: 0xffffffffffffffff
      r12: 0x00000000000001fc  r13: 0x0000000154670148  r14: 0xffff000000000000  r15: 0xffff000000000002
      rip: 0x000000011066f508  rfl: 0x0000000000010246  cr2: 0xffffffffffffffc0
    Logical CPU: 1
    Binary Images:
           0x10e4e4000 -        0x10e4e4fff  com.apple.WebProcess (8536 - 8536.26.17) <E16DFC20-FF9E-3F21-946C-30170B247A86> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcess
           0x10e4e9000 -        0x10e4e9fff  WebProcessShim.dylib (7536.26.17) <BF0CB1A0-C86D-31C3-99B7-1C2B50FB69EC> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcessShim.dylib
           0x10e51d000 -        0x10e704ff7  com.apple.WebKit2 (8536 - 8536.26.17) <83AB27D5-EF84-35E2-A4B7-78A4791771AF> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
           0x10e86d000 -        0x10eb07ff7  com.apple.JavaScriptCore (8536 - 8536.26.15) <9FB8F262-C43B-3606-AF80-CAA7945DAE4D> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
           0x10ebb3000 -        0x10fb6cfff  com.apple.WebCore (8536 - 8536.26.15) <9D6C3EF1-FFC2-32FB-9953-BC76E3EAB5D8> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
           0x152d44000 -        0x153239fff  com.apple.Safari.framework (8536 - 8536.26.17) <A28655B2-8394-32D4-82C2-725FAD855E48> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
           0x15358e000 -        0x153718fff  com.apple.WebKit (8536 - 8536.26.17) <3D25C875-B5D1-390C-A449-C1D4FB7DECCB> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
           0x15388d000 -        0x1538a3fff  com.apple.WebInspector (8536 - 8536.26.7) <695942A0-65F2-3E26-84D3-859D12938555> /System/Library/PrivateFrameworks/WebInspector.framework/Versions/A/WebInspecto r
           0x1557d2000 -        0x155989fff  GLEngine (8.6.1) <94C4C4C0-E96C-30B2-8CD7-DE8D82CA74F1> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x1559c0000 -        0x155b02fff  libGLProgramm

  • My Safari Crashes even before loading. Im having somewhat similar problems with firefox!

    My Safari Crashes even before loading. Im having somewhat similar problems with firefox!
    Please help!!
    This is the error message that safari shows me:
    Process:         WebProcess [1123]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Identifier:      com.apple.WebProcess
    Version:         8536 (8536.30.1)
    Build Info:      WebKit2-7536030001000000~9
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    User ID:         501
    Date/Time:       2013-07-03 21:38:16.680 +0530
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          61924 sec
    Crashes Since Last Report:           16808
    Per-App Interval Since Last Report:  266139 sec
    Per-App Crashes Since Last Report:   28
    Anonymous UUID:                      E12FA0FD-09AA-06A5-CD87-62E3F11BE7E4
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.VideoToolbox                  0x00007fff8d92b932 DYLD-STUB$$CFPreferencesCopyValue + 0
    1   com.apple.VideoToolbox                  0x00007fff8d56efe8 VTSelectAndCreateVideoDecoderInstance + 44
    2   com.apple.MediaToolbox                  0x00007fff8dd96a40 FigMediaValidatorValidateRFC4281ExtendedMIMEType + 3281
    3   com.apple.avfoundation                  0x00007fff8d4242f2 +[AVURLAsset isPlayableExtendedMIMEType:] + 71
    4   com.apple.WebCore                       0x00007fff8e11aa85 WebCore::MediaPlayerPrivateAVFoundationObjC::supportsType(***::String const&, ***::String const&) + 261
    5   com.apple.WebCore                       0x00007fff8e980751 WebCore::bestMediaEngineForTypeAndCodecs(***::String const&, ***::String const&, ***::String const&, WebCore::MediaPlayerFactory*) + 369
    6   com.apple.WebCore                       0x00007fff8e980967 WebCore::MediaPlayer::supportsType(WebCore::ContentType const&, ***::String const&, WebCore::MediaPlayerSupportsTypeClient const*) + 295
    7   com.apple.WebCore                       0x00007fff8e728386 WebCore::HTMLMediaElement::canPlayType(***::String const&, ***::String const&) const + 54
    8   com.apple.WebCore                       0x00007fff8e180be5 WebCore::jsHTMLMediaElementPrototypeFunctionCanPlayType(JSC::ExecState*) + 309
    9   ???                                     0x00004012d7601265 0 + 70449666986597
    10  com.apple.JavaScriptCore                0x00007fff91cc88d0 JSC::Interpreter::execute(JSC::ProgramExecutable*, JSC::ExecState*, JSC::ScopeChainNode*, JSC::JSObject*) + 3104
    11  com.apple.JavaScriptCore                0x00007fff91d807f3 JSC::evaluate(JSC::ExecState*, JSC::ScopeChainNode*, JSC::SourceCode const&, JSC::JSValue, JSC::JSValue*) + 339
    12  com.apple.WebCore                       0x00007fff8e03c063 WebCore::ScriptController::evaluateInWorld(WebCore::ScriptSourceCode const&, WebCore::DOMWrapperWorld*) + 467
    13  com.apple.WebCore                       0x00007fff8e03bc79 WebCore::ScriptController::evaluate(WebCore::ScriptSourceCode const&) + 41
    14  com.apple.WebCore                       0x00007fff8e05ed8b WebCore::ScriptElement::executeScript(WebCore::ScriptSourceCode const&) + 155
    15  com.apple.WebCore                       0x00007fff8e093195 WebCore::HTMLScriptRunner::executePendingScriptAndDispatchEvent(WebCore::Pendin gScript&) + 213
    16  com.apple.WebCore                       0x00007fff8e0930b0 WebCore::HTMLScriptRunner::executeParsingBlockingScript() + 208
    17  com.apple.WebCore                       0x00007fff8e7373b8 WebCore::HTMLScriptRunner::executeParsingBlockingScripts() + 24
    18  com.apple.WebCore                       0x00007fff8e736f34 WebCore::HTMLScriptRunner::execute(***::PassRefPtr<WebCore::Element>, ***::TextPosition const&) + 100
    19  com.apple.WebCore                       0x00007fff8e05e2f4 WebCore::HTMLDocumentParser::runScriptsForPausedTreeBuilder() + 84
    20  com.apple.WebCore                       0x00007fff8dff90f8 WebCore::HTMLDocumentParser::canTakeNextToken(WebCore::HTMLDocumentParser::Sync hronousMode, WebCore::PumpSession&) + 88
    21  com.apple.WebCore                       0x00007fff8dff8f1c WebCore::HTMLDocumentParser::pumpTokenizer(WebCore::HTMLDocumentParser::Synchro nousMode) + 268
    22  com.apple.WebCore                       0x00007fff8e70e360 WebCore::HTMLDocumentParser::resumeParsingAfterScriptExecution() + 112
    23  com.apple.WebCore                       0x00007fff8e094682 WebCore::HTMLDocumentParser::notifyFinished(WebCore::CachedResource*) + 114
    24  com.apple.WebCore                       0x00007fff8e09456d WebCore::CachedResource::checkNotify() + 93
    25  com.apple.WebCore                       0x00007fff8e091cbf WebCore::SubresourceLoader::didFinishLoading(double) + 143
    26  com.apple.Foundation                    0x00007fff94f4cd88 __65-[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:]_block_invoke_0 + 28
    27  com.apple.Foundation                    0x00007fff94f4cccc -[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:] + 227
    28  com.apple.Foundation                    0x00007fff94f4cbc8 -[NSURLConnectionInternal _withActiveConnectionAndDelegate:] + 63
    29  com.apple.CFNetwork                     0x00007fff97b79091 ___delegate_didFinishLoading_block_invoke_0 + 40
    30  com.apple.CFNetwork                     0x00007fff97b6b54a ___withDelegateAsync_block_invoke_0 + 90
    31  com.apple.CFNetwork                     0x00007fff97bfbf3a __block_global_1 + 28
    32  com.apple.CoreFoundation                0x00007fff94d75154 CFArrayApplyFunction + 68
    33  com.apple.CFNetwork                     0x00007fff97b5c2b4 RunloopBlockContext::perform() + 124
    34  com.apple.CFNetwork                     0x00007fff97b5c18b MultiplexerSource::perform() + 221
    35  com.apple.CoreFoundation                0x00007fff94d56b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    36  com.apple.CoreFoundation                0x00007fff94d56455 __CFRunLoopDoSources0 + 245
    37  com.apple.CoreFoundation                0x00007fff94d797f5 __CFRunLoopRun + 789
    38  com.apple.CoreFoundation                0x00007fff94d790e2 CFRunLoopRunSpecific + 290
    39  com.apple.HIToolbox                     0x00007fff95edceb4 RunCurrentEventLoopInMode + 209
    40  com.apple.HIToolbox                     0x00007fff95edcc52 ReceiveNextEventCommon + 356
    41  com.apple.HIToolbox                     0x00007fff95edcae3 BlockUntilNextEventMatchingListInMode + 62
    42  com.apple.AppKit                        0x00007fff99031533 _DPSNextEvent + 685
    43  com.apple.AppKit                        0x00007fff99030df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    44  com.apple.AppKit                        0x00007fff990281a3 -[NSApplication run] + 517
    45  com.apple.WebCore                       0x00007fff8ea4f4ff WebCore::RunLoop::run() + 63
    46  com.apple.WebKit2                       0x00007fff94851462 WebKit::WebProcessMain(WebKit::CommandLine const&) + 2586
    47  com.apple.WebKit2                       0x00007fff94817bfd WebKitMain + 285
    48  com.apple.WebProcess                    0x0000000106d67e7b 0x106d67000 + 3707
    49  libdyld.dylib                           0x00007fff93f437e1 start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff903166d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d99ef4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d99ed13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d9891d1 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff90316d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff9a158dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff9a1589ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff903166d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d99ef4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d99ed13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d9891d1 start_wqthread + 13
    Thread 4:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff903160fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d9a0fe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91cbab66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00007fff91eddbfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 5:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff903160fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d9a0fe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91e409d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff91e408b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 6:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff903160fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d9a0fe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91e409d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff91e408b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff903160fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d9a0fe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91e409d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff91e408b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff903166d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d99ef4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d99ed13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d9891d1 start_wqthread + 13
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff90314686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff90313c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94d74233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff94d79916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff94d790e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff94f67546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff94fc5562 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 10:: WebCore: Scrolling
    0   libsystem_kernel.dylib                  0x00007fff90314686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff90313c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94d74233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff94d79916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff94d790e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff94d87dd1 CFRunLoopRun + 97
    6   com.apple.WebCore                       0x00007fff8ea645e1 WebCore::ScrollingThread::initializeRunLoop() + 273
    7   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff903166d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d99ef4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d99ed13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d9891d1 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff903166d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d99ef4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d99ed13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d9891d1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff903166d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8d99ef4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8d99ed13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8d9891d1 start_wqthread + 13
    Thread 14:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff90316322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff94db8f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 15:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff903160fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d9a0fe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91cbab2d ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                       0x00007fff8ea89d01 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                       0x00007fff8dfda12a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 16:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff903160fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8d9a0fe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff91cbab2d ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                       0x00007fff8ea89d01 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                       0x00007fff8dfda12a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore                0x00007fff91ef325f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 17:: QTKit: listenOnDelegatePort
    0   libsystem_kernel.dylib                  0x00007fff90314686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff90313c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94d74233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff94d79916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff94d790e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff94d87dd1 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff952a32d6 listenOnDelegatePort + 403
    7   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 18:: QTKit: listenOnNotificationPort
    0   libsystem_kernel.dylib                  0x00007fff90314686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff90313c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94d74233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff94d79916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff94d790e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation                0x00007fff94d87dd1 CFRunLoopRun + 97
    6   com.apple.QTKit                         0x00007fff952a3771 listenOnNotificationPort + 371
    7   libsystem_c.dylib                       0x00007fff8d99c7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8d9891e1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff7e2b3708  rbx: 0x0000000000000000  rcx: 0x00007fff7e2a4660  rdx: 0x00007fff7e2a46e0
      rdi: 0x00007fff7d2b3820  rsi: 0x00007fff7d2b3480  rbp: 0x00007fff58e95260  rsp: 0x00007fff58e951b8
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x00007fff7d38a638  r11: 0x00007fff58e95264
      r12: 0x0000000000000000  r13: 0x00007fe5cbc32620  r14: 0x0000000000000000  r15: 0x00007fff7e28a4e0
      rip: 0x00007fff8d92b932  rfl: 0x0000000000010246  cr2: 0x00007fff7d2b62a8
    Logical CPU: 0
    Binary Images:
           0x106d67000 -        0x106d67fff  com.apple.WebProcess (8536 - 8536.30.1) <F967F09F-969C-3788-9376-7B4067F402B4> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
           0x106d6f000 -        0x106d6ffff  WebProcessShim.dylib (7536.30.1) <15AC7990-1B63-3AD9-905F-7331C901A578> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
           0x109d96000 -        0x109dacfff  com.apple.WebInspector (8536 - 8536.30) <7DD903D1-505E-34D3-835A-15BE44CC49B6> /System/Library/PrivateFrameworks/WebInspector.framework/Versions/A/WebInspecto r
           0x10b1da000 -        0x10b1f0ff7  com.apple.webcontentfilter.framework (3.1 - 5) <E18D99F4-A52C-30C8-9D70-D0E34DB9D68C> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
           0x10d538000 -        0x10d55efff  libPDFRIP.A.dylib (332) <22085533-A0BE-3660-9312-7BC9E2A69576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
           0x10dc77000 -        0x10de35fff  GLEngine (8.9.2) <420E03C3-B91D-33C7-A1C4-BE60A1544971> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10de6c000 -        0x10dfdcfff  libGLProgrammability.dylib (8.9.2) <83DBCC22-F711-3F9D-B622-6DE5D9DD90AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x10e014000 -        0x10e3d1ff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.12.47 - 8.1.2) <41C027A9-3329-340E-995A-6B66C54B7DAD> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
           0x10e501000 -        0x10e50efff  libGPUSupport.dylib (8.9.2) <0D32763C-7F3D-3FDB-9EDB-760BB7AFFA04> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x10e515000 -        0x10e540fff  GLRendererFloat (8.9.2) <18D6F0AD-C5F1-3E8F-89C2-89426A3D6FE4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10e549000 -        0x10e552fe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff66967000 -     0x7fff6699b93f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff8d214000 -     0x7fff8d2affff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8d2b0000 -     0x7fff8d2bbff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8d2bc000 -     0x7fff8d35aff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8d35b000 -     0x7fff8d3b1fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8d3b2000 -     0x7fff8d3b2fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8d3b7000 -     0x7fff8d4e1ff7  com.apple.avfoundation (2.0 - 361.40) <EDEAB424-D693-39C6-B4A6-C503213203AF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8d4e2000 -     0x7fff8d54aff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8d54b000 -     0x7fff8d987fef  com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8d988000 -     0x7fff8da54ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff8da55000 -     0x7fff8daacff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8dc6c000 -     0x7fff8dc75ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8dc76000 -     0x7fff8df2dff7  com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8df2e000 -     0x7fff8dfaeff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8dfaf000 -     0x7fff8dfbaff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8dfbb000 -     0x7fff8ef7aff7  com.apple.WebCore (8536 - 8536.30.2) <3FF4783B-EF75-34F5-995C-316557148A18> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8ef7b000 -     0x7fff8ef7efff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8efba000 -     0x7fff8efbcfff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff8efbd000 -     0x7fff8f063ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8f064000 -     0x7fff8f0c0ff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8f0c1000 -     0x7fff8f0c5fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8f0c6000 -     0x7fff8f0c8ff7  com.apple.EFILogin (2.0 - 2) <51A470D7-1F72-3369-AF0F-AD2340B42C12> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8f1f8000 -     0x7fff8f2e9ff7  com.apple.DiskImagesFramework (10.8.3 - 345) <F9FAEAF0-B9A5-34DF-94B7-926FB03AD5F6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8f2ea000 -     0x7fff8f324fff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8f325000 -     0x7fff8f353fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8f36e000 -     0x7fff8f3c5ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8fc7c000 -     0x7fff8fc7cfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8fc7d000 -     0x7fff8fed8ff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8fed9000 -     0x7fff8fedefff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8fedf000 -     0x7fff8fee1fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8fee2000 -     0x7fff90117ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff90162000 -     0x7fff90213fff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff90214000 -     0x7fff90270fff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff90271000 -     0x7fff90271fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff90280000 -     0x7fff90283fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff90284000 -     0x7fff90295ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff90296000 -     0x7fff90303ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff90304000 -     0x7fff9031fff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
        0x7fff90320000 -     0x7fff9037ffff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff90380000 -     0x7fff903c3ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff904ed000 -     0x7fff904efff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff904f0000 -     0x7fff90511fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff90512000 -     0x7fff90555ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff90556000 -     0x7fff905b0ff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff905b1000 -     0x7fff906c992f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff906ca000 -     0x7fff906ccfff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff906cd000 -     0x7fff90729fff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff90759000 -     0x7fff90907fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff909ba000 -     0x7fff909c0ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff909c1000 -     0x7fff90cd8ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff90cd9000 -     0x7fff90e5ffff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff90e60000 -     0x7fff90e6ffff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff90e70000 -     0x7fff90ea6fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff90ea7000 -     0x7fff90fa5fff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff90fa6000 -     0x7fff90fd2fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff90fd3000 -     0x7fff90fd6fff  libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
        0x7fff90fd7000 -     0x7fff9102cff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff91039000 -     0x7fff91043fff  libcsfde.dylib (296.16.1) <8F75205A-8802-3B1D-87AA-235CBF1E49AE> /usr/lib/libcsfde.dylib
        0x7fff91134000 -     0x7fff91138fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff91139000 -     0x7fff9114ffff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff91150000 -     0x7fff911a9ff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff911aa000 -     0x7fff9129ffff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff912a0000 -     0x7fff912a0fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff913fb000 -     0x7fff914fdfff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff91527000 -     0x7fff9153efff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff9153f000 -     0x7fff9163cfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff9163d000 -     0x7fff9178ffff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff917f0000 -     0x7fff917f7fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff91831000 -     0x7fff91840ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff91841000 -     0x7fff91868ff7  com.apple.speech.LatentSemanticMappingFramework (2.9.3 - 2.9.3) <CDB23C93-853B-3F18-985C-6D32D4704F26> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff91869000 -     0x7fff9186dff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff9186e000 -     0x7fff91880ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff91881000 -     0x7fff918abff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff918ad000 -     0x7fff918e4ff7  libssl.0.9.8.dylib (47.1) <B7C438BB-79FF-37B3-B8FB-253E5135CBB4> /usr/lib/libssl.0.9.8.dylib
        0x7fff918e5000 -     0x7fff918ecfff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff918ed000 -     0x7fff91904fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff91905000 -     0x7fff9195ffff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff91960000 -     0x7fff9196efff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff9196f000 -     0x7fff919abfff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff91b5e000 -     0x7fff91c7efff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff91c7f000 -     0x7fff91c80ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff91c81000 -     0x7fff91cb3fff  com.apple.framework.Admin (12.1 - 12.1) <2DA7835C-D3AB-3512-BDC1-03F437270772> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff91cb4000 -     0x7fff91f4fff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff91f62000 -     0x7fff9237ffff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff92380000 -     0x7fff92380fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff9238e000 -     0x7fff923d9fff  com.apple.CoreMedia (1.0 - 926.104) <31EAF297-9C42-3D6F-A8A1-CDAB94A26113> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff923da000 -     0x7fff92575fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff92576000 -     0x7fff92584fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff92587000 -     0x7fff925a9ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff925ac000 -     0x7fff925b8fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff925b9000 -     0x7fff925bdfff  libCGXType.A.dylib (332) <17C8DD17-B3CB-3633-B252-C368AE51204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff925be000 -     0x7fff92609fff  com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff9260a000 -     0x7fff92610fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff92611000 -     0x7fff92612fff  libquit.dylib (130.1) <6012FB61-1D85-311F-A557-690C7D4C2A66> /usr/lib/libquit.dylib
        0x7fff9261c000 -     0x7fff9261dff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff9262f000 -     0x7fff9264aff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff9264b000 -     0x7fff92656ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff92657000 -     0x7fff92659fff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff9265a000 -     0x7fff926cafff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff926f4000 -     0x7fff92757ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff92758000 -     0x7fff92766ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
        0x7fff927c5000 -     0x7fff927c9fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff927ca000 -     0x7fff92a6eff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff92a6f000 -     0x7fff92ad8fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff92b86000 -     0x7fff92ba5ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff92ba6000 -     0x7fff92bb1fff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff92bb2000 -     0x7fff92beffef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff92bf0000 -     0x7fff92c03ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff92c04000 -     0x7fff92ffbfff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff92ffc000 -     0x7fff93090ff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff93094000 -     0x7fff930ccfff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
        0x7fff93136000 -     0x7fff93158ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff93159000 -     0x7fff93160fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff93161000 -     0x7fff931b2ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff931b8000 -     0x7fff931b9fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff939b5000 -     0x7fff939ccfff  libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff939cd000 -     0x7fff939e0ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff939e1000 -     0x7fff93a4fff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff93a62000 -     0x7fff93a63ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff93a64000 -     0x7fff93a64fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff93a65000 -     0x7fff93af4fff  libCoreStorage.dylib (296.16.1) <35FE3D47-089C-351A-AC9E-4D2C82AE5D87> /usr/lib/libCoreStorage.dylib
        0x7fff93af5000 -     0x7fff93b82ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff93f41000 -     0x7fff93f44ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff93f45000 -     0x7fff93f73ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff93f75000 -     0x7fff93fbdfff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff93fbe000 -     0x7fff9400bfff  com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff9400c000 -     0x7fff94126fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff94173000 -     0x7fff941a4ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff941c0000 -     0x7fff9429afff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff9429b000 -     0x7fff942daff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff942db000 -     0x7fff942e7fff  libCSync.A.dylib (332) <47466CF6-EB5C-3312-9E24-178F4410A92B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff9431e000 -     0x7fff94352fff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff9435d000 -     0x7fff943defff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff943ee000 -     0x7fff94438ff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff94439000 -     0x7fff94639fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff9463a000 -     0x7fff94745fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff94746000 -     0x7fff9474cfff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff9474d000 -     0x7fff94939ff7  com.apple.WebKit2 (8536 - 8536.30.1) <5A3C2412-FF47-3160-9634-32222C98D887> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff9493a000 -     0x7fff94986ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff94a12000 -     0x7fff94a61fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff94b29000 -     0x7fff94b31ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff94b32000 -     0x7fff94b9afff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff94bf1000 -     0x7fff94cf3fff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff94cf4000 -     0x7fff94d43ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff94d44000 -     0x7fff94f2eff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff94f2f000 -     0x7fff9528efff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9528f000 -     0x7fff95400ff7  com.apple.QTKit (7.7.1 - 2599.31) <1CBAB8B9-E335-33E3-B442-60105D265CB7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff95401000 -     0x7fff9542dfff  com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff95473000 -     0x7fff954b3ff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff954b4000 -     0x7fff954c1ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff9552a000 -     0x7fff95579ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff9557a000 -     0x7fff95588ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff95589000 -     0x7fff9563cff7  com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff9563d000 -     0x7fff9563dfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff9563e000 -     0x7fff9579cfef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff9579d000 -     0x7fff957a2fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff957a3000 -     0x7fff95876ff7  com.apple.DiscRecording (7.0 - 7000.2.4) <49FD2D2F-4F2C-39B6-877B-6E3172577D18> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff95879000 -     0x7fff958a2fff  libsandbox.1.dylib (220.3) <2C26165F-C3D5-3458-8D3E-EE748A3DA19A> /usr/lib/libsandbox.1.dylib
        0x7fff958a3000 -     0x7fff958aeff7  com.apple.aps.framework (3.0 - 3.0) <DEF85257-2D1C-3524-88F8-CF70980726AE> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff958af000 -     0x7fff959c8fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff959c9000 -     0x7fff959d6fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff959dc000 -     0x7fff959dcfff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff959dd000 -     0x7fff95a13fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff95a14000 -     0x7fff95a4eff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff95a4f000 -     0x7fff95cbcff7  com.apple.RawCamera.bundle (4.07 - 696) <CCB97D78-309C-3CD9-B499-81192069A333> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff95cbd000 -     0x7fff95cbefff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff95cbf000 -     0x7fff95e4afff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff95e4b000 -     0x7fff95e4fff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff95e50000 -     0x7fff95e7cff7  libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff95e7d000 -     0x7fff961adfff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff96209000 -     0x7fff962c6ff7  com.apple.ColorSyn

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, or by a peripheral device. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output andWi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Multiple tabs with flash or heavy js crash firefox

    Has been may years already that this keeps happening to me if i open around 150+ tabs (depends on the content of the tabs) or if i open 20+ tabs of youtube (might happen with other video platforms too but i haven't tested that) makes firefox crash after a brief amount of time. I've been using the same profile since mid 2012 but I do make clean new installs of firefox when a new whole version comes out. My pc hardware i think is more than suitable to be able to have that ammount of tabs open (12 GB RAM triple channel ddr3 1ghz intel i7 950 @ 3.07ghz 1024MB ATI AMD Radeon HD 6800 series on w7 x64).
    I tried creating a new clean profile and opened 50 youtube tabs have all of them playing at the same time and even though at the start there was some kind of slowness for the firt 10 seconds then all was perfect and I tested it for like 5 mins and it didnt crash. Back with my profile I used the about:addons-memory to see fit here was any leak of memory from the addons but the addons consumption was really low. Although firefox itself with 150 tabs uses like between 900 and 1400mbs of memory. I've tried disabling all the add-ons and then enabling some to see if there was a conflictive add-on but i couldn't find whats causing the problem so i wanted to ask you guys if you could lend me a hand so i can finally can open as many tabs as i want without having to fear a crash.
    Here are some crash reports
    https://crash-stats.mozilla.com/report/index/ed544757-c6e5-4590-b2fa-ec3552140418
    https://crash-stats.mozilla.com/report/index/e2256729-811b-4dcd-8d6a-6d0012140421
    https://crash-stats.mozilla.com/report/index/a1648f3c-c5a4-41d9-b6fa-415cd2140430
    https://crash-stats.mozilla.com/report/index/ec77ddb5-3be7-4268-a515-7195b2140425
    I only have flash and java Plugins on and they are up to date.
    Addon list:
    Adblock
    session administration
    adblock element hider helper
    autopager
    bartab heavy
    empty cache button
    all tabs helper
    anonymox
    classic theme restorer
    spanish Venezuelan dictionary
    downloads window
    mem chaser
    menu icons plus
    multiple tab handler
    no script
    places cleaner
    restart aplication
    roomy bookmarks
    scriptish
    self destructing cookies
    site favicon in urlbar
    snap links plus
    Tab Granade
    tabmix plus
    text link
    text area cache
    wot
    xmarks

    I had/still have an issue with FF which is virtually identical to this (se https://support.mozilla.org/en-US/questions/988435?esab=a&s=&r=0&as=s).
    Mostly on script/flash heavy pages (like YouTube, Google Play, Twitter, etc) with only a small number of tabs will result in nearlly 1-1.2GB RAM usage and eventually crash. Having looked through older crash reports here is a list of the most common problems (Note: I recently tried a fresh install so don't have the Crash Report Numbers for these anymore):
    Crash Cause
    js::ScriptSource::hasSourceData() x 3
    NS_ABORT_OOM(unsigned int) x 5
    gfxContext::PushClipsToDT(mozilla::gfx::DrawTarget*) x 10
    js::AutoCompartment::AutoCompartment(js::ExclusiveContext*, JSObject*) x 7
    Of Which
    EXCEPTION_ACCESS_VIOLATION_READ x 21
    EXCEPTION_BREAKPOINT x 5
    I used to be able to run FF with almost 60+ Add-ons up to 60+ Tabs and still have it work more or less OK; obviously it could be rather sluggish and was eating into 1GB RAM or so, but it at least worked. Now I can barely run it with 53 Add-ons and less than 10 Tabs for around 30 mins to 1 hour before an inevitable crash.

  • JSObject doesn't work in Mozilla

    Hi,
    I'm running an applet in Mozilla Firefox and I don't know why it doesn't work. Mozilla doesn't respond after the applet execute the next code line:
    JSObject myDocument = (JSObject) jsBrowserWindow.getMember("Document");
    I have in the JSP the next code to load the applet:
    <OBJECT
    classid = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    codebase = "http://java.sun.com/products/plugin/autodl/jinstall-1_4-windows-i586.cab#Version=1,4,0,0"
    WIDTH = "1" HEIGHT = "1" NAME = "invesdoc_ms" ALT = "Applet" >
    <PARAM NAME = CODE VALUE = "ieci.tecdoc.mvc.util.applet.InvesDocApplet" >
    <PARAM NAME = ARCHIVE VALUE = "<%=request.getContextPath()%>/jar/upload.jar,<%=request.getContextPath()%>/jar/jawin.jar,<%=request.getContextPath()%>/jar/commons-logging.jar,<%=request.getContextPath()%>/jar/commons-codec-1.3.jar,<%=request.getContextPath()%>/jar/commons-httpclient-3.0-beta1.jar" >
    <PARAM NAME = NAME VALUE = "invesdoc_ms" >
    <PARAM NAME = MAYSCRIPT VALUE = "true" >
    <PARAM NAME = "type" VALUE = "application/x-java-applet;version=1.4">
    <PARAM NAME = "scriptable" VALUE = "true">
    <COMMENT>
         <EMBED
    type = "application/x-java-applet;version=1.4" \
    CODE = "ieci.tecdoc.mvc.util.applet.InvesDocApplet" \
    ARCHIVE = "<%=request.getContextPath()%>/jar/upload.jar,<%=request.getContextPath()%>/jar/jawin.jar,<%=request.getContextPath()%>/jar/commons-logging.jar,<%=request.getContextPath()%>/jar/commons-codec-1.3.jar,<%=request.getContextPath()%>/jar/commons-httpclient-3.0-beta1.jar" \
    ALT = "Applet" \
    NAME = "invesdoc_ntsc" \
    WIDTH = "1" \
    HEIGHT = "1" \
    MAYSCRIPT = "true" \
         scriptable = "true" \
         pluginspage = "http://java.sun.com/products/plugin/index.html#download">
         <NOEMBED>
    <bean:message key="message.modifyFolder.error.applet.tag.ignored"/>
    </NOEMBED>
         </EMBED>
    </COMMENT>
    </OBJECT>
    It works fine with IE, but not with Mozilla Firefox.
    Can anybody help me?
    Thanks in advance.

    I had the exact same problem with mozilla 0.9.3 and using the blackdown 1.3.1 java plugin on Mandrake Linux 7.2. Then I formatted my hard drive ( not because of this problem...ha ha ) and when i installed mozilla i got the plugin to work. What i did was, create the symbolic link ( as suggested in the installation instructions ), then started mozilla, then shut mozilla down, then started mozilla for a second time ( and the java plugin then showed up in the 'about plugins' page), then i viewed a web page with an applet and moziila crashed.....ha ha....and from then on it has worked perfectly.........i cant remember where i read about this bug..(sorry)...
    anyway, to summarise you need to restart mozilla twice after making the symbolic link before viewing a page containing a Java applet. (i dont know whether you will have to reinstall mozilla to get this to work ?..seeing as you have already tried this once? ) Good luck ( sorry if this reply is a bit of a mess !!!)

  • Firefox 33.1.1 crashes after closing program

    Everytime this new release closes, it hangs and crashes. Happens on all my computers, thus something in Firefox 33.1.1. There are dozens and dozens of crashes since this new release. My last crash was in 2013 and prior to that, 2012.
    Mozilla Crash Reports
    Search
    Product:
    Select Version:
    Report:
    Advanced Search - Super Search
    Firefox 33.1.1 Crash Report [@ mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int) ]
    Search Mozilla Support for Help
    ID: e0a1edcd-5e04-4135-8d18-197b82141125
    Signature: mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int)
    Details
    Metadata
    Modules
    Raw Dump
    Extensions
    Signature mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int) More Reports Search
    UUID e0a1edcd-5e04-4135-8d18-197b82141125
    Date Processed 2014-11-25 18:50:45.967352
    Uptime 855
    Last Crash 4758 seconds before submission
    Install Age 917502 since version was first installed.
    Install Time 2014-11-15 03:58:53
    Product Firefox
    Version 33.1.1
    Build ID 20141113143407
    Release Channel release
    OS Windows NT
    OS Version 6.1.7601 Service Pack 1
    Build Architecture x86
    Build Architecture Info GenuineIntel family 6 model 42 stepping 7 | 4
    Crash Reason EXCEPTION_BREAKPOINT
    Crash Address 0x74111425
    User Comments
    App Notes
    AdapterVendorID: 0x8086, AdapterDeviceID: 0x0102, AdapterSubsysID: 04931025, AdapterDriverVersion: 9.17.10.3517
    D2D? D2D+ DWrite? DWrite+ D3D11 Layers? D3D11 Layers+ xpcom_runtime_abort([6548] ###!!! ABORT: file resource://gre/modules/HealthReport.jsm, line 4360)
    Processor Notes sp-processor09_phx1_mozilla_com.27409:2012; MozillaProcessorAlgorithm2015; skunk_classifier: reject - not a plugin hang
    EMCheckCompatibility
    True
    Winsock LSP
    MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    Adapter Vendor ID
    0x8086
    Adapter Device ID
    0x0102
    Total Virtual Memory
    4294836224
    Available Virtual Memory
    3522301952
    System Memory Use Percentage
    44
    Available Page File
    2394779648
    Available Physical Memory
    2335838208
    Bugzilla - Report this bug in Firefox Core Plugins Toolkit
    Related Bugs
    1087674RESOLVED FIXED Firefox won't close with Avast 2015 10.0.2206 when HTTPS scanning is enabled
    1079312RESOLVED FIXED AsyncShutdownTimeout "AddonManager: Waiting for providers to shut down.", "OpenH264Provider", crash in mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int)
    1071702RESOLVED DUPLICATE AsyncShutdown crash with "AddonManager: shutting down providers"
    1057312RESOLVED FIXED AsyncShutdownTimeout "AddonManager: shutting down providers"
    1037826RESOLVED DUPLICATE Shutdown crash in mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int)
    991668VERIFIED FIXED Exporting bookmarks.html may cause AsyncShutdown to abort crash due to "too much recursion" error caused by old promises in Task.jsm
    987323REOPENED --- AsyncShutdown crash: "SessionFile: Finish writing the latest sessionstore.js"
    944873RESOLVED FIXED Crash in mozalloc_abort(char const* const) | NS_DebugBreak | nsDebugImpl::Abort(char const*, int) with abort message: ###!!! ABORT: file resource://gre/modules/AsyncShutdown.jsm, line 390)
    Crashing Thread
    Frame Module Signature Source
    0 mozalloc.dll mozalloc_abort(char const* const) memory/mozalloc/mozalloc_abort.cpp
    1 xul.dll NS_DebugBreak xpcom/base/nsDebugImpl.cpp
    2 xul.dll nsDebugImpl::Abort(char const*, int) xpcom/base/nsDebugImpl.cpp
    3 xul.dll NS_InvokeByIndex xpcom/reflect/xptcall/md/win32/xptcinvoke.cpp
    4 xul.dll XPC_WN_CallMethod(JSContext*, unsigned int, JS::Value*) js/xpconnect/src/XPCWrappedNativeJSOps.cpp
    5 mozjs.dll js::Invoke(JSContext*, JS::CallArgs, js::MaybeConstruct) js/src/vm/Interpreter.cpp
    6 mozjs.dll Interpret js/src/vm/Interpreter.cpp
    7 mozjs.dll js::RunScript(JSContext*, js::RunState&) js/src/vm/Interpreter.cpp
    8 mozjs.dll js::Invoke(JSContext*, JS::CallArgs, js::MaybeConstruct) js/src/vm/Interpreter.cpp
    9 mozjs.dll js::CallOrConstructBoundFunction(JSContext*, unsigned int, JS::Value*) js/src/jsfun.cpp
    10 mozjs.dll js::Invoke(JSContext*, JS::CallArgs, js::MaybeConstruct) js/src/vm/Interpreter.cpp
    11 mozjs.dll js_fun_call(JSContext*, unsigned int, JS::Value*) js/src/jsfun.cpp
    12 mozjs.dll js::Invoke(JSContext*, JS::CallArgs, js::MaybeConstruct) js/src/vm/Interpreter.cpp
    13 mozjs.dll js::Invoke(JSContext*, JS::Value const&, JS::Value const&, unsigned int, JS::Value const*, JS::MutableHandle<JS::Value>) js/src/vm/Interpreter.cpp
    14 mozjs.dll js::DirectProxyHandler::call(JSContext*, JS::Handle<JSObject*>, JS::CallArgs const&) js/src/jsproxy.cpp
    15 mozjs.dll js::CrossCompartmentWrapper::call(JSContext*, JS::Handle<JSObject*>, JS::CallArgs const&) js/src/jswrapper.cpp
    16 mozjs.dll js::Proxy::call(JSContext*, JS::Handle<JSObject*>, JS::CallArgs const&) js/src/jsproxy.cpp
    17 mozjs.dll js::proxy_Call(JSContext*, unsigned int, JS::Value*) js/src/jsproxy.cpp
    18 mozjs.dll js::Invoke(JSContext*, JS::CallArgs, js::MaybeConstruct) js/src/vm/Interpreter.cpp
    19 mozjs.dll js::Invoke(JSContext*, JS::Value const&, JS::Value const&, unsigned int, JS::Value const*, JS::MutableHandle<JS::Value>) js/src/vm/Interpreter.cpp
    20 mozjs.dll js::jit::DoCallFallback js/src/jit/BaselineIC.cpp
    21 @0x15f058cc
    Show/hide other threads
    Mozilla Crash Reports - Powered by Socorro - All dates are UTC
    Server Status
    Source
    Docs
    API
    Privacy Policy
    Sign in

    Turning off "Enable Telemetry" and leaving Firefox Health and Crash Reporter enabled works just fine. This is solved the problem on two computers. On another computer, had to disable all 3 for it to work properly.

  • Firefox stuttering randomly

    When I'm randomly scrolling through websites or using tab groups, I can see some stuttering. At start up it's really small and passable, but it gets progressively worse until the window randomly turns black and crashes.
    I've also noticed that around the time the browser is about to crash, add-ons that are working in the background return a "denied access" entry.
    I think it might have something to do with the memory, I usually have 100+ tabs open, but I've the "Don't load tabs until selected" option enabled.
    Once Firefox hits over 1-1.5 GB it starts stuttering considerably worse.
    I've also gotten a "out of memory" message before which is why I believe it might be a memory issue.
    Anyway, memory usage never gets over 80% of my 8 GB of RAM and I've noticed stuttering on just 50% usage.
    Any replies are welcome.

    Nothing jumping out at me, as a solution, from the crash reports, although most will probably relate to memory issues.
    As I mentioned in the last post something worth doing is '''turning on telemetry''' it generates real life data demonstrating Firefox performance
    * annonymised aggregated data is available publicly and to Mozilla engineers
    * local copies of your own full data is kept in your profile and may be useful evidence of problems
    * see [[Send performance data to Mozilla to help improve Firefox]]
    If you are interested in getting to the bottom of the issue you are probably going to need to start testing in Firefox's safemode with all plugins disabled and less than 30 open tabs.
    Possibly the problem only really happens with many tabs open especially with high graphic content
    Quite likely '''stopping memory usage exceeding 1GB''' or whatever will improve things and I can think of three ways to attempt to reign that in and hopefully prevent the stuttering
    # Reduce the number of open tabs in use (Maybe use bookmarks more frequently instead of leaving tabs open)
    # Use about:memory that not only reports on memory it also has a button to reduce memory use.
    # It could be worth checking out this addon it may help,
    #* '' Prevent Out Of Virtual Memory Crashes 1.0.3 '' <br /> https://addons.mozilla.org/firefox/addon/prevent-out-of-virtual-memo/
    #*but it might be just as easy to manually restart Firefox once stuttering becomes apparent if you no longer get crashes.
    For forum cross referencing purposes
    * Reports for your Crash IDs
    *# bp-82b851f7-c1ad-4f8f-a1e5-fbb7e2140725
    *# bp-e727a1b9-9acf-4d9b-90f0-197ff2140724 {Memory 73%)
    *# bp-ed9932ed-5507-49da-9d93-57daf2140723 {Memory 73%)
    *# bp-5b2fe9f5-f48e-4dd6-a5e3-58ad22140723 {OOM but Memory 66%)
    *Crash Signatures:
    *# js::RemapWrapper(JSContext*, JSObject*, JSObject*)
    *# JSC::Yarr::YarrGenerator<int>::opCompileAlternative(JSC::Yarr::PatternAlternative*)
    *# mozilla::layers::PlanarYCbCrImage::GetAsSourceSurface()
    *# OOM | large | mozalloc_abort(char const* const) | mozalloc_handle_oom(unsigned int) | moz_xmalloc | gfxAlphaBoxBlur::Init(gfxRect const&, nsIntSize const&, nsIntSize const&, gfxRect const*, gfxRect
    *Related bugs {with my comments)
    *# Bug 856670 - Firefox crash [@ js::RemapWrapper] <br />{Possibly runnning out of stack no STR)
    *# Bug814954 -> Bug 976446 - Replace YARR with irregexp <br />{ ?Out Of Memory. Fx 32 unaffected)
    *# no related bugs listed
    *# Bug 986502 - Large OOM in gfxAlphaBoxBlur::Init {I added bug comment -- please let me know '''if you notice this signature in Firefox 31''')
    Memory issues are not easy to troubleshoot. Stuttering at 50% memory with many addons is going to be impossible to troubleshoot, but '''''5 second+ lags''''' in normal use is unacceptable. However if that is whilst opening and closing masses of tabs each with their own History and many Iframes and images it my be normal and expected behaviour. (Cacheing, or not; & connection speeds; could be other confounding factors )
    If the problem exists in safemode and no plugins enabled it can be followed up and if necessary bugs filed. I am not saying always use Firefox like that just that it is necessary for comparison and troubleshooting to test that. On the other hand If the problem is solved in that configuration you should be able to fairly quickly narrow down the cause.
    Using multiple profiles may be useful in testing and I can explain that if it helps. There are '''tools''' that may help if you try troubleshooting. I already mentioned ''about:memory''. There is also built a in ''profiler'' that will identify what is happening in 5+ second hangs, or a ''profiler addon'' that will specifically track and log jank where Firefox stops responding.
    '''Summary''' I can not guarantee getting to the bottom of your issues but
    *I can at least make suggestions for troubleshooting
    *Problems caused by Firefox rather than by addons will be investigated,
    **and if necessary I am sure the professional HelpDesk staff will be able to lend a hand.
    * Using many addons and hundreds of tabs problems are not unexpected
    **(I hate to say this but on Windows it may be worth trying a 64 bit browser for comparison.
    ** However I seem to have noticed; so far unreproducible; issues with High memory usage on recent 64bit Firefox Releases )

  • Firefox keeps crashing.windows 7.installed 5 times and keeps doing it

    Signature ntdll.dll@0x222d2 More Reports Search
    UUID 9d524915-c324-463e-8405-d72ac2130822
    Date Processed 2013-08-22 09:11:11.921484
    Uptime 790
    Last Crash 32403 seconds before submission
    Install Age 383155 since version was first installed.
    Install Time 2013-08-17 22:44:58
    Product Firefox
    Version 23.0.1
    Build ID 20130814063812
    Release Channel release
    OS Windows NT
    OS Version 6.1.7601 Service Pack 1
    Build Architecture x86
    Build Architecture Info GenuineIntel family 6 model 60 stepping 3 | 4
    Crash Reason EXCEPTION_ACCESS_VIOLATION_WRITE
    Crash Address 0xffffffffffc6cfe7
    User Comments
    App Notes
    AdapterVendorID: 0x1002, AdapterDeviceID: 0x683f, AdapterSubsysID: 27921462, AdapterDriverVersion: 12.104.0.0
    Has dual GPUs. GPU #2: AdapterVendorID2: 0x8086, AdapterDeviceID2: 0x0412, AdapterSubsysID2: 0000000c, AdapterDriverVersion2: 9.18.10.3071D2D? D2D+ DWrite? DWrite+ D3D10 Layers? D3D10 Layers+
    Processor Notes sp-processor10_phx1_mozilla_com_21827:2012
    EMCheckCompatibility
    True
    Winsock LSP
    MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    Υπηρεσία παροχής RSVP TCPv6 : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    Υπηρεσία παροχής RSVP TCP : 2 : 1 :
    Υπηρεσία παροχής RSVP UDPv6 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    Υπηρεσία παροχής RSVP UDP : 2 : 2 :
    Adapter Vendor ID
    0x1002
    Adapter Device ID
    0x683f
    Total Virtual Memory
    4294836224
    Available Virtual Memory
    3405242368
    System Memory Use Percentage
    56
    Available Page File
    11029942272
    Available Physical Memory
    3699236864
    Bugzilla - Report this bug in Firefox Core Plugins Toolkit
    Related Bugs
    Crashing Thread
    Frame Module Signature Source
    0 ntdll.dll ntdll.dll@0x222d2
    1 mozglue.dll je_free memory/mozjemalloc/jemalloc.c
    2 mozjs.dll js::SystemAllocPolicy::free_(void *) js/src/jsalloc.h
    3 mozjs.dll js::VectorImpl<JSC::Yarr::YarrGenerator<0>::YarrOp,128,js::SystemAllocPolicy,0>::growTo(js::Vector<JSC::Yarr::YarrGenerator<0>::YarrOp,128,js::SystemAllocPolicy> &,unsigned int) obj-firefox/dist/include/js/Vector.h
    4 @0x7878
    5 mozjs.dll js::RunScript(JSContext *,js::StackFrame *) js/src/jsinterp.cpp
    6 mozjs.dll JS_malloc(JSContext *,unsigned int) js/src/jsapi.cpp
    7 mozglue.dll je_malloc memory/mozjemalloc/jemalloc.c
    8 @0x1a79f0
    9 @0xbce7100
    10 xul.dll xpc::WrapperFactory::Rewrap(JSContext *,JS::Handle<JSObject *>,JS::Handle<JSObject *>,JS::Handle<JSObject *>,JS::Handle<JSObject *>,unsigned int) js/xpconnect/wrappers/WrapperFactory.cpp
    11 mozjs.dll regexp_test_impl js/src/builtin/RegExp.cpp
    12 mozjs.dll js::Invoke(JSContext *,JS::CallArgs,js::MaybeConstruct) js/src/jsinterp.cpp
    13 mozjs.dll js::Invoke(JSContext *,JS::Value const &,JS::Value const &,unsigned int,JS::Value *,JS::Value *) js/src/jsinterp.cpp
    14 mozjs.dll js::CrossCompartmentWrapper::call(JSContext *,JS::Handle<JSObject *>,JS::CallArgs const &) js/src/jswrapper.cpp
    15 mozjs.dll js::GetPropertyOperation(JSContext *,JSScript *,unsigned char *,JS::MutableHandle<JS::Value>,JS::MutableHandle<JS::Value>) js/src/jsinterpinlines.h
    16 mozjs.dll js::Interpret(JSContext *,js::StackFrame *,js::InterpMode,bool) js/src/jsinterp.cpp
    17 mozjs.dll js::RunScript(JSContext *,js::StackFrame *) js/src/jsinterp.cpp
    18 mozjs.dll js::Invoke(JSContext *,JS::CallArgs,js::MaybeConstruct) js/src/jsinterp.cpp
    19 mozjs.dll js::Invoke(JSContext *,JS::Value const &,JS::Value const &,unsigned int,JS::Value *,JS::Value *) js/src/jsinterp.cpp
    20 mozjs.dll js::CrossCompartmentWrapper::call(JSContext *,JS::Handle<JSObject *>,JS::CallArgs const &) js/src/jswrapper.cpp
    21 mozjs.dll proxy_Call js/src/jsproxy.cpp
    22 mozjs.dll js::Invoke(JSContext *,JS::CallArgs,js::MaybeConstruct) js/src/jsinterp.cpp
    23 mozjs.dll js::Invoke(JSContext *,JS::Value const &,JS::Value const &,unsigned int,JS::Value *,JS::Value *) js/src/jsinterp.cpp
    24 mozjs.dll js::ion::DoCallFallback js/src/ion/BaselineIC.cpp
    25 @0x1a8f5c
    Signature JSC::Yarr::YarrGenerator<int>::generatePatternCharacterOnce(unsigned int) More Reports Search
    UUID 97a91974-2252-48e3-b1b6-f1abd2130821
    Date Processed 2013-08-21 14:28:28.872829
    Uptime 20
    Last Crash 22 seconds before submission
    Install Age 315799 since version was first installed.
    Install Time 2013-08-17 22:44:58
    Product Firefox
    Version 23.0.1
    Build ID 20130814063812
    Release Channel release
    OS Windows NT
    OS Version 6.1.7601 Service Pack 1
    Build Architecture x86
    Build Architecture Info GenuineIntel family 6 model 60 stepping 3 | 4
    Crash Reason EXCEPTION_ACCESS_VIOLATION_WRITE
    Crash Address 0x1b527498
    User Comments
    App Notes
    AdapterVendorID: 0x1002, AdapterDeviceID: 0x683f, AdapterSubsysID: 27921462, AdapterDriverVersion: 12.104.0.0
    Has dual GPUs. GPU #2: AdapterVendorID2: 0x8086, AdapterDeviceID2: 0x0412, AdapterSubsysID2: 0000000c, AdapterDriverVersion2: 9.18.10.3071D2D? D2D+ DWrite? DWrite+ D3D10 Layers? D3D10 Layers+ D3D10 Layers- D3D9 Layers? D3D9 Layers-
    Processor Notes sp-processor04_phx1_mozilla_com_4201:2012
    EMCheckCompatibility
    True
    Winsock LSP
    MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    Υπηρεσία παροχής RSVP TCPv6 : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    Υπηρεσία παροχής RSVP TCP : 2 : 1 :
    Υπηρεσία παροχής RSVP UDPv6 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    Υπηρεσία παροχής RSVP UDP : 2 : 2 :
    Adapter Vendor ID
    0x1002
    Adapter Device ID
    0x683f
    Total Virtual Memory
    4294836224
    Available Virtual Memory
    3703287808
    System Memory Use Percentage
    38
    Available Page File
    12983115776
    Available Physical Memory
    5244854272
    Bugzilla - Report this bug in Firefox Core Plugins Toolkit
    Related Bugs
    Crashing Thread
    Frame Module Signature Source
    0 mozjs.dll JSC::Yarr::YarrGenerator<0>::generatePatternCharacterOnce(unsigned int) js/src/yarr/YarrJIT.cpp
    1 mozjs.dll JSC::Yarr::YarrGenerator<0>::generateTerm(unsigned int) js/src/yarr/YarrJIT.cpp
    2 mozjs.dll JSC::Yarr::YarrGenerator<0>::generate() js/src/yarr/YarrJIT.cpp
    3 mozjs.dll JSC::Yarr::YarrGenerator<0>::compile(JSC::Yarr::JSGlobalData *,JSC::Yarr::YarrCodeBlock &) js/src/yarr/YarrJIT.cpp
    4 mozjs.dll js::RegExpShared::compile(JSContext *,JSLinearString &,bool) js/src/vm/RegExpObject.cpp
    5 mozjs.dll js::RegExpShared::compile(JSContext *,bool)

    Hi!
    It sounds like you're having trouble with Firefox for Desktop. I'd recommend contacting the Firefox for Desktop support forum here: [https://support.mozilla.org/en-US/questions/new/desktop https://support.mozilla.org/en-US/questions/new/desktop] ; they'll be more knowledgeable and better able to answer your questions than the volunteers here at the Firefox OS forum.
    I hope that helps you!

  • JSObject binding bug?

    Within a web page, when setting directly a Javascript object to invoke one of its method from Java, if this method calls a Java method the result depends on the browser used :
    . IE : hangs, I must kill it.
    . Firefox : do not invoke the Javascript method.
    If, instead of setting directly the Javascript object, I use his name and get a reference on it with JSObject.getWindow(...).getMeber(...), then it is running well on both browsers.
    If you test with the code below, you might have as a result a web page with two buttons :
    [By name] and [By reference]
    a click on [By name] would popup a small window with "foo" displayed.
    a click on [By reference] would normally behave the same but lead to results described previously.
    well, any feedback on this will be appreciated.
    Thanks.
    -- Tested software configuration
    . OS
    Windows 2000 Server : 5.00.2195 sp4
    . Browser
    Internet Explorer : 6.0.2800.1106
    Firefox : 1.0.7
    . Java
    jdk/jre : 1.4.2_08
    Java Plug-in : 1.4.2_08
    Java HotSpot Client VM : 1.4.2_08-b03
    also with
    jdk/jre : 1.5.0_05
    Java Plug-in : 1.5.0_05
    Java HotSpot Client VM : 1.5.0_05-b05
    -- Source code
    . Applet
    import netscape.javascript.*;
    public class TestApplet2
           extends java.applet.Applet {
      JSObject jso = null;
      public void setCallBackByName( String jsoName ) {
        this.jso = (JSObject)(JSObject.getWindow(this).getMember(jsoName));
      public void setCallBack( JSObject jso ) {
        this.jso = jso;
      public void doCallBack() {
        jso.call("call",new Object [] {this});
      public String getString() {
        return "foo";
    }. Web page
    <HTML>
      <HEAD>
        <SCRIPT>
          var applet = null;
          function callBack () {
            alert(this.getString());
          function byName() {
            applet.setCallBackByName("callBack");
            applet.doCallBack();
          function byRef() {
            applet.setCallBack(callBack);
            applet.doCallBack();
          function loaded() {
            applet = document.applets["TestApplet"];
        </SCRIPT>
      </HEAD>
      <BODY onload="loaded()">
        <APPLET name="TestApplet"
                code="TestApplet2.class"
                MAYSCRIPT>
        </APPLET><BR>
        <INPUT type="button" onclick="byName()" value="By name">
        <INPUT type="button" onclick="byRef()" value="By reference">
      </BODY>
    </HTML>

    Ah, no, just don't bind. Just set the selectedItem using
    actionscript. then, if necessary, you can also set the
    selectedIndex="-1".
    I suppose you could edit the ComboBox class if you reall want
    to.
    Tracy

  • Safari and Firefox crashing EXC_BAD_ACCESS KERN_PROTECTION FAILURE

    Both Safari and Firefox have recently started crashing on me. I thought it might be a software update issue, but everything should be up to date. Error report from latest Safari crash below... thanks in advance for any assistance.
    Process: Safari [1832]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0.2 (5533.18.5)
    Build Info: WebBrowser-75331805~2
    Code Type: X86 (Native)
    Parent Process: launchd [71]
    Interval Since Last Report: 1138 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 178 sec
    Per-App Crashes Since Last Report: 1
    Date/Time: 2010-10-17 10:24:20.461 -0700
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: 0804D251-E6CA-4E20-A4BB-AC0F061CF0DD
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000014
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.JavaScriptCore 0x9181b28d ***::fastFree(void*) + 141
    1 com.apple.JavaScriptCore 0x919b0186 JSC::ParserArena::~ParserArena() + 710
    2 com.apple.JavaScriptCore 0x91841fa9 JSC::ProgramExecutable::compile(JSC::ExecState*, JSC::ScopeChainNode*) + 1097
    3 com.apple.JavaScriptCore 0x918418ca JSC::evaluate(JSC::ExecState*, JSC::ScopeChain&, JSC::SourceCode const&, JSC::JSValue) + 186
    4 com.apple.WebCore 0x923d7ee6 WebCore::ScriptController::evaluateInWorld(WebCore::ScriptSourceCode const&, WebCore::DOMWrapperWorld*, WebCore::ShouldAllowXSS) + 358
    5 com.apple.WebCore 0x923d8720 WebCore::ScriptController::evaluate(WebCore::ScriptSourceCode const&, WebCore::ShouldAllowXSS) + 48
    6 com.apple.WebCore 0x91be5a9f WebCore::ScriptElementData::evaluateScript(WebCore::ScriptSourceCode const&) + 143
    7 com.apple.WebCore 0x91b44c93 WebCore::ScriptElement::insertedIntoDocument(WebCore::ScriptElementData&, WebCore::String const&) + 435
    8 com.apple.WebCore 0x91b44a5b WebCore::HTMLScriptElement::insertedIntoDocument() + 59
    9 com.apple.WebCore 0x91ba651b _ZN7WebCoreL19notifyChildInsertedEPNS4NodeE + 171
    10 com.apple.WebCore 0x91c214cf WebCore::ContainerNode::insertBefore(***::PassRefPtr<WebCore::Node>, WebCore::Node*, int&, bool) + 463
    11 com.apple.WebCore 0x91c2113c WebCore::JSNode::insertBefore(JSC::ExecState*, JSC::ArgList const&) + 172
    12 com.apple.WebCore 0x91c2107e WebCore::jsNodePrototypeFunctionInsertBefore(JSC::ExecState*, JSC::JSObject*, JSC::JSValue, JSC::ArgList const&) + 142
    13 ??? 0x151e6166 0 + 354312550
    14 com.apple.JavaScriptCore 0x9198b4ed JSC::Interpreter::execute(JSC::FunctionExecutable*, JSC::ExecState*, JSC::JSFunction*, JSC::JSObject*, JSC::ArgList const&, JSC::ScopeChainNode*, JSC::JSValue*) + 637
    15 com.apple.JavaScriptCore 0x918c1564 JSC::JSFunction::call(JSC::ExecState*, JSC::JSValue, JSC::ArgList const&) + 132
    16 com.apple.JavaScriptCore 0x918c149e JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 62
    17 com.apple.WebCore 0x91becbe8 WebCore::JSEventListener::handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event*) + 1368
    18 com.apple.WebCore 0x922249cf WebCore::EventTarget::fireEventListeners(WebCore::Event*, WebCore::EventTargetData*, ***::Vector<WebCore::RegisteredEventListener, 1ul>&) + 191
    19 com.apple.WebCore 0x91a98897 WebCore::EventTarget::fireEventListeners(WebCore::Event*) + 231
    20 com.apple.WebCore 0x91cbed98 WebCore::EventTarget::dispatchEvent(***::PassRefPtr<WebCore::Event>) + 72
    21 com.apple.WebCore 0x91cbed0a WebCore::XMLHttpRequestProgressEventThrottle::dispatchEvent(***::PassRefPtr<Web Core::Event>, WebCore::ProgressEventAction) + 58
    22 com.apple.WebCore 0x91cbe726 WebCore::XMLHttpRequest::callReadyStateChangeListener() + 246
    23 com.apple.WebCore 0x91cc2540 WebCore::XMLHttpRequest::didFinishLoading(unsigned long) + 608
    24 com.apple.WebCore 0x91bb81bc WebCore::SubresourceLoader::didFinishLoading() + 44
    25 com.apple.Foundation 0x929b0497 -[NSURLConnection(NSURLConnectionReallyInternal) sendDidFinishLoading] + 87
    26 com.apple.Foundation 0x929b0403 _NSURLConnectionDidFinishLoading + 147
    27 com.apple.CFNetwork 0x97cfbba4 URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnect ionEventQueue*) + 212
    28 com.apple.CFNetwork 0x97cfc8fa URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 310
    29 com.apple.CFNetwork 0x97cfb370 URLConnectionClient::processEvents() + 104
    30 com.apple.CFNetwork 0x97ca8d03 MultiplexerSource::perform() + 189
    31 com.apple.CoreFoundation 0x904d23c5 CFRunLoopRunSpecific + 3141
    32 com.apple.CoreFoundation 0x904d2aa8 CFRunLoopRunInMode + 88
    33 com.apple.HIToolbox 0x930fc2ac RunCurrentEventLoopInMode + 283
    34 com.apple.HIToolbox 0x930fc0c5 ReceiveNextEventCommon + 374
    35 com.apple.HIToolbox 0x930fbf39 BlockUntilNextEventMatchingListInMode + 106
    36 com.apple.AppKit 0x94d1b6d5 _DPSNextEvent + 657
    37 com.apple.AppKit 0x94d1af88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    38 com.apple.Safari 0x000161ab 0x1000 + 86443
    39 com.apple.AppKit 0x94d13f9f -[NSApplication run] + 795
    40 com.apple.AppKit 0x94ce11d8 NSApplicationMain + 574
    41 com.apple.Safari 0x0000a74e 0x1000 + 38734
    Thread 1:
    0 libSystem.B.dylib 0x97a4744e _semwaitsignal + 10
    1 libSystem.B.dylib 0x97a9ce71 sleep$UNIX2003 + 63
    Thread 2:
    0 libSystem.B.dylib 0x97a4744e _semwaitsignal + 10
    1 libSystem.B.dylib 0x97a71dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x91a33484 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3 com.apple.WebCore 0x91a2f79c WebCore::IconDatabase::iconDatabaseSyncThread() + 188
    4 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    5 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x97a40266 machmsgtrap + 10
    1 libSystem.B.dylib 0x97a47a5c mach_msg + 72
    2 com.apple.CoreFoundation 0x904d1e7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x904d2aa8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x97c7c264 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    6 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x97a40266 machmsgtrap + 10
    1 libSystem.B.dylib 0x97a47a5c mach_msg + 72
    2 com.apple.CoreFoundation 0x904d1e7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x904d2aa8 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x0002ed7b 0x1000 + 187771
    5 com.apple.Safari 0x0002eac4 0x1000 + 187076
    6 com.apple.Safari 0x0002ea5d 0x1000 + 186973
    7 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    8 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x97a40266 machmsgtrap + 10
    1 libSystem.B.dylib 0x97a47a5c mach_msg + 72
    2 com.apple.CoreFoundation 0x904d1e7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x904d2aa8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x929ae520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x9294adfd -[NSThread main] + 45
    6 com.apple.Foundation 0x9294a9a4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    8 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x97a8f6fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    2 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x97a4744e _semwaitsignal + 10
    1 libSystem.B.dylib 0x97a71dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x91829121 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.Safari 0x001ad872 0x1000 + 1755250
    4 com.apple.Safari 0x00044c1b 0x1000 + 277531
    5 com.apple.Safari 0x00044b6b 0x1000 + 277355
    6 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    7 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x97a4744e _semwaitsignal + 10
    1 libSystem.B.dylib 0x97a71dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x91829121 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.WebCore 0x91d82a3c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    5 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x97a40266 machmsgtrap + 10
    1 libSystem.B.dylib 0x97a47a5c mach_msg + 72
    2 com.apple.CoreFoundation 0x904d1e7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x904d2aa8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x95dc15f8 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x95dc1480 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    7 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x97a4744e _semwaitsignal + 10
    1 libSystem.B.dylib 0x97a71dcd pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x90961b32 glvmDoWork + 162
    3 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    4 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x97a4744e _semwaitsignal + 10
    1 libSystem.B.dylib 0x97a71dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.ColorSync 0x93dc13f8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync 0x93dd3d4e CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    5 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x97a402ae semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x97a722c6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x97ab7539 pthreadcondwait + 48
    3 ...lashPlayer-10.4-10.5.plugin 0x1907668f unregister_ShockwaveFlash + 46367
    4 ...lashPlayer-10.4-10.5.plugin 0x18c69dcf 0x18c50000 + 105935
    5 ...lashPlayer-10.4-10.5.plugin 0x1907677c unregister_ShockwaveFlash + 46604
    6 ...lashPlayer-10.4-10.5.plugin 0x190767c0 unregister_ShockwaveFlash + 46672
    7 ...lashPlayer-10.4-10.5.plugin 0x190768e6 unregister_ShockwaveFlash + 46966
    8 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    9 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x97a402ae semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x97a722c6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x97ab7539 pthreadcondwait + 48
    3 ...lashPlayer-10.4-10.5.plugin 0x1907668f unregister_ShockwaveFlash + 46367
    4 ...lashPlayer-10.4-10.5.plugin 0x18c69dcf 0x18c50000 + 105935
    5 ...lashPlayer-10.4-10.5.plugin 0x1907677c unregister_ShockwaveFlash + 46604
    6 ...lashPlayer-10.4-10.5.plugin 0x190767c0 unregister_ShockwaveFlash + 46672
    7 ...lashPlayer-10.4-10.5.plugin 0x190768e6 unregister_ShockwaveFlash + 46966
    8 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    9 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x97a402c6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x97a722af pthread_condwait + 1244
    2 libSystem.B.dylib 0x97a73b33 pthreadcond_timedwait_relativenp + 47
    3 ...lashPlayer-10.4-10.5.plugin 0x19076657 unregister_ShockwaveFlash + 46311
    4 ...lashPlayer-10.4-10.5.plugin 0x18f64ab5 0x18c50000 + 3230389
    5 ...lashPlayer-10.4-10.5.plugin 0x1907677c unregister_ShockwaveFlash + 46604
    6 ...lashPlayer-10.4-10.5.plugin 0x190767c0 unregister_ShockwaveFlash + 46672
    7 ...lashPlayer-10.4-10.5.plugin 0x190768e6 unregister_ShockwaveFlash + 46966
    8 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    9 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x97a402c6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x97a722af pthread_condwait + 1244
    2 libSystem.B.dylib 0x97a73b33 pthreadcond_timedwait_relativenp + 47
    3 ...lashPlayer-10.4-10.5.plugin 0x19076657 unregister_ShockwaveFlash + 46311
    4 ...lashPlayer-10.4-10.5.plugin 0x18f64b48 0x18c50000 + 3230536
    5 ...lashPlayer-10.4-10.5.plugin 0x1907677c unregister_ShockwaveFlash + 46604
    6 ...lashPlayer-10.4-10.5.plugin 0x190767c0 unregister_ShockwaveFlash + 46672
    7 ...lashPlayer-10.4-10.5.plugin 0x190768e6 unregister_ShockwaveFlash + 46966
    8 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    9 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x97a402c6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x97a722af pthread_condwait + 1244
    2 libSystem.B.dylib 0x97a73b33 pthreadcond_timedwait_relativenp + 47
    3 ...lashPlayer-10.4-10.5.plugin 0x19076657 unregister_ShockwaveFlash + 46311
    4 ...lashPlayer-10.4-10.5.plugin 0x18e2be1e 0x18c50000 + 1949214
    5 ...lashPlayer-10.4-10.5.plugin 0x1907677c unregister_ShockwaveFlash + 46604
    6 ...lashPlayer-10.4-10.5.plugin 0x190767c0 unregister_ShockwaveFlash + 46672
    7 ...lashPlayer-10.4-10.5.plugin 0x190768e6 unregister_ShockwaveFlash + 46966
    8 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    9 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x97a402c6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x97a722af pthread_condwait + 1244
    2 libSystem.B.dylib 0x97a73b33 pthreadcond_timedwait_relativenp + 47
    3 ...lashPlayer-10.4-10.5.plugin 0x19076657 unregister_ShockwaveFlash + 46311
    4 ...lashPlayer-10.4-10.5.plugin 0x18f64ab5 0x18c50000 + 3230389
    5 ...lashPlayer-10.4-10.5.plugin 0x1907677c unregister_ShockwaveFlash + 46604
    6 ...lashPlayer-10.4-10.5.plugin 0x190767c0 unregister_ShockwaveFlash + 46672
    7 ...lashPlayer-10.4-10.5.plugin 0x190768e6 unregister_ShockwaveFlash + 46966
    8 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    9 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x97a402c6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x97a722af pthread_condwait + 1244
    2 libSystem.B.dylib 0x97a73b33 pthreadcond_timedwait_relativenp + 47
    3 ...lashPlayer-10.4-10.5.plugin 0x19076657 unregister_ShockwaveFlash + 46311
    4 ...lashPlayer-10.4-10.5.plugin 0x18e2be1e 0x18c50000 + 1949214
    5 ...lashPlayer-10.4-10.5.plugin 0x1907677c unregister_ShockwaveFlash + 46604
    6 ...lashPlayer-10.4-10.5.plugin 0x190767c0 unregister_ShockwaveFlash + 46672
    7 ...lashPlayer-10.4-10.5.plugin 0x190768e6 unregister_ShockwaveFlash + 46966
    8 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    9 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 19:
    0 libSystem.B.dylib 0x97a402c6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x97a722af pthread_condwait + 1244
    2 libSystem.B.dylib 0x97a73b33 pthreadcond_timedwait_relativenp + 47
    3 ...lashPlayer-10.4-10.5.plugin 0x19076657 unregister_ShockwaveFlash + 46311
    4 ...lashPlayer-10.4-10.5.plugin 0x18e2be1e 0x18c50000 + 1949214
    5 ...lashPlayer-10.4-10.5.plugin 0x1907677c unregister_ShockwaveFlash + 46604
    6 ...lashPlayer-10.4-10.5.plugin 0x190767c0 unregister_ShockwaveFlash + 46672
    7 ...lashPlayer-10.4-10.5.plugin 0x190768e6 unregister_ShockwaveFlash + 46966
    8 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    9 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x97a402c6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x97a722af pthread_condwait + 1244
    2 libSystem.B.dylib 0x97a73b33 pthreadcond_timedwait_relativenp + 47
    3 ...lashPlayer-10.4-10.5.plugin 0x19076657 unregister_ShockwaveFlash + 46311
    4 ...lashPlayer-10.4-10.5.plugin 0x18e2be1e 0x18c50000 + 1949214
    5 ...lashPlayer-10.4-10.5.plugin 0x1907677c unregister_ShockwaveFlash + 46604
    6 ...lashPlayer-10.4-10.5.plugin 0x190767c0 unregister_ShockwaveFlash + 46672
    7 ...lashPlayer-10.4-10.5.plugin 0x190768e6 unregister_ShockwaveFlash + 46966
    8 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    9 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 21:
    0 libSystem.B.dylib 0x97a402c6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x97a722af pthread_condwait + 1244
    2 libSystem.B.dylib 0x97a73b33 pthreadcond_timedwait_relativenp + 47
    3 ...lashPlayer-10.4-10.5.plugin 0x19076657 unregister_ShockwaveFlash + 46311
    4 ...lashPlayer-10.4-10.5.plugin 0x18f64b48 0x18c50000 + 3230536
    5 ...lashPlayer-10.4-10.5.plugin 0x1907677c unregister_ShockwaveFlash + 46604
    6 ...lashPlayer-10.4-10.5.plugin 0x190767c0 unregister_ShockwaveFlash + 46672
    7 ...lashPlayer-10.4-10.5.plugin 0x190768e6 unregister_ShockwaveFlash + 46966
    8 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    9 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 22:
    0 libSystem.B.dylib 0x97a402c6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x97a722af pthread_condwait + 1244
    2 libSystem.B.dylib 0x97a73b33 pthreadcond_timedwait_relativenp + 47
    3 ...lashPlayer-10.4-10.5.plugin 0x19076657 unregister_ShockwaveFlash + 46311
    4 ...lashPlayer-10.4-10.5.plugin 0x18f64b48 0x18c50000 + 3230536
    5 ...lashPlayer-10.4-10.5.plugin 0x1907677c unregister_ShockwaveFlash + 46604
    6 ...lashPlayer-10.4-10.5.plugin 0x190767c0 unregister_ShockwaveFlash + 46672
    7 ...lashPlayer-10.4-10.5.plugin 0x190768e6 unregister_ShockwaveFlash + 46966
    8 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    9 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 23:
    0 libSystem.B.dylib 0x97a402c6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x97a722af pthread_condwait + 1244
    2 libSystem.B.dylib 0x97a73b33 pthreadcond_timedwait_relativenp + 47
    3 ...lashPlayer-10.4-10.5.plugin 0x19076657 unregister_ShockwaveFlash + 46311
    4 ...lashPlayer-10.4-10.5.plugin 0x18f64b48 0x18c50000 + 3230536
    5 ...lashPlayer-10.4-10.5.plugin 0x1907677c unregister_ShockwaveFlash + 46604
    6 ...lashPlayer-10.4-10.5.plugin 0x190767c0 unregister_ShockwaveFlash + 46672
    7 ...lashPlayer-10.4-10.5.plugin 0x190768e6 unregister_ShockwaveFlash + 46966
    8 libSystem.B.dylib 0x97a71155 pthreadstart + 321
    9 libSystem.B.dylib 0x97a71012 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x006de000 ebx: 0x9181b20f ecx: 0x00000610 edx: 0xa01ce000
    edi: 0xa01ce000 esi: 0x00000000 ebp: 0x00000000 esp: 0xbfffdfa0
    ss: 0x0000001f efl: 0x00010202 eip: 0x9181b28d cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000014
    Binary Images:
    0x1000 - 0x5d2fec com.apple.Safari 5.0.2 (5533.18.5) <97d5cae404807a569eaf7aadbed34a49> /Applications/Safari.app/Contents/MacOS/Safari
    0x646000 - 0x651fff libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
    0x659000 - 0x683fe8 com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x694000 - 0x6a3ffc SyndicationUI ??? (???) <28a46d7de95282f25743aaaf93013a48> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x11db4000 - 0x12162fe3 com.apple.RawCamera.bundle 3.3.0 (533) <05a38d218556434c8baa850a6ec99b37> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1524c000 - 0x15251ff3 libCGXCoreImage.A.dylib ??? (???) <adb040a70a21224cdd51dbcb779520bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x17762000 - 0x1777efe7 libPDFRIP.A.dylib ??? (???) <efd5a416c82aebf31bdf37ef297ee1f2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x17792000 - 0x17792ffd liblangid.dylib ??? (???) <4a7cd4e810ac2cf4cadd29d0bda17306> /usr/lib/liblangid.dylib
    0x17913000 - 0x17914fff com.apple.JavaPluginCocoa 12.6.0 (12.6.0) <a3fdbdf37a0cbdb866197177dfc21507> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x17c12000 - 0x17c19fff com.apple.JavaVM 12.6.0 (12.6.0) <057da0b31147d0218d472ebdff514979> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1885a000 - 0x18868feb libSimplifiedChineseConverter.dylib ??? (???) <68f130a585c3f580d166ef7cbbf47e69> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x18a75000 - 0x18a78ff2 +com.macromedia.Flash Player.plugin 10.1.85.3 (10.1.85.3) <7c335f75ebdb76fa2f741e584516a12f> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x18ae8000 - 0x18aebff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x18c50000 - 0x1960fff3 +com.macromedia.FlashPlayer-10.4-10.5.plugin 10.1.85.3 (10.1.85.3) <ef601cb10181da93432d165ee610759e> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.4-10.5.plugin/Contents/MacOS/Flas hPlayer-10.4-10.5
    0x1990e000 - 0x19911fff com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <51c811377017028f8904ad779e6a1344> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x19917000 - 0x1991dfff com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2) <a0a4389b5ac52ab84397d2b25c9d3b9c> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x19975000 - 0x199cafdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1c4fb000 - 0x1c626ff7 libmecab.1.0.0.dylib ??? (???) <bef4c5c9918bc623b9137e9bf59b1e5e> /usr/lib/libmecab.1.0.0.dylib
    0x1d0cf000 - 0x1d0ebff7 GLRendererFloat ??? (???) <927b7d5ce6a7c21fdc761f6f29cdf4ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1d3cd000 - 0x1d552fe3 GLEngine ??? (???) <3bd4729832411ff31de5bb9d97e3718d> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1d580000 - 0x1d8e9fe8 com.apple.GeForce8xxxGLDriver 1.5.48 (5.4.8) <880ed3155078052260ade6e705c9ca64> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x1f435000 - 0x1f447fff libTraditionalChineseConverter.dylib ??? (???) <6108541a452ff07d2f67db4a488b9d22> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x9002cfff libcups.2.dylib ??? (???) <9f900b075e5c7c4820aa24e974cf99f0> /usr/lib/libcups.2.dylib
    0x9004a000 - 0x900d7ff7 com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x900d8000 - 0x900e8ffc com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x900e9000 - 0x900f6fe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x900f7000 - 0x90140fef com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90141000 - 0x90173fff com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90174000 - 0x90174ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9017a000 - 0x902fafff com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9045f000 - 0x90592fe7 com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90593000 - 0x905cafff com.apple.SystemConfiguration 1.9.2 (1.9.2) <eab546255ac099b9616df999c9359d0e> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x905cb000 - 0x9067bfff edu.mit.Kerberos 6.0.14 (6.0.14) <673f107cdae80c084774a27bc7bc46c1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9067c000 - 0x90688fff libbz2.1.0.dylib ??? (???) <887bb6f73d23088fe42946cd9f134876> /usr/lib/libbz2.1.0.dylib
    0x90689000 - 0x906fbfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x906fc000 - 0x90703ff7 libCGATS.A.dylib ??? (???) <c1163cbfe15d84f17076245f25094567> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x907e7000 - 0x9086eff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x908be000 - 0x908c5ffe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x908c6000 - 0x90922ff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90923000 - 0x90939fff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9093a000 - 0x90e0bfbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90e0c000 - 0x90e65ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90e66000 - 0x90ef3ff7 com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90ef4000 - 0x90ef4ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90ef5000 - 0x90efcfff com.apple.agl 3.0.9 (AGL-3.0.9) <bc62de7d16827bd12a2cb1016aedfcdc> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90efd000 - 0x90f1bfff libresolv.9.dylib ??? (???) <9ed809256ce8913cddc3269c2e364654> /usr/lib/libresolv.9.dylib
    0x90f1c000 - 0x90ffdff7 libxml2.2.dylib ??? (???) <b3bc0b280c36aa17ac477b4da56cd038> /usr/lib/libxml2.2.dylib
    0x90ffe000 - 0x91064ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x91065000 - 0x910c2ffb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x910c3000 - 0x91156ff3 com.apple.ApplicationServices.ATS 238.14.1 (???) <c9ab7144b2243d0f0f9cd3e264456a6a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91157000 - 0x9115dfff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9115e000 - 0x911b8ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x911b9000 - 0x912a7fef com.apple.PubSub 1.0.5 (65.20) <85a564c5da3f781e7d5c83d5feb4084d> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x912a8000 - 0x912c7ffa libJPEG.dylib ??? (???) <38a243000d3abefeb9ff97e4657538a4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x912c8000 - 0x912e6ff3 com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <062b391cc6becb098d8e5f4b32e50c4a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x912e7000 - 0x91476fe7 com.apple.CoreAUC 3.08.0 (3.08.0) <9043e2896f6c99d96932ff86fc5142a7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x91477000 - 0x914b1fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x914b2000 - 0x915fcfeb com.apple.QTKit 7.6.6 (1674) <ff784c2169c4214493a2b5153d80bd25> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x915fd000 - 0x915fdffe com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x915fe000 - 0x9163dfef libTIFF.dylib ??? (???) <0437eac77e4e874f566ec4219ad1b249> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9163e000 - 0x91689ff7 com.apple.CoreMediaIOServices 130.0 (935) <4ee695edd53f5aa200021a2f69d24f76> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x9168a000 - 0x91691fe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x91692000 - 0x91816fef com.apple.MediaToolbox 0.484.2 (484.2) <a5110a7d3bcb02c45ad8fca1f4957917> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x91817000 - 0x91a0ffff com.apple.JavaScriptCore 5533.18 (5533.18.1) <35153f2ee49352b58351e68118bfc971> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91a10000 - 0x91a2cff3 libPng.dylib ??? (???) <d37524fe884aa164ab7db93d4c803b64> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91a2d000 - 0x92526fff com.apple.WebCore 5533.18 (5533.18.1) <9604e225d63566d0ecb141c1d0d291e2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9255c000 - 0x92836ff3 com.apple.CoreServices.CarbonCore 786.16 (786.16) <60b518e4ad02b91826240199a6311286> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92837000 - 0x92879fef com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9287a000 - 0x9287dfff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9287e000 - 0x92922ff7 com.apple.QuickTimeImporters.component 7.6.6 (1674) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x92923000 - 0x9293fff3 com.apple.CoreVideo 1.6.1 (48.6) <f1837beeefc81964abf7b58075edea2f> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92940000 - 0x92bbcfe7 com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bbd000 - 0x92f5afef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92f5b000 - 0x92f60fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92f61000 - 0x92f65fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x92f78000 - 0x93060ff3 com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93091000 - 0x93093fff com.apple.securityhi 3.0 (30817) <b3517782ad664a21e4fd60242e92723e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93094000 - 0x930c3fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x930ca000 - 0x930caffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x930cb000 - 0x930cbffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x930cc000 - 0x933d4fe7 com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x933d5000 - 0x933d9fff libGIF.dylib ??? (???) <0984073a08c59c7c6be81e52cebf2bec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x933da000 - 0x93407feb libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93408000 - 0x93487ff5 com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93488000 - 0x93489ffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x9348a000 - 0x935dcff3 com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x935dd000 - 0x935f2ffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x935f3000 - 0x93602fff libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x93603000 - 0x937bfff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x937c0000 - 0x93800fef com.apple.CoreMedia 0.484.2 (484.2) <37461ff47cb25ad434a8544c97271d28> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93801000 - 0x93852ff7 com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x938ac000 - 0x93c68ff4 com.apple.VideoToolbox 0.484.2 (484.2) <35f2d177796ebb3b61f9d06593d1787a> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x93c73000 - 0x93c9efe7 libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x93d69000 - 0x93d8dfff libxslt.1.dylib ??? (???) <6a58a8724941e8a0cfeb0cae28ea3f37> /usr/lib/libxslt.1.dylib
    0x93d8e000 - 0x93e59fef com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93e5a000 - 0x93e5affd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93e5b000 - 0x9426bfef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9426c000 - 0x9490cfff com.apple.CoreGraphics 1.409.6 (???) <572a4bdefeabf73e1d7f96cbfe46bb60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94b76000 - 0x94c31fe3 com.apple.CoreServices.OSServices 228.1 (228.1) <3cb50cfcebbb291797b32cb7c2677f87> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94c32000 - 0x94c32ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94c33000 - 0x94cdafeb com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x94cdb000 - 0x954d9fef com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x954da000 - 0x955ceff4 libiconv.2.dylib ??? (???) <96ff4c6f84c4a1623cb78287371cdd3f> /usr/lib/libiconv.2.dylib
    0x955cf000 - 0x955cfffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x955d0000 - 0x9598efea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9598f000 - 0x95998fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95999000 - 0x959a5ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x959a6000 - 0x959b4ffd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x959b5000 - 0x95a48fff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95a49000 - 0x95a98fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x95a99000 - 0x95aa3feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95aa4000 - 0x95ac8feb libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x95ac9000 - 0x95c9aff3 com.apple.security 5.0.6 (37592) <f1a8272a82bd88ecbacc694963fc2f48> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95c9b000 - 0x95d18fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x95d19000 - 0x95da3ff7 com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95da4000 - 0x95e21feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95e22000 - 0x95e9cff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95eda000 - 0x95edffff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x95f4e000 - 0x95f99fe1 com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95f9a000 - 0x95f9ffff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95fa0000 - 0x960d9ff7 libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x960da000 - 0x9611bfe7 libRIP.A.dylib ??? (???) <c2654681db8115c8320d9ac04c8835f2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9615e000 - 0x9616efff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9616f000 - 0x961a9ffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x961aa000 - 0x961aafff com.apple.Carbon 136 (136) <eb3c292d5544512f86e1e4e743c23f8e> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x961ab000 - 0x9628bfff libobjc.A.dylib ??? (???) <400e943f9e8a678eea22a1d1205490ee> /usr/lib/libobjc.A.dylib
    0x9628c000 - 0x96297fe7 libCSync.A.dylib ??? (???) <8ddd66638d4c34e5611916c35f89ca8d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x962cb000 - 0x962daffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <182986b74247b459b2a67a47071bdc6b> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x962db000 - 0x962e3fff com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x962e4000 - 0x9660fff6 com.apple.QuickTime 7.6.6 (1674) <3ebc05dcaf5857bc3d33a04ebabf5c1a> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96684000 - 0x97583fe6 com.apple.QuickTimeComponents.component 7.6.6 (1674) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x97589000 - 0x975c7fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x975c8000 - 0x975caffd com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x975cb000 - 0x9767dffb libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x9767e000 - 0x977b6fe7 com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x977b7000 - 0x977e8ffb com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x977e9000 - 0x97806ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x97807000 - 0x9790eff7 com.apple.WebKit 5533.18 (5533.18.1) <440347f9cd9c6a7522ee74205b8a0c6d> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9790f000 - 0x9795dfe3 com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9795e000 - 0x97976fff com.apple.openscripting 1.2.8 (???) <0129d2f750f5ddcb92f4acf8a3541952> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x97977000 - 0x97a3eff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97a3f000 - 0x97ba6ff3 libSystem.B.dylib ??? (???) <c8f52e158bf540cc000146ca8a705958> /usr/lib/libSystem.B.dylib
    0x97bb3000 - 0x97bbfff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x97bc0000 - 0x97bc0ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97bc4000 - 0x97bfafef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x97bfb000 - 0x97bfdff5 libRadiance.dylib ??? (???) <97ff039f6d372ab58a684a0e311e4ed4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97bfe000 - 0x97c26ff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x97c79000 - 0x97d20fec com.apple.CFNetwork 438.14 (438.14) <1b84042a2846b1d91a89157acc997e70> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x97d21000 - 0x97d21ff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x97d27000 - 0x97e6fff7 com.apple.ImageIO.framework 2.0.7 (2.0.7) <2a585e8223b98b77e0d7d566770b98fd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <b9aea83b1cd97f3230999ebfcbf63e7c> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <bc0bb2eed0f4558f07bbaa812d79371b> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    fleminem --
    Welcome to Apple Discussions!
    We're other Mac users here, asking questions and sharing solutions.
    So, it's affecting BOTH browsers . . .
    1. What has changed since they both worked well, and when they started crashing?
    2. Did you add any new internet apps or extensions?
    3. Did you put on a new "security" app?
    4. Any changes in your Network? Router? Modem? ISP?

  • My firefox crashes immediately it is opened

    when i try using firefox it opens, then it shows download error (Firefox could not download the search plugin from: file:///C:/Users/Luqmon/AppData/Roaming/Mozilla/Firefox/Profiles/xktlbmjp.default/extensions/[email protected]/searchplugins/askcom.xml) then it shows restore session, then it crashes in less than a minute

    First of all please try running in Firefox's safe-mode and with all plugins disabled. Holding the shift key whilst you try to start Firefox is one method of starting safemode
    * see [[Troubleshoot Firefox issues using Safe Mode]]
    **Does that allow Firefox to start ?
    ** Do you still get crashes ? <br /> If so please paste in a couple more crash IDs
    I suspect you have unwanted software possibly as search bars.
    * see [[Remove a toolbar that has taken over your Firefox search or home page]]
    It will be worth looking at your Windows Control panel and the program listing, and very definitely scanning for malware.
    For forum cross referencing purposes
    *Report for your CrashID bp-f5033559-582a-4438-a5f2-ae6eb2130920
    ** Crash Signature: nsHTMLPluginObjElementSH::GetPluginJSObject(JSContext*, JSObject*, nsIPluginInstance*, JSObject**, JSObject**)
    ** note presence of ''sprotector.dll'' (A quick web search suggests that file could be suspect)
    Malware scanning
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

Maybe you are looking for

  • How do I get my iPhone to stop turning on cellular data for apps on its own?

    I have tried resetting on the iphone and resetting all settings. Nothing seems to be working. So far the only improvement is that my iphone stopped turning on cellular data for other apps but now, interestingly, it's turning on cellular data for all

  • Create a Document in DMS and attach a file coming in binary format

    Hi to all, I have to create a new document in DMS (trx: CV01N) with an attachment but this attachment is a pdf file in binary format. Can I use bapi "BAPI_DOCUMENT_CREATE2"? It support binary files in input or I have to convert files in someway? Or I

  • V$session

    Hi, my customer is worry that there are a number of v$session created when the portal user login into the Oracle Portal. The user said that there are about 4 records in v$session (database connection ?) each portal user login. And these will stay the

  • Off-Cycle Payroll Run with reason Absence.

    Hello We are trying to execute Off-Cycle Payroll Run with reason Absence, however the /559 and /560 are showing Zero amount. We are running it via Offcycle workbench. Would it really make a difference? Here are the main configurations I have done: 1.

  • [Solved] Open Office NOT in repositories

    Hi, How do I install open office? Running pacman -S openoffice I get above response. Thanks Solved: found the following Wiki page: http://wiki.archlinux.org/index.php/OpenOffice Last edited by mibadt (2009-11-20 01:43:14)