Making sense of exception

Hi there,
I'm working on a project where I'm trying to save to file all the objects
contained in a class that extends JPanel and implements Serializable. I attempt the save using the following code:
FileOutputStream fStream = null;
ObjectOutputStream stream = null;
JFileChooser chooser = new JFileChooser();
chooser.setCurrentDirectory(new File("."));
int result = chooser.showSaveDialog(test.this);
if(result != JFileChooser.APPROVE_OPTION)return;
File chosenFile = chooser.getSelectedFile();
FileOpen = chosenFile.getAbsolutePath();
try
    fStream = new FileOutputStream(chosenFile);
    stream = new ObjectOutputStream(fStream);
    stream.writeObject(docPanel);
    stream.close();
    fStream.close();
catch(Exception ex)
    ex.printStackTrace();
    try{stream.close();fStream.close();}catch(IOException ioe){}
    JOptionPane.showMessageDialog(test.this, "Error: " + ex.toString(),
        "Warning", JOptionPane.WARNING_MESSAGE);
[/code
The save process appears successful since I'm able to open the file and look at it. However, immediately after the save I get the following error at run-time:
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
        at javax.swing.plaf.basic.BasicScrollPaneUI.paint(Unknown Source)
        at javax.swing.plaf.ComponentUI.update(Unknown Source)
        at javax.swing.JComponent.paintComponent(Unknown Source)
        at javax.swing.JComponent.paint(Unknown Source)
        at javax.swing.JComponent.paintChildren(Unknown Source)
        at javax.swing.JComponent.paint(Unknown Source)
        at javax.swing.JComponent.paintChildren(Unknown Source)
        at javax.swing.JComponent.paint(Unknown Source)
        at javax.swing.JComponent.paintChildren(Unknown Source)
        at javax.swing.JComponent.paint(Unknown Source)
        at javax.swing.JViewport.paint(Unknown Source)
        at javax.swing.JComponent.paintChildren(Unknown Source)
        at javax.swing.JComponent.paint(Unknown Source)
        at javax.swing.JComponent.paintWithOffscreenBuffer(Unknown Source)
        at javax.swing.JComponent.paintDoubleBuffered(Unknown Source)
        at javax.swing.JComponent._paintImmediately(Unknown Source)
        at javax.swing.JComponent.paintImmediately(Unknown Source)
        at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
        at
javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknow
n Source)
        at java.awt.event.InvocationEvent.dispatch(Unknown Source)
        at java.awt.EventQueue.dispatchEvent(Unknown Source)
        at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown
Source)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown
Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.run(Unknown Source)
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
        at javax.swing.plaf.basic.BasicScrollPaneUI.paint(Unknown Source)
        at javax.swing.plaf.ComponentUI.update(Unknown Source)
        at javax.swing.JComponent.paintComponent(Unknown Source)
        at javax.swing.JComponent.paint(Unknown Source)
        at javax.swing.JComponent.paintWithOffscreenBuffer(Unknown Source)
        at javax.swing.JComponent.paintDoubleBuffered(Unknown Source)
        at javax.swing.JComponent._paintImmediately(Unknown Source)
        at javax.swing.JComponent.paintImmediately(Unknown Source)
        at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
        at
javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknow
n Source)
        at java.awt.event.InvocationEvent.dispatch(Unknown Source)
        at java.awt.EventQueue.dispatchEvent(Unknown Source)
        at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown
Source)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown
Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.run(Unknown Source)
There's no reference to any code that I've written in my project, so how am
I suppose to know where to go to fix the problem?
The only thing I understand is somewhere there's a NullPointerException.
But from where does it originate?
Alan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Hi there,
I believe you're right on the money. But damned if I know how to fix it! My project is not that complicated. My main class that extends JFrame declares an instance of JScrollPane at the top, then loads the JScrollPane in an actionPerformed method like so:
public class test extends JFrame implements ActionListener
  JScrollPane sp2 = new JScrollPane();
  DocumentPanel docPanel = null;
  JMenuItem New = new JMenuItem("New");
  public void actionPerformed(ActionEvent e)
     if(e.getSource() == New)
        Thread newThread = new Thread()
            public void run()
               //Display a new DocumentPanel
               docPanel = new DocumentPanel();
               sp2.getViewport().add(docPanel);
               container.add(sp2,BorderLayout.CENTER);
               container.validate();
       newThread.start();
}docPanel is an object I created that extends JPanel and contains many other objects.
In the same actionPerformed() method is the code for saving the docPanel from the earlier post. So, any further ideas as to how to prevent the NullPointerException I've been getting with the JScrollPane?
Alan

Similar Messages

  • Beginners question - making sense of form, item, pane & variable (with relation to where data is stored in the SQL database)

    Hi Everyone,
    I am new to writing reports (SQL code) for SAP, however I am aware that inside SAP Business One it is necessary to enable System Information (from the View menu) in order to see which tables (and related table attributes / column names) are related to various aspects of the various SAP 'modules' (e.g.: A/R Invoice).
    Using an A/R Invoice as an example I can see at the row (or line) level that an item with the description of 'Opening Balance Transfer' is contained in the table INV1, within the attribute (or column) called Dscription.
    However not every 'on screen object' shows a table / attribute. For example in the same A/R Invoice if I hover my mouse over the Balance Due field all I see is Form related information.
    My question is 'How do I make sense of the Form, Item, Pane, Variable information?', with relation to where data is stored within the SQL database?
    Links to online tutorials explaining how this feature of SAP Business One will be much appreciated, along with any personal advice regarding working with this information.
    Any (and all) help will be greatly appreciated.
    Kind Regards,
    David

    Hi David,
    1.Here I am explaining use of each field except pane
    a. Form ---> Used in additional authorization creator
    b. Item, column--->Useful in creating Formatted search queries (FMS)
    c. Variable --> Some of the field values based on another values. ie. indirect values.
    d. INV1---Table name
    2. How to get variable?
    As per your second attachment, to get balance due ,you need doc total field from OINV table. For example,
    SELECT T0.[DocNum], T0.[DocTotal] FROM OINV T0 WHERE T0.[DocNum] = 612004797
    Thanks & Regards,
    Nagarajan

  • Its Been asked 1000 times b4 but its just not making sense.......

    I have just completed a track containing about 24 tracks all together.
    I have just started making a new track, with about 5 audio tracks and 3 midi tracks running, and i keep getting that annoying core audio error msg -
    Disk is too slow or
    System Overload.
    (-10010)
    Its not making any sense cos the track i just completed didnt have these problems
    I'm running G5 2.3ghz with 1.5ram.
    Ive read through other posts about this but they all seem to say check your energy saver options, but those settings have always been how they should be.
    Can anyone help, or suggest another trick to sort this out. Why all of a sudden is all my memory being eaten up???

    One other thought is fragmentation. If you record and erase a whole lot, then your files could be fragmented, which would affect performance. There are defragmenting programs, which I have never used, available such as Norton Utilities. What I do is after a project. Say an album. I back up my work on DVD, then reformat my Audio drives. You can try that if you suspect your disk. Save your work on DVD, or another drive. Erase the disk, then put your files back to that drive. It should assemble the files continuously. You will have to re assign your record path after doing this, since the song is moved from its former "address". In older versions of Logic, you had to "search for the missing files" which the machine would do at the click of a button, but now it seems to locate them automatically without this step. Only the record path must be reset. OR If your disk is nearly full, I understand that the disk has poorer performance along the outer edge. Finally, if you are playing back samples from say, a program that uses Disk streaming, and if those sample files are located on your system disk, or I suppose even on your Audio disk, that could be creating an exhausting work load. If this is the case, you should store such samples on a separate, dedicated Hard drive of their own.

  • IPad is not making any sounds except for itunes, Pandora and Netflix. Need help.

    From one day to another the iPad is not making any sounds (lock, keyboard, games) except for music on iTunes, Pandora and video on Netflix. All sounds are activated on the iPad's general settings. I have synced it and updated the OS to no avail. Any help or suggestions is gratly appreciated.

    If you lose sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • Lenovo Yoga 13 WIFI Problem - making sense of the problem

    Hi Lenovo
    For the past 3 days i have been doing some research and observations in order to try to make sense of this wifi issue and maybe someone will come up with a solution.
    Lets start
    First of all i assume that when this laptop was being developed some form of testing was done before it was released, so the wifi must have worked well within lenovo offices.
    Also not everyone is having this issue - some people claim no problems at all, whilst others whathever they try they can't seem to be able to fix it.  Some even send their laptop for repair, other even had it replaced, yet the problem still persisted.
    So the problem seems to be related to one factor - the router people are using.
    Some people have a router that works well with this laptop, and so have no issue.
    Other have a router that is "not compatible" with the wifi card and so no matter how many lenovo yoga 13 machines they have it will still not work.
    I also noticed in my situation that when i use my android phone or tablet as wifi hotspot i have no issues, yet when i use my home router its a nightmare.
    Also i noticed that chaging the way how the laptop connects to the router can make a difference;
    1, At first i used a fixed IP with alternate configuration - this was horrible (continous disconnection, routers wifi crashing, takes ages to connect)
    2, Then i used fixed ip in the general configuration - ths was better, yet still problems (yet disconnections were less, yet still took long to connect and at times router's wifi crashed)
    3, Dynamic Ip - this is the best configuration - connects quickly, does not disconnect, yet internet connection slow and at times routers wifi crashes.
    So i think its a question of compatablity with the wifi network you are using.
    Also based on this i do not think this is a hardware issue - since hardware problems tend to be all or nothing - whilst in this case if one connects to a "compatable" router the connection is good.
    So this is a driver issue and thus if lenovo puts some effort in this - it can be fixed - yet this doesn't seem to be the case unfortunately.
    What can help from our side if everyone posts the routers and connection settings (e.g. static ip, dynamic ip etc) they are using and stating whether their wifi is working or not.
    Maybe we can close down on the problem and find a fix asap.
    Let me start with my configuration.
    Samsung galaxy s2 and samsung note 10.1 - wifi tetharing - works fine
    Belkin Pre-N router with dynamic ip and wpa2 password - problems
    Ken
    Solved!
    Go to Solution.

    I had the same problem.  I came across someon that found a fix.  My Yoga is restoring right now (I tried windows 8.1, it didnt work outwell) so I can't tell you the exact steps but it goes something like this.
    1.) right click my computer 
    2.) click properties
    3.) Device Manager
    4.) open properties of WiFi device (under network adapter)
    5.) Go to Advance
    6.) there is an option to use use either 20_40w or 20w under one of the energy/power related options in this list.
    (This is part I can't remember off the top of my head) - Turn to 20w instead of the variable rate.
    6.) Change the Bandwith option from 20_40w to 20w.
    5.) OK out till your at your desktop (might require Reboot, I dont remember) 
    That is how I kept my WiFi from destroying my Wireless networking in my house.  I was rebooting my WiFi network hourly before.

  • Making sense of crash reports (Safari 5.0.2)

    I have been getting constant plug-in errors and crashes with Flash since updating Safari to 5.0 some weeks ago. It mostly happens when I load a page with (usually multiple) embedded flash advertisements. Safari is now updated to 5.0.2 and I have uninstalled, reinstalled Flash 10.1.82.76, repaired permissions, rebooted, cleared Flash cache. I have also pored through posts in this forum which lead me to removing all of my third party input managers. I don't know where to go from this point. Below is the last report.
    Process: WebKitPluginHost [945]
    Path: /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    Identifier: com.apple.WebKit.PluginHost
    Version: 6533 (6533.13)
    Build Info: WebKitPluginHost-75331300~7
    Code Type: X86 (Native)
    Parent Process: WebKitPluginAgent [944]
    PlugIn Path: /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
    PlugIn Identifier: com.macromedia.FlashPlayer-10.6.plugin
    PlugIn Version: 10.1.82.76 (10.1.82.76)
    Date/Time: 2010-09-09 22:21:23.123 -0700
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Interval Since Last Report: 175955 sec
    Crashes Since Last Report: 10
    Per-App Interval Since Last Report: 51023 sec
    Per-App Crashes Since Last Report: 10
    Anonymous UUID: BCFD222F-B8E1-4688-A9CB-33F1563B6422
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000000e21e000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0xffff08b7 __memcpy + 279
    1 ...pple.ATIRadeonX1000GLDriver 0x0b768a62 gldModifyTexSubImage + 11602
    2 GLEngine 0x0b591a83 glTexSubImage2D_Exec + 950
    3 libGL.dylib 0x944fa570 glTexSubImage2D + 87
    4 ...dia.FlashPlayer-10.6.plugin 0x0ae184bb unregister_ShockwaveFlash + 66971
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae96533 main + 75459
    6 ...dia.FlashPlayer-10.6.plugin 0x0ac25993 0xa9d0000 + 2447763
    7 ...dia.FlashPlayer-10.6.plugin 0x0ac2b4f8 0xa9d0000 + 2471160
    8 ...dia.FlashPlayer-10.6.plugin 0x0ae0ead7 unregister_ShockwaveFlash + 27575
    9 ...dia.FlashPlayer-10.6.plugin 0x0ae7df09 unregister_ShockwaveFlash + 483305
    10 com.apple.QuartzCore 0x90802c00 CAOpenGLLayerDraw(CAOpenGLLayer*, double, CVTimeStamp const*, unsigned int) + 1026
    11 com.apple.QuartzCore 0x908034d1 -[CAOpenGLLayer _display] + 453
    12 com.apple.QuartzCore 0x9058a73d CALayerDisplayIfNeeded + 621
    13 com.apple.QuartzCore 0x90589b0a CA::Context::commit_transaction(CA::Transaction*) + 362
    14 com.apple.QuartzCore 0x90589750 CA::Transaction::commit() + 316
    15 com.apple.CoreFoundation 0x949622c2 __CFRunLoopDoObservers + 1186
    16 com.apple.CoreFoundation 0x9491e0ba CFRunLoopRunSpecific + 490
    17 com.apple.CoreFoundation 0x9491dec1 CFRunLoopRunInMode + 97
    18 com.apple.HIToolbox 0x98724f9c RunCurrentEventLoopInMode + 392
    19 com.apple.HIToolbox 0x98724d51 ReceiveNextEventCommon + 354
    20 com.apple.HIToolbox 0x98724bd6 BlockUntilNextEventMatchingListInMode + 81
    21 com.apple.AppKit 0x91ceaa89 _DPSNextEvent + 847
    22 com.apple.AppKit 0x91cea2ca -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    23 com.apple.AppKit 0x91cac55b -[NSApplication run] + 821
    24 com.apple.WebKit.PluginHost 0x7e37840f 0x7e377000 + 5135
    25 com.apple.WebKit.PluginHost 0x7e37804d 0x7e377000 + 4173
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x98a3c942 kevent + 10
    1 libSystem.B.dylib 0x98a3d05c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x98a3c519 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x98a3c2be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x98a3bd41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x98a3bb86 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x98a44066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98a43d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x98a459b8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae1343f unregister_ShockwaveFlash + 46367
    4 ...dia.FlashPlayer-10.6.plugin 0x0a9e8744 0xa9d0000 + 100164
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae1353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae13675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x98a4381d pthreadstart + 345
    8 libSystem.B.dylib 0x98a436a2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x98a44066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98a43d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x98a459b8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae1343f unregister_ShockwaveFlash + 46367
    4 ...dia.FlashPlayer-10.6.plugin 0x0a9e8744 0xa9d0000 + 100164
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae1353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae13675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x98a4381d pthreadstart + 345
    8 libSystem.B.dylib 0x98a436a2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x98a1615a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98a43ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98a72848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae13401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad03382 0xa9d0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae1353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae13675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x98a4381d pthreadstart + 345
    8 libSystem.B.dylib 0x98a436a2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x98a3b9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98a3bf68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98a3bb86 start_wqthread + 30
    Thread 6:
    0 libSystem.B.dylib 0x98a1615a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98a43ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98a72848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae13401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad03382 0xa9d0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae1353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae13675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x98a4381d pthreadstart + 345
    8 libSystem.B.dylib 0x98a436a2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x98a1615a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98a43ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98a72848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae13401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0abb187f 0xa9d0000 + 1972351
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae1353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae13675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x98a4381d pthreadstart + 345
    8 libSystem.B.dylib 0x98a436a2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x98a1615a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98a43ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98a72848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae13401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad03418 0xa9d0000 + 3355672
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae1353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae13675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x98a4381d pthreadstart + 345
    8 libSystem.B.dylib 0x98a436a2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x98a1615a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98a43ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98a72848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae13401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad03382 0xa9d0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae1353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae13675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x98a4381d pthreadstart + 345
    8 libSystem.B.dylib 0x98a436a2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x98a1615a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98a43ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98a72848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae13401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad03382 0xa9d0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae1353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae13675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x98a4381d pthreadstart + 345
    8 libSystem.B.dylib 0x98a436a2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x98a1615a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98a43ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98a72848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae13401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad03418 0xa9d0000 + 3355672
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae1353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae13675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x98a4381d pthreadstart + 345
    8 libSystem.B.dylib 0x98a436a2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x98a3b9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98a3bf68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98a3bb86 start_wqthread + 30
    Thread 13:
    0 libSystem.B.dylib 0x98a3b9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98a3bf68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98a3bb86 start_wqthread + 30
    Thread 14:
    0 libSystem.B.dylib 0x98a1615a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98a43ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98a72848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae13401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad03382 0xa9d0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae1353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae13675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x98a4381d pthreadstart + 345
    8 libSystem.B.dylib 0x98a436a2 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x98a1615a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98a43ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98a72848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae13401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad03382 0xa9d0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae1353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae13675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x98a4381d pthreadstart + 345
    8 libSystem.B.dylib 0x98a436a2 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x98a1615a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98a43ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98a72848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae13401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad03418 0xa9d0000 + 3355672
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae1353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae13675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x98a4381d pthreadstart + 345
    8 libSystem.B.dylib 0x98a436a2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xffff0893 ebx: 0x0b765d21 ecx: 0x00000030 edx: 0xffffffc0
    edi: 0x0e21e040 esi: 0x10ad9040 ebp: 0xbfffd5c8 esp: 0xbfffd5c0
    ss: 0x0000001f efl: 0x00210286 eip: 0xffff08b7 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x0e21e000
    Binary Images:
    0xb5000 - 0xb8ff2 +com.macromedia.Flash Player.plugin 10.1.82.76 (10.1.82.76) <B765F5A2-282A-A4AF-EF59-2FC8F90888D3> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0xf4000 - 0xf8ff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <5570694E-039D-7970-6083-1C8A7B7C937B> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x69b000 - 0x6a1ffb com.apple.audio.AppleHDAHALPlugIn 1.8.7 (1.8.7f1) <0FE8B697-6D19-69C6-FA94-E18064ACFAEC> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x6a6000 - 0x6c9fe7 GLRendererFloat ??? (???) <D71788AA-645A-02CF-201F-E44F073F98D7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x6fc000 - 0x769fff +com.DivXInc.DivXDecoder 6.6.0 (6.6.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0xa9d0000 - 0xb3b8fd3 +com.macromedia.FlashPlayer-10.6.plugin 10.1.82.76 (10.1.82.76) <5295F1D9-A734-E9FD-D535-0646BF2615A4> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
    0xb451000 - 0xb4f0fcf +ch.rafz.naegeli.christoph.xvid_codec 0.x.x (0.x.x) /Library/QuickTime/XviD_Codec-r58 (Intel).component/Contents/MacOS/XviD_Codec
    0xb57c000 - 0xb6f3fe7 GLEngine ??? (???) <0FC1F7CA-5C84-A7F6-105B-169383B50A94> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xb725000 - 0xb95dfff com.apple.ATIRadeonX1000GLDriver 1.6.18 (6.1.8) <699252CC-2100-B486-5D42-327615F589E5> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x7e377000 - 0x7e392fe7 com.apple.WebKit.PluginHost 6533 (6533.13) <F9AFB15C-0EEF-3CB1-1E76-D8357B53DE79> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    0x7e39d000 - 0x7e39dff7 WebKitPluginHostShim.dylib ??? (???) <4BACD1D1-3B56-2FCF-9CDC-D0779FED8105> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHostShim.dylib
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x900b7000 - 0x900f5ff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x900f6000 - 0x901d3ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x901d4000 - 0x90444ffb com.apple.Foundation 6.6.3 (751.29) <E77D3906-99F4-FEF4-FBB0-86FB3C94073E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90447000 - 0x90498ff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90578000 - 0x90578ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90580000 - 0x908e8ff7 com.apple.QuartzCore 1.6.2 (227.22) <4288F0D2-0C87-F054-C372-8764B44DE024> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90909000 - 0x9090dff7 libGIF.dylib ??? (???) <3ECD4D2C-40FE-E9A0-A2D2-E36D1C00D3A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9090e000 - 0x90990ffb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x909b3000 - 0x90b35fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2314BD12-0821-75BB-F3BC-98D324CFD30A> /usr/lib/libicucore.A.dylib
    0x90c46000 - 0x90ceeffb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90cef000 - 0x911a8ffb com.apple.VideoToolbox 0.484.11 (484.11) <6AB58081-F7C4-46F9-2C05-CFED9E38F0A0> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x911a9000 - 0x912e0ff7 com.apple.CoreAUC 6.04.01 (6.04.01) <B6E035A9-8DA2-82FC-9C2F-F57B9B62BE5F> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x912e1000 - 0x912f1ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x912f2000 - 0x912f5ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x913d3000 - 0x9142eff7 com.apple.framework.IOKit 2.0 (???) <A013B850-6ECB-594A-CBD6-DB156B11871B> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9142f000 - 0x91451fef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91452000 - 0x916b6fef com.apple.security 6.1.1 (37594) <3F68A006-6B30-85D5-1A75-8D748F72A6D5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x916b7000 - 0x916dbff7 libJPEG.dylib ??? (???) <5CE96981-6B2A-D15B-4A17-E7BD329095B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x916dc000 - 0x916e9ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x91775000 - 0x91876fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x91877000 - 0x91aa2ff3 com.apple.QuartzComposer 4.1 (156.16) <578A1842-8B62-00BF-B2E8-4C0AA8E6A938> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x91aa3000 - 0x91ac9fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91aca000 - 0x91acaff7 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
    0x91acb000 - 0x91adcff7 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
    0x91add000 - 0x91bdffef 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
    0x91c13000 - 0x91c1fff7 libkxld.dylib ??? (???) <322A4B52-8305-3081-6B74-813C3A87A56D> /usr/lib/system/libkxld.dylib
    0x91c20000 - 0x91c26fff 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
    0x91c27000 - 0x91c2eff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x91c2f000 - 0x91c47ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x91c48000 - 0x91c52fe7 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
    0x91ca2000 - 0x92582ff7 com.apple.AppKit 6.6.6 (1038.29) <6F28C335-6DC2-AE0E-B79A-F256DBD0BB45> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92583000 - 0x92583ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x92584000 - 0x92585ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x92586000 - 0x925c9ff7 libGLU.dylib ??? (???) <2093A1FB-67BD-39E0-CDE5-A97A77BDDBCE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x925ca000 - 0x926f6ffb com.apple.MediaToolbox 0.484.11 (484.11) <B93B175A-2039-2FD2-FBE4-22C9F8C9E223> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x928e9000 - 0x92aa3fe3 com.apple.ImageIO.framework 3.0.3 (3.0.3) <A93A514B-C1BF-21D0-FB03-CB775DE4FFAA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92aa4000 - 0x92ac4fe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x92cdd000 - 0x92d10ff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x930c0000 - 0x931b2ff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <D2C86308-F998-C83D-F49B-CD484D4EFE6A> /usr/lib/libcrypto.0.9.8.dylib
    0x931de000 - 0x93279ff7 com.apple.ApplicationServices.ATS 275.11.1 (???) <5FF65EC7-F512-530A-7771-3DE240EE6E43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x935ab000 - 0x938cbfeb com.apple.CoreServices.CarbonCore 861.13 (861.13) <52803668-3669-36BD-57DD-078FBA835081> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x938cc000 - 0x938d3ff3 com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x938d4000 - 0x938e8fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x938e9000 - 0x938e9ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x938ea000 - 0x938ecff7 libRadiance.dylib ??? (???) <AB06F616-E3EA-5966-029A-8AA44BBE5B28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x938ed000 - 0x93d22ff7 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
    0x93d28000 - 0x93d82fe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x93d83000 - 0x93e33fe3 com.apple.QuickTimeImporters.component 7.6.6 (1742) <76B0E668-214A-AB71-AAB8-E39E7F227C9B> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x93e9a000 - 0x93ee3fe7 libTIFF.dylib ??? (???) <9CFF48CC-4852-4D06-17AC-3C947C824159> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93ee4000 - 0x93ef2ff7 com.apple.opengl 1.6.9 (1.6.9) <4F06C166-00CF-5ACF-77E3-5A960A5E8AD3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x941ea000 - 0x94263ff7 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
    0x94440000 - 0x94498fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x94499000 - 0x9449dff7 libGFXShared.dylib ??? (???) <2D32BDBF-C941-93FD-E233-F03D28DB9E94> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x944c5000 - 0x944f5ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x944f6000 - 0x94501ff7 libGL.dylib ??? (???) <B87E0676-F5EF-8DA3-6DEE-13C43B3832A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x94737000 - 0x94863fff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94864000 - 0x94869ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9486a000 - 0x948baff7 com.apple.framework.familycontrols 2.0.1 (2010) <B9762E20-543D-13B9-F6BF-E8585F04CA01> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x948bb000 - 0x948d9ff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x948da000 - 0x948daff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x948e2000 - 0x94a5cfe3 com.apple.CoreFoundation 6.6.3 (550.29) <00373783-3744-F47D-2191-BEEA658F0C3D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x954bd000 - 0x954defe7 com.apple.opencl 12.1 (12.1) <DA2AC3FA-ED11-2D10-21E9-7BDF4778B228> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x954df000 - 0x954f3ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95520000 - 0x95547ff7 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
    0x95548000 - 0x955f8ff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x955f9000 - 0x95631ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <76C02F5C-98FD-BD64-B5FB-C698FB76EA25> /usr/lib/libcups.2.dylib
    0x95632000 - 0x9566fff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <398BB007-41FD-1A30-26D8-CB86ED5E467E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95670000 - 0x965c0fe3 com.apple.QuickTimeComponents.component 7.6.6 (1742) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x965c1000 - 0x965d1ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x965d2000 - 0x96652feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96658000 - 0x966eafe3 com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x966eb000 - 0x96766fe7 com.apple.audio.CoreAudio 3.2.2 (3.2.2) <51D0E2DC-B15F-AF6C-70D8-026DDAD4E2A5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x967dc000 - 0x96822ffb com.apple.CoreMediaIOServices 130.0 (1035) <F5E6F93D-6844-9FD7-8769-44503DFD5363> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x96823000 - 0x9689bfef com.apple.AppleVAFramework 4.9.20 (4.9.20) <D8B544CB-9E32-81C2-59BD-C5DDB66DA621> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x968b2000 - 0x968f4ff7 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
    0x9694e000 - 0x96952ff7 IOSurface ??? (???) <66E11D8E-CF4B-EFD0-37F9-20177C647021> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x96953000 - 0x9695eff7 libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <4FA0CE4A-BDE5-0E3D-37F0-03B41F0C2637> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9695f000 - 0x96962ff7 libCoreVMClient.dylib ??? (???) <CA0BA8DC-0159-A808-A300-750358A6970C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x96963000 - 0x969cdfe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x969ce000 - 0x969d7ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x969d8000 - 0x969f4fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x969f5000 - 0x96a9eff7 com.apple.CFNetwork 454.9.8 (454.9.8) <DB2A5C33-E833-1B3A-4DE0-5FF172B2048B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96a9f000 - 0x96c96feb com.apple.JavaScriptCore 6533.18 (6533.18.1) <EE3897A8-E1C0-DE28-A631-4B0C32DF737B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x96cd3000 - 0x96d12ff7 com.apple.ImageCaptureCore 1.0.2 (1.0.2) <18E338B0-D82E-2ADC-FB9E-8909E765C41B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x96d13000 - 0x96dc9ffb libFontParser.dylib ??? (???) <067DC1A2-764B-41EA-B07E-4205472749B7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96dca000 - 0x96e0efe7 com.apple.Metadata 10.6.3 (507.10) <630494FA-3BB3-EDD3-E10B-8DAAF4831E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96e28000 - 0x96e96ff7 com.apple.QuickLookUIFramework 2.2 (327.4) <5B6A066B-B867-D3A3-BDEE-3D68FA5385B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x96f0b000 - 0x96fd5fef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96fd6000 - 0x97017ff7 libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <8BAE1FC1-A478-F151-17C7-2D5DE470AC4F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x97018000 - 0x97087ff7 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
    0x970b3000 - 0x97161ff3 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
    0x97162000 - 0x97193ff7 libGLImage.dylib ??? (???) <9340012D-595A-6243-9C97-7D30D76D9D9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97194000 - 0x971a9fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x972ae000 - 0x97a9d557 com.apple.CoreGraphics 1.545.0 (???) <DCED8E1A-7504-C31A-B6EF-98BFF1A61060> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x97a9e000 - 0x97eb4ff7 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
    0x97eb5000 - 0x97f90fe7 com.apple.DesktopServices 1.5.7 (1.5.7) <A69072AD-C47E-A00D-4A69-6E46A7FB2119> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x97fc0000 - 0x98024ffb 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
    0x98030000 - 0x98329fef com.apple.QuickTime 7.6.6 (1742) <89720F2A-F33B-FF09-3D81-F9F25A99F3EB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x98468000 - 0x984beff7 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
    0x98512000 - 0x98555ff7 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
    0x986f0000 - 0x98a14fef com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x98a15000 - 0x98bbbfeb libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    0x98c00000 - 0x98cadfe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x98cae000 - 0x98d67fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x98d68000 - 0x98d76fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x98d81000 - 0x98dc7ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x98dc8000 - 0x98de3ff7 libPng.dylib ??? (???) <36A3D75E-5178-4358-7F02-444E276D61AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x98e6c000 - 0x98e6dff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x98e81000 - 0x98e81ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x98eca000 - 0x98ef2ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x98ef3000 - 0x99036fef com.apple.QTKit 7.6.6 (1742) <98ECA8E3-73F0-D21B-8B7E-8FE651E29A7F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x99038000 - 0x9903bfe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9903c000 - 0x9903dff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9903e000 - 0x9907bff7 com.apple.CoreMedia 0.484.11 (484.11) <0346F9E5-AEFE-B751-7D85-88D156C01385> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x990bd000 - 0x990c3ff7 com.apple.DisplayServicesFW 2.2.2 (251) <6E4020F6-4DD0-F137-F226-F396807E3C3B> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x990c4000 - 0x990c4ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x990c9000 - 0x991d5ff7 libGLProgrammability.dylib ??? (???) <1B315838-F477-5416-7504-67EC3433AD4A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x991f5000 - 0x9928dfe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9936a000 - 0x993b7feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9948a000 - 0x9948cff7 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
    0x9948d000 - 0x9966ffff com.apple.imageKit 2.0.3 (1.0) <BF2ECA4D-FCD8-AD5D-E100-22370F2C7EE0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x99673000 - 0x996b7ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9973e000 - 0x997dbfe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x997dc000 - 0x9990afe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9990b000 - 0x9990bff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9990c000 - 0x99916ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x99917000 - 0x99929ff7 com.apple.MultitouchSupport.framework 204.13 (204.13) <F91A4E32-01AA-49DB-2205-3DBE1FEFFC43> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9992a000 - 0x9998bfe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9998c000 - 0x9998cff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    Model: MacBookPro2,2, BootROM MBP22.00A5.B07, 2 processors, Intel Core 2 Duo, 2.16 GHz, 2 GB, SMC 1.12f5
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x87), Atheros 5416: 2.0.19.10
    Bluetooth: Version 2.3.3f8, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420AS, 465.76 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857D
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8240, 0x5d200000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x021a, 0x1d200000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x7d100000

    Checked /Library/Internet Plugins/ and ~/Library/Internet Plugins/ for click-to-flash (wasn't there) Reinstalled 10.6.4 with the combo update. Uninstalled Flash with the Adobe uninstaller. Repaired permissions. Reinstalled Safari 5.0.2. Installed Flash 10.1.82.76. (this was the eighth Flash uninstall/install since the problems started) Repaired permissions. Still throwing these at me often but not consistently. It happens when embedded Flash is loading. Instead of displaying the Flash content, I see "Plugin Failed" and get a crash report. If I'm scrolling when this happens, it will get stuck momentarily. Occasionally I lose Safari altogether, usually after I get 10 or so of these crash reports for Flash without my quitting and restarting Safari.
    Process: WebKitPluginHost [3451]
    Path: /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    Identifier: com.apple.WebKit.PluginHost
    Version: 6533 (6533.13)
    Build Info: WebKitPluginHost-75331300~7
    Code Type: X86 (Native)
    Parent Process: WebKitPluginAgent [3045]
    PlugIn Path: /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
    PlugIn Identifier: com.macromedia.FlashPlayer-10.6.plugin
    PlugIn Version: 10.1.82.76 (10.1.82.76)
    Date/Time: 2010-09-13 22:58:15.687 -0700
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Interval Since Last Report: 51617 sec
    Crashes Since Last Report: 4
    Per-App Interval Since Last Report: 14012 sec
    Per-App Crashes Since Last Report: 4
    Anonymous UUID: BCFD222F-B8E1-4688-A9CB-33F1563B6422
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000000bd7b000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0xffff08b7 __memcpy + 279
    1 ...pple.ATIRadeonX1000GLDriver 0x0b778a62 gldModifyTexSubImage + 11602
    2 GLEngine 0x0b5a1a83 glTexSubImage2D_Exec + 950
    3 libGL.dylib 0x9560c570 glTexSubImage2D + 87
    4 ...dia.FlashPlayer-10.6.plugin 0x0ae284bb unregister_ShockwaveFlash + 66971
    5 ...dia.FlashPlayer-10.6.plugin 0x0aea6533 main + 75459
    6 ...dia.FlashPlayer-10.6.plugin 0x0ac35993 0xa9e0000 + 2447763
    7 ...dia.FlashPlayer-10.6.plugin 0x0ac3b4f8 0xa9e0000 + 2471160
    8 ...dia.FlashPlayer-10.6.plugin 0x0ae1ead7 unregister_ShockwaveFlash + 27575
    9 ...dia.FlashPlayer-10.6.plugin 0x0ae8df09 unregister_ShockwaveFlash + 483305
    10 com.apple.QuartzCore 0x995d6c00 CAOpenGLLayerDraw(CAOpenGLLayer*, double, CVTimeStamp const*, unsigned int) + 1026
    11 com.apple.QuartzCore 0x995d74d1 -[CAOpenGLLayer _display] + 453
    12 com.apple.QuartzCore 0x9935e73d CALayerDisplayIfNeeded + 621
    13 com.apple.QuartzCore 0x9935db0a CA::Context::commit_transaction(CA::Transaction*) + 362
    14 com.apple.QuartzCore 0x9935d750 CA::Transaction::commit() + 316
    15 com.apple.CoreFoundation 0x91b072c2 __CFRunLoopDoObservers + 1186
    16 com.apple.CoreFoundation 0x91ac3c12 __CFRunLoopRun + 1154
    17 com.apple.CoreFoundation 0x91ac3094 CFRunLoopRunSpecific + 452
    18 com.apple.CoreFoundation 0x91ac2ec1 CFRunLoopRunInMode + 97
    19 com.apple.HIToolbox 0x9116af9c RunCurrentEventLoopInMode + 392
    20 com.apple.HIToolbox 0x9116ad51 ReceiveNextEventCommon + 354
    21 com.apple.HIToolbox 0x9116abd6 BlockUntilNextEventMatchingListInMode + 81
    22 com.apple.AppKit 0x93196a89 _DPSNextEvent + 847
    23 com.apple.AppKit 0x931962ca -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    24 com.apple.AppKit 0x9315855b -[NSApplication run] + 821
    25 com.apple.WebKit.PluginHost 0x3001240f 0x30011000 + 5135
    26 com.apple.WebKit.PluginHost 0x3001204d 0x30011000 + 4173
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x927ee942 kevent + 10
    1 libSystem.B.dylib 0x927ef05c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x927ee519 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x927ee2be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x927edd41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x927edb86 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x927f6066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x927f5d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x927f79b8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae2343f unregister_ShockwaveFlash + 46367
    4 ...dia.FlashPlayer-10.6.plugin 0x0a9f8744 0xa9e0000 + 100164
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae2353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae23675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x927f581d pthreadstart + 345
    8 libSystem.B.dylib 0x927f56a2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x927f6066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x927f5d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x927f79b8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae2343f unregister_ShockwaveFlash + 46367
    4 ...dia.FlashPlayer-10.6.plugin 0x0a9f8744 0xa9e0000 + 100164
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae2353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae23675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x927f581d pthreadstart + 345
    8 libSystem.B.dylib 0x927f56a2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x927c815a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x927f5ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92824848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae23401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad13382 0xa9e0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae2353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae23675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x927f581d pthreadstart + 345
    8 libSystem.B.dylib 0x927f56a2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x927c815a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x927f5ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92824848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae23401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad13382 0xa9e0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae2353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae23675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x927f581d pthreadstart + 345
    8 libSystem.B.dylib 0x927f56a2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x927c815a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x927f5ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92824848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae23401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad13382 0xa9e0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae2353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae23675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x927f581d pthreadstart + 345
    8 libSystem.B.dylib 0x927f56a2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x927c815a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x927f5ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92824848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae23401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad13382 0xa9e0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae2353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae23675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x927f581d pthreadstart + 345
    8 libSystem.B.dylib 0x927f56a2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x927c815a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x927f5ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92824848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae23401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad13382 0xa9e0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae2353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae23675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x927f581d pthreadstart + 345
    8 libSystem.B.dylib 0x927f56a2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x927ed9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x927edf68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x927edb86 start_wqthread + 30
    Thread 10:
    0 libSystem.B.dylib 0x927c815a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x927f5ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92824848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae23401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad13382 0xa9e0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae2353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae23675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x927f581d pthreadstart + 345
    8 libSystem.B.dylib 0x927f56a2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x927c815a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x927f5ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92824848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae23401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad13382 0xa9e0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae2353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae23675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x927f581d pthreadstart + 345
    8 libSystem.B.dylib 0x927f56a2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x927ed9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x927edf68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x927edb86 start_wqthread + 30
    Thread 13:
    0 libSystem.B.dylib 0x927ed9d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x927edf68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x927edb86 start_wqthread + 30
    Thread 14:
    0 libSystem.B.dylib 0x927c815a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x927f5ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92824848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae23401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0abc187f 0xa9e0000 + 1972351
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae2353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae23675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x927f581d pthreadstart + 345
    8 libSystem.B.dylib 0x927f56a2 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x927c815a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x927f5ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92824848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae23401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad13382 0xa9e0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae2353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae23675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x927f581d pthreadstart + 345
    8 libSystem.B.dylib 0x927f56a2 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x927c815a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x927f5ca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92824848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x0ae23401 unregister_ShockwaveFlash + 46305
    4 ...dia.FlashPlayer-10.6.plugin 0x0ad13382 0xa9e0000 + 3355522
    5 ...dia.FlashPlayer-10.6.plugin 0x0ae2353e unregister_ShockwaveFlash + 46622
    6 ...dia.FlashPlayer-10.6.plugin 0x0ae23675 unregister_ShockwaveFlash + 46933
    7 libSystem.B.dylib 0x927f581d pthreadstart + 345
    8 libSystem.B.dylib 0x927f56a2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xffff0893 ebx: 0x0b775d21 ecx: 0x00000030 edx: 0xffffff40
    edi: 0x0bd7b0c0 esi: 0x1315f0c0 ebp: 0xbfffcc98 esp: 0xbfffcc90
    ss: 0x0000001f efl: 0x00210282 eip: 0xffff08b7 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x0bd7b000
    Binary Images:
    0xb5000 - 0xb8ff2 +com.macromedia.Flash Player.plugin 10.1.82.76 (10.1.82.76) <B765F5A2-282A-A4AF-EF59-2FC8F90888D3> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0xf3000 - 0xf7ff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <5570694E-039D-7970-6083-1C8A7B7C937B> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x69b000 - 0x6a1ffb com.apple.audio.AppleHDAHALPlugIn 1.8.7 (1.8.7f1) <0FE8B697-6D19-69C6-FA94-E18064ACFAEC> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x6a6000 - 0x6c9fe7 GLRendererFloat ??? (???) <D71788AA-645A-02CF-201F-E44F073F98D7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x6fc000 - 0x769fff +com.DivXInc.DivXDecoder 6.6.0 (6.6.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0xa9e0000 - 0xb3c8fd3 +com.macromedia.FlashPlayer-10.6.plugin 10.1.82.76 (10.1.82.76) <5295F1D9-A734-E9FD-D535-0646BF2615A4> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
    0xb461000 - 0xb500fcf +ch.rafz.naegeli.christoph.xvid_codec 0.x.x (0.x.x) /Library/QuickTime/XviD_Codec-r58 (Intel).component/Contents/MacOS/XviD_Codec
    0xb58c000 - 0xb703fe7 GLEngine ??? (???) <0FC1F7CA-5C84-A7F6-105B-169383B50A94> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xb735000 - 0xb96dfff com.apple.ATIRadeonX1000GLDriver 1.6.18 (6.1.8) <699252CC-2100-B486-5D42-327615F589E5> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0xd31e000 - 0xd32cfe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <8F5FA7F7-840D-C5EF-C6E6-E2AF7CE43CD2> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xdf8a000 - 0xdf9cff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <026B8702-B0A6-1D90-BBD6-AAAD2E14810D> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x30011000 - 0x3002cfe7 com.apple.WebKit.PluginHost 6533 (6533.13) <F9AFB15C-0EEF-3CB1-1E76-D8357B53DE79> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    0x30037000 - 0x30037ff7 WebKitPluginHostShim.dylib ??? (???) <4BACD1D1-3B56-2FCF-9CDC-D0779FED8105> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHostShim.dylib
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x9012ffff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90165000 - 0x90187fef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90193000 - 0x9038afeb com.apple.JavaScriptCore 6533.18 (6533.18.1) <EE3897A8-E1C0-DE28-A631-4B0C32DF737B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9038b000 - 0x9038fff7 libGIF.dylib ??? (???) <3ECD4D2C-40FE-E9A0-A2D2-E36D1C00D3A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x903d7000 - 0x906f7feb com.apple.CoreServices.CarbonCore 861.13 (861.13) <52803668-3669-36BD-57DD-078FBA835081> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x906f8000 - 0x90759fe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9075a000 - 0x90985ff3 com.apple.QuartzComposer 4.1 (156.16) <578A1842-8B62-00BF-B2E8-4C0AA8E6A938> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90986000 - 0x90c7ffef com.apple.QuickTime 7.6.6 (1742) <89720F2A-F33B-FF09-3D81-F9F25A99F3EB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90cc4000 - 0x90cc4ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90cc5000 - 0x90d57fe3 com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90d99000 - 0x90e49fe3 com.apple.QuickTimeImporters.component 7.6.6 (1742) <76B0E668-214A-AB71-AAB8-E39E7F227C9B> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90e4a000 - 0x90e82ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <76C02F5C-98FD-BD64-B5FB-C698FB76EA25> /usr/lib/libcups.2.dylib
    0x90e83000 - 0x90ed0feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x90ed1000 - 0x90ffdffb com.apple.MediaToolbox 0.484.11 (484.11) <B93B175A-2039-2FD2-FBE4-22C9F8C9E223> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x90ffe000 - 0x91135ff7 com.apple.CoreAUC 6.04.01 (6.04.01) <B6E035A9-8DA2-82FC-9C2F-F57B9B62BE5F> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x91136000 - 0x9145afef com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91479000 - 0x91482ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x914d1000 - 0x9198affb com.apple.VideoToolbox 0.484.11 (484.11) <6AB58081-F7C4-46F9-2C05-CFED9E38F0A0> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9198b000 - 0x91a04ff7 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
    0x91a74000 - 0x91a77ff7 libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <3B49AED9-0DBA-9D21-F9AC-8784363AD762> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91a78000 - 0x91a86fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x91a87000 - 0x91c01fe3 com.apple.CoreFoundation 6.6.3 (550.29) <00373783-3744-F47D-2191-BEEA658F0C3D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91c02000 - 0x91cf4ff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <D2C86308-F998-C83D-F49B-CD484D4EFE6A> /usr/lib/libcrypto.0.9.8.dylib
    0x91d2e000 - 0x91d33ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x91d60000 - 0x91d6eff7 com.apple.opengl 1.6.9 (1.6.9) <4F06C166-00CF-5ACF-77E3-5A960A5E8AD3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91d6f000 - 0x91deffeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91df0000 - 0x91df1ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x91df2000 - 0x91df5fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x91ea0000 - 0x91f0fff7 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
    0x91f10000 - 0x920f2fff com.apple.imageKit 2.0.3 (1.0) <BF2ECA4D-FCD8-AD5D-E100-22370F2C7EE0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x920f3000 - 0x92221fe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92222000 - 0x92268ffb com.apple.CoreMediaIOServices 130.0 (1035) <F5E6F93D-6844-9FD7-8769-44503DFD5363> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x92269000 - 0x92273ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92563000 - 0x927c6fef com.apple.security 6.1.1 (37594) <8AE73F5F-936C-80F6-B05B-A50C3082569C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x927c7000 - 0x9296dfeb libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    0x9296e000 - 0x92982ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92983000 - 0x92a3cfe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x92a3d000 - 0x92aeafe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x92bfb000 - 0x92c0ffe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x92c10000 - 0x92cc0ff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92cd1000 - 0x92d6cff7 com.apple.ApplicationServices.ATS 275.11.1 (???) <5FF65EC7-F512-530A-7771-3DE240EE6E43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92d6d000 - 0x92f27fe3 com.apple.ImageIO.framework 3.0.3 (3.0.3) <A93A514B-C1BF-21D0-FB03-CB775DE4FFAA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92f28000 - 0x92f34ff7 libkxld.dylib ??? (???) <322A4B52-8305-3081-6B74-813C3A87A56D> /usr/lib/system/libkxld.dylib
    0x92f35000 - 0x92f36ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92f6e000 - 0x92fe9fe7 com.apple.audio.CoreAudio 3.2.2 (3.2.2) <51D0E2DC-B15F-AF6C-70D8-026DDAD4E2A5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93032000 - 0x93050ff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93064000 - 0x9306efe7 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
    0x93072000 - 0x9314dfe7 com.apple.DesktopServices 1.5.7 (1.5.7) <A69072AD-C47E-A00D-4A69-6E46A7FB2119> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9314e000 - 0x93a2eff7 com.apple.AppKit 6.6.6 (1038.29) <6F28C335-6DC2-AE0E-B79A-F256DBD0BB45> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93b3d000 - 0x93b83ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x93c9a000 - 0x93c9aff7 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
    0x93cd7000 - 0x93cd7ff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93d47000 - 0x93d7aff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93d7b000 - 0x93d97fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93d98000 - 0x93e75ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93e76000 - 0x93e76ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93e77000 - 0x93e79ff7 libRadiance.dylib ??? (???) <AB06F616-E3EA-5966-029A-8AA44BBE5B28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94d00000 - 0x94d04ff7 IOSurface ??? (???) <66E11D8E-CF4B-EFD0-37F9-20177C647021> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94d25000 - 0x94d25ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94d26000 - 0x94e27fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x94e28000 - 0x94e50ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x94fa8000 - 0x953ddff7 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
    0x953de000 - 0x95420ff7 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
    0x95608000 - 0x95613ff7 libGL.dylib ??? (???) <B87E0676-F5EF-8DA3-6DEE-13C43B3832A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95614000 - 0x95658ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95659000 - 0x9565aff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9565b000 - 0x9575dfef 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
    0x9575e000 - 0x9577efe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x9577f000 - 0x959efffb com.apple.Foundation 6.6.3 (751.29) <E77D3906-99F4-FEF4-FBB0-86FB3C94073E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x959f0000 - 0x95a68fef com.apple.AppleVAFramework 4.9.20 (4.9.20) <D8B544CB-9E32-81C2-59BD-C5DDB66DA621> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x95a69000 - 0x95b06fe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95b33000 - 0x95b97ffb 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
    0x95b98000 - 0x95bbcff7 libJPEG.dylib ??? (???) <5CE96981-6B2A-D15B-4A17-E7BD329095B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95bbd000 - 0x95bfeff7 libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <8BAE1FC1-A478-F151-17C7-2D5DE470AC4F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95c18000 - 0x95c2dfff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95c67000 - 0x95c78ff7 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
    0x95c79000 - 0x95c7cff7 libCoreVMClient.dylib ??? (???) <CA0BA8DC-0159-A808-A300-750358A6970C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95cb0000 - 0x95ccbff7 libPng.dylib ??? (???) <36A3D75E-5178-4358-7F02-444E276D61AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95ccc000 - 0x95d0fff7 libGLU.dylib ??? (???) <2093A1FB-67BD-39E0-CDE5-A97A77BDDBCE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95d28000 - 0x95eaafe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2314BD12-0821-75BB-F3BC-98D324CFD30A> /usr/lib/libicucore.A.dylib
    0x95eb0000 - 0x9608bff3 libType1Scaler.dylib ??? (???) <6FBA8250-3271-6ED4-052D-E27C2136E38F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x9608c000 - 0x96092ff7 com.apple.DisplayServicesFW 2.2.2 (251) <6E4020F6-4DD0-F137-F226-F396807E3C3B> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x96093000 - 0x9609aff3 com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9609b000 - 0x96151ffb libFontParser.dylib ??? (???) <067DC1A2-764B-41EA-B07E-4205472749B7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96152000 - 0x96191ff7 com.apple.ImageCaptureCore 1.0.2 (1.0.2) <18E338B0-D82E-2ADC-FB9E-8909E765C41B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x96192000 - 0x961b9ff7 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
    0x961fb000 - 0x961fbff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x961fc000 - 0x9623fff7 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
    0x96240000 - 0x96270ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x96274000 - 0x962e2ff7 com.apple.QuickLookUIFramework 2.2 (327.4) <5B6A066B-B867-D3A3-BDEE-3D68FA5385B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x963d3000 - 0x96bc2557 com.apple.CoreGraphics 1.545.0 (???) <DCED8E1A-7504-C31A-B6EF-98BFF1A61060> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96bf6000 - 0x96bf6ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96bfd000 - 0x96c3aff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <398BB007-41FD-1A30-26D8-CB86ED5E467E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x96c5d000 - 0x96c5fff7 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
    0x96d73000 - 0x96e21ff3 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
    0x96e22000 - 0x96ebafe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96ebb000 - 0x96fc7ff7 libGLProgrammability.dylib ??? (???) <1B315838-F477-5416-7504-67EC3433AD4A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96fe1000 - 0x97025fe7 com.apple.Metadata 10.6.3 (507.10) <630494FA-3BB3-EDD3-E10B-8DAAF4831E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x97026000 - 0x97038ff7 com.apple.MultitouchSupport.framework 204.13 (204.13) <F91A4E32-01AA-49DB-2205-3DBE1FEFFC43> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x97039000 - 0x9705ffff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97060000 - 0x9709dff7 com.apple.CoreMedia 0.484.11 (484.11) <0346F9E5-AEFE-B751-7D85-88D156C01385> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9709e000 - 0x970d9feb libFontRegistry.dylib ??? (???) <A102F61F-25D5-001A-20C3-56304C585072> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x970e4000 - 0x970f1ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9710d000 - 0x9710dff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9710e000 - 0x9715eff7 com.apple.framework.familycontrols 2.0.1 (2010) <B9762E20-543D-13B9-F6BF-E8585F04CA01> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x97166000 - 0x971bcff7 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
    0x971ca000 - 0x971d5ff7 libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <4FA0CE4A-BDE5-0E3D-37F0-03B41F0C2637> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x971d6000 - 0x97230fe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x97231000 - 0x97241ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x97242000 - 0x97245ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x97246000 - 0x9724cfff 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
    0x9724d000 - 0x972a5fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x973d4000 - 0x9749efef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x974bf000 - 0x978d5ff7 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
    0x978d6000 - 0x97958ffb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9798c000 - 0x979caff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x979cb000 - 0x979ecfe7 com.apple.opencl 12.1 (12.1) <DA2AC3FA-ED11-2D10-21E9-7BDF4778B228> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x97d9c000 - 0x97de5fe7 libTIFF.dylib ??? (???) <9CFF48CC-4852-4D06-17AC-3C947C824159> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x97de6000 - 0x97e17ff7 libGLImage.dylib ??? (???) <9340012D-595A-6243-9C97-7D30D76D9D9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97e18000 - 0x97e1cff7 libGFXShared.dylib ??? (???) <2D32BDBF-C941-93FD-E233-F03D28DB9E94> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x97e66000 - 0x97e97ff3 libTrueTypeScaler.dylib ??? (???) <7601D717-236D-8F4E-91F5-E69BB2920478> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x97ece000 - 0x97f29ff7 com.apple.framework.IOKit 2.0 (???) <A013B850-6ECB-594A-CBD6-DB156B11871B> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x98174000 - 0x981c5ff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x98327000 - 0x983d0ff7 com.apple.CFNetwork 454.9.8 (454.9.8) <DB2A5C33-E833-1B3A-4DE0-5FF172B2048B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x983d1000 - 0x983e1ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x983e2000 - 0x983faff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x983fb000 - 0x98402ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98403000 - 0x99353fe3 com.apple.QuickTimeComponents.component 7.6.6 (1742) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99354000 - 0x996bcff7 com.apple.QuartzCore 1.6.2 (227.22) <4288F0D2-0C87-F054-C372-8764B44DE024> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x996bd000 - 0x99765ffb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9979b000 - 0x99805fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x99806000 - 0x99949fef com.apple.QTKit 7.6.6 (1742) <98ECA8E3-73F0-D21B-8B7E-8FE651E29A7F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9994a000 - 0x9994aff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <12C58901-CCF3-4E8E-30CA-92A10CD55DF1> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <7FFF4AFA-6522-C7D5-760F-A8F13D6EF032> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    Model: MacBookPro2,2, BootROM MBP22.00A5.B07, 2 processors, Intel Core 2 Duo, 2.16 GHz, 2 GB, SMC 1.12f5
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x87), Atheros 5416: 2.0.19.10
    Bluetooth: Version 2.3.3f8, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420AS, 465.76 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857D
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8240, 0x5d200000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x7d100000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x021a, 0x1d200000

  • My iPhone 4s is not making any noise except for when someone calls me, an alarm going off, or unlocking it.

    I have no sound except for my ringtone, alarm, and sometimes the unlocking noise. No text alerts, email alerts, media noise, Pandora noise, iTunes noise, anything. First on my own I restored it to factory settings, cleaned the dock and head jack, did the head phone trick in and out, and I have checked for water damage. I have searched the threads and Google for solutions but none have worked. I talked to Apple today and they made me restore it again and it still doesn't work.
    ^Usually theres a volume bar on videos, none here.
    ^Theres no thing to slide the sound back and forth here.
    ^Also no sound bar here.

    Also I should mention that Apple said it is a hardware issue, but a software issue.

  • Not making sense to me...

    I wrote this code that reverses the content of the array(or at least I thought it did).
    char[] prac = {'H','A','R','D'};
    public void reverse()
              int x = prac.length;
              char c;
              for(int i=0; i<x; i++){
                   c = prac;
                   prac[i]=prac[x-i-1];
                   prac[x-i-1] = c;
                   System.out.print(prac[i]);     
    This output of this code is DRRD (should be DRAH) which makes no sense because im printing prac[i] and prac=prac[x-i-1]. Anyone see what I'm doing wrong? Thanks much

    and1dre wrote:
    Haha sorry, just practicing.I think we've been [over this before|http://forums.sun.com/thread.jspa?messageID=10658716#10658716]... but here it is again.
    package forums;
    class IGuessThisIsCheating
      public static void main(String[] args) {
        System.out.println(new StringBuilder("HARD").reverse());
    }Do you promise to refrain from abandoning your threads, or shall we (the regulars) refrain from posting on them?

  • Making sense of Idisk/IwebSEO tool

    I'm pretty confused about this Idisk- since I started with this Iweb I never understood where that came from and how stuff gets on there, what it;s for. I've been starting to use the IwebSEO tool to install analytics, and have gotten that accomplished, but the choices between "open website", "load Idisk sites", and "local sites" confuses me. My first site is published to MMe, so I think I selected Idisk; whatever I did it worked. Now I'm trying to install Statcounter on my second site that is hosted by Godaddy; how do I do this? I'm not being able to find the site listing anywhere in the Iwebseo tool. And what shows under "From Disk" keeps repeating the same five things: .counters-mywebsite.com-HOME_files-pdfs. It repeats this 4 times. (I think it only repeated this 3x yesterday. Seems like I'm making a mess. Can anyone decipher what I've got going on here (without seeing it)?
    Thanks

    Your iDisk is basically like your Apple server. When you select publish to MobileMe from iWeb your iDisk is where the site is published, so it acts as a server, holding all your published site files and this is the same as the server space you are allocated when you purchase a hosting account from somewhere like GoDaddy or HostExcellence. Only difference with the hosting space is that you can connect to it and see your folder there, whereas your MMe site is published directly to your iDisk, but it acts in just the same way.
    It is possible to mount your iDisk on your desktop and open this so that you can see what files you have in all your folders.

  • Audio Playback on iOS - not making sense to me. - Help Please?

    I've read A LOT of things and tried several approaches. As EDGE ANIMATE and INDESIGN DPS are a whole new experience to me, I'm probably just missing something simple, but I REALLY need help getting audio to play on an iPad (air) or otherwise.
    I know that iOS will NOT allow autoplayback of audio -- that's fine - makes sense to me, but I can't even get it to play with the built in audio commands or by using the Buzz.js approach  (which I know is outdated - but I'm desperate) by attaching the audio to a user interaction, like an invisible button that plays when clicked, or hovered.
    I have included a link to what I have thus far (native AN files) below. If someone would PLEASE let me know what I'm missing -- that would be GREATLY appreciated.
    Thanks.
    https://www.dropbox.com/s/ysnvra8v3ahyvue/iPad-DPS_AUDIO_ISSUES_FORUM.zip

    ChipNow JoeBowden532
    Sorry for not getting back to you on this until today. I am an Art Director managing 4 other artists, a video editor, a designer, a fledgling mobile developer, etc., etc. I have been pulled away from this project for three days now. I appreciate you offering to look into this. I will try to get the simple files up to you ASAP. I am using the HTML generated from Animate within a InDesign CC / DPS project. The animation you have been looking at is only page 2 (FOLIO) of a multiple page (FOLIO) project.
    I use a box object on the InDesign page that is the size of the full-screen iPad dimension: 768x1024, and choose the HTML Folio Overlay object. I link to the HTML file from the published Animate project. I have been publishing the files to my Adobe Content Viewer on my Adobe Cloud Account and then downloading them to an iPad to view using the Adobe Content Viewer for iPad. The animation and button actions work just fine, but NO AUDIO .
    I have tried to use the .OAM files in InDesign - but they NEVER WORK! They only appear as a single Image from the poster frame and won't play at all.
    ALL HELP IS GREATLY APPRECIATED.

  • Making sense of database byte code

    Hello,
    I am having a lot of trouble with secondary indexes. I am getting garble when trying to read the key from the secondary index, and I cannot tell if this is from when I set the key or when I read the key. So I am trying to read my database dump to see if it was input correctly.
    Here is my primary database. The first row is the key.
    $ cat r1.csv
    1 1 1 1.3 1.2
    2 2 2 0.9 0.6
    3 3 3 0.2 0.7
    4 4 4 0.4 2.1
    5 5 5 0.1 1.3
    I just want to be able to read the contents. I am using C++ and these numbers are all stored as doubles (8 bytes). I am lining them up together with a char* to set the data of each Dbt. This file is working because I get the same values back out that I put in.
    Here is a dump of the file once created. (Note: The order of the rows are probably different then from the CSV).
    $ db_dump r1_un.db
    VERSION=3
    format=bytevalue
    type=btree
    db_pagesize=16384
    HEADER=END
    000000000000f03f
    000000000000f03f000000000000f03f000000000000f03fcdccccccccccf43f333333333333f33f
    0000000000000040
    000000000000004000000000000000400000000000000040cdccccccccccec3f333333333333e33f
    0000000000000840
    0000000000000840000000000000084000000000000008409a9999999999c93f666666666666e63f
    0000000000001040
    0000000000001040000000000000104000000000000010409a9999999999d93fcdcccccccccc0040
    0000000000001440
    0000000000001440000000000000144000000000000014409a9999999999b93fcdccccccccccf43f
    DATA=END
    My question is how do I understand this?
    "000000000000f03f" should be HEX for some single digit number. But using a 64bit IEEE floating point calculator says this means: 3.0386500000000000e-319
    Am I reading this incorrectly? I tried reversing the bits, subtracting values and using "db_dump -p".

    Hi,
    You may try using "db_dump -p -d a ..." to get a better output, that may be easier to interpret.
    You may also post here some relevant snippets from your code, such as the part where you're writing data into the primary database, the part where you read the data using the secondary index, the code for the secondary key callback function, and the exact structure and size of the key/data pairs.
    Regards,
    Andrei

  • Color correcting photos, this isn't making sense.

    I have tried endlessly with color correcting photos. What am I looking for when I'm placing my color sample? For example, I open up a photo. I look around, choose a grey area, at 3x3 or 5x5 average sample. I shift click my eyedropper there. I open up curves, choose the red channel, make the output values the same as green. I do the same with blue, yet my photo does NOT look color corrected. If I open up a photo with too much green or blue, how are people restoring them to regular color? Any help is appreciated, thanks.

    In the Curves dialog or panel, click on each of the white, gray, and black eyedroppers (to the right is the PS4 panel version), one at a time, and after clicking on an eyedropper, click on an appropriate white, gray, or black point in the image.  Then you can modify the curves as needed.

  • Making sense of wsdl code generation (BetFair API)

    Hi all,
    I must warn you in advance that my Java knowledge is basic - I am learning as I go along, and some parts have a steep learning curve!
    I have imported the BetFair wsdl (from https://api.betfair.com/betex-api-public-ws/v2/BFService.wsdl )and generated the classes with JDeveloper 10.1.3.
    The BetFair sample program uses a 'BFServiceV2_BindingStub' which I could not find. I tried the JDev proxy generator, which creates a 'BFServiceV2_Stub', but substituting this into the sample code (provided by BetFair) doesn't work as the input params (number and types) are different.
    I would have thought the generated stub from the wsdl should match the sample. I don't know if I've used the correct process in JDev or not, but I'm completely lost as to why there is a difference.
    Can anybody here with web service experience point me in the right direction?
    Thanks in advance.

    If it's an Oracle web service that you are trying to hit, there is a command line option to the service that provides the client proxy source bundled as a ZIP. you should be able to take THAT as an example, which includes a "stub", supply the code necessary to call the service, and then run that stub.
    From what appeared on BetFair's site, It looked like they had a "Developer's Section". You should work your way through their code and see what you can get working.
    Since, you are trying to hit a https service, things may be a little more difficult, and depending on if you are behind a proxy server it can be difficult as well.
    If you look at the Howtos/Tutorials and the documents on the webservices (SOA) section of OTN, you can see how Web Services are done with ADF.
    Good luck.

  • Making sense of iCal to do a Time Machine restore

    I have an old "To Do Item" that I wanted to restore from a Time Machine backup. But when I go to my Library/Calendars folder I get a number of .calendar folders (presumably connected to the different iCal Calendar Groups I have)--but all of the folder names are written in such a way it's impossible to figure out which one might be "To Do Items."
    And then when I do find out which one, is there a way to access that information without permanently overwriting my current iCal data or To Do's?
    Thanks,
    John

    Hello ace:
    The iTunes library should be in your home folder (~music>itunes).
    You can restore the entire library - using a Time Machine backup before the problem. I have never attempted to restore an album, so I am no help there.
    Barry

  • MCM Gatekeeper 12.4(17) "show gatek calls" not making sense

    Sometimes when I do a "show gatek calls" to view current Video calls, the information show for a particular call shows the H323ID calling itself, however it shows different E.164 address for SRV and DST endpoint. This does not look right to me. Calls are still being connected fine, however I would like to know what would cause this particular information to appear on the call log. I have attached the debug log and "show gatek calls"

    The current GW2P Gateway Cards register with the Gatekeeper with Service prefixes. show gatek gw-type prefix. The GW service prefixes were setup from the get go. thats not the problem. I believe The problem has to do with LRQ(Location_Request) timing. Everytime the GK receives information from the GWs, endpoints or MCUs the information is then displayed on the show Gatek calls display. I have a TAC case in, and IOS Engineers looking at the case. I still do not have a solid answer to this.

Maybe you are looking for

  • Search Formatted Search

    Hi, I was trying to delete a query. However, it prompted that there is a formatted search for it. So I can't delete it. But I can't find where the search is. Do you know where I can find the list of formatted search I have? Thanks. Raymond

  • Informix conversion issue

    When using the Migration Workbench, I walk through all of the wizard screens till I get to the finish screen. Hit finish, it starts to execute then returns the following error: Failed to Load Source Model. Cannot reference an external database withou

  • RABAX_STATE type of error while accessing SEM-BPS layout

    Hi I was trying to access SEM-BPS layout from CRM web UI. But i got following error: CRM: Function Module "UPX_KPI_API_SET_PROP_TIMELINE" not found The termination type was: RABAX_STATE Can anyone please tell me how to resolve this problem? Thanks, S

  • Can I view photos on my iphone4 using apple tv?

    Can I view the photos on my iphone4 on my tv using apple tv?

  • Over two weeks and still no phoneline or internet ...

    No phone line or internet...Reported fault on 17th December, told would be fixed by 20th December, Called on 20/21 december to be told the fault was LOST in the system they would close it and re open.... told would be fixed by 25th December then told