IE version of JSObject?

Is there a version of the netscape.javascript.JSObject that will work with IE?
More to the point is there a platform independant version of netscape.javascript.* ??
Thanks,
Chris H

Hi,
If you have installed JDK 1.3, please check in the JRE/lib, there will be jaws.jar file. If you extract that file using jar -xvf jaws.jar, you can find the required netscape.javascript.
I hope this will help you.
Thanks
Bakrudeen

Similar Messages

  • Linux Version of netscape.javascript.JSObject(jaws.jar)

    Whats the linux for java version of jaws.jar and where does this reside under jdk installation for linux?
    We need to include it in classpath before compiling our app in linux.
    Thanks

    http://developer.java.sun.com/developer/JDCTechTips/2002/tt0219.html
    Look for javaplugin.jar instead.

  • How do you use the JSObject class?

    Hello everyone,
    So, I am trying to make a java applet call a java script function and I am having some problems.... I began by looking at the JSObject class.... Does the JSObject class come standard with an installation of java? or do I have to find it separately? Also, does it make a difference as to what operating system I'm compiling my applet one? I have been developing in mac, and I cant get my applet to compile, it claims that the netscape.javascript package can't be found..... Any suggestions on this? I'm kinda new to Java web development, as I have only been doing it for a month or so, so please keep any answers simple. Also, any other suggestions by which an applet can call a javascript function are greatly appreciated. Thanks beforehand.

    >
    So, I am trying to make a java applet call a java script function and I am having some problems.... I began by looking at the JSObject class.... Does the JSObject class come standard with an installation of java? or do I have to find it separately? >It is included in the JRE, but 'well hidden'.
    >
    Also, does it make a difference as to what operating system I'm compiling my applet one? >Quite possibly. The Win version puts the main classes into rt.jar, but the netscape classes are in plugin.jar. These are both in the general path ${java.home}/lib/.
    >
    ..I have been developing in mac, and I cant get my applet to compile, it claims that the netscape.javascript package can't be found..... Any suggestions on this? >Add the classes (once you locate them), onto the compile time classpath. I could give you links to documentation on how to do that for either *nix or Windows, but I am not sure how Mac does it.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • 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.

  • Safari (version 6.0.2) keeps crashing

    I would greatly appreciate anyone's help as I have grown terrribly frustrated with Safari crashing randomly on me. I have searched the forum and the internet for possible solutions and have tried some but I have not been able to solve the issue.  I am not savvy with code, etc., and so I am posting the crash log that appears so that perhaps someone can point me in the right direction to solve this.  Thank you in advance.  I use Lion  (version 10.7.5).
    Process:         WebProcess [409]
    Path:            /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcess
    Identifier:      com.apple.WebProcess
    Version:         7536 (7536.26.17)
    Build Info:      WebKit2-7536026017000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    Date/Time:       2013-03-08 21:28:20.756 -0500
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Sleep/Wake UUID: 5D0ECBF4-0694-4FA2-A730-6F4A5E20600A
    Interval Since Last Report:          184025 sec
    Crashes Since Last Report:           24
    Per-App Interval Since Last Report:  174585 sec
    Per-App Crashes Since Last Report:   18
    Anonymous UUID:                      9110440F-CF88-4B9C-A9A4-3C34CB31CDF4
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000011bac8038
    VM Regions Near 0x11bac8038:
        TC malloc              000000011b978000-000000011bac8000 [ 1344K] rw-/rwx SM=PRV 
    -->
        TC malloc              000000011bad5000-000000011c2ba000 [ 8084K] rw-/rwx SM=PRV 
    Application Specific Information:
    objc[409]: garbage collection is OFF
    Bundle controller class:
    BrowserBundleController
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.JavaScriptCore                0x000000010e0b86eb JSC::JSArray::getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, JSC::Identifier const&, JSC::PropertySlot&) + 59
    1   com.apple.JavaScriptCore                0x000000010df903ad JSC::JSValue::get(JSC::ExecState*, JSC::Identifier const&, JSC::PropertySlot&) const + 365
    2   com.apple.JavaScriptCore                0x000000010e17c7c8 llint_slow_path_get_by_id + 168
    3   com.apple.JavaScriptCore                0x000000010e183406 llint_op_get_by_id + 112
    4   com.apple.JavaScriptCore                0x000000010df86f50 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 912
    5   com.apple.JavaScriptCore                0x000000010df86bb4 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 52
    6   com.apple.JavaScriptCore                0x000000010dfd8dc7 JSObjectCallAsFunction + 407
    7   com.apple.Safari.framework              0x0000000112463b12 Safari::EventTarget::handleEvent(Safari::Event*, Safari::RegisteredEventListener const&) + 116
    8   com.apple.Safari.framework              0x0000000112463a1a Safari::EventTarget::fireEventListeners(Safari::Event*, Safari::EventTargetTracker*) + 312
    9   com.apple.Safari.framework              0x000000011246363f Safari::EventTarget::fireEventListeners(Safari::Event*) + 173
    10  com.apple.Safari.framework              0x000000011246354e Safari::EventTarget::dispatchEvent(Safari::Event*) + 370
    11  com.apple.Safari.framework              0x000000011242d7ca Safari::ContentExtension::dispatchMessageToPage(Safari::WK::String const&, Safari::WK::SerializedScriptValue const&, Safari::WK::BundlePage const&) + 128
    12  com.apple.Safari.framework              0x00000001124307a0 Safari::ContentExtension::handleMessage(Safari::WK::String const&, Safari::WK::Type const&) + 140
    13  com.apple.Safari.framework              0x000000011239a014 Safari::BrowserBundleController::dispatchMessage(Safari::WK::String const&, Safari::WK::Type const&) + 62
    14  com.apple.Safari.framework              0x0000000112398754 Safari::BrowserBundleController::didReceiveMessage(Safari::WK::Bundle const&, Safari::WK::String const&, Safari::WK::Type const&) + 40
    15  com.apple.Safari.framework              0x00000001124169b3 _ZN6Safari2WKL17didReceiveMessageEPK14OpaqueWKBundlePK14OpaqueWKStringPKvS8_ + 91
    16  com.apple.WebKit2                       0x000000010dc9a764 WebKit::InjectedBundleClient::didReceiveMessage(WebKit::InjectedBundle*, ***::String const&, WebKit::APIObject*) + 134
    17  com.apple.WebKit2                       0x000000010dc97e5d WebKit::InjectedBundle::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*) + 97
    18  com.apple.WebKit2                       0x000000010dcd7751 WebKit::WebConnectionToUIProcess::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*) + 179
    19  com.apple.WebKit2                       0x000000010dc47cad CoreIPC::Connection::dispatchMessage(CoreIPC::Connection::Message<CoreIPC::Argu mentDecoder>&) + 175
    20  com.apple.WebKit2                       0x000000010dc8aab3 CoreIPC::Connection::dispatchOneMessage() + 139
    21  com.apple.WebCore                       0x000000010ed38618 WebCore::RunLoop::performWork() + 312
    22  com.apple.WebCore                       0x000000010ed38c17 WebCore::RunLoop::performWork(void*) + 71
    23  com.apple.CoreFoundation                0x00007fff936b24f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    24  com.apple.CoreFoundation                0x00007fff936b1d5d __CFRunLoopDoSources0 + 253
    25  com.apple.CoreFoundation                0x00007fff936d8b49 __CFRunLoopRun + 905
    26  com.apple.CoreFoundation                0x00007fff936d8486 CFRunLoopRunSpecific + 230
    27  com.apple.HIToolbox                     0x00007fff8cfcb2bf RunCurrentEventLoopInMode + 277
    28  com.apple.HIToolbox                     0x00007fff8cfd256d ReceiveNextEventCommon + 355
    29  com.apple.HIToolbox                     0x00007fff8cfd23fa BlockUntilNextEventMatchingListInMode + 62
    30  com.apple.AppKit                        0x00007fff8f401779 _DPSNextEvent + 659
    31  com.apple.AppKit                        0x00007fff8f40107d -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    32  com.apple.AppKit                        0x00007fff8f3fd9b9 -[NSApplication run] + 470
    33  com.apple.WebCore                       0x000000010ed38fef WebCore::RunLoop::run() + 63
    34  com.apple.WebKit2                       0x000000010dd2d054 WebKit::WebProcessMain(WebKit::CommandLine const&) + 2586
    35  com.apple.WebKit2                       0x000000010dcf7ac5 WebKitMain + 285
    36  com.apple.WebProcess                    0x000000010dbf9e5e 0x10dbf9000 + 3678
    37  com.apple.WebProcess                    0x000000010dbf9d80 0x10dbf9000 + 3456
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff899057e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff8df5e786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff8df5d316 _dispatch_mgr_thread + 54
    Thread 2:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff89904bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff92673274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010df70fb6 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x000000010e192d9a JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x000000010e1a838f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    5   libsystem_c.dylib                       0x00007fff9266f8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff92672b75 thread_start + 13
    Thread 3:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff89904bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff92673274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010e0f57b4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x000000010e0f5696 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000010e1a838f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    5   libsystem_c.dylib                       0x00007fff9266f8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff92672b75 thread_start + 13
    Thread 4:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8990367a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89902d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff936d050c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff936d8c74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff936d8486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff91f1ffd7 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff91f1472a -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff91f146a2 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff9266f8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff92672b75 thread_start + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff89904df2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff93721c8b __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff9266f8bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff92672b75 thread_start + 13
    Thread 6:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff89904bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff92673274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010df70f7d ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                       0x000000010ed700a1 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool ()(WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                       0x000000010e2ceafa WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore                0x000000010e1a838f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    6   libsystem_c.dylib                       0x00007fff9266f8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff92672b75 thread_start + 13
    Thread 7:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff89904bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff92673274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x000000010df70f7d ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore                       0x000000010ed700a1 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool ()(WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore                       0x000000010e2ceafa WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore                0x000000010e1a838f _ZN3WTFL19wtfThreadEntryPointEPv + 15
    6   libsystem_c.dylib                       0x00007fff9266f8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff92672b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff89905192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92671594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92672b85 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff89905192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92671594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92672b85 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff89905192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92671594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92672b85 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff89905192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92671594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92672b85 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff89905192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92671594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92672b85 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff89905192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92671594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92672b85 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff89905192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92671594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92672b85 start_wqthread + 13
    Thread 15:
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000011bac8038  rbx: 0x00007fff6d7f68e8  rcx: 0x000000010fc33a00  rdx: 0x000000011d8685e0
      rdi: 0x00000001275a6100  rsi: 0x0000000112d7c0e8  rbp: 0x00007fff6d7f6890  rsp: 0x00007fff6d7f6860
       r8: 0x00000000000007ff   r9: 0x0000000119a95bc8  r10: 0x000000012652cd08  r11: 0x0000000114f47c50
      r12: 0x0000000112d7c0e8  r13: 0xffff000000000002  r14: 0x00000001275a6100  r15: 0x000000011d8685e0
      rip: 0x000000010e0b86eb  rfl: 0x0000000000010246  cr2: 0x000000011bac8038
    Logical CPU: 0
    Binary Images:
           0x10dbf9000 -        0x10dbf9fff  com.apple.WebProcess (7536 - 7536.26.17) <2188CE7D-394B-344E-8C8D-10B6E7147DCC> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcess
           0x10dc01000 -        0x10dc01fff  WebProcessShim.dylib (536.26.17 - compatibility 1.0.0) <E951FB41-1358-32EF-9002-80DE9160AC12> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcessShim.dylib
           0x10dc33000 -        0x10de0dff7  com.apple.WebKit2 (7536 - 7536.26.17) <581B0D94-3749-3DFC-B15B-68E026AF5942> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
           0x10df6a000 -        0x10e204ff7  com.apple.JavaScriptCore (7536 - 7536.26.15) <DE475475-D66E-3BF3-9AA6-422601989CF6> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
           0x10e2b0000 -        0x10f256ff7  com.apple.WebCore (7536 - 7536.26.15) <BB07086A-227A-3817-BFED-4DF34E04CD56> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
           0x11234a000 -        0x1127ecfff  com.apple.Safari.framework (7536 - 7536.26.17) <8C9589AE-EA24-3360-812B-DBAE560FBE7F> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
           0x112b0b000 -        0x112c8ffff  com.apple.WebKit (7536 - 7536.26.17) <8FC2CDD6-82DB-3ECE-A5C1-5CDA0E0575F1> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
           0x11317c000 -        0x113192fff  com.apple.WebInspector (7536 - 7536.26.7) <0A8DB0C8-6526-33AF-91BB-910D2B4E3AE8> /System/Library/StagedFrameworks/Safari/WebInspector.framework/Versions/A/WebIn spector
        0x7fff6d7f9000 -     0x7fff6d82dbaf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff898ee000 -     0x7fff8990efff  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8990f000 -     0x7fff89937fff  libsandbox.1.dylib (??? - ???) <7C97EBDB-1351-3939-B2A1-68E0F24D79FB> /usr/lib/libsandbox.1.dylib
        0x7fff89938000 -     0x7fff89995ff7  com.apple.QuickLookFramework (3.2 - 500.18) <C36371BF-E1F6-3DF7-83EA-CE96FCDCE4C4> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff89996000 -     0x7fff899ddff7  com.apple.CoreMedia (1.0 - 705.94) <700C6863-7A8F-34FA-8B1D-7659EC95000B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff899de000 -     0x7fff899fbfff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff89a79000 -     0x7fff89ad4ff7  com.apple.opencl (2.0.19 - 2.0.19) <B05BF605-73B8-328F-A228-6FA59E1FC73A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff89ad8000 -     0x7fff89b05fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <CE1EDD58-7273-38F9-AD33-871A8BA7ABF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff89b06000 -     0x7fff89c63fff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <5F1E4695-BC74-3ADD-8345-627BCD68201A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff89c64000 -     0x7fff89c6fff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff89c70000 -     0x7fff89c77fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff89c78000 -     0x7fff89cfbfef  com.apple.Metadata (10.7.0 - 627.37) <B9BEB598-B6F2-3BFF-A8F3-C3C87CD076AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff89cfc000 -     0x7fff89d16fff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff89d17000 -     0x7fff89d24fff  com.apple.CrashReporterSupport (10.7.4 - 353) <6044CFB6-939E-3C73-BFBB-A8BBC096F135> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff89d25000 -     0x7fff8a158ff7  com.apple.VideoToolbox (1.0 - 705.94) <72AD524C-0616-3C69-BA1F-8D444F97F5A2> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8a159000 -     0x7fff8a15ffff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff8a160000 -     0x7fff8a18cff7  com.apple.CoreServicesInternal (113.19 - 113.19) <74532B3B-EDE0-3553-9BED-F02B9CDF1FF7> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8a199000 -     0x7fff8a1dafff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8a1db000 -     0x7fff8a23bfff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8a626000 -     0x7fff8a642ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8a643000 -     0x7fff8a656ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff8a663000 -     0x7fff8a665fff  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <8D9832F9-E4A9-38C3-B880-E5210B2353C7> /usr/lib/system/libquarantine.dylib
        0x7fff8a666000 -     0x7fff8a678ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff8a679000 -     0x7fff8aa97ff7  com.apple.SceneKit (125.3 - 125.8) <23382F45-D9CE-3897-B998-5B26337608FD> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff8aac0000 -     0x7fff8aae9fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8aaea000 -     0x7fff8aaf0ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8ab0d000 -     0x7fff8abf9ff7  com.apple.backup.framework (1.3.5 - 1.3.5) <B25104A3-1CE5-36CA-8F26-0A2DE3F95F70> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8abfc000 -     0x7fff8ac00fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8ac01000 -     0x7fff8ac08fff  libGFXShared.dylib (??? - ???) <D3598924-B167-372E-8C9F-1BBF68852542> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8adc2000 -     0x7fff8adc2fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8adc5000 -     0x7fff8adc6fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff8adc7000 -     0x7fff8adc8ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8adc9000 -     0x7fff8ae25ff7  com.apple.HIServices (1.21 - ???) <B012EE97-D1CD-3F4B-812D-9AC7E6852FE6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8ae26000 -     0x7fff8ae33fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <72C53E7B-C222-3BE5-9984-FDC328CC4846> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8ae3f000 -     0x7fff8b26cfff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8b26d000 -     0x7fff8b2bfff7  libGLU.dylib (??? - ???) <DB906997-0F70-3469-BA0E-2F1DDBEAD8D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8b2c0000 -     0x7fff8b2c3fff  libMatch.1.dylib (??? - ???) <42305BB6-25F9-355A-9076-FED38B21A7F9> /usr/lib/libMatch.1.dylib
        0x7fff8b2c4000 -     0x7fff8b326ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8b327000 -     0x7fff8b40bff7  com.apple.CoreServices.OSServices (478.49 - 478.49) <E5BF2069-ED1A-31F5-AFC2-4A530BD467AA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8b48f000 -     0x7fff8b48ffff  libOpenScriptingUtil.dylib (??? - ???) <A7847713-F410-39C0-884F-A7188A18E742> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8b490000 -     0x7fff8b4adff7  com.apple.openscripting (1.3.3 - ???) <F5E34F54-CE85-334B-8F25-53581D43960C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8b4ae000 -     0x7fff8b4b9ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8b4ba000 -     0x7fff8b530ff7  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <A24FC3DA-4FFA-3DD2-9DCC-2B8D1B3BF97C> /usr/lib/libc++.1.dylib
        0x7fff8b531000 -     0x7fff8b533fff  libCVMSPluginSupport.dylib (??? - ???) <982F1ED4-3CBB-3161-8BEA-8A980C27FCC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8b534000 -     0x7fff8b55dff7  com.apple.framework.Apple80211 (7.4.1 - 741.1) <F60DA830-84ED-3473-8DE8-611A9D9B56FF> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8b55e000 -     0x7fff8b625ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8b626000 -     0x7fff8b732fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8b733000 -     0x7fff8b73aff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8b73b000 -     0x7fff8b871fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8c188000 -     0x7fff8c190fff  libsystem_dnssd.dylib (??? - ???) <584B321E-5159-37CD-B2E7-82E069C70AFB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8c191000 -     0x7fff8c1e4fff  com.apple.AppleVAFramework (5.0.16 - 5.0.16) <6F9A4BCE-8B99-3144-BCF7-B4299B27F6E9> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8c1e5000 -     0x7fff8c2ecfe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff8c2ed000 -     0x7fff8c2edfff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8c2ee000 -     0x7fff8c321ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8c322000 -     0x7fff8c3c7fff  com.apple.ink.framework (10.7.5 - 113) <1AE6676D-490A-36C2-B6CC-00F93AEB31DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8c3c8000 -     0x7fff8c3deff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <1AD40E02-2126-377B-A0D2-CBB21D932558> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8c446000 -     0x7fff8c45bfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8c45c000 -     0x7fff8c575fff  com.apple.DesktopServices (1.6.5 - 1.6.5) <5E7DD5F4-B4DA-3F75-A14A-3494E81CFBA0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8c576000 -     0x7fff8c677fff  com.apple.QuickLookUIFramework (3.2 - 500.18) <56A13D40-9A61-3B98-85ED-B1C7075A88FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8c678000 -     0x7fff8c686fff  com.apple.NetAuth (3.2 - 3.2) <F0D60E34-37A9-308D-B44E-E3450906173A> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8c687000 -     0x7fff8c6efff7  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <9987DC46-2A96-3BA0-B88B-04E573C0AD9B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8c8e0000 -     0x7fff8cc05ff7  com.apple.AddressBook.framework (6.1.3 - 1091) <5A8BEED1-229C-3A9C-8281-581127A1B9B5> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8cc06000 -     0x7fff8ce30fe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8ce3b000 -     0x7fff8ce40fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff8ce41000 -     0x7fff8ce7cfff  com.apple.LDAPFramework (3.2 - 120.2) <275D4298-C435-3E98-AA25-95D9D0A56550> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8cf0e000 -     0x7fff8cf92ff7  com.apple.ApplicationServices.ATS (317.12.0 - ???) <BE3C156D-8326-37AA-BC4E-D3C0D31BF976> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8cf9d000 -     0x7fff8cfc8fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff8cfc9000 -     0x7fff8d2f5fff  com.apple.HIToolbox (1.9 - ???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8d2f6000 -     0x7fff8d56efff  com.apple.imageKit (2.1.2 - 1.0) <23470050-28FB-3B09-8E27-ADC371B0E4B8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8d57b000 -     0x7fff8d580fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8d581000 -     0x7fff8d613ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8d66c000 -     0x7fff8d670fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <35D606B1-7AD9-38E3-A2A9-E92B904BDDE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8d671000 -     0x7fff8d6bdff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8d6c0000 -     0x7fff8d6cffff  com.apple.opengl (1.8.1 - 1.8.1) <51B34133-CEE3-3FC6-82AC-ADF567AE673C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8d723000 -     0x7fff8d8c3ff7  com.apple.QuartzCore (1.7 - 270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8d8c4000 -     0x7fff8d918ff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8d922000 -     0x7fff8d922fff  com.apple.quartzframework (1.5 - 1.5) <2C13AE76-C86B-3D48-A583-121689190F74> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8da5a000 -     0x7fff8da71fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8da72000 -     0x7fff8dab4fff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8dab5000 -     0x7fff8db30ff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8df4d000 -     0x7fff8df58ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8df59000 -     0x7fff8df5afff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff8df5b000 -     0x7fff8df69fff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
        0x7fff8df6a000 -     0x7fff8e04ee5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff8e04f000 -     0x7fff8e0e2fff  com.apple.PDFKit (2.6.4 - 2.6.4) <4C58283C-3F45-31C6-9896-5EFFFF82D840> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8e0e3000 -     0x7fff8e10bfff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8e10c000 -     0x7fff8e8b4fff  com.apple.CoreAUC (6.16.12 - 6.16.12) <EF535959-14FE-3B61-9C32-DF4C54B8F12D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8e8b5000 -     0x7fff8e8bbfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8e8bc000 -     0x7fff8e8befff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8ea96000 -     0x7fff8ea96fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8ea97000 -     0x7fff8eb76fff  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <E982B3FF-4788-3FA2-B9F1-53E44E2EA9BA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8eb79000 -     0x7fff8eb8bff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff8eb8c000 -     0x7fff8ee44fff  com.apple.RawCamera.bundle (4.00 - 658) <789BC5C7-F03A-388C-B540-070FF5574B0C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8efed000 -     0x7fff8efedfff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8efee000 -     0x7fff8f002ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8f003000 -     0x7fff8f003fff  com.apple.Carbon (153 - 153) <AF0F9910-E3C3-3922-AA92-A39000655E0F> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8f0b2000 -     0x7fff8f0b7fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff8f0b8000 -     0x7fff8f0b8fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8f306000 -     0x7fff8f322fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A1ABA9DB-2C8A-3C96-976A-21E63194F7B2> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8f323000 -     0x7fff8f332fff  libxar.1.dylib (??? - ???) <9E05C939-6CBF-38E7-8915-86278F7DB6C7> /usr/lib/libxar.1.dylib
        0x7fff8f333000 -     0x7fff8f3a3fff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8f3cd000 -     0x7fff8f3d8fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8f3d9000 -     0x7fff8f3f8fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff8f3f9000 -     0x7fff8fffffff  com.apple.AppKit (6.7.5 - 1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff90000000 -     0x7fff900b3ff7  com.apple.CoreText (220.22.0 - ???) <A7A1096F-A211-3775-BA33-08FE98D27F08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff9014a000 -     0x7fff90157ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff9021e000 -     0x7fff902b8ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff90306000 -     0x7fff90408fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff9072c000 -     0x7fff90743fff  com.apple.CFOpenDirectory (10.7 - 146) <E6D4F114-678B-3957-9C59-9206ECDA756E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff90744000 -     0x7fff9077efe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff9077f000 -     0x7fff909f3fff  com.apple.CoreImage (7.99.1 - 1.0.1) <4BB09B79-275B-364C-9466-0FF36ABB1218> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff909f4000 -     0x7fff90a18fff  com.apple.RemoteViewServices (1.5 - 44.2) <A0417D7F-22E9-3FD8-AC55-67654D8E93EB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff90a19000 -     0x7fff90b26fff  libJP2.dylib (??? - ???) <053950A7-6B92-320E-A6D7-808CE424F1AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff90b27000 -     0x7fff90b7fff7  libTIFF.dylib (??? - ???) <4DA86D53-8977-351D-9DC5-C7AE8F0FD423> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff90b80000 -     0x7fff90e75ff7  com.apple.security (7.0 - 55148.6) <4535E500-973A-3BA7-AF65-DF5CF0658F02> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff90e76000 -     0x7fff90f73ff7  com.apple.avfoundation (2.0 - 180.50) <A2EAE4E6-4DBA-3AAB-A387-7E72B93B6DA9> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff90f74000 -     0x7fff90f82ff7  libkxld.dylib (??? - ???) <01161870-E3B3-3F87-BA4A-0AA7A081F409> /usr/lib/system/libkxld.dylib
        0x7fff90f83000 -     0x7fff911f4fff  com.apple.QuartzComposer (5.0 - 236.10) <F8560AEC-4E26-3A43-BE0A-B20FCB5B2E7D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff911f5000 -     0x7fff911ffff7  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <8C235D13-2928-30E5-9E12-2CC3D6324AE2> /usr/lib/system/liblaunch.dylib
        0x7fff91200000 -     0x7fff91206ff7  com.apple.phonenumbers (1.0 - 47) <BC6C2FE2-99C0-3AD6-AA9C-C88780FFFCCF> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff91207000 -     0x7fff9120afff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff9120b000 -     0x7fff91210ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff91211000 -     0x7fff91232fff  libPng.dylib (??? - ???) <E2B52527-4D0C-3595-BB13-8E8EF364E998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff91234000 -     0x7fff91bd2a27  com.apple.CoreGraphics (1.600.0 - ???) <576777EA-921B-3D94-98C3-40A9CF8EBD18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff91bd3000 -     0x7fff91c08fff  libTrueTypeScaler.dylib (??? - ???) <A8156684-3BBE-306C-B492-179CDFFD6027> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff91c09000 -     0x7fff91c0ffff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff91cf4000 -     0x7fff91d34ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <7D2E5016-A960-3ADE-B042-F74063E79550> /usr/lib/libcups.2.dylib
        0x7fff91e77000 -     0x7fff91eb9ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff91eba000 -     0x7fff921d3fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9231a000 -     0x7fff92353fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff92354000 -     0x7fff92556fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <0176782F-9526-3905-813A-7A5676EC2C86> /usr/lib/libicucore.A.dylib
        0x7fff925b4000 -     0x7fff9261cff7  com.apple.coreui (1.2.2 - 165.11) <9316266A-39CA-3EC7-9C9E-726462CEFF4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff9261d000 -     0x7fff92620fff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff92621000 -     0x7fff926fefef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff926ff000 -     0x7fff926fffff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff92bb1000 -     0x7fff92bb3ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff92c08000 -     0x7fff92c1efff  libGL.dylib (??? - ???) <A4876AE9-DDFE-3B9A-874E-09BC29D46C39> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff92c1f000 -     0x7fff92c4fff7  com.apple.DictionaryServices (1.2.1 - 158.3) <5E2EBBFD-D520-3379-A431-11DAA844B8D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff92c50000 -     0x7fff92cc3fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff92cc4000 -     0x7fff92d3afff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff92d3b000 -     0x7fff92d64fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff92d65000 -     0x7fff92d74ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff92d75000 -     0x7fff92f00ff7  com.apple.QTKit (7.7.1 - 2339) <2BC2CF44-CEAF-3D3B-A250-CA59D6AFB0B0> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff92f48000 -     0x7fff92fdeff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff932eb000 -     0x7fff93607fff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <4FC1AB30-022C-3C67-AC46-FDCBFCB7EEDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff93660000 -     0x7fff9369ffff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff936a0000 -     0x7fff93874ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff938be000 -     0x7fff938d0ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff938d1000 -     0x7fff938daff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff938e7000 -     0x7fff93daefff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff93daf000 -     0x7fff94393fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff943e2000 -     0x7fff943e3fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff944d5000 -     0x7fff94529fff  libFontRegistry.dylib (??? - ???) <60FF9C2C-5E44-3C49-8A08-F26101898F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff94551000 -     0x7fff9459ffff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff945a0000 -     0x7fff945e4ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <B2A38D2C-7E82-34C5-8896-48C37B0E64A3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff945e5000 -     0x7fff9460bfff  com.apple.framework.familycontrols (3.0 - 300) <6F0C58C0-22E7-3877-8CFA-1ED0CB3CE38B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff94625000 -     0x7fff9466eff7  com.apple.framework.CoreWLAN (2.1.3 - 213.1) <D2101093-0B35-3B90-B511-E9272400ED9B> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff9466f000 -     0x7fff94670ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff94671000 -     0x7fff946dcff7  com.apple.framework.IOKit (2.0 - ???) <FE838BB6-D42E-3291-A1A0-6F53FC970261> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff946dd000 -     0x7fff946e0fff  libCoreVMClient.dylib (??? - ???) <28CB0F3F-A202-391F-8CAC-FC9A1398A962> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff946e3000 -     0x7fff94718fff  com.apple.securityinterface (5.0 - 55022.6) <4D6DAF8F-7873-3992-A6D6-478C7664FA39> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff94719000 -     0x7fff9471efff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff9471f000 -     0x7fff9477afff  com.apple.ImageCaptureCore (3.1.0 - 3.1.0) <9F7C4D81-5CC7-3D66-AC66-81EA9A5EAB94> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff9477b000 -     0x7fff94787fff  com.apple.DirectoryService.Framework (10.7 - 146) <65C78AE3-89B8-3372-8359-31FD520781D5> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff94788000 -     0x7fff94789ff7  libsystem_sandbox.dylib (??? - ???) <2A09E4DA-F47C-35CB-B70C-E0492BA9F20E> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff9478a000 -     0x7fff947dbff7  com.apple.CoreMediaIO (216.0 - 3199.8) <4D3FE512-E943-34E3-A7A5-2EC2E3854E28> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff94862000 -     0x7fff94c0cfe7  com.apple.MediaToolbox (1.0 - 705.94) <0719E69C-3275-3BD9-AD04-27DBADEB6E03> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff94c0d000 -     0x7fff94c12fff  libGIF.dylib (??? - ???) <58A4492D-AAE7-3B8F-8B06-62867471A3EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff94c51000 -     0x7fff94c55ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff94c56000 -     0x7fff94dbdfff  com.apple.CFNetwork (520.5.1 - 520.5.1) <08F70E26-5456-3BFB-8192-00D3CE40D3C9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff94dbe000 -     0x7fff94ec3fff  libFontParser.dylib (??? - ???) <D2E56B6E-3182-3667-A78C-4172C435523A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff94ec4000 -     0x7fff94eefff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff962ed000 -     0x7fff962edfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff962ee000 -     0x7fff962eefff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff96368000 -     0x7fff96395fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff96396000 -     0x7fff963bdfff  com.apple.framework.internetaccounts (1.2 - 3) <28D44E21-54F2-366B-B9D9-1DB788EF0278> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff963c0000 -     0x7fff963c3fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff963c4000 -     0x7fff96465fff  com.apple.LaunchServices (480.40 - 480.40) <C936A07F-0CF8-3F8E-BDB3-76AA7611B4CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff96466000 -     0x7fff964a6fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff964a7000 -     0x7fff964a8fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff964a9000 -     0x7fff9654bfff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff9654c000 -     0x7fff96641fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff96642000 -     0x7fff9667dfff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff966af000 -     0x7fff966effe7  libGLImage.dylib (??? - ???) <0B7DAB2B-F1C6-39C7-B864-61EF683B6656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff96706000 -     0x7fff9678bff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff9678c000 -     0x7fff96790fff  libdyld.dylib (195.6.0 - compatibility 1.0.0) <FFC59565-64BD-3B37-90A4-E2C3A422CFC1> /usr/lib/system/libdyld.dylib
        0x7fff96791000 -     0x7fff96807fff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff96808000 -     0x7fff9680bff7  com.apple.securityhi (4.0 - 1) <37DF1BF8-ACE0-3C4A-81AA-BBA9744EB0A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff9680c000 -     0x7fff96830fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff96831000 -     0x7fff96838fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 16
        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: 862
        thread_create: 3
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=222.4M resident=110.6M(50%) swapped_out_or_unallocated=111.8M(50%)
    Writable regions: Total=1.3G written=269.6M(20%) resident=304.0M(23%) swapped_out=0K(0%) unallocated=1.0G(77%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG image                              264K
    CG shared images                     4408K
    CoreAnimation                           4K
    CoreGraphics                           16K
    CoreServices                         2300K
    JS JIT generated code               256.0M
    JS JIT generated code (reserved)    768.0M        reserved VM address space (unallocated)
    JS VM register file   

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    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. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  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.
    *Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.
    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 steps 1 and 2.

  • 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 !!!)

  • JSObject programming was not working when compiled in JSDK1.4.2_06

    JSObject programming was not working when compiled in JSDK1.4.2_06.
    But problem solved when i compiled with JSDK1.3.1_15 and tested with JVM 1.3.1_15.
    Still I could not run the class file generated in JSDK1.3.1_15 in JVM 1.4.2_06.
    What do you think happened across the SDK versions? Shouldn't the JSObject
    and other classes be part of the browser JVM.
    I want to know whether JSObject supports in JSDK1.4.2_06.
    It goes into the loop. It neither say error nor execute.

    Do not spam the site by posting to 4 forums

  • Solaris 10 Netscape, Java , (Javascript) JSObject  Issue.

    Hi all,
    I am migrating the source code from solaris 8 wtih CC compiler 4.2 to solaris 10 cc compiler 5.7 on x86 Machine. Most of Problems i got solution from C++ forum so i almost through. But while building one directory that contains some java Applets i got issues:-
    1. Since its using
    import netscape.javascript.JSObject; so it was not getting this JSObject on the latest Solaris 10 Machine. what i did i copied the /outils/netscape/solaris/java_301on solaris 10 Machine from solaris 7 Machine. then i build it again. every thing got build successfully and generated Input.class file but again it gave me following message
    Note: Some input files use unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    then i tried with -Xlint option and it again bounce me some errors.
    So question here is that on Solaris 10 is there any thing else that i can use for Java Script i.e JSObject if there is no netscape i.e whats the default browser mozillla or netscape. and why java_301 is used and what will happend if i try something else other than java_301. as it was using
    -classpath = /outils/netscape/solaris/java_301
    while doing javac compiling. and other thing i see is
    -classpath /usr/java/lib/classes.zip
    but when i see version of java on solaris 10 there is no classes.zip. whats the use of this.??
    and when i used -Xlint it bounce error with classes.zip not found.

    This forum is about using Sun C++. Your question is about Java. You are more likely to get a helpful answer in java forum.
    Try the java forum:
    http://forum.sun.com/forum.jspa?forumID=8

  • MyApplet.java:2: Class netscape.javascript.JSObject not found in import.

    Hi,
    Im getting: MyApplet.java:2: Class netscape.javascript.JSObject not found in import.
    import netscape.javascript.JSObject;
    Where can i get this package. Someone said jaws.jar, but its not to be found. Im new on this project and I dont know how the old people compiled this applet.
    JDK version is:
    Solaris VM (build Solaris_JDK_1.2.2_10, native threads, sunwjit)
    Thanks

    Thanks man!
    I installed the jdk1.4 on my workstation. I then compiled the program via JDeveloper and pumped the class over to my server.
    Thanks again.

  • Cannot Resolve Symbol  netscape.javascript.JSObject

    I am trying to communicate fom an applet to a javascript. I am usinjg jdk1.3.1 and did an import netscape.javascript.JSObject; in my applet class.
    When I compile I get cannot resolve symbol JSObject. The import does not seem to work.
    Do I have to download the package from somewhere and put it in the jdk1.3.1 dir in some place?
    Thanks

    Ive netscape 7.1 and the JSDK 1.4.2. The Java40.Jar doesnt seem to be present in my netscape folder anywhere so I assume that it isnt included in the newest version of netscape.
    I tried using the javaws.jar that came with my JSDK but it didnt work. I opened it up and searched it and saw no mention of a JSObject file.
    Im a little confused at this point. Where can I look up the location of the JSObject?

  • Netscape.javascript.JSObject without applets - Urgent!

    Hi,
    I need to evaluate some Javascript expressions inside my java code... BUT my code is not inside an Applet class. Does anyone know how to do it?
    I chose to use the netscape.javascript package, it work well inside an applet.. but my application doesn't run inside an applet. When I try to run it inside a standalone application it fails (even if the application extends from the Applet class).
    Here is part of the code:
    public class Applet1 extends Applet {
    public void init() {
    try {
    String out;
    JSObject win = JSObject.getWindow(this);
    out=win.eval("2+3;").toString();
    jLabel1.setText(out);
    System.out.print(out);
    public static void main(String[] args){
    Applet1 app=new Applet1();
    app.init();
    The code runs perfect inside Internet explorer, but it crashes when running in standalone mode.
    Thanks.

    I need to evaluate some Javascript expressions inside
    my java code... BUT my code is not inside an Applet
    class. Does anyone know how to do it?Haven't actually used it, but Mozilla has the Rhino JavaScript interpreter:
    http://www.mozilla.org/rhino/
    Also you could Google for FESI, which is an ECMAScript interpreter (basicly an early version of JavaScript that went through the standards process).

  • How can i detect the version of the browser in applet

    i wanto detect the version of the browser in applet
    can you help me?

    Hi glovebx!
    Currently there isn't way via java applets since the nearest method is System.getProperty(String key)
    and there isn't a proper key allowed to browser version/name.
    Try to get this browser property via javascript then interact with applet using package netscape.javascript.JSObject.
    Best Regards.
    P.S.: Visit http://developer.netscape.com to read about this issue.

  • JSObject missing in Forte 1.3

    Hello All,
    Very tired at the moment, so hoping someone can kickstart my brain, preferably with an answer to a problem that I'd probably be able to solve given 10 hours of sleep...
    Using the community version of Forte 1.3. Just built an applet (extending java.awt.Applet) and was trying to access the JSObject (netscape.javascript.JSObject). Lo and behold my IDE has no access to JSObject...
    import netscape.javascript.JSObject;
    yields "package netscape.javascript does not exist" error.
    Tried to figure out why the package is not included in the Forte setup, considering it's such a common package. Failing that I tried to go find the package and class files on the web, hoping to manually 'build' them into my project, but couldn't do that either.
    Forte can't even find the package 'netscape' for that matter.
    Thanks for any help.

    Thank you (dekassegui) for the assistance. You earned the 3 juicy duke dollars.
    If you have another moment, how did you find that out (that the netscape package was tucked in the JAWS.jar archive?) The Forte help system, as far as I could find, had no info on that. Was there some other source, such as some general JSDK 1.3+ docs/info. Please direct me there if possible.
    Thanks much.

  • Call a Javascript function without JSObject

    Hi all,
    With j2 sdk 1.4.2_08 the JSObject doesn't seem to ship anymore. I need to find a solution to either:
    1. call a javascript function from within an applet without the JSObject
    2. or find a different way of executing the http: or mailto: protocols in a new browserwindow.
    Would getAppletContext ().showDocument (new URL (oURLString),"Titlet"); be able to do this trick for me? The thing is that with this applet people can click on an image of a map, and then a new browserwindow opens up which calls an asp which shows certain database information. The mailto: protocol is used to enable users to send an email from the applet with certain informations about the map as well.
    TIA,
    Stefan

    hmmmm. That might do the trick for me as well, but I had hoped I would not have to change the page in which the applet loads ...
    I think I'll give showDocument a couple of tries, and I also think I should download the docs for this version.
    BTW, it could very well be that the JSObject was never part of the JRE/plugin. It's just that this project is a very old solution revisited (I first developed it in 1998 or 1999, then worked again on it in 2001/2003, and now it's come back to haunt me again). It's just that when I do a javac it complains about not being able to find netscape.javascript.*. For now I've commented them out, which means two of my commands don't work anymore, and before I deliver I have to fix that.
    Thanks,
    Stefan

  • JSObject.getWindow(this) doesn't work in NN6

    Hi,
    I'm trying to call JSObject.getWindow(this) method from init() method of an applet. I'm using Netscape 6, win2k, JRE 1.4. When this statement is reached, IE 5.0 works fine, but Netscape (6.0/6.2/7.0) hangs. The CPU usage becomes 100% if I see the task manager/performance. It doesn't even throw any exception. I'm using netscape.javascript.JSObject class. Please help me out.
    Deepak Jain

    have same problem.
    could not be solved, using java version 1.4.2:
    Java(TM) Plug-in: Version 1.4.2_01
    Verwendung der JRE-Version 1.4.2 Java HotSpot(TM) Client VM
    problem exists under
    Mozilla 1.0rc2
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.0rc2) Gecko/20020510

Maybe you are looking for

  • Looking for some

    Hi all, I have been developing in Coldfusion for over a year now. I currently have some freelance work but I need a few more hours. I was wondering if anyone had any work available (looking for 5-15 hours a week). I charge $16 an hour for development

  • Gradient filled background is not showing up in Internet Explorer on a PC.

    My gradient filled background is not showing up in Internet Explorer on a PC. I'm working on a MAC, so I don't know of anyway to preview a new MUSE Site in I.E. since it's no longer supported on a Mac. When the Home Page is viewed, my blue sky gradie

  • Po status

    Hi All, My client has a requirement that E Mail notification  shall be send to buyer that PO will be deletd regarding POs that are 1) 30 days old 2) No approvals started 3) NO GR/IR/Payment done Finally delete such POS. To start with We will have to

  • ADF LOV  (Just allow to select but not validate)

    We need a LOV on a column. User wants to look up using the LOV , sometimes he selects data from the LOV and sometimes he will enter the data he wish.. Example : Let say i have deptIDs: 10,11,15,20,21etc Sometimes user picks the exact deptID and somet

  • HP Pavilion g7 notebook

    Error message fan is over heating.  Area location of heat source:  upper left underneath the laptop.  What is this part called so I can replace it?