JpegImagesToMovie - Exception in thread "JMF thread: SendEventQueue: com.su

I am trying to create a movie file from a bunch of images I have using Sun's JpegImagesToMovie class found here:
http://java.sun.com/products/java-media/jmf/2.1.1/solutions/JpegImagesToMovie.html
I can't post all 500 lines of the sample code here but it's unchanged from the download page above. The error is happening at the following line, almost at the end:
raFile = new RandomAccessFile(imageFile, "r");Here is what happens when I run it. I have to hit CTRL+C in order to get it to come back to the prompt once it breaks. Any ideas?
C:\Users\admin\workspace\Tester\bin>java JpegImagesToMovie -w 320 -h 240 -f 5 -o
file:/c:/images/movie.mov file:/c:/images/picture1.jpg file:/c:/images/picture2.jpg file:/c:/images/picture3.jpg file:/c:/images/picture4.jpg file:/c:/images/picture5.jpg file:/c:/images/picture6.jpg file:/c:/images/picture7.jpg
file:/c:/images/picture8.jpg file:/c:/images/picture9.jpg file:/c:/images/picture10.jpg file:/c:/images/picture11.jpg file:/c:/images/picture12.jpg file:/c:/images/picture13.jpg file:/c:/images/picture14.jpg file:/c:/images/picture15.jpg
file:/c:/images/picture16.jpg file:/c:/images/picture17.jpg file:/c:/images/picture18.jpg file:/c:/images/picture19.jpg file:/c:/images/picture20.jpg
- create processor for the image datasource ...
Setting the track format to: JPEG
- create DataSink for: file:/c:/images/movie.mov
start processing...
  - reading image file: file:/c:/images/picture1.jpg
  - reading image file: file:/c:/images/picture2.jpg
  - reading image file: file:/c:/images/picture3.jpg
  - reading image file: file:/c:/images/picture4.jpg
  - reading image file: file:/c:/images/picture5.jpg
  - reading image file: file:/c:/images/picture6.jpg
  - reading image file: file:/c:/images/picture7.jpg
  - reading image file: file:/c:/images/picture8.jpg
  - reading image file: file:/c:/images/picture9.jpg
  - reading image file: file:/c:/images/picture10.jpg
  - reading image file: file:/c:/images/picture11.jpg
  - reading image file: file:/c:/images/picture12.jpg
  - reading image file: file:/c:/images/picture13.jpg
  - reading image file: file:/c:/images/picture14.jpg
  - reading image file: file:/c:/images/picture15.jpg
  - reading image file: file:/c:/images/picture16.jpg
  - reading image file: file:/c:/images/picture17.jpg
  - reading image file: file:/c:/images/picture18.jpg
  - reading image file: file:/c:/images/picture19.jpg
  - reading image file: file:/c:/images/picture20.jpg
Done reading all images.
Exception in thread "JMF thread: SendEventQueue: com.sun.media.processor.unknown.Handler" java.lang.NullPointerException
        at com.sun.media.multiplexer.video.QuicktimeMux.writeVideoSampleDescript
ion(QuicktimeMux.java:936)
        at com.sun.media.multiplexer.video.QuicktimeMux.writeSTSD(QuicktimeMux.j
ava:925)
        at com.sun.media.multiplexer.video.QuicktimeMux.writeSTBL(QuicktimeMux.j
ava:905)
        at com.sun.media.multiplexer.video.QuicktimeMux.writeMINF(QuicktimeMux.j
ava:806)
        at com.sun.media.multiplexer.video.QuicktimeMux.writeMDIA(QuicktimeMux.j
ava:727)
        at com.sun.media.multiplexer.video.QuicktimeMux.writeTRAK(QuicktimeMux.j
ava:644)
        at com.sun.media.multiplexer.video.QuicktimeMux.writeMOOV(QuicktimeMux.j
ava:582)
        at com.sun.media.multiplexer.video.QuicktimeMux.writeFooter(QuicktimeMux
.java:519)
        at com.sun.media.multiplexer.BasicMux.close(BasicMux.java:142)
        at com.sun.media.BasicMuxModule.doClose(BasicMuxModule.java:172)
        at com.sun.media.PlaybackEngine.doClose(PlaybackEngine.java:872)
        at com.sun.media.BasicController.close(BasicController.java:261)
        at com.sun.media.BasicPlayer.doClose(BasicPlayer.java:229)
        at com.sun.media.BasicController.close(BasicController.java:261)
        at JpegImagesToMovie.controllerUpdate(JpegImagesToMovie.java:230)
        at com.sun.media.BasicController.dispatchEvent(BasicController.java:1254
        at com.sun.media.SendEventQueue.processEvent(BasicController.java:1286)
        at com.sun.media.util.ThreadedEventQueue.dispatchEvents(ThreadedEventQueue.java:65)
        at com.sun.media.util.ThreadedEventQueue.run(ThreadedEventQueue.java:92)

Damn, give me enough time and I might figure this out myself.
So after a little searching I figured out you don't have to put the file prefix in front of the image locations so I retried it with the following and it seemed to have worked:
C:\Users\admin\workspace\Tester\bin>java JpegImagesToMovie -w 320 -h 240 -f 5 -o file:/c:/images/movie2.mov
c:/images/picture1.jpg c:/images/picture2.jpg c:/images/picture3.jpg c:/images/picture4.jpg c:/images/picture5.jpg
c:/images/picture6.jpg c:/images/picture7.jpg c:/images/picture8.jpg c:/images/picture9.jpg
c:/images/picture10.jpg c:/images/picture11.jpg c:/images/picture12.jpg c:/images/picture13.jpg c:/images/picture14.jpg
c:/images/picture15.jpg c:/images/picture16.jpg c:/images/picture17.jpg c:/images/picture18.jpg c:/images/picture19.jpg
c:/images/picture20.jpg
- create processor for the image datasource ...
Setting the track format to: JPEG
- create DataSink for: file:/c:/images/movie2.mov
start processing...
  - reading image file: c:/images/picture1.jpg
    read 19298 bytes.
  - reading image file: c:/images/picture2.jpg
    read 19316 bytes.
  - reading image file: c:/images/picture3.jpg
    read 19282 bytes.
  - reading image file: c:/images/picture4.jpg
    read 19260 bytes.
  - reading image file: c:/images/picture5.jpg
    read 19270 bytes.
  - reading image file: c:/images/picture6.jpg
    read 19301 bytes.
  - reading image file: c:/images/picture7.jpg
    read 19283 bytes.
  - reading image file: c:/images/picture8.jpg
    read 19319 bytes.
  - reading image file: c:/images/picture9.jpg
    read 19222 bytes.
  - reading image file: c:/images/picture10.jpg
    read 19141 bytes.
  - reading image file: c:/images/picture11.jpg
    read 19009 bytes.
  - reading image file: c:/images/picture12.jpg
    read 19016 bytes.
  - reading image file: c:/images/picture13.jpg
    read 18985 bytes.
  - reading image file: c:/images/picture14.jpg
    read 18902 bytes.
  - reading image file: c:/images/picture15.jpg
    read 18865 bytes.
  - reading image file: c:/images/picture16.jpg
    read 18884 bytes.
  - reading image file: c:/images/picture17.jpg
    read 18923 bytes.
  - reading image file: c:/images/picture18.jpg
    read 19031 bytes.
  - reading image file: c:/images/picture19.jpg
    read 19290 bytes.
  - reading image file: c:/images/picture20.jpg
    read 19474 bytes.
Done reading all images.
...done processing.However, when I try to play the movie2.mov output file in either Windows Media Player or Quicktime, both of them crash before playing anything.
Edited by: DeX on Feb 26, 2008 12:50 PM

Similar Messages

  • Exception in thread "JMF thread???

    I try to write a very simple project which just play a local media in an Applet, although this example can be found in a lot of places, I met an Exception which kind of strange, Can anyone met this before? My Code is very simple.
    import java.applet.Applet;
    import java.awt.BorderLayout;
    import java.awt.*;
    import java.io.*;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.media.*;
    import javax.swing.*;
    public class test1 extends Applet{
         URL url;
         Player player=null;
         public void init(){
              setLayout( new BorderLayout() );
              try {
                   URL mediaURL = new URL(getDocumentBase(), "A Perfect Indian.mp3");
                   System.out.println(mediaURL);
                   player = Manager.createRealizedPlayer(mediaURL);
              }catch(Exception e){
                   System.out.println("problems here 1");
                   e.printStackTrace();
    Exception in thread "JMF thread: com.sun.media.amovie.AMController@7c6768[ com.sun.media.amovie.AMController@7c6768 ] ( realizeThread)" java.lang.UnsatisfiedLinkError: com.sun.media.amovie.ActiveMovie.openFile(Ljava/lang/String;)Z
         at com.sun.media.amovie.ActiveMovie.openFile(Native Method)
         at com.sun.media.amovie.ActiveMovie.<init>(ActiveMovie.java:47)
         at com.sun.media.amovie.AMController.createActiveMovie(AMController.java:293)
         at com.sun.media.amovie.AMController.doRealize(AMController.java:416)
         at com.sun.media.RealizeWorkThread.process(BasicController.java:1400)
         at com.sun.media.StateTransitionWorkThread.run(BasicController.java:1339)

    An unsatisfied link error occurs when the JVM cannot find a class in a library that it was expecting to be able to find.
    In this instance, it sounds like you (1) didn't include JMF.jar in your applet's classpath, and/or (2) didn't include the MP3 plugin to your applet's classpath...

  • Adobe Premiere CS6 keeps crashing - Crashed Thread:  0  Dispatch queue: com.apple.main-thread     Exception Type:  EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000

    Please help!  I've been wrestling with this all day!  Everytime I come to a clip on the timeline that has been adjusted via speed/duration the program crashes.  I've already deleted the preference files for all Adobe products.  Any suggestions?
    ~bdh
    Process:         Adobe Premiere Pro CS6 [955]
    Path:            /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
    Identifier:      com.adobe.AdobePremierePro
    Version:         6.0.2 (6.0.2)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [277]
    User ID:         501
    Date/Time:       2013-04-29 19:09:02.439 -0500
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          141185 sec
    Crashes Since Last Report:           19
    Per-App Interval Since Last Report:  99397 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      00F758BA-37B7-1854-7225-6B1330BFA109
    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                 0000000100000000-0000000100004000 [   16K] r-x/rwx SM=COW  /Applications/Adobe Premiere Pro CS6/Adobe Premiere Pro CS6.app/Contents/MacOS/Adobe Premiere Pro CS6
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.dvaui.framework               0x00000001034a6d3a dvaui::ui::UI_Node::GetViewScaleFactor() const + 10
    1   com.adobe.UIFramework.framework          0x0000000103cc7066 UIF::TabViewImpl::UI_Draw(dvaui::drawbot::Drawbot*) const + 730
    2   com.adobe.dvaui.framework               0x00000001034addbb void dvaui::drawbot::InvokeDrawbotFromRegionT<dvaui::ui::OS_View, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*>, NSView*>(dvaui::ui::OS_View const&, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*> const&, dvaui::drawbot::SupplierInterface const&, NSView*, __HIShape const*, dvaui::drawbot::SurfaceInterface*, bool) + 187
    3   com.adobe.dvaui.framework               0x00000001034adf79 void dvaui::drawbot::InvokeDrawbot<dvaui::ui::OS_View, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*>, NSView*>(dvaui::ui::OS_View const&, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*> const&, dvaui::drawbot::SupplierInterface const&, NSView*, __HIShape const*, dvaui::drawbot::SurfaceInterface*, std::vector<dvacore::geom::RectT<int>, std::allocator<dvacore::geom::RectT<int> > >*, bool) + 313
    4   com.adobe.dvaui.framework               0x00000001034a6381 dvaui::ui::OS_View::UI_HandlePlatformDrawEvent(dvaui::drawbot::SurfaceInterface *) + 397
    5   com.adobe.dvacore.framework             0x000000010018b9ee int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28
    6   com.adobe.premiere.frontend             0x000000010c748725 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost: :function0<int>) + 57
    7   com.adobe.dvacore.framework             0x000000010018b8e0 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void >(boost::function0<void>, bool*) + 112
    8   com.adobe.dvacore.framework             0x000000010018de1d void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    9   com.adobe.dvaui.framework               0x000000010349c7bd -[DVAMacContainerView drawRect:] + 125
    10  com.apple.AppKit                        0x00007fff88bcf094 -[NSView _drawRect:clip:] + 4217
    11  com.apple.AppKit                        0x00007fff88bcd6f1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    12  com.apple.AppKit                        0x00007fff88bcb722 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    13  com.apple.AppKit                        0x00007fff88bcca74 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    14  com.apple.AppKit                        0x00007fff88bcca74 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    15  com.apple.AppKit                        0x00007fff88bcca74 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    16  com.apple.AppKit                        0x00007fff88bcb173 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    17  com.apple.AppKit                        0x00007fff88bc6d9d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    18  com.apple.AppKit                        0x00007fff88b90cc3 -[NSView displayIfNeeded] + 1830
    19  com.apple.AppKit                        0x00007fff88b901fc _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 738
    20  com.apple.Foundation                    0x00007fff85910af3 __NSFireTimer + 96
    21  com.apple.CoreFoundation                0x00007fff8477b804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    22  com.apple.CoreFoundation                0x00007fff8477b31d __CFRunLoopDoTimer + 557
    23  com.apple.CoreFoundation                0x00007fff84760ad9 __CFRunLoopRun + 1529
    24  com.apple.CoreFoundation                0x00007fff847600e2 CFRunLoopRunSpecific + 290
    25  com.apple.HIToolbox                     0x00007fff84d26eb4 RunCurrentEventLoopInMode + 209
    26  com.apple.HIToolbox                     0x00007fff84d26c52 ReceiveNextEventCommon + 356
    27  com.apple.HIToolbox                     0x00007fff84ce7044 IsUserStillTracking(MenuSelectData*, unsigned char*) + 194
    28  com.apple.HIToolbox                     0x00007fff84cd089a TrackMenuCommon(MenuSelectData&, unsigned char*) + 307
    29  com.apple.HIToolbox                     0x00007fff84e66e04 PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, Rect const*, unsigned short, unsigned int, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1556
    30  com.apple.HIToolbox                     0x00007fff84e66794 _HandlePopUpMenuSelection7 + 629
    31  com.apple.AppKit                        0x00007fff88e2f54b _NSSLMPopUpCarbonMenu3 + 3916
    32  com.apple.AppKit                        0x00007fff88e2e5d8 -[NSCarbonMenuImpl _popUpContextMenu:withEvent:forView:withFont:] + 189
    33  com.apple.AppKit                        0x00007fff88f88fe3 -[NSMenu _popUpContextMenu:withEvent:forView:withFont:] + 200
    34  com.adobe.dvaui.framework               0x00000001034c44b6 dvaui::utility::OS_Menu_MAC::DoPopupMenu(dvaui::utility::OS_Menu_MAC&, dvaui::ui::UI_Node const*, dvacore::geom::RectT<float> const&, bool, bool) + 764
    35  com.adobe.dvaui.framework               0x00000001034c45b9 dvaui::utility::OS_Menu_MAC::DoContextMenu(dvaui::utility::OS_Menu_MAC&, dvaui::ui::UI_Node const*, dvacore::geom::PointT<float> const&, bool) + 55
    36  com.adobe.dvaui.framework               0x000000010343773b dvaui::ui::UI_DoContextMenu(dvaui::utility::OS_Menu&, dvaui::ui::UI_Node const&, dvacore::geom::PointT<float> const&) + 27
    37  com.adobe.UIFramework.framework          0x0000000103c7e978 UIF::MenuUtils::TrackPopupMenu(boost::intrusive_ptr<dvaui::utility::OS_Menu>, dvaui::ui::UI_Node const&, ASL::ParamPoint<int> const&) + 40
    38  com.adobe.HandlerTimeline.framework          0x0000000109c40f97 HandlerTimeline::TrackViewArea::DoClipContextMenuWithEffects(ASL::ParamPoint<in t> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*, ASL::InterfaceRef<BE::ITrackItem, BE::ITrackItem>, char const*) + 1929
    39  com.adobe.HandlerTimeline.framework          0x0000000109c41aaa HandlerTimeline::TrackViewArea::DoContextMenu(ASL::ParamPoint<int> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*, ASL::InterfaceRef<BE::ITrackItem, BE::ITrackItem>, unsigned int) + 514
    40  com.adobe.HandlerTimeline.framework          0x0000000109c421c3 HandlerTimeline::TrackViewArea::HandleContextMenuInContentView(ASL::ParamPoint< int> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*) + 1115
    41  com.adobe.HandlerTimeline.framework          0x0000000109b525bb HandlerTimeline::EditorController::RightButtonUp(ASL::ParamPoint<int> const&, UIF::KeyModifiers const&, HandlerTimeline::TrackContentView*) + 169
    42  com.adobe.UIFramework.framework          0x0000000103cbf29f UIF::SubViewImpl::UI_DoMouseEvent(dvaui::ui::UI_Node*, dvaui::ui::MouseEvent const&) + 981
    43  com.adobe.dvaui.framework               0x000000010343c4a8 dvaui::ui::UI_Node::DispatchMouseEvent::operator()(dvaui::ui::UI_Node*, dvaui::ui::UI_Node*, dvacore::geom::PointT<float> const&) const + 184
    44  com.adobe.dvaui.framework               0x000000010344605b std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 91
    45  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    46  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    47  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    48  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    49  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    50  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    51  com.adobe.dvaui.framework               0x00000001034460a5 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeafT<dvaui::ui::UI_Node::Dispa tchMouseEvent>(dvaui::ui::UI_Node::DispatchMouseEvent&, dvacore::geom::PointT<float> const&, bool) + 165
    52  com.adobe.dvaui.framework               0x000000010343c615 dvaui::ui::UI_Node::UI_DispatchMouseEventTowardsLeaf(dvaui::ui::MouseEvent const&, bool) + 75
    53  com.adobe.dvaui.framework               0x000000010344027e dvaui::ui::UI_Node::UI_DispatchMouseEventToTarget(dvaui::ui::UI_Node*, dvaui::ui::MouseEvent const&, bool) + 136
    54  com.adobe.dvaui.framework               0x000000010344031f dvaui::ui::UI_Node::UI_DispatchMouseEvent(dvaui::ui::MouseEvent const&, bool) + 63
    55  com.adobe.dvaui.framework               0x00000001034a7bf2 dvaui::ui::OS_View::UI_DispatchPlatformMouseEvent(dvaui::ui::MouseEvent const&, bool) + 702
    56  com.adobe.dvaui.framework               0x00000001034a5cfa dvaui::ui::OS_View::UI_DispatchPlatformMouseClickEvent(dvaui::ui::OS_Event const&) + 470
    57  com.adobe.dvaui.framework               0x00000001034a4919 dvaui::ui::OS_View::UI_DispatchEvent(dvaui::ui::OS_Event*) + 123
    58  com.adobe.dvaui.framework               0x00000001034a5fe8 dvaui::ui::OS_View::UI_HandleOSEvent(dvaui::ui::OS_Event*) + 28
    59  com.adobe.dvaui.framework               0x00000001034a2ac7 dvaui::ui::OS_View::UI_HandlePlatformEvent(NSEvent*) + 57
    60  com.adobe.dvacore.framework             0x000000010018b9ee int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 28
    61  com.adobe.premiere.frontend             0x000000010c748725 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost: :function0<int>) + 57
    62  com.adobe.dvacore.framework             0x000000010018b8e0 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void >(boost::function0<void>, bool*) + 112
    63  com.adobe.dvacore.framework             0x000000010018de1d void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    64  com.adobe.dvaui.framework               0x000000010349bc8f -[DVAMacContainerView rightMouseUp:] + 127
    65  com.apple.AppKit                        0x00007fff88c7277d -[NSWindow sendEvent:] + 7428
    66  com.apple.AppKit                        0x00007fff88c6e674 -[NSApplication sendEvent:] + 5761
    67  com.adobe.dvaui.framework               0x0000000103495bb6 -[DVAMacApplication sendEvent:] + 630
    68  com.adobe.premiere.frontend             0x000000010c781520 -[PremiereCocoaMacApplication sendEvent:] + 304
    69  com.apple.AppKit                        0x00007fff88b8424a -[NSApplication run] + 636
    70  com.adobe.premiere.frontend             0x000000010c782784 FE::MacApplication::RunSelf() + 44
    71  com.adobe.premiere.frontend             0x000000010c72cdef FE::Application::Run(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 5681
    72  com.adobe.premiere.frontend             0x000000010c783cfc AppMain + 380
    73  com.adobe.premiere.startup              0x000000010c8f41d7 Run + 247
    74  com.adobe.AdobePremierePro              0x00000001000038b7 main + 647
    75  com.adobe.AdobePremierePro              0x000000010000361c start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff82eecd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff85512dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff855129ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.ASLFoundation.framework          0x00000001005c0770 ASL::(anonymous namespace)::TaskProc(void*) + 160
    6   com.apple.CoreServices.CarbonCore          0x00007fff89bf97e0 PrivateMPEntryPoint + 58
    7   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff82eecd16 kevent + 10
    1   com.adobe.dvatransport.framework          0x000000010079bf12 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 240
    2   com.adobe.dvatransport.framework          0x00000001007a60da boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<b oost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 512
    3   com.adobe.dvatransport.framework          0x00000001007a6467 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    4   com.adobe.dvatransport.framework          0x0000000100792fbd SkyConnectionEnv::MainLoop() + 129
    5   com.adobe.dvatransport.framework          0x000000010079303b SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    6   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    7   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.adobe.dvatransport.framework          0x00000001007a604b boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<b oost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 369
    3   com.adobe.dvatransport.framework          0x00000001007a6467 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    4   com.adobe.dvatransport.framework          0x0000000100793c2a boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_b ase::work_io_service_runner>::run() + 42
    5   com.adobe.dvatransport.framework          0x0000000100796c33 boost_asio_detail_posix_thread_function + 19
    6   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff82eec122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa9dfd pthread_mutex_lock + 536
    2   com.adobe.AudioSupport.framework          0x000000010308b132 ML::MonitorMixer::Stop() + 30
    3   com.adobe.PlayerHost.framework          0x00000001049b79b4 ML::VideoPlayer::PlayerCallback_StopAudio() + 256
    4   com.adobe.PlayerHost.framework          0x00000001049d6ad6 ML::SDKCallback_StopAudio(int) + 86
    5   com.adobe.PlayerMediaCore.framework          0x0000000119de812d AdobePlayer::PlayerAudioHost::StopPlayback() + 137
    6   com.adobe.TransmitHost.framework          0x000000010d1e0aa0 ML::TransmitManager::StopPlayback() + 182
    7   com.adobe.PlayerMediaCore.framework          0x0000000119de9754 AdobePlayer::PlayerClock::SetState(AdobePlayer::PlayState, PrActivationEvent) + 828
    8   com.adobe.PlayerMediaCore.framework          0x0000000119df88a3 AdobePlayer::PlayerMain::ForceStop() + 253
    9   com.adobe.PlayerMediaCore.framework          0x0000000119df89e3 AdobePlayer::PlayerMain::OnStop() + 79
    10  com.adobe.PlayerMediaCore.framework          0x0000000119e05926 PrPlayModule<AdobePlayer::PlayerMain>::PlayEntry(int, pmStdParms*, void*, void*) + 302
    11  com.adobe.PlayerHost.framework          0x000000010499b0c9 ML::CallPlayerModuleGuarded(int (*)(int, pmStdParms*, void*, void*), int, pmStdParms*, void*, void*, int*, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 137
    12  com.adobe.PlayerHost.framework          0x000000010499bf94 ML::PlayerModule::CallPlugin(int, void*, void*) + 130
    13  com.adobe.PlayerHost.framework          0x00000001049c0e77 ML::VideoPlayer::CallPlayModuleSelector_Stop() + 79
    14  com.adobe.PlayerHost.framework          0x00000001049abb16 ML::VideoPlayer::StopPlayback(bool, bool) + 64
    15  com.adobe.PlayerHost.framework          0x00000001049a0500 ML::PlayModuleThreadQueue::ExecuteDeferredCall(ASL::ObjectPtr<ML::DeferredCallB ase, ASL::AtomicValue>) + 280
    16  com.adobe.PlayerHost.framework          0x00000001049a1537 ML::PlayModuleThreadQueue::ServiceQueue() + 253
    17  com.adobe.ASLFoundation.framework          0x00000001005b3232 void boost::_mfi::mf0<void, ASL::IThreadedQueueRequest>::call<ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest> >(ASL::InterfaceRef<ASL::IThreadedQueueRequest, ASL::IThreadedQueueRequest>&, void const*) const + 54
    18  com.adobe.dvacore.framework             0x00000001001f62a2 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 194
    19  com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    20  com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    21  libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    22  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff82eea686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff82ee9c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8475b233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff84760916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff847600e2 CFRunLoopRunSpecific + 290
    5   com.apple.AVCVideoServices              0x0000000119c71ad0 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 186
    6   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff82eea686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff82ee9c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8475b233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff84760916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff847600e2 CFRunLoopRunSpecific + 290
    5   com.apple.AVCVideoServices              0x0000000119c71ad0 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 186
    6   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa9023 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    4   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    5   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    6   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    7   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    8   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff82eea686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff82ee9c42 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c1f3dd TS_exception_listener_thread + 67
    3   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff82eec386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8d02e800 nanosleep + 163
    2   com.adobe.ScriptLayerPPro.framework          0x0000000106d0c6fb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.ScriptLayerPPro.framework          0x0000000106cf8259 ScObjects::BridgeTalkThread::run() + 169
    4   com.adobe.ScriptLayerPPro.framework          0x0000000106d0ca66 ScObjects::Thread::go(void*) + 166
    5   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 20:: com.apple.audio.IOThread.client
    0   libsystem_c.dylib                       0x00007fff8cf92d2c OSAtomicAdd64Barrier$VARIANT$mp + 8
    1   com.adobe.dvacore.framework             0x0000000100241356 dvacore::utility::AllocatorManager<64ul, 4160ul, 66624ul, 1ul>::TrySimpleAllocate() + 144
    2   com.adobe.dvacore.framework             0x00000001002642e2 dvacore::utility::AllocatorManager<64ul, 4160ul, 66624ul, 1ul>::DoAllocate() + 28
    3   com.adobe.dvacore.framework             0x0000000100245829 dvacore::utility::AllocatorManager<64ul, 4160ul, 66624ul, 1ul>::Allocate(unsigned long) + 279
    4   com.adobe.dvacore.framework             0x000000010016412f dvacore::utility::SmallBlockAllocator::Allocate(unsigned long) + 63
    5   com.adobe.Backend.framework             0x00000001015adcd4 std::_Rb_tree<ASL::ImmutableString, std::pair<ASL::ImmutableString const, BE::OutputValueBase*>, std::_Select1st<std::pair<ASL::ImmutableString const, BE::OutputValueBase*> >, std::less<ASL::ImmutableString>, dvacore::utility::SmallBlockAllocator::STLAllocator<std::pair<ASL::ImmutableStr ing const, BE::OutputValueBase*> > >::_M_create_node(std::pair<ASL::ImmutableString const, BE::OutputValueBase*> const&) + 20
    6   com.adobe.Backend.framework             0x00000001015ade02 std::_Rb_tree<ASL::ImmutableString, std::pair<ASL::ImmutableString const, BE::OutputValueBase*>, std::_Select1st<std::pair<ASL::ImmutableString const, BE::OutputValueBase*> >, std::less<ASL::ImmutableString>, dvacore::utility::SmallBlockAllocator::STLAllocator<std::pair<ASL::ImmutableStr ing const, BE::OutputValueBase*> > >::_M_insert_unique(std::pair<ASL::ImmutableString const, BE::OutputValueBase*> const&) + 206
    7   com.adobe.Backend.framework             0x00000001015ac650 BE::CompositeOutputValue::CompositeOutputValue(BE::CompositeOutputValue const&) + 234
    8   com.adobe.Backend.framework             0x00000001015ab298 BE::CompositeOutputValue::Clone() const + 34
    9   com.adobe.Backend.framework             0x00000001015ac6d2 BE::CompositeOutputValue::CompositeOutputValue(BE::CompositeOutputValue const&) + 364
    10  com.adobe.Backend.framework             0x00000001015bacec BE::CompositeProperty::CompositeProperty(BE::CompositeOutputValue const&, std::map<dvacore::utility::Guid, ASL::ObjectPtr<BE::OutputValueEntry, ASL::AtomicValue>, std::less<dvacore::utility::Guid>, std::allocator<std::pair<dvacore::utility::Guid const, ASL::ObjectPtr<BE::OutputValueEntry, ASL::AtomicValue> > > > const&) + 52
    11  com.adobe.Backend.framework             0x00000001015b69f1 BE::PropertiesImpl::SetOpaqueUnknown(ASL::ImmutableString const&, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>, bool) + 963
    12  com.adobe.Backend.framework             0x00000001015bb93c BE::PropertiesProxy::SetOpaqueUnknown(ASL::ImmutableString const&, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>, bool) + 144
    13  com.adobe.HandlerProject.framework          0x0000000109576871 void BE::IProperties::SetOpaque<ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown> >(ASL::ImmutableString const&, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>&, bool) + 121
    14  com.adobe.HandlerProject.framework          0x00000001095759bc HandlerProject::ProjectViewStateList::WriteViewStateList() + 138
    15  com.adobe.HandlerProject.framework          0x00000001094a827e HandlerProject::ProjectHandler::ViewDestroyed(HandlerProject::ProjectView*, dvacore::utility::Guid) + 866
    16  com.adobe.HandlerProject.framework          0x0000000109523289 HandlerProject::ProjectView::DestroySelf() + 139
    17  com.adobe.dvaworkspace.framework          0x0000000106a342dc dvaworkspace::workspace::Workspace::RemoveTab(dvaworkspace::workspace::Workspac eFrame*, int, bool, bool) + 140
    18  com.adobe.dvaworkspace.framework          0x0000000106a31cbf dvaworkspace::workspace::Workspace::RemoveTab(dvaworkspace::workspace::Workspac eFrame*, dvaworkspace::workspace::TabPanel*, bool, bool) + 67
    19  com.adobe.dvaworkspace.framework          0x0000000106a48400 dvaworkspace::workspace::WorkspaceFrame::RemoveAllTabs(bool) + 162
    20  com.adobe.dvaworkspace.framework          0x0000000106a346c6 dvaworkspace::workspace::TopLevelWindow::RemoveTabPanels(bool) + 392
    21  com.adobe.dvaworkspace.framework          0x0000000106a3552a dvaworkspace::workspace::Workspace::RemoveTabPanels() + 150
    22  com.adobe.premiere.frontend             0x000000010c726700 FE::Application::CloseCurrentWorkspace() + 552
    23  com.adobe.premiere.frontend             0x000000010c75e50d FE::DocumentManager::CloseDocumentWithPrompt(bool, bool) + 353
    24  com.adobe.premiere.frontend             0x000000010c75f151 FE::DocumentManager::AttemptPanicProjectSave() + 991
    25  com.adobe.premiere.frontend             0x000000010c72b74e FE::Application::AttemptPanicProjectSave() + 24
    26  com.adobe.premiere.frontend             0x000000010c78327c UnixInterruptSignal(int) + 44
    27  com.adobe.dvacore.framework             0x0000000100279b15 (anonymous namespace)::SignalHandler(int, __siginfo*, void*) + 261
    28  libsystem_c.dylib                       0x00007fff8cf9294a _sigtramp + 26
    29  libsystem_c.dylib                       0x00007fff8cf91ac7 memmove$VARIANT$sse42 + 159
    30  com.adobe.AudioRenderer.framework          0x0000000100df1fbb AR::AudioBuffer::CopyFrom(AR::AudioBuffer const&, unsigned int) + 59
    31  com.adobe.AudioRenderer.framework          0x0000000100e4797b AR::AudioPannerDirectChannelAssignmentBase::Process(AR::AudioBuffer const&, AR::AudioBuffer&) + 713
    32  com.adobe.AudioRenderer.framework          0x0000000100e4cc46 AR::AudioPannerStereoTo16Channel::ProcessAudioData(AR::AudioBuffer const&, AR::AudioBuffer&) + 174
    33  com.adobe.AudioRenderer.framework          0x0000000100e1ff32 AR::RealtimeAudioClipTrackItemRenderer::GetAudioData(dvamediatypes::TickTime const&, AR::AudioBuffer&, bool) + 3666
    34  com.adobe.AudioRenderer.framework          0x0000000100df7822 AR::AudioClipTrackRenderer::GetAudioData(dvamediatypes::TickTime const&, AR::AudioBuffer&, bool) + 2530
    35  com.adobe.AudioRenderer.framework          0x0000000100e13697 AR::AudioTrackGroupRenderer::GetAudioData(dvamediatypes::TickTime const&, AR::AudioBuffer&, bool) + 571
    36  com.adobe.AudioSupport.framework          0x0000000103089b67 ML::MonitorMixer::AudioCallback(AR::AudioBuffer&, dvamediatypes::TickTime&) + 6969
    37  com.adobe.AudioSupport.framework          0x000000010309284c ML::AudioPlaybackBuffer::GetAudioData(AR::AudioBuffer&) + 106
    38  com.adobe.AudioSupport.framework          0x00000001030993af ML::CoreAudioHost::ProcessAudio(unsigned int, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*) + 813
    39  com.adobe.AudioSupport.framework          0x000000010309954e ML::CoreAudioHost::DeviceIOProc(unsigned int, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*, void*) + 38
    40  com.apple.audio.CoreAudio               0x00007fff8f09fbad HALC_ProxyIOContext::IOWorkLoop() + 2413
    41  com.apple.audio.CoreAudio               0x00007fff8f09f1a1 HALC_ProxyIOContext::IOThreadEntry(void*) + 83
    42  com.apple.audio.CoreAudio               0x00007fff8f09f069 HALB_IOThread::Entry(void*) + 75
    43  libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    44  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff82eec2aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x000000011ff375ec Invoke + 45721
    2   ServiceManager-Launcher.dylib           0x000000011ff36813 Invoke + 42176
    3   ServiceManager-Launcher.dylib           0x000000011ff35be0 Invoke + 39053
    4   ServiceManager-Launcher.dylib           0x000000011ff35c66 Invoke + 39187
    5   ServiceManager-Launcher.dylib           0x000000011ff3130f Invoke + 20412
    6   ServiceManager-Launcher.dylib           0x000000011ff31616 Invoke + 21187
    7   ServiceManager-Launcher.dylib           0x000000011ff31cd7 Invoke + 22916
    8   ServiceManager-Launcher.dylib           0x000000011ff31f41 Invoke + 23534
    9   ServiceManager-Launcher.dylib           0x000000011ff3461d Invoke + 33482
    10  ServiceManager-Launcher.dylib           0x000000011ff34775 Invoke + 33826
    11  ServiceManager-Launcher.dylib           0x000000011ff34fb2 Invoke + 35935
    12  ServiceManager-Launcher.dylib           0x000000011ff350ad Invoke + 36186
    13  ServiceManager-Launcher.dylib           0x000000011ff27d6b Login + 480
    14  ServiceManager-Launcher.dylib           0x000000011ff2b7ad Login + 15394
    15  ServiceManager-Launcher.dylib           0x000000011ff35412 Invoke + 37055
    16  ServiceManager-Launcher.dylib           0x000000011ff37253 Invoke + 44800
    17  libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    18  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa8fe9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c223e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff89b84b14 MPWaitOnQueue + 252
    5   com.adobe.dvacore.framework             0x00000001001f8f54 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x00000001001f6253 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x00000001001f3943 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 163
    8   com.adobe.boost_threads.framework          0x000000010012aace thread_proxy + 158
    9   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff82eec0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfa9023 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff89c22406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff89c21f6d TSWaitOnSemaphoreCommon + 265
    4   com.apple.CoreServices.CarbonCore          0x00007fff89be5b93 AsyncFileThread(void*) + 257
    5   libsystem_c.dylib                       0x00007fff8cfa47a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8cf911e1 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff82eec6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8cfa6f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8cfa6d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8cf911d1 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib                  0x00007fff82eec6d6 __workq_ke

    Either or both of the following third-party system modifications may be contributing to your problem:
    FxFactory
    CUDA
    I suggest you uninstall them, one at a time, according to the developers' instructions, to see whether you can identify which is at fault. Reboot after uninstalling CUDA.
    Back up all data before making any changes.

  • Imovie and idvd both quit unexpectedly EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE  Crashed Thread:  0  Dispatch queue: com.apple.main-thre

    Troubleshooting steps so far.
    Imovie
    1. removed .plist and started Imove   result = no change
    2. removed projects from movies/imovie projects/ and restarted = same error
    3. verified disk  result = no change
    4. repaired permissions result = no change
    5. verify permissions result = no change
    Actual error
    Process:         iMovie [1083]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.4 (1635)
    Build Info:      iMovieApp-16350000~2
    App Item ID:     408981434
    App External ID: 3919357
    Code Type:       X86 (Native)
    Parent Process:  launchd [845]
    Date/Time:       2012-04-26 22:43:06.736 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          137089 sec
    Crashes Since Last Report:           28
    Per-App Interval Since Last Report:  19 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      6D3B93DB-F180-4ACC-8DB7-1C4AFFDF3E32
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000096
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    building project tree
    Failed to create MovieSnapshot. Exception was thrown: Nil movie1
    Failed to create MovieSnapshot. Exception was thrown: Nil movie1
    VRAM info:disp 0:256MB
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.QuickTime                0x9652e91e SetTimeBaseRate_priv + 12
    1   com.apple.QuickTime                0x96520dcd QTGetWallClockTimeBase_priv + 109
    2   com.apple.QuickTime                0x96520cf9 AssureThreadTopLevelIdleManagerExists + 45
    3   com.apple.QuickTime                0x96520c21 QTGetTimeUntilNextTask_priv + 60
    4   com.apple.QuickTime                0x96520bd9 QTGetTimeUntilNextTask + 29
    5   com.apple.QTKit                    0x96962681 +[QTMovie_QuickTime idleAllMovies:] + 457
    6   com.apple.Foundation               0x91b7f484 __NSFireTimer + 141
    7   com.apple.CoreFoundation           0x93c86a3b __CFRunLoopRun + 8059
    8   com.apple.CoreFoundation           0x93c843c4 CFRunLoopRunSpecific + 452
    9   com.apple.CoreFoundation           0x93c841f1 CFRunLoopRunInMode + 97
    10  com.apple.HIToolbox                0x95afbe04 RunCurrentEventLoopInMode + 392
    11  com.apple.HIToolbox                0x95afbbb9 ReceiveNextEventCommon + 354
    12  com.apple.HIToolbox                0x95afba3e BlockUntilNextEventMatchingListInMode + 81
    13  com.apple.AppKit                   0x91214595 _DPSNextEvent + 847
    14  com.apple.AppKit                   0x91213dd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    15  com.apple.iMovieApp                0x00044e47 0x1000 + 278087
    16  com.apple.AppKit                   0x911d61f3 -[NSApplication run] + 821
    17  com.apple.AppKit                   0x911ce289 NSApplicationMain + 574
    18  com.apple.iMovieApp                0x000031b3 0x1000 + 8627
    19  com.apple.iMovieApp                0x00002a6e 0x1000 + 6766
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                  0x996d3382 kevent + 10
    1   libSystem.B.dylib                  0x996d3a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                  0x996d2f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                  0x996d2cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                  0x996d2781 _pthread_wqthread + 390
    5   libSystem.B.dylib                  0x996d25c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                  0x996d2412 __workq_kernreturn + 10
    1   libSystem.B.dylib                  0x996d29a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                  0x996d25c6 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib                  0x996d2412 __workq_kernreturn + 10
    1   libSystem.B.dylib                  0x996d29a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                  0x996d25c6 start_wqthread + 30
    Thread 4:
    0   libSystem.B.dylib                  0x996acafa mach_msg_trap + 10
    1   libSystem.B.dylib                  0x996ad267 mach_msg + 68
    2   com.apple.Metadata                 0x9966e7bc mdsFetchItemsForPaths + 148
    3   com.apple.Metadata                 0x9966e61c MDItemCreate + 552
    4   com.apple.iLifeMediaBrowser        0x99420764 +[ILMediaObject spotlightProperties:] + 76
    5   com.apple.iLifeMediaBrowser        0x9946d861 -[ILFolderPluginSDK _createMediaObjectForPath_V2:isAlias:resolvedAliasPath:dstInfoRec:] + 679
    6   com.apple.iLifeMediaBrowser        0x9946eac2 -[ILFolderPluginSDK _createFolderMediaGroupForPath:currentLoadAliases:] + 2640
    7   com.apple.iLifeMediaBrowser        0x9946e94a -[ILFolderPluginSDK _createFolderMediaGroupForPath:currentLoadAliases:] + 2264
    8   com.apple.iLifeMediaBrowser        0x99469a94 -[ILFolderPluginSDK _createFolderMediaGroupForPath:] + 69
    9   com.apple.iLifeMediaBrowser        0x99469d84 -[ILFolderPluginSDK _loadMediaFolders:] + 109
    10  com.apple.iLifeMediaBrowser        0x9946b279 -[ILFolderPluginSDK performLoadData] + 349
    11  com.apple.iLMBPhotoBoothPlugin     0x14e24d19 0x14e23000 + 7449
    12  com.apple.iLMBPhotoBoothPlugin     0x14e2543a 0x14e23000 + 9274
    13  com.apple.Foundation               0x91b514c4 -[NSThread main] + 45
    14  com.apple.Foundation               0x91b51474 __NSThread__main__ + 1499
    15  libSystem.B.dylib                  0x996da259 _pthread_start + 345
    16  libSystem.B.dylib                  0x996da0de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                  0x996acb42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                  0x996b2646 pthread_mutex_lock + 490
    2   com.apple.Foundation               0x91b3e63b -[NSRecursiveLock lock] + 28
    3   com.apple.iLifeMediaBrowser        0x9944fb2c -[ILMediaManager beginBatch] + 116
    4   com.apple.iLifeMediaBrowser        0x9946ab26 -[ILFolderPluginSDK _loadMediaFoldersThreaded:] + 274
    5   com.apple.Foundation               0x91b514c4 -[NSThread main] + 45
    6   com.apple.Foundation               0x91b51474 __NSThread__main__ + 1499
    7   libSystem.B.dylib                  0x996da259 _pthread_start + 345
    8   libSystem.B.dylib                  0x996da0de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                  0x996acb42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                  0x996b2646 pthread_mutex_lock + 490
    2   com.apple.Foundation               0x91b3e63b -[NSRecursiveLock lock] + 28
    3   com.apple.iLifeMediaBrowser        0x9944fb2c -[ILMediaManager beginBatch] + 116
    4   com.apple.iLifeMediaBrowser        0x9946ab26 -[ILFolderPluginSDK _loadMediaFoldersThreaded:] + 274
    5   com.apple.Foundation               0x91b514c4 -[NSThread main] + 45
    6   com.apple.Foundation               0x91b51474 __NSThread__main__ + 1499
    7   libSystem.B.dylib                  0x996da259 _pthread_start + 345
    8   libSystem.B.dylib                  0x996da0de thread_start + 34
    Thread 7:
    0   com.apple.CoreFoundation           0x93c78dbf parseXMLElement + 991
    1   com.apple.CoreFoundation           0x93c79a60 parseXMLElement + 4224
    2   com.apple.CoreFoundation           0x93c79a7d parseXMLElement + 4253
    3   com.apple.CoreFoundation           0x93c79a7d parseXMLElement + 4253
    4   com.apple.CoreFoundation           0x93c7a20e parsePListTag + 30
    5   com.apple.CoreFoundation           0x93c790a1 parseXMLElement + 1729
    6   com.apple.CoreFoundation           0x93c78194 _CFPropertyListCreateFromXMLStringError + 2068
    7   com.apple.CoreFoundation           0x93c76ca8 _CFPropertyListCreateWithData + 456
    8   com.apple.CoreFoundation           0x93c76ada CFPropertyListCreateWithData + 58
    9   com.apple.CoreFoundation           0x93c76a6f CFPropertyListCreateFromXMLData + 191
    10  com.apple.Foundation               0x91b4588f _NSParseObjectFromASCIIPropertyListOrSerialization + 46
    11  com.apple.Foundation               0x91b44d9b +[NSDictionary(NSDictionary) newWithContentsOf:immutable:] + 181
    12  com.apple.CoreFoundation           0x93ca2fdf -[__NSPlaceholderDictionary initWithContentsOfFile:] + 63
    13  com.apple.Foundation               0x91b44cce +[NSDictionary(NSDictionary) dictionaryWithContentsOfFile:] + 72
    14  com.apple.iLMBiTunesPlugin         0x14d2b95d HexStringToUInt64 + 15215
    15  com.apple.iLMBPhotoBoothPlugin     0x14e24d19 0x14e23000 + 7449
    16  com.apple.iLMBPhotoBoothPlugin     0x14e2543a 0x14e23000 + 9274
    17  com.apple.Foundation               0x91b514c4 -[NSThread main] + 45
    18  com.apple.Foundation               0x91b51474 __NSThread__main__ + 1499
    19  libSystem.B.dylib                  0x996da259 _pthread_start + 345
    20  libSystem.B.dylib                  0x996da0de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                  0x996acafa mach_msg_trap + 10
    1   libSystem.B.dylib                  0x996ad267 mach_msg + 68
    2   com.apple.CoreFoundation           0x93c852df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation           0x93c843c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation           0x93c8a304 CFRunLoopRun + 84
    5   com.apple.FWAVCPrivate             0x00cb91b8 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 135
    6   libSystem.B.dylib                  0x996da259 _pthread_start + 345
    7   libSystem.B.dylib                  0x996da0de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                  0x996daaa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x997069c5 nanosleep$UNIX2003 + 188
    2   libSystem.B.dylib                  0x99706903 usleep$UNIX2003 + 61
    3   com.apple.iMovieApp                0x000e48c7 0x1000 + 932039
    4   com.apple.iMovieApp                0x000e5154 0x1000 + 934228
    5   com.apple.Foundation               0x91b514c4 -[NSThread main] + 45
    6   com.apple.Foundation               0x91b51474 __NSThread__main__ + 1499
    7   libSystem.B.dylib                  0x996da259 _pthread_start + 345
    8   libSystem.B.dylib                  0x996da0de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                  0x996acafa mach_msg_trap + 10
    1   libSystem.B.dylib                  0x996ad267 mach_msg + 68
    2   com.apple.CoreFoundation           0x93c852df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation           0x93c843c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation           0x93c8a304 CFRunLoopRun + 84
    5   com.apple.QuartzComposer           0x90105845 -[QCRunLoopPatch _runLoopThread:] + 449
    6   com.apple.Foundation               0x91b514c4 -[NSThread main] + 45
    7   com.apple.Foundation               0x91b51474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                  0x996da259 _pthread_start + 345
    9   libSystem.B.dylib                  0x996da0de thread_start + 34
    Thread 11:  JavaScriptCore::Marking
    0   libSystem.B.dylib                  0x996daaa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x996da75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                  0x996dc3f8 pthread_cond_wait$UNIX2003 + 73
    Thread 12:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                  0x996daaa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x996da75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                  0x996da2b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.apple.JavaScriptCore           0x92c4d31c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    Thread 13:  JavaScriptCore::Marking
    0   libSystem.B.dylib                  0x996daaa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x996da75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                  0x996dc3f8 pthread_cond_wait$UNIX2003 + 73
    Thread 14:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                  0x996daaa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x996da75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                  0x996da2b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.apple.JavaScriptCore           0x92c4d31c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    Thread 15:  JavaScriptCore::Marking
    0   libSystem.B.dylib                  0x996daaa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x996da75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                  0x996dc3f8 pthread_cond_wait$UNIX2003 + 73
    Thread 16:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                  0x996daaa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x996da75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                  0x996da2b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.apple.JavaScriptCore           0x92c4d31c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    Thread 17:  WebCore: LocalStorage
    0   libSystem.B.dylib                  0x996daaa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x996da75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                  0x996dc3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.JavaScriptCore           0x92c4d2d1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4   libSystem.B.dylib                  0x996da259 _pthread_start + 345
    5   libSystem.B.dylib                  0x996da0de thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                  0x996cfbe6 write$UNIX2003 + 10
    1   com.apple.CFNetwork                0x9387ed97 FilePathStorage<unsigned char>::write(int, void const*, long, int*) + 46
    2   com.apple.CFNetwork                0x938a4e29 DiskCookieStorage::writeFileCompletely(__CFData const*) + 535
    3   com.apple.CFNetwork                0x938241dd DiskCookieStorage::syncStorageLocked(unsigned char) + 727
    4   com.apple.CFNetwork                0x93823ed3 DiskCookieStorage::copyDomainCookiesLocked(__CFString const*, unsigned char) + 41
    5   com.apple.CFNetwork                0x93823e93 PrivateHTTPCookieStorage::copyDomainCookies(__CFString const*, unsigned char) + 55
    6   com.apple.CFNetwork                0x938a27dc HTTPCookieStorage::someCookiesAreSetForDomain(char const*) + 96
    7   com.apple.CFNetwork                0x938a2924 HTTPCookieStorage::someCookiesAreSetForURL(__CFURL const*) + 218
    8   com.apple.CFNetwork                0x9382b57b HTTPCookieStorage::setCookiesWithResponseHeaderFields(__CFURL const*, __CFDictionary const*, __CFURL const*, int) + 53
    9   com.apple.CFNetwork                0x93845072 HTTPProtocol::updateForHeader(__CFHTTPMessage*) + 462
    10  com.apple.CFNetwork                0x9384478f HTTPProtocol::performHeaderRead() + 449
    11  com.apple.CFNetwork                0x93844470 HTTPProtocol::httpReadStreamEvent(unsigned long) + 86
    12  com.apple.CoreFoundation           0x93d118b3 _signalEventSync + 99
    13  com.apple.CoreFoundation           0x93d11838 _cfstream_shared_signalEventSync + 664
    14  com.apple.CoreFoundation           0x93c8742b __CFRunLoopDoSources0 + 1563
    15  com.apple.CoreFoundation           0x93c84eef __CFRunLoopRun + 1071
    16  com.apple.CoreFoundation           0x93c843c4 CFRunLoopRunSpecific + 452
    17  com.apple.CoreFoundation           0x93c841f1 CFRunLoopRunInMode + 97
    18  com.apple.Foundation               0x91b8a224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    19  com.apple.Foundation               0x91b514c4 -[NSThread main] + 45
    20  com.apple.Foundation               0x91b51474 __NSThread__main__ + 1499
    21  libSystem.B.dylib                  0x996da259 _pthread_start + 345
    22  libSystem.B.dylib                  0x996da0de thread_start + 34
    Thread 19:  com.apple.CFSocket.private
    0   libSystem.B.dylib                  0x996cbac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation           0x93cc4c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                  0x996da259 _pthread_start + 345
    3   libSystem.B.dylib                  0x996da0de thread_start + 34
    Thread 20:  JavaScriptCore::Marking
    0   libSystem.B.dylib                  0x996daaa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x996da75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                  0x996dc3f8 pthread_cond_wait$UNIX2003 + 73
    Thread 21:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                  0x996daaa2 __semwait_signal + 10
    1   libSystem.B.dylib                  0x996da75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                  0x996da2b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.apple.JavaScriptCore           0x92c4d31c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x96520d6e  ecx: 0x007b5b10  edx: 0x007e0400
      edi: 0x00000000  esi: 0xa06e7760  ebp: 0xbfffe5a8  esp: 0xbfffe560
       ss: 0x0000001f  efl: 0x00010286  eip: 0x9652e91e   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000096
    Binary Images:
        0x1000 -   0x441feb  com.apple.iMovieApp 9.0.4 (1635) <677756C9-3E33-AE1B-EAF8-6A78D6C9DD37> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x502000 -   0x519fe7  com.apple.iLifeFaceRecognition 1.0 (21.1) <AFB95F66-06DF-8076-94EE-19B1BAE836FC> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x528000 -   0x5b4ff7  com.apple.mobiledevice 507.6 (507.6) <F7DDA28B-630F-862A-11E2-6386027EB81C> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
      0x5fd000 -   0x638fe7  com.apple.MPEG2TSDecoder 1.0 (84) <A0150F28-CB98-7C59-4514-80CE7A58B600> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x676000 -   0x677ffb  com.apple.Helium 3.0.2 (234) <723972E4-0FBB-4135-980E-15E8A40C11FF> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x67c000 -   0x67dff7 +com.bensyverson.dvmatte.autopicker 1.0 (1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x683000 -   0x722ff3  com.apple.MobileMe 11 (1.0.3) <8E95CD1B-525E-748C-743A-EB0E369B05F6> /Applications/iMovie.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
      0x77f000 -   0x834fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
      0x87a000 -   0x87bfff +eOkaoCom.dylib ??? (???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x87f000 -   0x8a4ff2 +eOkaoPt.dylib ??? (???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x8ab000 -   0x8dffe7 +eOkaoDt.dylib ??? (???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x8e5000 -   0xa4cfff +eOkaoFr.dylib ??? (???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0xa50000 -   0xa76fff  libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <32607000-7573-6D51-ABC3-420B4A0D6629> /usr/lib/libssl.0.9.7.dylib
      0xa85000 -   0xc12ffb  com.apple.Helium.HeliumRender 2.0.2 (234) <461D47A8-54FA-BB4F-F3E4-FD80C7ADC894> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xcb4000 -   0xce7ff3  com.apple.FWAVCPrivate 30.46 (46) <786C1EA9-AE6E-C66F-A290-8705A4F43EA8> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
      0xf6c000 -   0xf90fe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x12e5b000 - 0x12fd4ff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x13006000 - 0x1340bfe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x145fa000 - 0x145fbff7  com.apple.iLMBAppDefPlugin 2.5.5 (252.2.5) <23D52DA9-0F87-6EAA-990E-2864C4B6D6AA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x1499f000 - 0x14ae8fe7  com.apple.iLMBAperture31Plugin 2.5.5 (252.2.5) <2AA8E13C-4221-698B-F755-DB8103D191B9> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperture31Plugin.ilmbplugin/Contents/Mac OS/iLMBAperture31Plugin
    0x14b29000 - 0x14b31ff7  com.apple.iLMBAperturePlugin 2.5.5 (252.2.5) <BF2A071D-6F1C-03BA-DD1B-74F93CE9D7B0> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x14b38000 - 0x14b42ff7  com.apple.iLMBFinalCutPlugin 2.5.5 (252.2.5) <B089F264-64BE-07DE-E250-D5C63C351222> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFinalCutPlugin.ilmbplugin/Contents/MacOS /iLMBFinalCutPlugin
    0x14b48000 - 0x14b4aff7  com.apple.iLMBFolderPlugin 2.5.5 (252.2.5) <0896FA5E-8453-B2F6-8E87-F5F2FA382395> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x14b4f000 - 0x14b53ff7  com.apple.iLMBGarageBandPlugin 2.5.5 (252.2.5) <E10E678C-831C-7A6B-1A56-775CD81DA98E> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x14b59000 - 0x14b65ff7  com.apple.iLMBiMoviePlugin 2.5.5 (252.2.5) <313540B0-C7D2-5EB4-C688-0FCB9FFD5E81> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x14b6c000 - 0x14b80ffb  com.apple.iLMBiPhoto8Plugin 2.5.5 (252.2.5) <0016975B-CA8E-76EA-3BF7-BAD4C8834814> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x14b88000 - 0x14cd4fe7  com.apple.iLMBiPhoto9Plugin 2.5.5 (252.2.5) <86E4AD5A-1233-9F42-B4BD-CECFFC4C4ACD> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto9Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto9Plugin
    0x14d17000 - 0x14d20ff7  com.apple.iLMBiPhotoPlugin 2.5.5 (252.2.5) <D6F8A353-CDC4-A9B8-383E-5D6F7FBAF593> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x14d27000 - 0x14d2fff7  com.apple.iLMBiTunesPlugin 2.5.5 (252.2.5) <4A54C561-8932-6E09-BDAE-C030D494E0DA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x14d36000 - 0x14debfff  com.apple.iTunesAccess 10.6.1 (10.6.1) <BDD09920-0C89-4FB3-6F06-3C6DB360C8A3> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x14e1c000 - 0x14e1eff7  com.apple.iLMBMoviesFolderPlugin 2.5.5 (252.2.5) <4A70635B-4CF4-8F65-BF6D-3B6F18838A23> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x14e23000 - 0x14e25ff7  com.apple.iLMBPhotoBoothPlugin 2.5.5 (252.2.5) <77BE4315-C665-3243-B857-64895276EFA1> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x15ed1000 - 0x15ed3ff7  com.apple.podcastproducer.ImageDiffer 1.2.3 (168.7) <0EE2A12C-11A5-5801-5442-D5A7C7542CF3> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0x166f2000 - 0x166f6ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x16800000 - 0x16806ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x18b4a000 - 0x18b6eff7  com.apple.QuartzComposer.ExtraPatches 4.2 (156.16) <877B2D84-7CA6-501F-FF2D-C33BC52C0074> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x18b7e000 - 0x18bcaffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x18d00000 - 0x18d29fff  com.apple.audio.OpenAL 1.4 (1.4) <CDC6D2B8-3DCA-E511-2250-75567E4C94BD> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0x1c745000 - 0x1c771ff7  com.apple.oxygene.layers.iDVDQCPatches 1.0.0 (607) <707D5CBB-ABBA-EAD3-E035-EABB56F6A3A2> /Applications/iMovie.app/Contents/Resources/iDVDQCPatches.plugin/Contents/MacOS /iDVDQCPatches
    0x1cc00000 - 0x1cc2bff3  com.apple.iMovieQCPlugIns 1.1 (1635) <A89F1B94-B061-1CD1-AEB9-F4F080BE9073> /Applications/iMovie.app/Contents/PlugIns/iMovieQCPlugIns.plugin/Contents/MacOS /iMovieQCPlugIns
    0x3e000000 - 0x3e046ff7  com.apple.glut 3.4.4 (GLUT-3.4.4) <DF15FD36-E1F5-D745-1BF6-DD3AEA2897E4> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.5 (1.6.5) <412DBD1B-E9B5-E67C-99E4-820BF38239AC> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x90045ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90046000 - 0x9004fff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90050000 - 0x9006bff7  libPng.dylib ??? (???) <05445692-8AF7-CAB6-EBF5-1F7B3A906CCB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9006c000 - 0x90297ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x902c3000 - 0x90370fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x90371000 - 0x9044efe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9044f000 - 0x904bdff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x904be000 - 0x904f1ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90519000 - 0x905eafe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <C618942F-BC01-0565-18CF-477B63C02181> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x905fb000 - 0x90644fe7  libTIFF.dylib ??? (???) <4A3EF156-D4FE-95E2-FA05-7BD76FF27CEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90645000 - 0x9064ffe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9065b000 - 0x90713feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x90714000 - 0x9083cfe7  com.apple.WebKit 6534.55 (6534.55.3) <1005A819-7695-EBE6-15B8-4DBF8C3C36C4> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x908f4000 - 0x9091affb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9091b000 - 0x90a1dfe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x90a1e000 - 0x90e34ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90e35000 - 0x90e65ff7  com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x90e88000 - 0x90e9aff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x90e9b000 - 0x90effffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90f00000 - 0x9103dfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9104a000 - 0x9105bff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9105c000 - 0x9118afe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9118b000 - 0x911c8ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x911cc000 - 0x91aafff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91ab0000 - 0x91b32ffb  SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91b3b000 - 0x91dacfef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91dad000 - 0x92b24fe7  com.apple.WebCore 6534.55 (6534.55.3) <88D78C7B-168E-F85E-7ED1-2D351ABB5582> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x92c39000 - 0x92c41ff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x92c42000 - 0x92eeffeb  com.apple.JavaScriptCore 6534.55 (6534.55.2) <2FF650FE-AE0A-BB83-0BC6-BD2D192F2873> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92ef0000 - 0x92f12fef  com.apple.DirectoryService.Framework 3.6 (621.11) <CA979EAC-9537-43B6-CD69-C144ACB75E09> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x92f5b000 - 0x92f69fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x92f6a000 - 0x92fc0ff7  com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x92fc2000 - 0x9307efff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9308c000 - 0x93134ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93135000 - 0x93135ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x93136000 - 0x93176ff3  com.apple.securityinterface 4.0.1 (40418) <26D84A83-F5B9-93CF-71BB-0712698181EE> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x93177000 - 0x93181ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <45083DBA-5EA4-9B90-8BEB-A089E515180F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9380f000 - 0x938bbfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93a05000 - 0x93aa0fe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93ad7000 - 0x93b0afff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x93b0b000 - 0x93b16ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93b17000 - 0x93b5aff7  com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93b5b000 - 0x93b5bff7  com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93b6f000 - 0x93c0cfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x93c0d000 - 0x93c47fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x93c48000 - 0x93dc3fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93dc4000 - 0x93dc6ff7  libRadiance.dylib ??? (???) <41E5C5F4-A4C6-0416-08D0-422C88088558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x93dc7000 - 0x93dc8ff7  com.apple.TrustEvaluationAgent 1.1 (1) <8C570606-D77C-738E-7148-6B28846F0B3C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93fb0000 - 0x93fb4ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x93fb5000 - 0x93fc9ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <0DBE17D5-17A2-8A0E-8572-5A78408B41C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93fca000 - 0x940ccfef  com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x940cd000 - 0x94105ff7  com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94106000 - 0x94125fe3  libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x94126000 - 0x94147fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x94148000 - 0x94149ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x94151000 - 0x94158ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x94159000 - 0x94159ff7  com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9415a000 - 0x941d4fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x941d5000 - 0x941dbfff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x941dc000 - 0x9424bff7  com.apple.ISSupport 1.9.7 (55) <77905553-740D-90E8-6B2E-ABF5B3D40CBF> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9424c000 - 0x942c5ff7  com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x942c6000 - 0x942eaff7  libJPEG.dylib ??? (???) <7EBC924F-B2EE-68B0-4EA0-F99EF54F0306> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x942eb000 - 0x942ebff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x942ec000 - 0x943c6fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9448a000 - 0x944aafe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x944ab000 - 0x944afff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x944b0000 - 0x94530feb  com.apple.SearchKit 1.3.0 (1.3.0) <2F5DE102-A203-7905-7D12-FCBCF17BAEF8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94679000 - 0x94679ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9467a000 - 0x9485cfff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9487b000 - 0x9506a557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9506b000 - 0x954bcfef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x954bd000 - 0x954d1fe7  libbsm.0.dylib ??? (???) <821E415B-6C42-D359-78FF-E892792F8C52> /usr/lib/libbsm.0.dylib
    0x95524000 - 0x9561ffff  com.apple.PubSub 1.0.5 (65.28) <CA4981BF-235F-C3FB-8CC4-2E0D1A175840> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x95620000 - 0x95630ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95631000 - 0x957b3fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x95aae000 - 0x95ab9ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x95ac5000 - 0x95ac6ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95ac7000 - 0x95debfef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95dec000 - 0x95decff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x95df2000 - 0x95eabfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x95eac000 - 0x95ee2fff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x96003000 - 0x9600fff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x96010000 - 0x960a8fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x960a9000 - 0x96113fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x96114000 - 0x96155ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96156000 - 0x9635dfeb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9635e000 - 0x9637dff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9637e000 - 0x9639afe3  com.apple.openscripting 1.3.1 (???) <DE20A1B9-F9B6-697C-B533-F5869BA43077> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9639b000 - 0x963c2ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x963c3000 - 0x96409ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x96458000 - 0x96496ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x96497000 - 0x964acfff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x964ad000 - 0x964b0fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x964b9000 - 0x964c6ff7  com.apple.AppleFSCompression 24.4 (1.0) <6D696284-020B-7F5C-226D-B820F0E981D2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x964c7000 - 0x964f8ff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x964f9000 - 0x967f3fef  com.apple.QuickTime 7.6.6 (1789) <38255AA2-8087-5AE0-CA4B-1DDE611540B1> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x967f4000 - 0x967ffff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x96800000 - 0x9683aff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
    0x9683b000 - 0x9688eff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9688f000 - 0x9695afef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9695b000 - 0x96a9efef  com.apple.QTKit 7.7 (1789) <4D3AA05F-D4D3-0D43-99D7-F26E4640BEE7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96b0e000 - 0x96beefe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96bef000 - 0x96bf1ff7  com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x96bf2000 - 0x96c00ff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96c01000 - 0x96c5eff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96dc2000 - 0x96ecefe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97570000 - 0x97570ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x97571000 - 0x9757efe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <CC90193E-BDF7-2F0F-6C68-D9567EDDA4B3> /usr/lib/libbz2.1.0.dylib
    0x9757f000 - 0x97758fff  libType1Scaler.dylib ??? (???) <04AF2B34-81D4-97E9-BD56-387D37C16F46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x97759000 - 0x9779cff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9779d000 - 0x977f5fe7  com.apple.datadetectorscore 2.0 (80.7) <18C2FB6A-BF60-F838-768C-0306151C21DA> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x977f6000 - 0x97833ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97834000 - 0x97844ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x97845000 - 0x97972ffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x97a14000 - 0x97ecfff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x97ed5000 - 0x97f50fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x97f51000 - 0x97f56ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x97f83000 - 0x97f89fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x97f8a000 - 0x98001ff3  com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98002000 - 0x9804ffeb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x98050000 - 0x98094ff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98095000 - 0x98400ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x98401000 - 0x98451ff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x98466000 - 0x98469ff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x98470000 - 0x984a9fe7  com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x984aa000 - 0x9850bfe7  com.apple.CoreText 151.12 (???) <98F53C15-1D29-A2B3-0717-5A26A2699163> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x98587000 - 0x98635ff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x98636000 - 0x98671ffb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x98672000 - 0x98992ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x98993000 - 0x989edfe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x989ee000 - 0x98a06ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x98a3c000 - 0x98ca2ff7  com.apple.security 6.1.2 (55002) <A476227B-409D-A457-7D4D-A631A0B4AFDB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x98cdc000 - 0x98ce0ff7  libGIF.dylib ??? (???) <3B4E6D0B-89EB-251F-3693-5187254D5BE2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x98ce1000 - 0x98ce4ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x98ce5000 - 0x98d0dff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x98d0e000 - 0x98ed0feb  com.apple.ImageIO.framework 3.0.5 (3.0.5) <051752C3-8C25-CF4A-9BFB-C7B6D20E58E8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x98ed1000 - 0x99306ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x99391000 - 0x9939eff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9940e000 - 0x9948bff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9948c000 - 0x9948cff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9948d000 - 0x99490ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x994d7000 - 0x9951effb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x9951f000 - 0x99620fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x99621000 - 0x99666ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x99667000 - 0x996abfe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x996ac000 - 0x99853ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x999b0000 - 0x99a42fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x99a43000 - 0x99a49ff7  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <6EE825E7-CBA5-2AD2-0336-244D45A1A834> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x99a5d000 - 0x99a5dff7  com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x99a5e000 - 0x99acdff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: iMac10,1, BootROM IM101.00CC.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.52f9
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HDT721050SLA360, 465.76 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0x24400000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    USB Device: USB to ATA/ATAPI Bridge, 0x152d  (JMicron Technology Corp.), 0x2338, 0x26200000 / 3
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000 / 4

    further...
    1. Created a new user gave it administrator rights.
    2. Booted in safe mode with new user rights and performed above.
    all with same error.
    3. downloaded imovie 11 from app store and same error.
    Unless I hear from someone I'm going to refresh the OS.

  • JMF threads can not stop?

    My program is designed for two-way audio conference, but now I met a problem that there are some threads can not stop before I start some calls(maybe 100 times).How can I release this threads? please help me, thank you in advanced.
    RTPEventHandler
    JMF thread: com.sun.media.ProcessEngine@6b9fee[ com.sun.media.ProcessEngine@6b9fee ] ( configureThread)
    JMF thread: SendEventQueue: com.sun.media.processor.unknown.Handler
    JMF thread: SendEventQueue: com.sun.media.ProcessEngine
    JMF thread: com.sun.media.processor.unknown.Handler@1ca8dc7[ com.sun.media.processor.unknown.Handler@1ca8dc7 ] ( configureThread)
    JMF thread: com.sun.media.ProcessEngine@e1d29e[ com.sun.media.ProcessEngine@e1d29e ] ( configureThread)

    Hi TGreybeard,
    Have you looked at the [[Firefox keeps opening many tabs or windows]] Knowledge Base article? There is some good information in there that should help you resolve the issue.
    Hopefully this helps!

  • JMS error- Exception in thread "Main Thread" java.lang.NoClassDefFoundError

    Hi guys,
    I am new to JMS programming and i'm have the following error...I have set up a simple weblogic server on my local machine and i am trying to send a message to a queue i've created on a JMS server. I am trying to manually run an example provided by BEA WebLogic... the code follows.
    //package examples.jms.queue;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.util.Hashtable;
    import javax.jms.*;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    /** This example shows how to establish a connection
    * and send messages to the JMS queue. The classes in this
    * package operate on the same JMS queue. Run the classes together to
    * witness messages being sent and received, and to browse the queue
    * for messages. The class is used to send messages to the queue.
    * @author Copyright (c) 1999-2006 by BEA Systems, Inc. All Rights Reserved.
    public class QueueSend
      // Defines the JNDI context factory.
      public final static String JNDI_FACTORY="weblogic.jndi.WLInitialContextFactory";
      // Defines the JMS context factory.
      public final static String JMS_FACTORY="weblogic.examples.jms.QueueConnectionFactory";
      // Defines the queue.
      public final static String QUEUE="weblogic.examples.jms.exampleQueue";
      private QueueConnectionFactory qconFactory;
      private QueueConnection qcon;
      private QueueSession qsession;
      private QueueSender qsender;
      private Queue queue;
      private TextMessage msg;
       * Creates all the necessary objects for sending
       * messages to a JMS queue.
       * @param ctx JNDI initial context
       * @param queueName name of queue
       * @exception NamingException if operation cannot be performed
       * @exception JMSException if JMS fails to initialize due to internal error
      public void init(Context ctx, String queueName)
        throws NamingException, JMSException
        qconFactory = (QueueConnectionFactory) ctx.lookup(JMS_FACTORY);
        qcon = qconFactory.createQueueConnection();
        qsession = qcon.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
        queue = (Queue) ctx.lookup(queueName);
        qsender = qsession.createSender(queue);
        msg = qsession.createTextMessage();
        qcon.start();
       * Sends a message to a JMS queue.
       * @param message  message to be sent
       * @exception JMSException if JMS fails to send message due to internal error
      public void send(String message) throws JMSException {
        msg.setText(message);
        qsender.send(msg);
       * Closes JMS objects.
       * @exception JMSException if JMS fails to close objects due to internal error
      public void close() throws JMSException {
        qsender.close();
        qsession.close();
        qcon.close();
    /** main() method.
      * @param args WebLogic Server URL
      * @exception Exception if operation fails
      public static void main(String[] args) throws Exception {
        if (args.length != 1) {
          System.out.println("Usage: java examples.jms.queue.QueueSend WebLogicURL");
          return;
        System.out.println(args[0]);
        InitialContext ic = getInitialContext(args[0]);
        QueueSend qs = new QueueSend();
        qs.init(ic, QUEUE);
        readAndSend(qs);
        qs.close();
      private static void readAndSend(QueueSend qs)
        throws IOException, JMSException
        BufferedReader msgStream = new BufferedReader(new InputStreamReader(System.in));
        String line=null;
        boolean quitNow = false;
        do {
          System.out.print("Enter message (\"quit\" to quit): \n");
          line = msgStream.readLine();
          if (line != null && line.trim().length() != 0) {
            qs.send(line);
            System.out.println("JMS Message Sent: "+line+"\n");
            quitNow = line.equalsIgnoreCase("quit");
        } while (! quitNow);
      private static InitialContext getInitialContext(String url)
        throws NamingException
        Hashtable<String,String> env = new Hashtable<String,String>();
        env.put(Context.INITIAL_CONTEXT_FACTORY, JNDI_FACTORY);
        env.put(Context.PROVIDER_URL, url);
        return new InitialContext(env);
    }when i run the main method with args[0] = "t3://localhost:7001", i get the following errors:
    Exception in thread "Main Thread" java.lang.NoClassDefFoundError: weblogic/security/subject/AbstractSubject
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
    at javax.naming.InitialContext.init(InitialContext.java:223)
    at javax.naming.InitialContext.<init>(InitialContext.java:197)
    at QueueSend.getInitialContext(QueueSend.java:122)
    at QueueSend.main(QueueSend.java:91)
    Could someone please help. thanks.

    when i run the main method with args[0] = "t3://localhost:7001", i get the following errors:
    Exception in thread "Main Thread" java.lang.NoClassDefFoundError: weblogic/security/subject/AbstractSubject
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
    at javax.naming.InitialContext.init(InitialContext.java:223)
    at javax.naming.InitialContext.<init>(InitialContext.java:197)
    at QueueSend.getInitialContext(QueueSend.java:122)
    at QueueSend.main(QueueSend.java:91)
    Could someone please help. thanks.This is Java 101:
    http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0/index.jsp?topic=/com.ibm.websphere.express.doc/info/exp/ae/rtrb_classload_viewer.html
    You've got to have the WebLogic JAR that contains the necessary .class files in your CLASSPATH when you run.
    Don't use a CLASSPATH environment variable; use the -classpath option when you run.
    %

  • Exception in thread "Main Thread" java.lang.NoClassDefFoundError: weblogic/diagnostics/instrumentation/JoinPoint

    Hi,
    I have an application jar file which is run from a .sh file.
    The application uses ridc api to checkin a document on UCM.
    I have placed jars for supporting the application on the folder where we have kept the application jar
    also we have mentioned the supporting jar file names in the Manifest.mf file of the application jar.
    The necessary jar files which we have placed are:
    com.lnt.ucm.integrationutility.ucm.Client
    log4j-1.2.16.jar
    oracle.ucm.ridc-11.1.1.jar
    poi-2.5.1.jar
    commons-codec-1.2.jar
    commons-httpclient-3.1.jar
    commons-logging-1.0.4.jar
    mail.jar
    jxl-2.6.10.jar
    com.bea.core.antlr.runtime_2.7.7.jar
    com.oracle.toplink_1.0.0.0_11-1-1-5-0.jar
    jrf.jar
    org.eclipse.persistence_1.1.0.0_2-1.jar
    weblogic.jar
    wlfullclient.jar
    wseeclient.jar
    jaxws-rt-2.1.4.jar
    we are getting below exception when we run the jar from the .sh file.
    Exception in thread "Main Thread" java.lang.NoClassDefFoundError: weblogic/diagnostics/instrumentation/JoinPoint
    at weblogic.wsee.jaxws.spi.WLSProvider.<clinit>(WLSProvider.java:90)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at java.lang.Class.newInstance0(Class.java:355)
    at java.lang.Class.newInstance(Class.java:308)
    at javax.xml.ws.spi.FactoryFinder.newInstance(FactoryFinder.java:31)
    at javax.xml.ws.spi.FactoryFinder.find(FactoryFinder.java:90)
    at javax.xml.ws.spi.Provider.provider(Provider.java:83)
    at javax.xml.ws.Service.<init>(Service.java:56)
    at com.abc.ucm.proxy.JDEUCMManagerService.<init>(JDEUCMManagerService.java:66)
    at com.abc.ucm.integrationutility.ucm.Client.executeUtilty(Client.java:50)
    at com.abc.ucm.integrationutility.ucm.Client.main(Client.java:540)
    I'm not able to find any jar for weblogic/diagnostics/instrumentation/JoinPoint can you please tell me which jar needs to be added.
    Regards,
    Tejaswini L

    914897 wrote:
    I encounter the similar error. Anyone knows how to fix it?By providing a configuration file which validates with the corresponding XSDs found in coherence.jar. Sorry, but can't point you to the specific issue without seeing the erroneous configuration file.
    Best regards,
    Robert

  • Exception in thread "Main Thread" java.lang.NoClassDefFoundError: start

    Hi
    I am Migrating my app from weblogic 8.1 to 10.3 . I am trying to run the startWeblogic.sh file its failing with below error .Please suggest me am unable to resolve
    CLASSPATH=:/opt/bea/patch_wlw1030/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/opt/bea/patch_wls1030/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/opt/bea/patch_cie660/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/opt/bea/jrockit_160_14/lib/tools.jar:/opt/bea/wlserver_10.3/server/lib/weblogic_sp.jar:/opt/bea/wlserver_10.3/server/lib/weblogic.jar:/opt/bea/modules/features/weblogic.server.modules_10.3.0.0.jar:/opt/bea/wlserver_10.3/server/lib/webservices.jar:/opt/bea/modules/org.apache.ant_1.6.5/lib/ant-all.jar:/opt/bea/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar::/opt/bea/wlserver_10.3/common/eval/pointbase/lib/pbclient57.jar:/opt/bea/wlserver_10.3/server/lib/xqrl.jar::
    PATH=/opt/bea/wlserver_10.3/server/bin:/opt/bea/modules/org.apache.ant_1.6.5/bin:/opt/bea/jrockit_160_14/jre/bin:/opt/bea/jrockit_160_14/bin:/usr/local/bin:/bin:/usr/bin:/home/quoteapp/bin:/prod/qcquoting/bin:/home/quoteapp/bin/apache-ant-1.6.5/bin:/opt/bea/jrockit_160_14/bin
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://hostname:port/console *
    starting weblogic with Java version:
    java version "1.6.0_14"
    Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
    BEA JRockit(R) (build R27.6.5-32_o-121899-1.6.0_14-20091001-2113-linux-x86_64, compiled mode)
    Starting WLS with line:
    /opt/bea/jrockit_160_14/bin/java -jrockit -Xms256m -Xmx512m -Xverify:none -da -Dplatform.home=/opt/bea/wlserver_10.3 -Dwls.home=/opt/bea/wlserver_10.3/server -Dweblogic.home=/opt/bea/wlserver_10.3/server -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/opt/bea/patch_wlw1030/profiles/default/sysext_manifest_classpath:/opt/bea/patch_wls1030/profiles/default/sysext_manifest_classpath:/opt/bea/patch_cie660/profiles/default/sysext_manifest_classpath -Dweblogic.Name=quoting -Djava.security.policy=/opt/bea/wlserver_10.3/server/lib/weblogic.policy start weblogic.Server
    Exception in thread "Main Thread" java.lang.NoClassDefFoundError: start
    Could not find the main class: start. Program will exit.
    am attaching my sh file aslo below
    !/bin/sh
    # WARNING: This file is created by the Configuration Wizard.
    # Any changes to this script may be lost when adding extensions to this configuration.
    # --- Start Functions ---
    stopAll()
         # We separate the stop commands into a function so we are able to use the trap command in Unix (calling a function) to stop these services
         if [ "X${ALREADY_STOPPED}" != "X" ] ; then
              exit
         fi
         # STOP POINTBASE (only if we started it)
         if [ "${POINTBASE_FLAG}" = "true" ] ; then
              echo "Stopping PointBase server..."
              ${WL_HOME}/common/bin/stopPointBase.sh -port=${POINTBASE_PORT} -name=${POINTBASE_DBNAME} >"${DOMAIN_HOME}/pointbaseShutdown.log" 2>&1
              echo "PointBase server stopped."
         fi
         ALREADY_STOPPED="true"
         # Restore IP configuration the node manager starts IP Migration
         if [ "${SERVER_IP}" != "" ] ; then
              ${WL_HOME}/common/bin/wlsifconfig.sh -removeif "${IFNAME}" "${SERVER_IP}"
         fi
    # --- End Functions ---
    # This script is used to start WebLogic Server for this domain.
    # To create your own start script for your domain, you can initialize the
    # environment by calling @USERDOMAINHOME/setDomainEnv.
    # setDomainEnv initializes or calls commEnv to initialize the following variables:
    # BEA_HOME - The BEA home directory of your WebLogic installation.
    # JAVA_HOME - Location of the version of Java used to start WebLogic
    # Server.
    # JAVA_VENDOR - Vendor of the JVM (i.e. BEA, HP, IBM, Sun, etc.)
    # PATH - JDK and WebLogic directories are added to system path.
    # WEBLOGIC_CLASSPATH
    # - Classpath needed to start WebLogic Server.
    # PATCH_CLASSPATH - Classpath used for patches
    # PATCH_LIBPATH - Library path used for patches
    # PATCH_PATH - Path used for patches
    # WEBLOGIC_EXTENSION_DIRS - Extension dirs for WebLogic classpath patch
    # JAVA_VM - The java arg specifying the VM to run. (i.e.
    # - server, -hotspot, etc.)
    # USER_MEM_ARGS - The variable to override the standard memory arguments
    # passed to java.
    # PRODUCTION_MODE - The variable that determines whether Weblogic Server is started in production mode.
    # POINTBASE_HOME - Point Base home directory.
    # POINTBASE_CLASSPATH
    # - Classpath needed to start PointBase.
    # Other variables used in this script include:
    # SERVER_NAME - Name of the weblogic server.
    # JAVA_OPTIONS - Java command-line options for running the server. (These
    # will be tagged on to the end of the JAVA_VM and
    # MEM_ARGS)
    # For additional information, refer to the WebLogic Server Administration
    # Console Online Help(http://e-docs.bea.com/wls/docs103/ConsoleHelp/startstop.html).
    # Call setDomainEnv here.
    DOMAIN_HOME=/prod/qcquoting/int/builds/qoaquoting
    . ${DOMAIN_HOME}/bin/setDomainEnv.sh $*
    SAVE_JAVA_OPTIONS="${JAVA_OPTIONS}"
    SAVE_CLASSPATH="${CLASSPATH}"
    # Start PointBase
    PB_DEBUG_LEVEL="0"
    if [ "${POINTBASE_FLAG}" = "true" ] ; then
         ${WL_HOME}/common/bin/startPointBase.sh -port=${POINTBASE_PORT} -debug=${PB_DEBUG_LEVEL} -console=false -background=true -ini=${DOMAIN_HOME}/pointbase.ini >"${DOMAIN_HOME}/pointbase.log" 2>&1
    fi
    JAVA_OPTIONS="${SAVE_JAVA_OPTIONS}"
    SAVE_JAVA_OPTIONS=""
    CLASSPATH="${SAVE_CLASSPATH}"
    SAVE_CLASSPATH=""
    trap 'stopAll' 1 2 3 15
    if [ "${PRODUCTION_MODE}" = "true" ] ; then
         WLS_DISPLAY_MODE="Production"
    else
         WLS_DISPLAY_MODE="Development"
    fi
    if [ "${WLS_USER}" != "" ] ; then
         JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.management.username=${WLS_USER}"
    fi
    if [ "${WLS_PW}" != "" ] ; then
         JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.management.password=${WLS_PW}"
    fi
    CLASSPATH="${CLASSPATH}${CLASSPATHSEP}${MEDREC_WEBLOGIC_CLASSPATH}"
    CLASSPATH="${CLASSPATH}${CLASSPATHSEP}./config/order_properties/"
    echo "."
    echo "."
    echo "JAVA Memory arguments: ${MEM_ARGS}"
    echo "."
    echo "WLS Start Mode=${WLS_DISPLAY_MODE}"
    echo "."
    echo "CLASSPATH=${CLASSPATH}"
    echo "."
    echo "PATH=${PATH}"
    echo "."
    echo "***************************************************"
    echo "* To start WebLogic Server, use a username and *"
    echo "* password assigned to an admin-level user. For *"
    echo "* server administration, use the WebLogic Server *"
    echo "* console at http://hostname:port/console *"
    echo "***************************************************"
    # Set up IP Migration related variables.
    # Set interface name.
    if [ "${Interface}" != "" ] ; then
         IFNAME="${Interface}"
    else
         IFNAME=""
    fi
    # Set IP Mask.
    if [ "${NetMask}" != "" ] ; then
         IPMASK="${NetMask}"
    else
         IPMASK=""
    fi
    # Perform IP Migration if SERVER_IP is set by node manager.
    if [ "${SERVER_IP}" != "" ] ; then
         ${WL_HOME}/common/bin/wlsifconfig.sh -addif "${IFNAME}" "${SERVER_IP}" "${IPMASK}"
    fi
    # START WEBLOGIC
    echo "starting weblogic with Java version:"
    ${JAVA_HOME}/bin/java ${JAVA_VM} -version
    if [ "${WLS_REDIRECT_LOG}" = "" ] ; then
         echo "Starting WLS with line:"
         echo "${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} ${JAVA_OPTIONS} -Dweblogic.Name=${SERVER_NAME} -Djava.security.policy=${WL_HOME}/server/lib/weblogic.policy ${PROXY_SETTINGS} ${SERVER_CLASS}"
         ${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} ${JAVA_OPTIONS} -Dweblogic.Name=${SERVER_NAME} -Djava.security.policy=${WL_HOME}/server/lib/weblogic.policy ${PROXY_SETTINGS} ${SERVER_CLASS}
    else
         echo "Redirecting output from WLS window to ${WLS_REDIRECT_LOG}"
         ${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} ${JAVA_OPTIONS} -Dweblogic.Name=${SERVER_NAME} -Djava.security.policy=${WL_HOME}/server/lib/weblogic.policy ${PROXY_SETTINGS} ${SERVER_CLASS} >"${WLS_REDIRECT_LOG}" 2>&1
    fi
    stopAll
    popd
    # Exit this script only if we have been told to exit.
    if [ "${doExitFlag}" = "true" ] ; then
         exit
    fi

    I can not see main class weblogic.jar file in your class path.
    Under MW_HOME there is a file by name configure.cmd/sh, run it to set acl and class path. Then try to start weblogic server. U can edit the startWeblogic.sh/cmd so that every time it will execute after calling configure.sh/cmd file.

  • Color Navigator Crash (Crashed Thread:  0  Dispatch queue: com.apple.main-thread)

    Hello,
    Since Friday i have an new MacPro and until an hour ago everything was fine. But after restarting my mac colornavigator continuously crashes when i try to open it. I paste the protocol of the crash, but to be honest i can't really "read" this. I just don't know what it tries to say.
    Does anybody have an idea, how to solve this problem?
    Many thanks from Vienna
    Florian
    crash protocol:
    Process:         ColorNavigator 6 [535]
    Path:            /Applications/ColorNavigator 6.app/Contents/MacOS/ColorNavigator 6
    Identifier:      com.EIZO.ColorNavigator6
    Version:         6.4.7 (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [144]
    Responsible:     ColorNavigator 6 [535]
    User ID:         501
    Date/Time:       2014-10-20 15:22:49.677 +0200
    OS Version:      Mac OS X 10.9.5 (13F34)
    Report Version:  11
    Anonymous UUID:  B6E42A44-0EEA-F43C-76FF-D17C4C8FCCF6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/ColorNavigator 6.app/Contents/MacOS/ColorNavigator 6
        __TEXT                 0000000000001000-0000000000007000 [   24K] r-x/rwx SM=COW  /Applications/ColorNavigator 6.app/Contents/MacOS/ColorNavigator 6
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation       0x948da062 CFStringGetLength + 18
    1   com.apple.CoreFoundation       0x948ee212 CFStringCompare + 18
    2   com.adobe.AIR                 0x0147bee7 0x1000000 + 4701927
    3   com.adobe.AIR                 0x0147be23 0x1000000 + 4701731
    4   com.adobe.AIR                 0x0131489d 0x1000000 + 3229853
    5   com.adobe.AIR                 0x01529254 0x1000000 + 5411412
    6   ???                           0x0b9e9120 0 + 194941216
    7   com.adobe.AIR                 0x0122556a 0x1000000 + 2250090
    8   com.adobe.AIR                 0x01225f2f 0x1000000 + 2252591
    9   com.adobe.AIR                 0x0117b3d9 0x1000000 + 1553369
    10  com.adobe.AIR                 0x013b8841 0x1000000 + 3901505
    11  com.adobe.AIR                 0x013b82d6 0x1000000 + 3900118
    12  com.adobe.AIR                 0x013b726f 0x1000000 + 3895919
    13  com.adobe.AIR                 0x01506d74 0x1000000 + 5270900
    14  ???                           0x09f9a2d4 0 + 167355092
    15  ???                           0x09f927da 0 + 167323610
    16  ???                           0x09f92458 0 + 167322712
    17  com.adobe.AIR                 0x0116d150 0x1000000 + 1495376
    18  com.adobe.AIR                 0x0113b85c 0x1000000 + 1292380
    19  com.adobe.AIR                 0x011d5067 0x1000000 + 1921127
    20  ???                           0x0814674e 0 + 135554894
    21  ???                           0x09f92ccb 0 + 167324875
    22  ???                           0x09f9249d 0 + 167322781
    23  com.adobe.AIR                 0x0116d150 0x1000000 + 1495376
    24  com.adobe.AIR                 0x013b8841 0x1000000 + 3901505
    25  com.adobe.AIR                 0x013b82d6 0x1000000 + 3900118
    26  com.adobe.AIR                 0x013b7e0e 0x1000000 + 3898894
    27  com.adobe.AIR                 0x013bb5e2 0x1000000 + 3913186
    28  com.adobe.AIR                 0x0172261a 0x1000000 + 7480858
    29  com.adobe.AIR                 0x01524c56 0x1000000 + 5393494
    30  ???                           0x09f97902 0 + 167344386
    31  ???                           0x09f92ecc 0 + 167325388
    32  com.adobe.AIR                 0x0117b3d9 0x1000000 + 1553369
    33  com.adobe.AIR                 0x01722005 0x1000000 + 7479301
    34  com.adobe.AIR                 0x01721f5c 0x1000000 + 7479132
    35  com.adobe.AIR                 0x01446358 0x1000000 + 4481880
    36  com.adobe.AIR                 0x01446c9e 0x1000000 + 4484254
    37  com.adobe.AIR                 0x0140ec86 0x1000000 + 4254854
    38  com.adobe.AIR                 0x01446cf9 0x1000000 + 4484345
    39  com.adobe.AIR                 0x016c1d27 0x1000000 + 7085351
    40  com.adobe.AIR                 0x016c28f9 0x1000000 + 7088377
    41  com.adobe.AIR                 0x01476c3d 0x1000000 + 4680765
    42  com.adobe.AIR                 0x01476426 0x1000000 + 4678694
    43  com.apple.CoreFoundation       0x9494db5f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
    44  com.apple.CoreFoundation       0x9493e95b __CFRunLoopDoSources0 + 235
    45  com.apple.CoreFoundation       0x9493e05e __CFRunLoopRun + 1022
    46  com.apple.CoreFoundation       0x9493d9ea CFRunLoopRunSpecific + 394
    47  com.apple.CoreFoundation       0x9493d84b CFRunLoopRunInMode + 123
    48  com.apple.HIToolbox           0x99810b5d RunCurrentEventLoopInMode + 259
    49  com.apple.HIToolbox           0x998108e2 ReceiveNextEventCommon + 526
    50  com.apple.HIToolbox           0x998106bd _BlockUntilNextEventMatchingListInModeWithFilter + 92
    51  com.apple.AppKit               0x92e06349 _DPSNextEvent + 1602
    52  com.apple.AppKit               0x92e05870 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    53  com.apple.AppKit               0x92df815c -[NSApplication run] + 727
    54  com.adobe.AIR                 0x0100258c 0x1000000 + 9612
    55  com.adobe.AIR                 0x010028e3 0x1000000 + 10467
    56  com.adobe.AIR                 0x01002958 0x1000000 + 10584
    57  libobjc.A.dylib               0x92bc42af -[NSObject performSelector:withObject:] + 70
    58  com.EIZO.ColorNavigator6       0x00002ee1 RuntimeAppMain(char const*, int) + 256
    59  com.EIZO.ColorNavigator6       0x00002fb6 main + 34
    60  com.EIZO.ColorNavigator6       0x000025a1 start + 53
    Thread 1:
    0   libsystem_kernel.dylib         0x98307046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x924b3dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x924b7cce start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x98307992 kevent64 + 10
    1   libdispatch.dylib             0x9412e899 _dispatch_mgr_invoke + 238
    2   libdispatch.dylib             0x9412e532 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib         0x98307046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x924b3dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x924b7cce start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib         0x98307046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x924b3dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x924b7cce start_wqthread + 30
    Thread 5:: BackgroundThread
    0   libsystem_kernel.dylib         0x983067ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x924b4d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x924b6bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                 0x014dc1c0 0x1000000 + 5095872
    4   com.adobe.AIR                 0x0131ea7b 0x1000000 + 3271291
    5   com.adobe.AIR                 0x014dbfc1 0x1000000 + 5095361
    6   com.adobe.AIR                 0x014dc02f 0x1000000 + 5095471
    7   com.adobe.AIR                 0x014dbe56 0x1000000 + 5094998
    8   libsystem_pthread.dylib       0x924b25fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x924b2485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x924b7cf2 thread_start + 34
    Thread 6:: BackgroundThread
    0   libsystem_kernel.dylib         0x983067ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x924b4d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x924b6bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                 0x014dc1c0 0x1000000 + 5095872
    4   com.adobe.AIR                 0x0131ea7b 0x1000000 + 3271291
    5   com.adobe.AIR                 0x014dbfc1 0x1000000 + 5095361
    6   com.adobe.AIR                 0x014dc02f 0x1000000 + 5095471
    7   com.adobe.AIR                 0x014dbe56 0x1000000 + 5094998
    8   libsystem_pthread.dylib       0x924b25fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x924b2485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x924b7cf2 thread_start + 34
    Thread 7:: BackgroundThread
    0   libsystem_kernel.dylib         0x983067ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x924b4d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x924b6bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                 0x014dc1c0 0x1000000 + 5095872
    4   com.adobe.AIR                 0x0131ea7b 0x1000000 + 3271291
    5   com.adobe.AIR                 0x014dbfc1 0x1000000 + 5095361
    6   com.adobe.AIR                 0x014dc02f 0x1000000 + 5095471
    7   com.adobe.AIR                 0x014dbe56 0x1000000 + 5094998
    8   libsystem_pthread.dylib       0x924b25fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x924b2485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x924b7cf2 thread_start + 34
    Thread 8:: BackgroundThread
    0   libsystem_kernel.dylib         0x983067ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x924b4d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x924b6bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                 0x014dc1c0 0x1000000 + 5095872
    4   com.adobe.AIR                 0x0131ea7b 0x1000000 + 3271291
    5   com.adobe.AIR                 0x014dbfc1 0x1000000 + 5095361
    6   com.adobe.AIR                 0x014dc02f 0x1000000 + 5095471
    7   com.adobe.AIR                 0x014dbe56 0x1000000 + 5094998
    8   libsystem_pthread.dylib       0x924b25fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x924b2485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x924b7cf2 thread_start + 34
    Thread 9:: BackgroundThread
    0   libsystem_kernel.dylib         0x983067ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x924b4d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x924b6bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                 0x014dc1c0 0x1000000 + 5095872
    4   com.adobe.AIR                 0x0131ea7b 0x1000000 + 3271291
    5   com.adobe.AIR                 0x014dbfc1 0x1000000 + 5095361
    6   com.adobe.AIR                 0x014dc02f 0x1000000 + 5095471
    7   com.adobe.AIR                 0x014dbe56 0x1000000 + 5094998
    8   libsystem_pthread.dylib       0x924b25fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x924b2485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x924b7cf2 thread_start + 34
    Thread 10:: BackgroundThread
    0   libsystem_kernel.dylib         0x983067ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x924b4d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x924b6bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                 0x014dc1c0 0x1000000 + 5095872
    4   com.adobe.AIR                 0x0131ea7b 0x1000000 + 3271291
    5   com.adobe.AIR                 0x014dbfc1 0x1000000 + 5095361
    6   com.adobe.AIR                 0x014dc02f 0x1000000 + 5095471
    7   com.adobe.AIR                 0x014dbe56 0x1000000 + 5094998
    8   libsystem_pthread.dylib       0x924b25fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x924b2485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x924b7cf2 thread_start + 34
    Thread 11:: ScriptTimeout
    0   libsystem_kernel.dylib         0x983067ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x924b4d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x924b6c25 pthread_cond_timedwait$UNIX2003 + 71
    3   com.adobe.AIR                 0x014dc232 0x1000000 + 5095986
    4   com.adobe.AIR                 0x015851dc 0x1000000 + 5788124
    5   com.adobe.AIR                 0x014dbfc1 0x1000000 + 5095361
    6   com.adobe.AIR                 0x014dc02f 0x1000000 + 5095471
    7   com.adobe.AIR                 0x014dbe56 0x1000000 + 5094998
    8   libsystem_pthread.dylib       0x924b25fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x924b2485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x924b7cf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib         0x98307046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x924b3dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x924b7cce start_wqthread + 30
    Thread 13:
    0   libsystem_kernel.dylib         0x98307046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x924b3dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib       0x924b7cce start_wqthread + 30
    Thread 14:
    0   libsystem_kernel.dylib         0x98301f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x9830116c mach_msg + 68
    2   com.apple.CoreFoundation       0x9493ebf9 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation       0x9493e1d1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation       0x9493d9ea CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation       0x9493d84b CFRunLoopRunInMode + 123
    6   com.apple.AppKit               0x92fafb88 _NSEventThread + 283
    7   libsystem_pthread.dylib       0x924b25fb _pthread_body + 144
    8   libsystem_pthread.dylib       0x924b2485 _pthread_start + 130
    9   libsystem_pthread.dylib       0x924b7cf2 thread_start + 34
    Thread 15:: CoreLoop
    0   libsystem_kernel.dylib         0x983067ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x924b4d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib       0x924b6c25 pthread_cond_timedwait$UNIX2003 + 71
    3   com.adobe.AIR                 0x014dc232 0x1000000 + 5095986
    4   com.adobe.AIR                 0x016ce59b 0x1000000 + 7136667
    5   com.adobe.AIR                 0x014dbfc1 0x1000000 + 5095361
    6   com.adobe.AIR                 0x014dc02f 0x1000000 + 5095471
    7   com.adobe.AIR                 0x014dbe56 0x1000000 + 5094998
    8   libsystem_pthread.dylib       0x924b25fb _pthread_body + 144
    9   libsystem_pthread.dylib       0x924b2485 _pthread_start + 130
    10  libsystem_pthread.dylib       0x924b7cf2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000000  ecx: 0x006d7350  edx: 0x00000001
      edi: 0x948da05e  esi: 0x00000000  ebp: 0xbfffd218  esp: 0xbfffd200
       ss: 0x00000023  efl: 0x00210286  eip: 0x948da062   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU:     4
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
        0x1000 -     0x6ffb +com.EIZO.ColorNavigator6 (6.4.7 - ???) <D7A52091-F9CD-3D4B-AD3B-125DD928F432> /Applications/ColorNavigator 6.app/Contents/MacOS/ColorNavigator 6
       0xe2000 -    0xeaff7  libCGCMS.A.dylib (599.35.4) <63B0F606-94B1-3355-909A-01C6F26A91F7> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
       0xf4000 -    0xf8ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.3 - 2.6.3f4) <FF6AD1A0-09F4-3D20-A2F4-F4F0AE10CE12> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
      0x2ac000 -   0x2d4ff7  libRIP.A.dylib (599.35.4) <6E3B8709-162D-331E-8722-81D12B0A4BDB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
      0x2e7000 -   0x2eaffa  libCGXType.A.dylib (599.35.4) <12865AFC-BF83-36AB-A42E-331D39C8FD68> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x1000000 -  0x2891ffb +com.adobe.AIR (4.0.0.1628) <8E3096B5-1569-35AD-9DE3-202F4768AD09> /Applications/ColorNavigator 6.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x2aae000 -  0x2ad3ff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x2ae8000 -  0x2af3fff  com.apple.CommerceCore (1.0 - 42) <D28DD970-4B69-3848-9BCC-3C67323B3D9C> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x6673000 -  0x668eff5  com.apple.security.csparser (3.0 - 55471.14.18) <6BAA790A-1C31-3109-B0A4-5BBE0E7A3DDE> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
    0x8fe06000 - 0x8fe38417  dyld (239.4) <0F2176BD-4239-3506-BA41-3B885269520E> /usr/lib/dyld
    0x9001c000 - 0x9001efff  com.apple.securityhi (9.0 - 55005) <5DD5A71D-48BA-3CA5-AFCB-28686A9EFB71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90075000 - 0x90143ff7  com.apple.backup.framework (1.5.4 - 1.5.4) <C09AF796-385F-34DB-B551-68967989E9CB> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90144000 - 0x901adfff  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <3AD9C90B-40A9-312B-B479-3AB178A96EA1> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x901ae000 - 0x90204ff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x90205000 - 0x9031cffb  com.apple.WebKit (9537 - 9537.78.2) <525C4DF6-81DE-3D49-900A-0CDA821F9B86> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9031d000 - 0x9042fffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x90430000 - 0x90725ffc  com.apple.CoreImage (9.4.0) <33696A53-9E18-32D6-844F-28098DB7E426> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x90747000 - 0x909c0ff2  com.apple.security (7.0 - 55471.14.18) <7A58D9DE-D68B-37F7-87EF-4A3575DA09B7> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x909c1000 - 0x90ab5fff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x90ab6000 - 0x90edbfe3  com.apple.VideoToolbox (1.0 - 1273.54) <63E19724-B43E-3552-8D1F-87D0688DF593> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90edc000 - 0x90f43ffc  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <223A367D-1ADE-3CEA-8FE6-ACF3C1FFAB94> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x90f44000 - 0x90f75ff4  com.apple.securityinterface (9.0 - 55047) <0D5ED2B8-C973-3C91-BA45-22501A043263> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90f76000 - 0x90f7affc  com.apple.IOSurface (91.1 - 91.1) <70637267-4D54-3EFF-A929-54FC0A8A907A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90f7b000 - 0x90f82fff  libMatch.1.dylib (19) <3B3680FC-2AC9-37CC-B262-5ACE2CF8939A> /usr/lib/libMatch.1.dylib
    0x90f83000 - 0x90f8ffff  libkxld.dylib (2422.115.4) <8B183287-E46E-3810-AA93-7A83E4BBEA2E> /usr/lib/system/libkxld.dylib
    0x90f90000 - 0x91156ffb  libicucore.A.dylib (511.35) <D14DF7FE-7DE3-36C6-A46D-18C3978827A5> /usr/lib/libicucore.A.dylib
    0x9120c000 - 0x91291ffc  com.apple.CorePDF (4.0 - 4) <73557F2A-B0EF-3128-90FE-8EDD7824CE73> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91292000 - 0x9129affe  libGFXShared.dylib (9.6.1) <632989B3-36C2-302E-8A85-A02125A9C5D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x912db000 - 0x91848fff  com.apple.QuartzComposer (5.1 - 319) <77419C8D-B822-3649-BBB4-2CF0F0993E9A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x91849000 - 0x9187affb  com.apple.GSS (4.0 - 2.0) <145B389F-AC1E-3817-835D-8EA263E96EA5> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9187b000 - 0x91896ff6  libPng.dylib (1044) <D90105D1-B8AD-3649-A798-DA567D1C5B3A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91897000 - 0x918a2ff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x92064000 - 0x9208cfff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x92098000 - 0x92172ff6  com.apple.QuickLookUIFramework (5.0 - 622.7) <6F9C5661-0D7D-3B54-AC34-55E1A24EC05A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x92173000 - 0x92263ffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x92264000 - 0x9234fff4  com.apple.DiskImagesFramework (10.9 - 371.1) <79F56F62-902E-32A2-A747-C57CCE03E1AB> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x92350000 - 0x92420fef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92451000 - 0x9245afff  com.apple.AppleSRP (5.0 - 1) <6B946F4B-7DC4-3E82-BF2C-BE0930E3CF47> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x9245d000 - 0x924b0ff3  com.apple.CoreMediaIO (408.0 - 4570) <0E0FFC14-2D70-369A-9399-DC7DDB6CCA79> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x924b1000 - 0x924b8ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x924b9000 - 0x924c2ff7  libsystem_notify.dylib (121.20.1) <4D3293AC-1CEF-347A-987F-2314AF3CC6EA> /usr/lib/system/libsystem_notify.dylib
    0x924c5000 - 0x924e1ff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x924e2000 - 0x92506fff  libJPEG.dylib (1044) <8501702E-37C9-35F6-8342-037337CCD837> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92507000 - 0x92570ffa  com.apple.datadetectorscore (5.0 - 354.5) <CB793FA7-B873-39A9-855F-D86AB0C35298> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92571000 - 0x9258afff  libAVFAudio.dylib (32.2) <A51776F2-0DCA-336D-8898-6876C63F8CDD> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x9258b000 - 0x925f6fff  com.apple.Heimdal (4.0 - 2.0) <D6465D74-9351-3FF3-9561-AC149AEDB86F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x925f7000 - 0x925fcff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x925fd000 - 0x925fdfff  com.apple.quartzframework (1.5 - 1.5) <5BB3FDD4-4727-3D1B-9582-C96F36DA1542> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x925fe000 - 0x9260affc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x92995000 - 0x929caff1  libssl.0.9.8.dylib (52) <B98A4DB3-5AB1-3FDE-8D49-F42EC60A8A65> /usr/lib/libssl.0.9.8.dylib
    0x929fc000 - 0x92a06ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A0D07BF7-31DF-3575-A02F-BEB90006DC74> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x92baa000 - 0x92d524af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x92d53000 - 0x92db1ffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92db2000 - 0x92dddff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0x92dde000 - 0x939fcff3  com.apple.AppKit (6.9 - 1265.21) <1D31697B-6F33-3239-BACE-5D1361B1F79A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x939fd000 - 0x93c79fe7  com.apple.QuickTime (7.7.3 - 2826.24) <47052198-D890-3D54-80C6-953FE23AD04F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x93c7a000 - 0x93c7bffa  libsystem_sandbox.dylib (278.11.1) <DA875837-A5C2-3004-8117-65F378E4BD03> /usr/lib/system/libsystem_sandbox.dylib
    0x93c83000 - 0x93cd4ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x93cf8000 - 0x93cfbff7  libdyld.dylib (239.4) <C03C330D-1757-3D0B-BDD1-913124973BC8> /usr/lib/system/libdyld.dylib
    0x93cfc000 - 0x93d94ff7  com.apple.Metadata (10.7.0 - 800.28) <2DC6EFB3-BE95-3F2C-A892-BD74C077D292> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93d9b000 - 0x93dc2fff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93dc3000 - 0x93dc3fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93dc4000 - 0x93e56ff9  libsystem_c.dylib (997.90.3) <80D21D3D-1031-314C-B1F0-0B35B977CEFB> /usr/lib/system/libsystem_c.dylib
    0x93e57000 - 0x93e57fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x93e58000 - 0x93eadfff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x93eae000 - 0x93facfff  libJP2.dylib (1044) <E8873182-8B75-34A5-A104-BED94B0C6BF6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x93fad000 - 0x93fdcff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <1BD6205B-7C66-3B7B-AC8C-11BE34F7CF6B> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x93fde000 - 0x940ebff7  com.apple.ImageIO.framework (3.3.0 - 1044) <D48549F6-CD49-30FA-A4CD-85166A66D830> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x940ec000 - 0x9412aff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9412b000 - 0x94143ffd  libdispatch.dylib (339.92.1) <7E7A88BF-74B3-363B-B534-6F757DF2DDE3> /usr/lib/system/libdispatch.dylib
    0x94144000 - 0x94146fff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x94147000 - 0x9414affe  com.apple.LoginUICore (3.0 - 3.0) <6FE961A4-3C17-3004-B50B-FD78FDC28350> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0x9414b000 - 0x9414bfff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94317000 - 0x9432eff4  com.apple.CoreMediaAuthoring (2.2 - 947) <958EE809-D21F-3C88-8D87-B3A5E4C3FCA6> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9432f000 - 0x943f2ff1  com.apple.CoreText (367.20 - 367.20) <42445623-3BDD-3678-8B46-845C441B6251> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x943f3000 - 0x943fefff  com.apple.CrashReporterSupport (10.9 - 539) <10FE9B2D-404F-32B8-B3CA-CBA3524B4CFF> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9442c000 - 0x9442fffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x94430000 - 0x94434fff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94435000 - 0x94439fff  libheimdal-asn1.dylib (323.92.1) <DD8BAEED-28AC-389E-9DC4-E32DA60CB05A> /usr/lib/libheimdal-asn1.dylib
    0x9443a000 - 0x9486eff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x948c5000 - 0x948c7ff2  com.apple.EFILogin (2.0 - 2) <C41A6C38-8DB8-3923-90C2-CD1F9F4AA0BA> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x948c8000 - 0x94acafff  com.apple.CoreFoundation (6.9 - 855.17) <E382BBB6-4F41-3959-ADC7-238BE49A2155> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94acb000 - 0x94b55ff7  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <A33D0598-8699-39AC-A1DD-37079F423269> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x94b56000 - 0x94ba2ff7  libcups.2.dylib (372.4) <A11AA954-07E7-3929-84AB-309B0C0DDB5D> /usr/lib/libcups.2.dylib
    0x94ba3000 - 0x94bb3ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x94bb4000 - 0x94bc2ff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x94bc3000 - 0x94d6ffff  com.apple.QuartzCore (1.8 - 332.3) <DA347693-5E26-3E47-A2B3-3824C52EB08B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94d70000 - 0x94d74ffa  libGIF.dylib (1044) <075D0A69-DEEC-3712-93F7-DC78FECCC0FF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94d75000 - 0x94d8dff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <7F3A0094-3A24-302C-9B64-C32C65750EDE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94d9c000 - 0x9509dffb  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <02C72D54-E3D3-32B0-A081-E85A7038489D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x950c7000 - 0x950c8ffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x959fc000 - 0x95a4ffff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95a50000 - 0x95a8dff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x95a8e000 - 0x95b03ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <FD423680-01A1-357A-89A7-33910A87DE65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95b04000 - 0x95b0eff7  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <C4CC55E5-6CC4-307E-9499-AF89A6463AF4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95b0f000 - 0x95b1affb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x95b1b000 - 0x95b1bffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <9515158F-3A33-39CF-AD5A-201C2B121F33> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95b1c000 - 0x95b59ffb  libGLImage.dylib (9.6.1) <E2DADD8A-8A60-3F39-840B-4B7FE7001384> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x964b5000 - 0x964c3ff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x964c4000 - 0x96562ff5  com.apple.PDFKit (2.9.2 - 2.9.2) <FBCB8D20-2990-314B-A93C-830CB3CD8581> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96566000 - 0x966bcff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x966bd000 - 0x966e8ff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x966e9000 - 0x966f7fff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x966f8000 - 0x966f9fff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x966fa000 - 0x96704ff2  com.apple.AppSandbox (3.0 - 1) <FE0793BE-50CF-3E3B-82C9-71F7A294E10F> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x9680e000 - 0x976afffb  com.apple.WebCore (9537 - 9537.78.1) <7EC105C0-8B27-369A-8976-4334A09D0376> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x976b0000 - 0x976e6fff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x976e7000 - 0x97a0effb  com.apple.JavaScriptCore (9537 - 9537.78.1) <920DDDBE-17FF-3E62-8E21-03554BF7EDC0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x97a0f000 - 0x97a22fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x97a23000 - 0x97a32fff  libGL.dylib (9.6.1) <885E9C1F-11C7-347D-BE10-522A40A46596> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97a33000 - 0x97d60ffe  com.apple.Foundation (6.9 - 1056.16) <F4D43475-9915-3552-B8E1-4F3E1C9E5394> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x97d61000 - 0x97d6affc  com.apple.CommonAuth (4.0 - 2.0) <99219CEB-D340-3E1F-9C04-FD0FA700BD67> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x97d6b000 - 0x9807efef  com.apple.CoreAUC (6.25.00 - 6.25.00) <84677812-2943-328C-B4E0-5E37A6181195> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9807f000 - 0x9809eff9  com.apple.framework.Apple80211 (9.4 - 940.60) <8CCF54EE-F3CA-38B3-BD61-DDBF99E37FCB> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x9809f000 - 0x98112fff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x98113000 - 0x9816cffa  libTIFF.dylib (1044) <EC7E978B-3A38-3696-AAB6-A32221952C69> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9816d000 - 0x982e0ffb  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <4248C0FE-F872-34AB-9402-0045D5CD0CC1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x982ea000 - 0x982eeffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x982ef000 - 0x9830cff4  libsystem_kernel.dylib (2422.115.4) <011434BC-0EFD-35E9-B76D-A22B76DC83DC> /usr/lib/system/libsystem_kernel.dylib
    0x9830d000 - 0x9830efff  libSystem.B.dylib (1197.1.1) <BAD8FCD7-5116-31E8-94A8-A571E12E7E5A> /usr/lib/libSystem.B.dylib
    0x9830f000 - 0x98315ffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x98316000 - 0x98320fff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x98321000 - 0x98345ff7  libxpc.dylib (300.90.2) <5ACBBE2C-74EB-3E88-BCBF-C573095318A5> /usr/lib/system/libxpc.dylib
    0x98346000 - 0x985aaff7  com.apple.CoreData (107 - 481.3) <8EB45FB9-CF78-36E1-919C-E976AE4C8146> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x985ab000 - 0x98607ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x98611000 - 0x98612fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x98613000 - 0x98693ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <DA7C0406-EC4A-3369-B1FE-F21FD814F2D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98694000 - 0x9897efd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x98a2b000 - 0x98a2bfff  com.apple.Carbon (154 - 157) <6C29C608-97B4-306E-AEC5-6F48EDF7EFB5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x98a2c000 - 0x98a92ffb  com.apple.CoreUtils (2.0 - 200.34.4) <F14AAB3C-1C8A-37D7-85BE-76646F9F6098> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x98a93000 - 0x98a96ff3  com.apple.AppleSystemInfo (3.0 - 3.0) <4586B503-A0A8-3654-AA48-D2F9FA0188CB> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x98a97000 - 0x98a97fff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x98afb000 - 0x98bdeff7  libcrypto.0.9.8.dylib (52) <D3AB1D26-30BA-36D3-956C-EC7D7185C396> /usr/lib/libcrypto.0.9.8.dylib
    0x98c12000 - 0x98c1cff3  com.apple.DisplayServicesFW (2.8 - 360.8.14) <B14B15EC-41BA-37F6-B696-8BBA0E325C0C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98c34000 - 0x98c41fff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x98c42000 - 0x98c47ff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x98ce9000 - 0x98d15ff7  com.apple.DictionaryServices (1.2 - 208) <33873336-BECD-3F62-A315-C45F24C1818C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x98d1a000 - 0x98dc6ffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x98dc7000 - 0x98dceff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x98dcf000 - 0x98e17fff  com.apple.PerformanceAnalysis (1.47 - 47) <5C6FA727-EAC9-3924-8662-AF01090A9EF4> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x98e2c000 - 0x98f59ff3  com.apple.avfoundation (2.0 - 651.12.1) <6A8A6D6F-87E0-3514-BB0C-E3659542A857> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x98f5a000 - 0x98f92fff  com.apple.LDAPFramework (2.4.28 - 194.5) <4399D209-B119-3ACC-97AF-F2E14DD207CB> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x98f93000 - 0x98fabff7  libsystem_malloc.dylib (23.10.1) <CB52555E-0F5B-31E3-A42A-FD4F930E2192> /usr/lib/system/libsystem_malloc.dylib
    0x98fac000 - 0x98fbaff3  com.apple.opengl (9.6.1 - 9.6.1) <B01AF67E-F702-3179-B64F-1C241CDF7B55> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x98fbb000 - 0x990f2fff  com.apple.desktopservices (1.8.3 - 1.8.3) <3574872B-435C-3AB8-A453-02A33A771CDB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x990f3000 - 0x99143fff  com.apple.opencl (2.3.59 - 2.3.59) <CE95AA26-7AE6-3692-8291-8268BBB976D1> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x99144000 - 0x992b4fff  com.apple.QTKit (7.7.3 - 2826.24) <A9375DC8-01FE-3BF1-87E6-5595EC22AB4E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x992b5000 - 0x992d2ffb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0x99452000 - 0x9945afff  liblaunch.dylib (842.92.1) <C180016C-F2DB-3D8B-A72D-5185CE67DFA2> /usr/lib/system/liblaunch.dylib
    0x9945b000 - 0x99463fff  libcopyfile.dylib (103.92.1) <9B62DDFE-FEFD-31CA-989F-9BE0AB606C49> /usr/lib/system/libcopyfile.dylib
    0x99464000 - 0x994a0ff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x994a1000 - 0x994e7ff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x994e8000 - 0x99512fff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x9978e000 - 0x9978fffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x99790000 - 0x9979dfff  com.apple.AppleFSCompression (56.92.1 - 1.0) <D2E7A2DF-9E5B-35E6-9CCD-0D40ADA7E021> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x9979e000 - 0x997d0ffb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x997d9000 - 0x997deff3  libsystem_platform.dylib (24.90.1) <0613F163-9A7A-3908-B30B-AC1627503933> /usr/lib/system/libsystem_platform.dylib
    0x997df000 - 0x997e4fff  com.apple.MediaAccessibility (1.0 - 43) <1CC2B661-146A-3FF3-B843-508F611F7B4B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x997e5000 - 0x99b5aff9  com.apple.HIToolbox (2.1.1 - 698) <392738F0-322F-3C80-BEF7-138AFB124C35> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x99b5b000 - 0x99b5dffb  libRadiance.dylib (1044) <6713977E-A33A-395A-9933-719F72DF1A98> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x99b5e000 - 0x99b8cff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x99b8d000 - 0x99b8ffff  com.apple.SecCodeWrapper (3.0 - 1) <066E1E30-2EEA-3166-8F86-D1054B50875B> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x99b90000 - 0x99be1ffb  com.apple.CoreMedia (1.0 - 1273.54) <086865CC-7B9A-3B96-A3CB-4B90DAD5DC91> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x99c49000 - 0x99c98ff9  com.apple.HIServices (1.23 - 468) <72D000B0-C8F0-3CE5-89E9-D99E2FAF6F5B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x99c99000 - 0x99d2afff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x99d95000 - 0x99dffff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x99e07000 - 0x9a086ff7  com.apple.imageKit (2.5 - 774) <53C3FA27-3830-3A15-9707-AF7369119866> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9a090000 - 0x9a0c1ffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x9a0c2000 - 0x9a0cbfff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9a0cc000 - 0x9a0e5fff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9a105000 - 0x9a1e0ff7  com.apple.LaunchServices (572.28 - 572.28) <12F13478-DB82-3C78-9140-2C98FECD0A80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9a1e3000 - 0x9a1f8ff3  com.apple.AppContainer (3.0 - 1) <017FED4F-AD6E-3A56-806B-A2D33E69EFF9> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x9a1f9000 - 0x9a21dff3  libc++abi.dylib (49.1) <43A04ACF-97A5-35ED-B454-6B5C0CF0F99D> /usr/lib/libc++abi.dylib
    0x9a21e000 - 0x9a221ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9a222000 - 0x9a234fff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x9a237000 - 0x9a24bff9  com.apple.MultitouchSupport.framework (245.13.1 - 245.13.1) <6DDC6828-879B-3F7F-9458-8F57713104B5> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9a24c000 - 0x9a25cff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0x9a4ca000 - 0x9a5b6ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x9a5b7000 - 0x9a60cff7  com.apple.QuickLookFramework (5.0 - 622.7) <215A2C74-801A-39AE-85E4-A1E5031CFD38> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9a60d000 - 0x9a629fff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0x9a62a000 - 0x9a67efff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <68D53493-CC1E-3036-BF67-B2A0F6E1A905> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9a67f000 - 0x9a681ffe  libCVMSPluginSupport.dylib (9.6.1) <C2071F9E-72A1-360C-BF7E-286F9681922F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9a682000 - 0x9a682fff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9a683000 - 0x9a683fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9a689000 - 0x9a816ffb  com.apple.CFNetwork (673.3 - 673.3) <2C900A5F-9E29-3636-846D-68B24774E82A> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x9a817000 - 0x9a818fff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x9a819000 - 0x9a86eff3  com.apple.ImageCaptureCore (5.0 - 5.0) <69A007AE-4654-3C79-9AF6-5EC8F173F225> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x9a86f000 - 0x9a89fff7  com.apple.CoreServicesInternal (184.9 - 184.9) <999FEDEC-7657-3F32-A9AE-F29E0BE0AAF5> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x9a8a0000 - 0x9a8a4ff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x9a8a5000 - 0x9a8bfff7  com.apple.GenerationalStorage (2.0 - 160.3) <D39634C9-93BF-3C74-828B-4809EF895DA0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9a8c0000 - 0x9a8c0fff  libodfde.dylib (20) <98FC02AE-C596-3ED5-80D1-C502FF6115ED> /usr/lib/libodfde.dylib
    0x9a8c1000 - 0x9a8dcff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9a8dd000 - 0x9a908ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x9a909000 - 0x9a90dffc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x9a90e000 - 0x9a946ff7  com.apple.MediaKit (15 - 709) <82E0F8C0-313C-379C-9994-4D21587D0C0C> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x9a9e2000 - 0x9aa24fff  libGLU.dylib (9.6.1) <0655104D-2F22-36CE-955B-52A533CA70D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9aa25000 - 0x9aa2bff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x9aa5d000 - 0x9ae22ff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9ae23000 - 0x9ae2cfff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9ae2d000 - 0x9ae34ff7  com.apple.XPCService (2.0 - 1) <94783930-9E46-394F-B1B2-9CA57CBA2D25> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x9ae40000 - 0x9ae41fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x9ae42000 - 0x9ae42ffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x9ae43000 - 0x9ae55fff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x9ae80000 - 0x9aed0ff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x9aed1000 - 0x9b240fff  com.apple.MediaToolbox (1.0 - 1273.54) <46C11BBD-7F31-3227-9441-6087FAA3B477> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x9b241000 - 0x9b2b8ffb  com.apple.framework.IOKit (2.0.1 - 907.100.13) <D1308EE0-96AA-3442-A27B-264F58AE12B4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9b2b9000 - 0x9b358fff  libCoreStorage.dylib (380.70.2) <AAB92110-31F1-36F0-A877-21FCE9531C4F> /usr/lib/libCoreStorage.dylib
    0x9b359000 - 0x9b35cff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9b35d000 - 0x9b3d3ff3  com.apple.securityfoundation (6.0 - 55122.3) <DFA5E047-2B68-3CE8-B9C3-D19E6F2461CB> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9b3d4000 - 0x9b3d8ffa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x9b438000 - 0x9b478ff7  com.apple.bom (14.0 - 193.1) <FFF1C8E5-41FF-357B-8681-69B21DCED2E4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9b479000 - 0x9b4a3fff  libsandbox.1.dylib (278.11.1) <A55CE36C-8E1A-3E3E-BBA1-DEFD3911CBDD> /usr/lib/libsandbox.1.dylib
    0x9b513000 - 0x9b559ff7  libcurl.4.dylib (78.94.1) <0EBB0049-F944-3A3F-ACBF-80D742C4945B> /usr/lib/libcurl.4.dylib
    0x9b55a000 - 0x9b5f6fff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9b5f8000 - 0x9b5ffffe  com.apple.agl (3.2.3 - AGL-3.2.3) <808BEF15-F413-34AD-8932-E0655519E2E0> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9b600000 - 0x9b655ff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <CB06B746-9EB1-3972-A798-A139E15F5ACC> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9b656000 - 0x9b6edff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9b6ee000 - 0x9b7fefed  com.apple.MediaControlSender (2.0 - 200.34.4) <48A88743-4EB7-364B-968F-43C17FFCEB97> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x9b7ff000 - 0x9b80afff  libcsfde.dylib (380.70.2) <B3FC85EE-BBC2-3A20-9C45-C1ABDD063A63> /usr/lib/libcsfde.dylib
    0x9b80b000 - 0x9b8d2ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <84A7EC09-3BBD-3E04-A88C-6D3B724448FF> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9b8d3000 - 0x9b8d5fff  libsystem_configuration.dylib (596.15) <E49AAD29-35C2-3EE2-AF4D-59514C4B478F> /usr/lib/system/libsystem_configuration.dylib
    0x9bbd8000 - 0x9bbe1fff  com.apple.DiskArbitration (2.6 - 2.6) <92F7575A-AA20-34D9-BB26-2CC8C3CCAFEB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9bbe2000 - 0x9bcc8fff  com.apple.coreui (2.2 - 231.1) <17E75125-8D14-30EF-B7A7-662A56B0F4B3> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9bcc9000 - 0x9bceeff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9bdea000 - 0x9bdf2fff  libsystem_dnssd.dylib (522.92.1) <7E36B79E-6BF4-3462-9A84-C0744D029636> /usr/lib/system/libsystem_dnssd.dylib
    0x9bdf3000 - 0x9bdffff7  com.apple.OpenDirectory (10.9 - 173.90.1) <D50773D6-A261-390E-B159-0C161EA7C457> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9be00000 - 0x9be61ff7  com.apple.Symbolication (1.4 - 129.0.2) <FD025FD5-C206-3C90-B3BE-FE9B1BEECAFB> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x9be62000 - 0x9c25affb  com.apple.CoreGraphics (1.600.0 - 599.35.4) <2B46D887-CAED-30F3-B009-1EBF0C71DC2E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        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: 182
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=210.8M resident=63.9M(30%) swapped_out_or_unallocated=146.9M(70%)
    Writable regions: Total=128.4M written=30.3M(24%) resident=35.4M(28%) swapped_out=0K(0%) unallocated=93.0M(72%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  1116K
    CG image                              4K
    CG raster data                       12K
    CG shared images                    188K
    Kernel Alloc Once                     4K
    MALLOC                             74.6M
    MALLOC (admin)                       48K
    Memory Tag 240                     22.2M
    Memory Tag 242                       12K
    Stack                              71.2M
    VM_ALLOCATE                        16.5M
    _

    I am getting the same thing OVER and OVER! I have wiped my hard drive and reinstalled all of my applications (5 times) and still get the same old thing. It is happening in Safari, Mail (which is also displaying all of my incoming messages as arriving one our earlier than they do), CS4 (take your pick of apps there), excel, and Logic Pro. I don't thinkI have any issues with Adobe Lightroom, or word. Somebody needs to come up with something other than finger pointing here! I can't work, right now all I have is an $8000 paperweight. FWIW my MacBook Pro seems stable, although I don't use it much for anything surfing the web and email these days.
    HELP!

  • Imovie Crashed Thread:  0  Dispatch queue: com.apple.main-thread

    I start the Imac
    Only open iPhoto, iTunes and iMovie.
    I choose in iMovie, Export and then location and HD 1080p, name and Export.
    That is all
    I leave the iMac allone
    After a while I movie chrashed see log file.
    I tried everything start up and use only Imovie and stop a few processes but it didn't help.
    I try last week every thing also with 720p and yesterday suddenly my last export in 720p was oke. I don't know why but I am happy for 720p
    Now the export to HD can you help. Sorry for my bad englisch
    Process:         iMovie [260] 
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.8 (1778)
    Build Info:      iMovieApp-1778000000000000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [248]
    User ID:         501
    Date/Time:       2012-11-30 22:47:33.086 +0100
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          42182 sec
    Crashes Since Last Report:           10
    Per-App Interval Since Last Report:  25650 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      F1718B17-E88C-DE20-F9DE-EF5A3624D67E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    Performing @selector(ok:) from sender NSButton 0x7baf9ef0
    abort() called
    Application Specific Signatures:
    Graphics kernel error: 0x00000002
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x91180a6a __pthread_kill + 10
    1   libsystem_c.dylib                       0x96457acf pthread_kill + 101
    2   libsystem_c.dylib                       0x9648e4f8 abort + 168
    3   libGPUSupport.dylib                     0x04052159 gpusKillClient + 111
    4   com.apple.ATIRadeonX2000GLDriver          0x091d9116 0x8ffd000 + 1949974
    5   com.apple.ATIRadeonX2000GLDriver          0x091b1dc4 0x8ffd000 + 1789380
    6   libGPUSupport.dylib                     0x04057665 gldFlushContext + 29
    7   GLEngine                                0x0883106b glFlushRender_Exec + 58
    8   com.apple.QuartzComposer                0x992c9e39 -[QCCGLContext(SnapshotImage) createSnapshotImageOfType:withColorSpace:] + 548
    9   com.apple.QuartzComposer                0x992d83c2 -[QCRenderer createSnapshotImageOfType:] + 103
    10  com.apple.iMovieApp                     0x00204124 0x68000 + 1687844
    11  com.apple.iMovieApp                     0x000d709d 0x68000 + 454813
    12  com.apple.iMovieApp                     0x000d8800 0x68000 + 460800
    13  com.apple.iMovieApp                     0x000d76af 0x68000 + 456367
    14  com.apple.iMovieApp                     0x000df4e0 0x68000 + 488672
    15  com.apple.iMovieApp                     0x000de2bf 0x68000 + 484031
    16  com.apple.QuickTimeComponents.component          0x908e7e16 0x900a5000 + 8662550
    17  com.apple.QuickTimeComponents.component          0x908e741b 0x900a5000 + 8659995
    18  com.apple.QuickTimeComponents.component          0x908e60e6 0x900a5000 + 8655078
    19  com.apple.QuickTimeComponents.component          0x908d07d6 0x900a5000 + 8566742
    20  com.apple.CoreServices.CarbonCore          0x936ec91f callComponentStorage_444 + 32
    21  com.apple.CoreServices.CarbonCore          0x936ddabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    22  com.apple.CoreServices.CarbonCore          0x936ddaff CallComponentFunctionWithStorageProcInfo + 30
    23  com.apple.QuickTimeComponents.component          0x908ce052 SpitMovieComponentDispatch + 114
    24  com.apple.CoreServices.CarbonCore          0x93657aee CallComponent + 151
    25  com.apple.CoreServices.CarbonCore          0x93657b48 CallComponentDispatch + 29
    26  com.apple.QuickTime                     0x9413414f MovieExportFromProceduresToDataRef + 49
    27  com.apple.iMovieApp                     0x000e0595 0x68000 + 492949
    28  com.apple.iMovieApp                     0x000e114b 0x68000 + 495947
    29  com.apple.iMovieApp                     0x0020ed51 0x68000 + 1731921
    30  com.apple.iMovieApp                     0x0020f6aa 0x68000 + 1734314
    31  com.apple.iMovieApp                     0x0017babc 0x68000 + 1129148
    32  com.apple.iMovieApp                     0x00211736 0x68000 + 1742646
    33  com.apple.AppKit                        0x9788b1af -[NSSavePanel _didEndSheet:returnCode:contextInfo:] + 145
    34  com.apple.AppKit                        0x97291136 -[NSApplication endSheet:returnCode:] + 314
    35  com.apple.iMovieApp                     0x000b2982 0x68000 + 305538
    36  com.apple.AppKit                        0x972acf43 -[NSSavePanel dismissWindow:] + 137
    37  com.apple.AppKit                        0x972ac57d -[NSSavePanel ok:] + 467
    38  libobjc.A.dylib                         0x914775d3 -[NSObject performSelector:withObject:] + 70
    39  com.apple.AppKit                        0x9748bbd2 -[NSApplication sendAction:to:from:] + 436
    40  com.apple.iMovieApp                     0x000b99d0 0x68000 + 334288
    41  com.apple.AppKit                        0x9748b9e0 -[NSControl sendAction:to:] + 102
    42  com.apple.AppKit                        0x9748b8ef -[NSCell _sendActionFrom:] + 159
    43  com.apple.AppKit                        0x97489e60 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1895
    44  com.apple.AppKit                        0x9748969f -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 511
    45  com.apple.AppKit                        0x97488db9 -[NSControl mouseDown:] + 867
    46  com.apple.AppKit                        0x97480a21 -[NSWindow sendEvent:] + 6968
    47  com.apple.AppKit                        0x9747ba0f -[NSApplication sendEvent:] + 4278
    48  com.apple.iMovieApp                     0x000b9700 0x68000 + 333568
    49  com.apple.AppKit                        0x9739572c -[NSApplication run] + 951
    50  com.apple.AppKit                        0x973386f6 NSApplicationMain + 1053
    51  com.apple.iMovieApp                     0x0006a35a 0x68000 + 9050
    52  com.apple.iMovieApp                     0x00069ec5 0x68000 + 7877
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x91180c02 __select_nocancel + 10
    1   libdispatch.dylib                       0x93037a08 _dispatch_mgr_invoke + 376
    2   libdispatch.dylib                       0x930377a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9117e7d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9117dcb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x93333599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x93338f7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9333863a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x93348061 CFRunLoopRun + 129
    6   com.apple.FWAVCPrivate                  0x0272e72f AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 266
    7   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    8   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x91180be6 __select + 10
    1   com.apple.CoreFoundation                0x9337cc00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    3   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x911808e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9645b289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9645b512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x936bc6ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x936bc184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x936bc40d TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x9069b5ac 0x900a5000 + 6251948
    7   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    8   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x9117e80e semaphore_wait_trap + 10
    1   com.apple.QuickTimeComponents.component          0x90b557ee 0x900a5000 + 11208686
    2   com.apple.QuickTimeComponents.component          0x90709e26 0x900a5000 + 6704678
    3   com.apple.QuickTimeComponents.component          0x90b55580 0x900a5000 + 11208064
    4   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    5   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 6:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x911808e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9645b289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x964e8afc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x907b2556 0x900a5000 + 7394646
    4   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    5   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 7:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x911808e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9645b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x964e10ec pthread_cond_timedwait$UNIX2003 + 70
    3   com.apple.JavaScriptCore                0x9954b3d8 ***::ThreadCondition::timedWait(***::Mutex&, double) + 120
    4   com.apple.JavaScriptCore                0x99761f43 JSC::BlockAllocator::blockFreeingThreadMain() + 115
    5   com.apple.JavaScriptCore                0x9954935c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x99777880 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    8   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x911808e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9645b220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x964e10a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x996cc6f6 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
    4   com.apple.JavaScriptCore                0x996cc5ee JSC::MarkStackThreadSharedData::markingThreadMain() + 238
    5   com.apple.JavaScriptCore                0x9954935c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x99777880 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    8   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x911808e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9645b289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9645b512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x936bc6ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x936bc184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x936bc40d TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9365d7ea AIOFileThread(void*) + 892
    7   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    8   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 10:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x9117e80e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x2342ea73 0x2337f000 + 719475
    2   QuickTimeH264.scalar                    0x2342e55b 0x2337f000 + 718171
    3   libsystem_c.dylib                       0x96456557 _pthread_start + 344
    4   libsystem_c.dylib                       0x96440cee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x911810ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9645904c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x96458e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x96440cca start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x911810ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9645904c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x96458e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x96440cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000780  ecx: 0xbff96fac  edx: 0x91180a6a
      edi: 0xac95da28  esi: 0x00000006  ebp: 0xbff96fc8  esp: 0xbff96fac
       ss: 0x00000023  efl: 0x00200206  eip: 0x91180a6a   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x6288b000
    Logical CPU: 0
    Binary Images:
       0x68000 -   0x4eefef  com.apple.iMovieApp (9.0.8 - 1778) <8B088F1A-C83A-3009-BCDA-03F2292C7A8F> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x5af000 -   0x5c6ff7  com.apple.iLifeFaceRecognition (1.0 - 21) <AD53D7A2-F0B2-FF76-5C6D-C23B234AB50E> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/iLifeFaceRecognit ion
      0x5d8000 -   0x5d9ff3  com.apple.Helium (3.1.0 - 18567.3) <72A242AC-3BA7-3DD5-A043-000C7A9DCD11> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x5de000 -   0x60cfe3  com.apple.MPEG2TSDecoder (1.0 - 84) <7E230E93-F7F6-34A2-8B60-E6F79E353426> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x645000 -   0x6c4ff7  com.apple.iLifeMediaBrowser (2.7.2 - 546) <824E7748-CA28-3105-B5C3-27E9D8C6D465> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
      0x70b000 -   0x829ff3  com.apple.WebKit (8536 - 8536.26.14) <C98F734D-D579-3F89-9A58-9EE890B1748E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
      0x8dd000 -   0x8deff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x8e6000 -   0x8e7fff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoCo m.dylib
      0x8ec000 -   0x911ff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoPt .dylib
      0x91b000 -   0x94ffe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoDt .dylib
      0x958000 -   0xabffff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoFr .dylib
      0xac5000 -   0xcc8feb  com.apple.Helium.HeliumRender (2.1.0 - 18567.3) <A20BE37C-2987-3BB8-AA52-0607FE7CCF8C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xd1e000 -   0xd9ffe7  com.apple.Helium.Heliumfilters (2.1.0 - 18567.3) <3DCC7DCF-8734-31A0-9B6F-0139CC6CB71C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumFilters.framework/Versions/A/HeliumFilters
    0x10d8000 -  0x1295feb  com.apple.Helium.HeliumSensoCore (2.0.2 - 18567.3) <BFA19728-C6DD-3D2D-BFF5-1099CBB20679> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumSensoCore.framework/Versions/A/HeliumSensoCore
    0x12cb000 -  0x1f5aff3  com.apple.WebCore (8536 - 8536.26.14) <82E97E6B-3F31-39A7-B41F-CD308E6EF238> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x272a000 -  0x275bff3  com.apple.FWAVCPrivate (52.47 - 47) <14C9A9D3-4065-3395-A8BC-C0535162017E> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
    0x27d9000 -  0x27dcfef  com.apple.LiveType.component (2.1.3 - 2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x3acf000 -  0x3adcff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x3b22000 -  0x3b23ffe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1167) <341A7E90-613E-3306-919F-8F49EE350831> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x3b28000 -  0x3b2bffe  com.apple.DirectoryServicesSource (2.1 - 1167) <2A3AD43B-950C-32AD-A578-3271EAD55E3E> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x3b31000 -  0x3b38ff7  com.apple.AOSNotification (1.7.0 - 636.2) <F68F735D-0B5C-3F27-9E39-FB296CF82958> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x3c93000 -  0x3cf8fde  com.apple.LiveType.framework (2.1.3 - 2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x4050000 -  0x405cffb  libGPUSupport.dylib (8.6.1) <FB98F9CE-31D0-321C-90FE-87D30294921B> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x4063000 -  0x408fffa  GLRendererFloat (8.6.1) <D0348D87-ADBD-302B-95D0-FB3100C219BA> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x4098000 -  0x40a0ffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x40a7000 -  0x40a9fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x54dd000 -  0x552eff7  com.apple.AddressBook.CardDAVPlugin (10.8 - 332) <DED18914-309A-31FF-A367-BB0D62384728> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x554b000 -  0x55adfff  com.apple.coredav (1.0.1 - 179.6) <80D3EE71-AA9C-3954-B262-6BB8FCB293BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x55e7000 -  0x55f4ffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x55fe000 -  0x560dffd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <A9BF8310-F1D2-38EC-AA1A-5ECB479B89CE> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x5618000 -  0x5674fff  com.apple.corelocation (1.0 - 1239.39) <8159C021-DE49-332F-859E-00D7544EB568> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x56a1000 -  0x56d3ff3  com.apple.GeoServices (1.0 - 1) <2E4033FA-18BD-3E73-B00E-CBFEE0ACCB6A> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x56e5000 -  0x56eefff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x67f1000 -  0x67f2ff8  ATSHI.dylib (341.1) <7FD74F4D-E42A-30CB-8863-1832BFADFE5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x680c000 -  0x6813ff8  com.apple.iLMBAperturePlugin (2.7.2 - 339) <2D2C9870-E0B6-3868-8394-79E91AC706E4> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x681a000 -  0x681afff  com.apple.iLMBAppDefPlugin (2.7.2 - 339) <70319805-38A9-3043-ADAF-A8E3460C2E7F> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x681f000 -  0x6820fff  com.apple.iLMBFolderPlugin (2.7.2 - 339) <A492DD96-B17A-3581-8F02-BB46C385D5B9> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x87d4000 -  0x87ddff7  com.apple.iLMBFinalCutPlugin (2.7.2 - 339) <FCDE7192-2E1A-38F8-916A-0CA934540DC2> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x880d000 -  0x8999ff8  GLEngine (8.6.1) <2660B1D4-5783-3BED-8C05-F5A4C5A29715> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x89d0000 -  0x89d3fff  com.apple.iLMBGarageBandPlugin (2.7.2 - 339) <78FF504C-F636-3C8D-8AAA-BACF4D5B7D9B> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x89d9000 -  0x89dafff  com.apple.iLMBMoviesFolderPlugin (2.7.2 - 339) <64E4136B-AAD7-35AF-89EA-2560CE1C403C> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x89df000 -  0x89e0ffd  com.apple.iLMBPhotoBoothPlugin (2.7.2 - 339) <E69485DC-8BE8-31AD-A002-79D7CE66F11C> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0x8e7e000 -  0x8fcfff7  libGLProgrammability.dylib (8.6.1) <E134D5DE-5A89-338A-A938-C7D80F272C9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x8ffd000 -  0x928afff  com.apple.ATIRadeonX2000GLDriver (8.0.61 - 8.0.0) <62F8082A-963D-3F5A-9917-2AAF68EF6DF9> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x92e0000 -  0x939eff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9422000 -  0x957efff  com.apple.iLMBAperture31Plugin (2.7.2 - 339) <31453F49-445D-3339-850B-961880BFC73A> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x95c6000 -  0x9778ffb  com.apple.iLMBAperturePlugin2012 (2.7.2 - 339) <010C3E35-C2A2-378E-8818-3E4F95582F56> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin2012
    0x97d3000 -  0x97dfff3  com.apple.iLMBiMoviePlugin (2.7.2 - 339) <43670574-38EA-316D-8246-CCFA1EC939FF> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x97e6000 -  0x97f9fff  com.apple.iLMBiPhoto8Plugin (2.7.2 - 339) <3A40E2BF-F18E-32A9-A9C1-A7ABB6530CF0> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x9801000 -  0x9960fff  com.apple.iLMBiPhoto9Plugin (2.7.2 - 339) <E63985DE-DFFA-3459-870F-045D31ED2F38> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x99a9000 -  0x99b1ffb  com.apple.iLMBiPhotoPlugin (2.7.2 - 339) <C223ED5C-2B22-3EA8-899B-7B152E32B018> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x99b8000 -  0x9b6bff3  com.apple.iLMBiPhotoPlugin2012 (2.7.2 - 339) <C60F1D91-5FA8-31AF-A6AA-DF919D7DF7D2> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin2012
    0x9bc7000 -  0x9bcfffe  com.apple.iLMBiTunesPlugin (2.7.2 - 339) <50409BA5-9D15-3D95-BBC5-36C6EA6EC85B> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x9bd6000 -  0x9c85ffb  com.apple.iTunesAccess (11.0 - 11.0) <DB874F67-FA81-3A6C-A991-98EA4BFF32B2> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x9cb0000 -  0x9cb2ffb  com.apple.iLMBPhotoBooth2Plugin (2.7.2 - 339) <0DC888AC-D093-39EF-A839-A262A3CDD0BC> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0xa049000 -  0xa04efff  com.apple.audio.AppleHDAHALPlugIn (2.3.1 - 2.3.1f2) <58BDA15D-2B2D-3E77-BC8C-D14AB1E4AC4E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xb10b000 -  0xb10cffd +cl_kernels (???) <0BE8D0A7-9448-44C3-81ED-EBF3CCBA4C91> cl_kernels
    0xb119000 -  0xb119ff7 +cl_kernels (???) <8FAF0AA4-434A-499B-B567-C5712701F5C9> cl_kernels
    0xb11b000 -  0xb1adff7  unorm8_bgra.dylib (2.1.19) <A2C66114-F581-3D86-9BC9-9994156640AF> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0xb408000 -  0xb41bfef  com.apple.FCP Uncompressed 422.component (2.0 - 546.9) <DE499328-98FD-2648-444F-418FC8A3CE59> /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0xb4ad000 -  0xb4b2ff7  com.apple.DesktopVideoOut (1.2.4 - 1.2.4) /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0xb67d000 -  0xb68affb +net.telestream.license (1.0.7.2-GC - 1.0.7.2-GC) <3B3ADB81-79F3-6371-31FE-66EF8D8E3100> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0xb697000 -  0xb72dffa  com.apple.mobiledevice (555.40 - 555.40) <40C9AB96-15C5-3D69-BA35-A73BB9380856> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0xb816000 -  0xb81dffc  com.apple.AppleGVAHW.component (1.1 - 1) <402A3FA9-6028-3639-989F-E9FCA85D04CF> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0xb828000 -  0xba2dfff  com.apple.audio.codecs.Components (3.0 - 3.0) <B826A71F-1D4C-3B2D-B104-D06583172F1B> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0xc9ef000 -  0xc9f3ffb  libFontRegistryUI.dylib (100) <10CAC446-A500-3291-A144-7FAFA57D6720> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0xca97000 -  0xcabdffb  com.apple.QuartzComposer.ExtraPatches (4.1 - 284) <BC445DFA-0C21-332E-AD55-31224AF4E57A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0xcace000 -  0xcbe8ff3  com.apple.avfoundation (2.0 - 361.25) <0CB46B4A-8330-3BD8-B081-71314C6687A5> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0xcc85000 -  0xcccdffb  com.apple.audio.midi.CoreMIDI (1.9 - 78) <7AAE4076-36FA-37C1-9EAE-344F1C8F14D9> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xccf2000 -  0xcddbffb  com.apple.PubSub (1.0.5 - 65.32) <47AA4035-0FAE-31ED-B7AD-C0DA089EE82D> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0xce34000 -  0xce5fff7  com.apple.audio.OpenAL (1.6 - 1.6) <B10D8F86-253D-37C8-BC11-64DEEF81AC45> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0xce6f000 -  0xce85ffc  libexpat.1.dylib (12) <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
    0xcfd8000 -  0xd003ff7  com.apple.iMovieQCPlugIns (1.1 - 1778) <931824E8-B2C7-3E5A-8E5C-00C8B2398459> /Applications/iMovie.app/Contents/PlugIns/iMovieQCPlugIns.plugin/Contents/MacOS /iMovieQCPlugIns
    0xdd71000 -  0xde46fef +com.cineform.CFHDDecompressor (8.1.2.646 - 646) <49FF431C-994D-1B14-9A0F-15A3DFD5D6BD> /Library/QuickTime/CFHDDecompressor.component/Contents/MacOS/CFHDDecompressor
    0xdf00000 -  0xe0f2fe2 +net.telestream.wmv.import (2.3.4.1 - 2.3.4.1) <6F008770-6AD3-E6C9-347C-A235876196E0> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0xe127000 -  0xe1d2fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0xe216000 -  0xe3d7ff2 +net.telestream.wmv.advanced (2.3.4.1 - 2.3.4.1) <CB95FDB7-C531-22A3-6D36-1C96D5A5679D> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0xe41b000 -  0xe443fe3  com.apple.AppleAVCIntraCodec (2.0 - 542.4) <DBE6FAB1-C003-33F6-B0F3-BD528C7CAA20> /Library/QuickTime/AppleAVCIntraCodec.component/Contents/MacOS/AppleAVCIntraCod ec
    0xe44d000 -  0xe4d4ff7  com.apple.AppleProResCodec (3.0.1 - 553.2) <6E207B31-DE83-BF92-990F-24328404C5AF> /Library/QuickTime/AppleProResCodec.component/Contents/MacOS/AppleProResCodec
    0xe512000 -  0xe55bfff  com.apple.AppleVAH264HW.component (3.0 - 3.0) <3048BA40-0E8E-357A-8F9D-27D2FD322036> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0xe61f000 -  0xe769ff7  com.apple.AppleGVAFramework (4.0.27 - 4.0.27) <A821DD12-2544-3EAB-8439-4D17BCEB8460> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0xe785000 -  0xe7bffff  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2599.13) <5FB303B9-3672-39AA-8CD6-E323CC0E41A8> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xe7cb000 -  0xe808fe7  com.apple.DVCPROHDCodec (2.0 - 542.4) <C4C608C8-701F-448D-AA2C-9FA650BCA988> /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0xe818000 -  0xe8ccfef  com.apple.AppleHDVCodec (2.0.1 - 553.8) <5F48585B-5E48-549D-1E1B-F1BF68F8B753> /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0xe8e8000 -  0xe909fff  com.apple.AppleIntermediateCodec (2.0.1 - 5718) <6A70694B-21C7-381B-8DE3-CD6490C70A77> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xe918000 -  0xe92effb  com.apple.IMXCodec (2.0 - 547.2) <A835627C-1BAF-95D4-A5C9-EB998A205767> /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0xe940000 -  0xe958ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31) <B5622D90-ADF3-3DB2-B64B-5F4AF7C274E3> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x20b0e000 - 0x20b37ff7  com.apple.datadetectors (4.0 - 199.0) <664C00F7-1E59-33F8-9401-DB4784A189B6> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x20b73000 - 0x20b74ff1 +cl_kernels (???) <7034ACAF-E418-4B8F-B26B-74BCB4521AA1> cl_kernels
    0x20c53000 - 0x20c54ff5 +cl_kernels (???) <19B543A0-C3E2-4FE8-A60F-DEBCAC14BB91> cl_kernels
    0x214c9000 - 0x2155bff7  unorm8_argb.dylib (2.1.19) <1B67DB26-5B5D-3600-8049-D744F133BEB1> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
    0x22d2a000 - 0x22d4efff  com.apple.security.csparser (3.0 - 55179.1) <5A5A8689-5E81-3F38-B770-70448D8653E9> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
    0x2337f000 - 0x2370efff  QuickTimeH264.scalar (2599.13) <40E122CF-721A-338C-94BB-D6CB892851EA> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x3e000000 - 0x3e041fff  com.apple.glut (3.5.2 - GLUT-3.5.2) <0A9E8D36-8EA6-328D-AEF9-E7A7B1A830D4> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x70000000 - 0x7015dff7  com.apple.audio.units.Components (1.8 - 1.8) <2637680C-A07E-3387-BD21-33B04B7C7A95> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe67000 - 0x8fe99e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x90042fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90043000 - 0x9007affa  com.apple.LDAPFramework (2.4.28 - 194.5) <8368FAE7-2B89-3A7D-B6EE-7184B522CB66> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9007b000 - 0x900a4fff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x900a5000 - 0x90dddff7  com.apple.QuickTimeComponents.component (7.7.1 - 2599.13) <85C70D1B-D074-3891-BF8D-9BA81D2C224B> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x90dde000 - 0x90e44fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90e45000 - 0x90e5cfff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x90e5d000 - 0x90e8cff7  com.apple.securityinterface (6.0 - 55024.4) <7C5E28DC-F8BE-3238-883F-E1646A2AF895> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90e8d000 - 0x90f89ff3  com.apple.DiskImagesFramework (10.8 - 344) <98C16F91-9D3E-3FD0-A30B-BD49EE4ED9A4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x90f8a000 - 0x90f8afff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90f8b000 - 0x90fedfff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x90fee000 - 0x91000fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x91027000 - 0x9105aff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9105b000 - 0x9114cffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x9114d000 - 0x91166ffb  com.apple.frameworks.preferencepanes (15.0 - 15.0) <802C922C-CF94-357F-B1AE-4244AA025C04> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x91167000 - 0x9116bffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x9116c000 - 0x91186ffc  libsystem_kernel.dylib (2050.18.24) <C17D49D0-7961-3B67-B443-C788C6E5AA76> /usr/lib/system/libsystem_kernel.dylib
    0x91187000 - 0x911b2fff  com.apple.shortcut (2.2 - 2.2) <FA94F2BF-37E1-3F16-9085-7BCCB815BAE9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x911c2000 - 0x91211ff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x912aa000 - 0x912baff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x912bb000 - 0x912c9fff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x912ca000 - 0x9130fff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91310000 - 0x91311ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x91357000 - 0x9137cffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9137d000 - 0x913e3ffc  com.apple.ISSupport (1.9.8 - 56) <D2AC4E10-0B3C-3194-AEB7-1E9964CBC0D0> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x913e4000 - 0x913e8fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x913e9000 - 0x913f3ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x913f4000 - 0x91458fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x91459000 - 0x91566057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x91567000 - 0x91580fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91581000 - 0x9158fff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x91590000 - 0x916e8ffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x916e9000 - 0x917ddff3  com.apple.QuickLookUIFramework (4.0 - 555.4) <D66F61A6-2C4C-359F-A2E3-7D023C33CB5A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x917de000 - 0x917dffff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
    0x917e0000 - 0x9181fff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91820000 - 0x91918ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x91919000 - 0x9191dfff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9191e000 - 0x91a1cff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x91a1d000 - 0x91a28ffb  com.apple.DirectoryService.Framework (10.8 - 151.10) <234F4A14-60ED-300B-93B2-D5052878558F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91a29000 - 0x91a46fff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
    0x91a47000 - 0x91a89ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x91a8a000 - 0x91a93ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91a94000 - 0x91a9efff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91a9f000 - 0x91aa8ff3  com.apple.DisplayServicesFW (2.6.1 - 353) <50D0BBF0-F911-380F-B470-E59B5E48E520> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91aa9000 - 0x91ab1fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91b02000 - 0x91b17fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91b18000 - 0x91b18fff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91b1e000 - 0x91bb8fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x91bb9000 - 0x91f71ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91f72000 - 0x91f97ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91f98000 - 0x91f98fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x91f99000 - 0x91f99fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x91f9a000 - 0x923b7fff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x923b8000 - 0x9246cfff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9246d000 - 0x924d5fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x924d6000 - 0x92611ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92612000 - 0x92653ff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x92654000 - 0x92671ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x92672000 - 0x926ebff0  com.apple.CorePDF (2.0 - 2) <6B5BF755-F336-359C-9A99-F006F61442CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x926ec000 - 0x927a3ff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2599.13) <1B5BA13C-4AB7-333E-9A14-A95EC9E55049> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x927a6000 - 0x927d3ffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x927d4000 - 0x92bd0feb  com.apple.VideoToolbox (1.0 - 926.62) <B09EEF06-CB3C-3EAA-8B0E-22A1801F3CAE> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x92bd1000 - 0x92bdeff7  com.apple.HelpData (2.1.4 - 85) <1E180AEF-53FF-3D8B-9513-7FCA1B25A4AB> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92bdf000 - 0x92c38fff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92c39000 - 0x92c65ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x92c66000 - 0x92c66fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92c67000 - 0x92c6ffff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x92c70000 - 0x92cd8ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <9A80E97E-544F-3A45-916D-6DB7ED217E33> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92cd9000 - 0x92cd9fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x92ce6000 - 0x92e43ffb  com.apple.QTKit (7.7.1 - 2599.13) <2DC9E2BB-9895-3D02-A318-88431052E70B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x92e44000 - 0x92ec9ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92eca000 - 0x92ecafff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92ecb000 - 0x92fd8ff3  com.apple.ImageIO.framework (3.2.0 - 845) <BF959BCB-C30A-3680-B7C2-91B327B2B63B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x92fd9000 - 0x93030ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x93031000 - 0x93032fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x93033000 - 0x93045ff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x93046000 - 0x93051fff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x93052000 - 0x932f5ffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x93301000 - 0x934e9ff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x934ea000 - 0x934edff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x934ee000 - 0x935c4fff  com.apple.DiscRecording (7.0 - 7000.2.4) <C14E99B9-DEFA-3812-89E5-464653B729F4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x935c5000 - 0x935f8ff5  libssl.0.9.8.dylib (47) <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
    0x935f9000 - 0x938feff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x938ff000 - 0x9392cffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x939e7000 - 0x93a87ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93abe000 - 0x93ac5fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x93ac6000 - 0x93ac9ff3  com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x93aca000 - 0x93acbfff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x93acc000 - 0x93b64fff  com.apple.CoreServices.OSServices (557.4 - 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93b65000 - 0x93c83ff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x93c84000 - 0x93c91ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x93c92000 - 0x93f1effb  com.apple.RawCamera.bundle (4.01 - 666) <EB81A8D9-469D-34B1-8261-46963AB42F8C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x93f1f000 - 0x93f2dfff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93f2e000 - 0x941aaff7  com.apple.QuickTime (7.7.1 - 2599.13) <FE609160-E1EF-341D-9B6A-205D3E03A4D2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x941ab000 - 0x941adffc  com.apple.QuickTimeH264.component (7.7.1 - 2599.13) <C19F08F9-F383-35C9-8D5C-BD53A238951C> /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x941ae000 - 0x94447ff3  com.apple.AddressBook.framework (7.1 - 1167) <AF7B18F2-D0FF-33AA-9CE9-4106B1CDAE1D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94448000 - 0x94467ff3  com.apple.Ubiquity (1.2 - 243.10) <D2C9F356-1681-31D2-B292-5227E2DDEB0B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x94468000 - 0x944bfff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x944f6000 - 0x9451afff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9451b000 - 0x94893ff3  com.apple.FinderKit (1.1.1 - 1.1.1) <5868FEF0-E512-3E22-91FF-7AFE4F7580A1> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
    0x94894000 - 0x949a4ff3  com.apple.QuickTimeImporters.component (7.7.1 - 2599.13) <410311C4-34FF-38F0-8EE0-3093AEEC1A82> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x949a5000 - 0x949adfff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x949ae000 - 0x94c1bfff  com.apple.imageKit (2.2 - 667) <3F5F92DB-C0C0-3C5F-98C6-B84AB9E28B55> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x94c1c000 - 0x94c26fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x94c27000 - 0x94c80ff7  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <541529F7-063E-370B-9EB2-DF5BE39073E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x94c81000 - 0x94c97fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94c98000 - 0x94c98ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94c99000 - 0x94ca5ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x94ca6000 - 0x94cc8fff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x94cc9000 - 0x94d10ff3  com.apple.CoreMedia (1.0 - 926.62) <69B3835E-C02F-3935-AD39-83F8E81FB780> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x94d11000 - 0x94d8dff3  com.apple.Metadata (10.7.0 - 707.3) <6B6A6216-23D0-34CE-8099-BEE9BA42501E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94d8e000 - 0x94dbeff3  libtidy.A.dylib (15.10) <F2F4E000-E305-3089-91E6-3DB0ED07E74A> /usr/lib/libtidy.A.dylib
    0x94dbf000 - 0x94dc2ff9  libCGXType.A.dylib (324.6) <3004616B-51F6-3B9D-8B85-DCCA3DF9BC10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x94dc3000 - 0x94e1aff3  com.apple.Suggestions (2.0 - 102.1) <AA369EDE-913D-3C0D-8CE1-92C1C171CCA7> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x94e1b000 - 0x94e22ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x94e23000 - 0x94e71ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94e72000 - 0x94e92ffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x94e96000 - 0x94ec7fff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94ec8000 - 0x9530afff  com.apple.CoreGraphics (1.600.0 - 324.6) <66556166-F9A7-3EEC-A562-46061C7A79E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9530b000 - 0x95314ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x95315000 - 0x953feff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x953ff000 - 0x954a9fff  com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x954aa000 - 0x954b0fff  com.apple.phonenumbers (1.1 - 47) <DD22B3D1-DA4B-3794-9D73-E90D49A1F88E> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x954b1000 - 0x9550cfff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9550d000 - 0x9552afff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x9552b000 - 0x9552cfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x9552d000 - 0x95534fff  libsystem_dnssd.dylib (379.32.1) <6A505284-2382-3F27-B96F-15FFDACF004E> /usr/lib/system/libsystem_dnssd.dylib
    0x95535000 - 0x95820ff7  com.apple.AOSKit (1.05 - 151) <F470C45E-620C-3FF2-AB1C-2D57FCD215E7> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x95821000 - 0x95825fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x95826000 - 0x95828fff  libCVMSPluginSupport.dylib (8.6.1) <8A174BD9-992E-351D-8F9A-DF6991723ABE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x958c7000 - 0x9594ffff  com.apple.PDFKit (2.7.2 - 2.7.2) <7AE7BAE9-4C21-3BFB-919E-5C6EEBBDFF75> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95950000 - 0x95954ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x95955000 - 0x95aa2ffb  com.apple.CFNetwork (596.2.3 - 596.2.3) <1221EF86-659B-3136-AB57-0CC6B130CDA2> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x95aa3000 - 0x95ad8ff7  com.apple.framework.internetaccounts (2.1 - 210) <8F2D0EB8-C997-3833-AA80-95AF7AA377BE> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x95ad9000 - 0x95adafff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x95adb000 - 0x95b35fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x95b36000 - 0x95b39ffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95b3a000 - 0x95b7cffb  com.apple.RemoteViewServices (2.0 - 80.5) <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x95b7d000 - 0x95b92fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95b93000 - 0x95b95ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x95b96000 - 0x95dadfff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95dae000 - 0x95dbbfff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95dbc000 - 0x95dc8ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x95dc9000 - 0x95df3ff9  com.apple.framework.Apple80211 (8.0.1 - 801.17) <8A8BBBFD-496B-35A6-A26E-ADF8D672D908> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x95df4000 - 0x961d7ff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96218000 - 0x9628dff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9628e000 - 0x9628effe  com.apple.AOSMigrate (1.0 - 1) <4EA0829E-6AE5-3877-A5B6-032AFDF28D39> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x9628f000 - 0x96326ff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96327000 - 0x9643fff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x96440000 - 0x964fdfeb  libsystem_c.dylib (825.25) <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
    0x964fe000 - 0x96547ff7  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <ABA6A926-34C2-3C09-AD9F-A87A8A35536A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x96548000 - 0x965f7ff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x965f8000 - 0x96601ffe  com.apple.aps.framework (3.0 - 3.0) <09D5F4F3-03FD-3077-A51D-B368F18ED1D4> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x96602000 - 0x9667cff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9667d000 - 0x96699ff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9669a000 - 0x9676efff  com.apple.backup.framework (1.4.1 - 1.4.1) <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96771000 - 0x96774fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96775000 - 0x96778ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x

    If You know that 1080p works then
    How much free space is there on Your Start-Up (Mac OS) Hard Disk ?
    Has to be plenty - Other hard disks doesn't count as this needed space can not be addressed elsewhere.
    Else see if You get any ideas from this
    When iMovie doesn't work as intended this can be due to a lot of reasons
    • iMovie Pref files got corrupted - trash it/they and iMovie makes new and error free one's
    • Creating a new User-Account and log into this - forces iMovie to create all pref. files new and error free
    • Event or Project got corrupted - try to make a copy and repair
    • a codec is used that doesn't work
    • problem in iMovie Cache folder - trash Cache.mov and Cache.plist
    • version miss match of QuickTime Player / iMovie / iDVD
    • preferences are wrong - Repair Preferences
    • other hard disk problem - Repair Hard Disk (Disk Util tool - but start Mac from ext HD or DVD)
    • External hard disks - MUST BE - Mac OS Extended (hfs) formatted to work with Video
    ( UNIX/DOS/FAT32/Mac OS Exchange - works for most other things - but not for Video )
    • USB-flash-memories do not work
    • Net-work connected hard disks - do not work
    • iPhoto Library got problems - let iPhoto select another one or repair it. Re-build this first then try to re-start iMovie.
    This You do by
    _ close iPhoto
    _ on start up of iPhoto - Keep {cmd and alt-keys down}
    _ now select all five options presented
    _ WAIT a long long time
    • free space on Start-Up (Mac OS) hard disk to low (<1Gb) - I never go under 25Gb free space for SD-Video (4-5 times more for HD)
    • external devices interferes - turn off Mac - disconnect all of them and - Start up again and re-try
    • GarageBand fix - start GB - play a few notes - Close it again and now try iMovie
    • Screen must be set to million-colors
    • Third-party plug-ins doesn't work OK
    • Run "Cache Out X", clear out all caches and restarts the Mac
    • Let Your Mac be turned on during one night. At about midnight there is a set of maintenance programs that runs and tidying up. This might help
    • Turn off Your Mac - and disconnect Mains - for about 20-30 minutes - at least this resets the FireWire port.
    • In QuickTime - DivX, 3ivx codec, Flip4Mac, Perian etc - might be problematic - temporarily move them out and re-try
    (I deleted the file "3ivxVideoCodec.component" located in Mac HD/Library/Quicktime and this resolved my issue.)
    buenrodri wrote
    I solved the problem by removing the file: 3ivxVideoCodec.component. after that, up-dated iMovie runs ok.
    Last resort: Trash all of iMovie and re-install it
    Yours Bengt W

  • Crashed Thread:  0  Dispatch queue: com.apple.main-thread

    I keep getting this kind of crash since this morning everytime I open Safari browser and only when I surf FaceBook.
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00007fc7acf00008

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    Still in the Console window, look under User Diagnostic Reports for crash reports related to the process. The report name starts with the name of the crashed process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

  • Multiple crashes- Crashed Thread:  0  Dispatch queue: com.apple.main-threa

    Am having numerous applications crashing with what seems to be a common error coming up (as below). Aperture, Photoshop, Money, Pacifist - all have had the same so far.
    Have attempted to repair disk permissions and reinstall SL again. Am thinking at the moment I should revert to my cloned drive of Leopard. Really disappointed and worried at the moment.
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000011
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread

    I am getting the same thing OVER and OVER! I have wiped my hard drive and reinstalled all of my applications (5 times) and still get the same old thing. It is happening in Safari, Mail (which is also displaying all of my incoming messages as arriving one our earlier than they do), CS4 (take your pick of apps there), excel, and Logic Pro. I don't thinkI have any issues with Adobe Lightroom, or word. Somebody needs to come up with something other than finger pointing here! I can't work, right now all I have is an $8000 paperweight. FWIW my MacBook Pro seems stable, although I don't use it much for anything surfing the web and email these days.
    HELP!

  • Catching an exception thrown from another thread

    I have a SocketServer that creates new threads to handle incoming clients. If one of the threads throw a SQLException is it possible to catch that exception in the SocketServer that created that thread.
    I tried implementing this code and I cannot get the server to catch an exception thrown in the thread. Are my assumptions correct?
    I was reading something about Thread Groups and implementing an uncoughtException() method, but this looked like overkill.
    Thanks for your time!
    Some Example code would be the following where the ClientThread will do a database query which could cause an SQLException. I'd like to catch that exception in my Socket Server
          try
                 new ClientThread( socketServer.accept() , host, connection ).start();
          catch( SQLException e )
                 System.out.println( "DataSource Connection Problem" );
                  e.printStackTrace();
          }

    hehe, why?
    The server's job is to listen for an incoming message from a client and pass it off to a thread to handle the client. Otherwise the server will have to block on that incoming port untill it has finished handling the client and usually there are many incoming clients continuously.
    The reason I would want to catch an exception in the server based on the SQLException thrown in the thread is because the SQLException is usually going to be due to the fact the datasource connection has become unavalable, or needs to be refreshed. This datasource connection is a private variable stored in the socket server. The SocketServer now needs to know that it has to refresh that datasource connection. I would normally try to use somesort of flag to set the variable but to throw another wrench into my dilemma, the SocketServer is actually its own thread. So I can't make any of these variables static, which means I can't have the thread call a method on teh socket server to change the status flag. :)
    I guess I need implement some sort of Listener that the thread can notify when a datasource connection goes down?
    Thanks for the help so far, I figured java would not want one thread to catch another thread's exceptions, but I just wanted to make sure.

  • Handling Exceptions thrown by EDT Thread?

    Hi,
    How to handle exceptions thrown by EDT Thread?. If anybody can give any link or any example, then it really helpful.
    Thanks

    System.setProperty( "sun.awt.exception.handler", EventThreadExceptionHandler.class.getName() );

  • Collection not in context? java.lang.Exception: java.lang.Thread.dumpStack(Thread.java:1342)

    Hi
    I am using JDev12c. I have an isolated taskflow that is consuming three more taskflow as a region.
    This is the scenario: I have a viewObject showing UserDetails. So I have make a taskflow to show the user details in a form. Now, the userDetalsVO has a ViewLink with itself (Managers having employees under their supervision).
    LoggedInUser (userVO)
         - Employees (userVO)
    I have created the list of employee using the Employees Iterator. However, every time I select an employee the console throw the following error:
    <The row key or row index of a UIXCollection component is being changed outside of the components context. Changing the key or index of a collection when the collection is not currently being visited, invoked on, broadcasting an event or processing a lifecycle method, is not valid. Data corruption and errors may result from this call. Turn on fine level logging for a stack trace of this call. Component ID: {0}>
    java.lang.Exception: Stack trace:
    at java.lang.Thread.dumpStack(Thread.java:1342)
      at org.apache.myfaces.trinidad.component.UIXCollection._verifyComponentInContext(UIXCollection.java:2212)
      at org.apache.myfaces.trinidad.component.UIXCollection.setRowKey(UIXCollection.java:524)
      at oracle.adf.view.rich.component.rich.data.RichListView.visitChildren(RichListView.java:112)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:703)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:566)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:362)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:445)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:423)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:703)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:566)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:362)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:445)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:423)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:703)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:566)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:362)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:445)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:423)
      at oracle.adf.view.rich.component.fragment.UIXRegion.visitChildren(UIXRegion.java:952)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:703)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:566)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:362)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:445)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:423)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:703)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:566)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:362)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:445)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:423)
      at oracle.adf.view.rich.component.fragment.UIXRegion.visitChildren(UIXRegion.java:952)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:703)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:566)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:362)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:445)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:423)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:703)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:566)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:362)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:445)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:423)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:703)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:566)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:362)
      at org.apache.myfaces.trinidad.component.UIXShowOne.visitTree(UIXShowOne.java:135)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:445)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:423)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:703)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:566)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:362)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:445)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:423)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:703)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:566)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:362)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:445)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:423)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:703)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:566)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:362)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:445)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:423)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:703)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:566)
      at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:362)
      at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._deliverPostRestoreStateEvents(LifecycleImpl.java:852)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._restoreView(LifecycleImpl.java:791)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:397)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3367)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    The front end behaves fine though but that error in the console is bugging me.
    Any Ideas??
    Regards

    Well, have you run the app with logging set to fine as the message suggested?
    Turn on fine level logging for a stack trace of this call. Component ID: {0}
    Then a test case and a detailed description on how to reproduce the error, built on the hr  schema, can help.
    Timo

Maybe you are looking for

  • Has My iPod Died? (3rd gen)iPod with Clickwheel B&W

    Hoping someone can help, I can't turn on my iPod even when I toggle the hold switch and press & hold menu and select. I plug it into my pc and the pc does not acknowledge it, nor does iTunes so I am unable to restore(I have already downloaded the ver

  • Unable to deploy ear on weblogic 8.1 sp3

    hi . i have an application in struts 1.1 which was working fine in weblogic 8.1 sp3. now i have upgraded to struts 1.2.8 and when i am trying to deploy the applicaiton following error is thrown. Unable to initialize Struts ActionServlet due to an une

  • ITunes is driving me INSANE :-(

    Ok, so I love my Mac and I pretty much love my iPhone too (aside from a few things here and there). BUT, I hate iTunes and I hate trying to figure out how to sync my iPhone with iTunes etc... The problem I have is as follows, and any advice would be

  • Faulty logic boards installed in the 2013 MacBook Air?

    Just discovered the logic board in my 2013 MacBook Air, only one year old, has to be replaced. Computer will not boot up. Anybody else seeing this problem?

  • Active X , accessing subclasses of Mach3

    I am having  trouble with calling subclasses  of an ActiveX Call.  Given an application called: Mach3 a CNC program. Link: http://www.machsupport.com/downloads.php     Mach3 R3.043.066 I was succesfull in interfacing it with LabVIEW via ActiveX and a