ID CRASH: Path Text Issue

Hello,
I use ID CS 6 on Windows 7 64 Bit.
I have build a new Project over a few Weeks and everything worked fine.
Today I tried to type on a Path, like i did several times before.
And suddenly ID just stops working, just crashed.
Not even the Error Window of W7 appears.
I started new and tried to type on a path in a new file, it just works fine, i tried again in the Projektfile and ID crashs again.
I´ve tested an older version of the Projectfile, there is the same Problem: ID crashes.
So after installing the newest update, searching in Help Center and searchengines iam here to ask you about the Problem.
Did some one of you got an idea what the problem is or even got a solution for me?
Have a good day.
Flügel

Hi Manish, Hi Spier, yes it has to be an file specific issue.
But i tried your ideas:
First I exported it to an IDML.
Then i saved the IDML as INDD.
In this INDD-FIle was no Text anymore (can you tell me why this happend and how i can remove my text)!
Actaully i tried to type on the path in this corrupted (missing text) INDD-file. It doesnt work. ID crashes again. Remember i worked a long time in this specific file, and the Type is not bad, so i really don´t know what happen dto the file.
Equal, Indesign is really stucked when i try to type on the path in the IDML file, so i can not really tell you whether it works or not.
I startet the pc and indesign all over again and again but the issues do not  dissapear.
Its really bad, because its just a very new situation, till now everything worked fine!
I hope you can imagine what i try to explain , sorry for my bad english i am from germany!
Flügel

Similar Messages

  • The selected objects cannot be joined as they are invalid objects,( Compound paths, closed paths, Text Objects, Graphs, Live Paint group). You can use Join command to connect two or more paths, paths in groups; ot to close an open path.

    Hi I was trying to join two Ractangle Tool objects but getting this type of Error in illustrator cs6 :-
    The selected objects cannot be joined as they are invalid objects,( Compound paths, closed paths, Text Objects, Graphs, Live Paint group).
    You can use Join command to connect two or more paths, paths in groups; ot to close an open path.
    Please assist me asap.

    Yes, I know this is an old post, but I’m trying to clean them up. Did you solve this problem, if so what was the solution?
    This sound like a firewall issue. I would start by disabling the firewall and seeing if you can connect. If this works then you know where the problem is,
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • About Replacement Path, Text Variables & Cusomer Exit?

    Hi
    Please explain along with examples youwhen we use Replacement Path
                                                   Text Variables and
                                                   Customer Exit
    Please search the forum before posting a thread
    Edited by: Pravender on Apr 18, 2011 3:48 PM

    Hi,
    1. Customer EXIT :
    Business Scenario:
    The business department wants to check if the orders from the customers for a  certain week (e.g. 6 weeks from now) are already transmitted into their system. Therefore they run a report with a variable, that is calculated automatically.
    Note: Of course this is not the only suitable solution, but it will show you how the exit works.
    Step by Step Solution:
    A.You should create a variable on the info object 0CALWEEK like this:
     1.Technical Name: WS_FWEEK
    2.Description: Workshop Future Week
    3 Interval
    5.Mandatory variable entry
    6.Processing: Customer Exit
    7.NOT ready for input
    B.Call transaction CMOD for the definition of the customer exit.  
    C.Create a new project, maintain the short text and assign a development class.  
    D.Go to Enhancement Assignments and assign RSR00001. Press the button components to continue.  
    E.Double-click on EXIT_SAPLRRS0_001.  
    F.For documentation place the cursor an RSR00001 and use the menu GoTo => Display documentation.   
    G.Then double-click on ZXRSRU01.  
    H. If the include does not exist, you have to create it; assign a development class and a transport request
    Enter this code:
    INCLUDE ZXRSRU01                                        *
      data: l_idx like sy-tabix,
            workdate(8) type d,
            futureweek(6) type c.
      DATA: L_S_RANGE TYPE RSR_S_RAGESID.
    case I_vnam.
    when u2018WS_FWEEKu2019.
    if i_step = 2          u201C after pop-up
    Calculate Current day plus 6 weeks:
      workdate = sy-datum  + 42 .
    Calculate the week of this day
      CALL FUNCTION 'DATE_GET_WEEK'
        EXPORTING
          DATE               = workdate
        IMPORTING
         WEEK               = futureweek
    EXCEPTIONS
      DATE_INVALID       = 1
      OTHERS             = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      l_s_range-low = futureweek.
    l_s_range-high =
      l_s_range-sign = 'I'.
      l_s_range-option = 'EQ'.
      append l_s_range to l_t_range.
      p_subrc = 0.
    ENDIF.
    ENDCASE.
    I.Save and activate the codie 
    J.Activate the project. (Very important!)
    K. Define a query using the above created variable.
    L.For displaying the variable values in the executed query you also may define two text variables. These should, if necessary, be able to show the lower and the upper value calculated by the customer exit.
    2 Replacement Path :
    Example for filling variable values depending on an other variable /
    Deriving one variable value from another variable
    Business scenario.
    A query should show in one column the value for one period. The period should be entered by the user. In the second column the accumulated vale from the beginning of the year to the period of the first column should be displayed. The InfoCube contains only the InfoObject 0CALMONTH (Month/Year) and not single InfoObjects for period and year.
    Solution:
    For this scenario we need four variables: two variables for the column text and two variables for the period values. One of these period variables is defined as a variable with a customer exit
    Step by Step Solution:
    Create an input variable u201CMONTHu201D (you need this specific information for the coding example below). The variable is based on the InfoObject 0CALMONTH. Set the following attributes:
    Single Value
    Ready for input
    Mandatory variable entry 
    Create a variable  u201CCUMMONTHu201D (you need this specific information for the coding example below) with a customer exit as a processing type. The variable is based on the InfoObject 0CALMONTH. Set the following attributes:
    Interval
    NOT ready for input!
    Mandatory variable entry
    Create two text variables. Both variables use the u201CReplacement Pathu201D as processing type. The first text variable is filled with the text from the u201Cfrom valueu201D. The second is filled with the text from the u201Cto valueu201D.
    Enter this code
    INCLUDE ZXRSRU01                                        *
    DATA: L_S_RANGE TYPE RSR_S_RAGESID.
    DATA: LOC_VAR_RANGE LIKE RRRANGEEXIT.
    case I_vnam.
    when u2018CUMMONTHu2019.
    if i_step = 2          u201C after pop-up
    LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE
              WHERE VNAM = u2018MONTHu2019.
         CLEAR L_S_RANGE.
    l_t_range-low = loc_var_range(4).  u201Cgetting current year
    l_t_range-low+4(2) = u201801u2019 u201Csetting 1st period in cur. year
    l_t_range-high = loc_var_range-low u201Chigh value=input value
    l_t_range-sign = 'I'.
    l_t_range-option = 'BT'.
    append l_s_range to e_t_range.
    exit.
    endloop.
    endif.
    endcase.
    Save and activate the code.
    Activate the project.
    Define a query containing all the variables.
    Regards
    CSM Reddy

  • FCPX crashing when text inspector open, I suspect a font problem. Help!

    I have encountered a problem where FCPX will crash whenever text propertys should show in the inspector tab (Text can be edited when the inspector is closed).
    After searching google, this appears to be a common problem. Everyone seems to say the symptoms indicate a font problem, which I suspected. However after using font book to verify my fonts, getting rid of 3rd party installed fonts and then messing up my fonts library
    terribly (still trying to figure out what exactly I did). I seem to have no luck.
    Has a solution be discovered yet? I need to be able to change my font settings not just edit text! Please help!

    Isn't that just the way things work. After working on this problem for many hours and several days I post here and within a few more hours it works itself out. <embarrassed>
    I used font book to turn off all fonts but the ones the OS needs to run, and it turns out somehow I ended up with duplicates of those ones. After a struggle to get rid of the duplicates I also deleted FXPs preference files. Now I can edit the text in the properties/info pane again!

  • Firefox crashes: Plugin-Container Issue

    After the second-to-last update, I started noticing an increase in browser crashes. The issue is always that the Plugin-Container has stopped working. I understand that the plugin container's function is to prevent such problems, but it does not appear to be working. I have the latest version of Firefox, updates, etc, but that doesn't seem to be helping. Crash reports have been sent to Mozilla, but the problem is ongoing. I use my browser heavily in both standard and incognito mode for business. I've used Firefox for a long time, but if I keep losing information mid-process, I'm going to have to consider other options. If anyone has any experience with the problem or suggestions on a possible solution, that would be greatly appreciated.
    Thanks,
    Nomenica

    Tumblr.com. The way the site is set up, I don't believe it shuts down images, etc, once you've loaded and passed them. It's endless scrolling, so that could potentially be a lot of loaded data.

  • D11 Unicode Text Issues

    There appear to be several text issues in D11 on Mac OSX
    10.4.11 and 10.5.2.
    First problem being that setting the style of text to bold or
    italic doesn't show any change. This occurs in both Shockwave and
    D11 projectors.
    Second using Chines Unicode font Song the text in fields
    sometimes disappears. Its still there since calculations based on
    the content of those fields still works but no text is visible
    onscreen.
    This font also has the problem where the text will not change
    to bold.
    Anyone else seenig anything like this or have a solution?
    Thanks
    EDB

    IF we are now limited to setting only font styles that are
    specifically defined in the font we're in real trouble.
    This is NOT the way it worked in all previous version of
    Director that I've used (7, 8, 8.5 MX, MX 2004).
    The project I'm converting to D11 deals with font styles as I
    would expect in MX 2004 on the very same machine with the same
    fonts that D11 refuses to make bold.
    This is the Chinese font information from my Mac...
    Song Regular, 18 pt.
    PostScript name SIL-Song-Reg-Jian
    Full name Song Regular
    Family Song
    Style Regular
    Kind TrueType
    Language Bulgarian, Chinese, Cornish, English, Indonesian,
    Malay, Oromo, Russian, Somali, Swahili
    Version 4.1d1e1
    Location /Library/Fonts/Song.dfont
    Unique name Song Regular; 4.1d1e1; Wed, Feb 19, 2003
    Copyright © Copyright Shanghai Ikarus Ltd. 1993 1994
    1995
    Trademark Shanghai Ikarus Ltd./URW Software & Type GmbH
    Enabled Yes
    Duplicate Yes
    Copy protected No
    Embeddable Yes

  • HT1430 hey, I just reset my Apple ID and suddenly much of my Iphone text history disappeared.  and I can send texts, but not receive any.  what do I do?  is this related to AppleID, or is the text issue from something else?  thx!

    hey, I just reset my Apple ID and suddenly much of my Iphone text history disappeared.  and I can send texts, but not receive any.  what do I do?  is this related to AppleID, or is the text issue from something else?  thx!

    Hi blyther,
    Thanks for using Apple Support Communities.  If you're unable to receive texts, see this article for troubleshooting steps:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Cheers,
    - Ari

  • 8350i texting issue (telus) please help!

    I'm really getting tired of hearing about a fix in the works for the texting issue of the 8350i on the telus network.  i still can't send a text or determine the sender of a text.  its been a couple of months with this otherwise great phone, but I'm getting close to throwing it in the garbage.  has anyone actually heard or know of a specific date when this texting issue may be resolved?  I still can't believe that telus and or rim can't solve this issue, do they not understand that there are contractors out there that use the mike and need a smartphone?  maybe if they actually made one that worked well they would be surprised at the overwhelming sales of such a device. 
    losing faith in my bb, anyone have answers?
    Solved!
    Go to Solution.

    it has not been resolved .. Telus told me RIM had solved it with a 5.0.?.? ver of OS but it was pulled because it was messing other stuff up.. I don't know that this is true, this is what Telus told me.. I called RIM and they couldn't release anyinfo on the issue to me and directed me to the press release area of the site where I found SFA.  I have the latest software 4.6.1.294 on my 8350i and it  isn't that old maybe a year if that.  There is no way I am spending 600 bucks so I can text ... there must be a fix ....  someone please help 
    PIN me if you have a solution 
    XXXXXXXXX
    , Andrew 
    EDIT: Personal Information Removed- Information such as PIN number is prohibited for security purposes. Please Private Message (PM) this user with a solution.

  • Safari 5 crash report, having issues since i downloaded it...

    hey guys - i don't know which part of the crash report can be of any relevance, so i've postet all of it - sorry for that.
    im having some issues with my mac ... (late 2008 mbp - all software up to date) i installed safari 5 via the internal softwareupdate.
    and "boom" i had some magic problems... now i know why steve didn't want to present it at the keynote because it's a beta . Anyways - the problems i have for me seem to be slow loading of pages up to not loading at all. even if my wifi is showing me full connection it randomly can't load pages at all - and just tells me there is no connection to the server. sometimes it loads very slowly and then i just see a cluttered page with some kind of no css in it or whatever it is. like plain text, white background, blue html-links...happened on wikipedia several times for example....
    now i just did a rights-reparation - maybe things are getting better - i'll restart right away... otherwise pls any help if you can offer some. thx guys.
    p.s. im very very happy with my mac, and my iphone 3gs and all the great software i have - but things like this should just not happen
    Zugriffsrechte für „Macintosh HD“ reparieren
    Abweichende Zugriffsrechte für „System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/JavaPluginCocoa.bundle/Contents/Resources/Java/deploy.jar“, Soll-Wert: lrwxr-xr-x , Ist-Wert: lrw-r--r-- .
    „System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/C ontents/Resources/JavaPluginCocoa.bundle/Contents/Resources/Java/deploy.jar“ repariert.
    Abweichende Zugriffsrechte für „System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar“, Soll-Wert: -rw-r--r-- , Ist-Wert: lrwxr-xr-x .
    „System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPluginC ocoa.bundle/Contents/Resources/Java/deploy.jar“ repariert.
    Abweichende Zugriffsrechte für „System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib“, Soll-Wert: -rwxr-xr-x , Ist-Wert: lrwxr-xr-x .
    „System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPluginC ocoa.bundle/Contents/Resources/Java/libdeploy.jnilib“ repariert.
    Unerwartete Zugriffssteuerungsliste für „private/etc/apache2/users“ gefunden.
    „private/etc/apache2/users“ repariert.
    Warnung: Die SUID-Datei „System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent“ wurde geändert und wird nicht repariert.
    Reparatur der Zugriffsrechte abgeschlossen
    Process: Safari [1189]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0 (6533.16)
    Build Info: WebBrowser-75331600~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [246]
    Date/Time: 2010-06-10 04:14:25.202 +0200
    OS Version: Mac OS X 10.6.3 (10D573)
    Report Version: 6
    Interval Since Last Report: 102740 sec
    Crashes Since Last Report: 4
    Per-App Interval Since Last Report: 73814 sec
    Per-App Crashes Since Last Report: 2
    Anonymous UUID: 3E1E24BE-F753-452D-A11F-10D91035A557
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc_msgSend() selector name: _invalidateGStatesForTree
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libobjc.A.dylib 0x00007fff8000f10a objc_msgSend + 22
    1 com.apple.CoreFoundation 0x00007fff87a3397e CFArrayApplyFunction + 222
    2 com.apple.AppKit 0x00007fff81c9d641 -[NSView _invalidateGStatesForTree] + 489
    3 com.apple.AppKit 0x00007fff81c9d418 -[NSView _invalidateFocus] + 24
    4 com.apple.AppKit 0x00007fff81cdc194 -[NSView _removeSubview:] + 61
    5 com.apple.AppKit 0x00007fff81c98a8b -[NSView _setSuperview:] + 647
    6 com.apple.AppKit 0x00007fff81cdbddc -[NSView removeFromSuperview] + 342
    7 com.apple.AppKit 0x00007fff81cdda5f -[NSClipView setDocumentView:] + 331
    8 com.apple.AppKit 0x00007fff81cdd829 -[NSScrollView setDocumentView:] + 37
    9 com.apple.WebKit 0x00007fff82a4e828 -[WebFrameView(WebInternal) _setDocumentView:] + 392
    10 com.apple.WebKit 0x00007fff82a4e372 -[WebFrameView(WebInternal) _makeDocumentViewForDataSource:] + 258
    11 com.apple.WebKit 0x00007fff82a4d71e WebFrameLoaderClient::transitionToCommittedForNewPage() + 334
    12 com.apple.WebCore 0x00007fff8340b6b9 WebCore::FrameLoader::transitionToCommitted(***::PassRefPtr<WebCore::CachedPage >) + 521
    13 com.apple.WebCore 0x00007fff8340a54f WebCore::FrameLoader::commitProvisionalLoad(***::PassRefPtr<WebCore::CachedPage >) + 175
    14 com.apple.WebCore 0x00007fff8340a460 WebCore::DocumentLoader::commitIfReady() + 80
    15 com.apple.WebCore 0x00007fff8340a3cf WebCore::DocumentLoader::finishedLoading() + 31
    16 com.apple.WebCore 0x00007fff834c792b WebCore::FrameLoader::finishedLoading() + 91
    17 com.apple.WebCore 0x00007fff834c7870 WebCore::MainResourceLoader::didFinishLoading() + 144
    18 com.apple.WebCore 0x00007fff83493a72 WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction, WebCore::ResourceResponse const&) + 930
    19 com.apple.WebCore 0x00007fff8349369f WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction) + 127
    20 com.apple.WebCore 0x00007fff834935a9 WebCore::PolicyChecker::continueAfterContentPolicy(WebCore::PolicyAction) + 601
    21 com.apple.WebKit 0x00007fff82a57dfd -[WebFramePolicyListener receivedPolicyDecision:] + 61
    22 com.apple.Safari 0x000000010003926c 0x100000000 + 234092
    23 com.apple.CoreFoundation 0x00007fff87a8dd8c _invoking__ + 140
    24 com.apple.CoreFoundation 0x00007fff87a8dc5d -[NSInvocation invoke] + 141
    25 com.apple.CoreFoundation 0x00007fff87aa9a71 -[NSInvocation invokeWithTarget:] + 49
    26 com.apple.WebKit 0x00007fff82a57bf4 -[_WebSafeForwarder forwardInvocation:] + 132
    27 com.apple.CoreFoundation 0x00007fff87a8adac __forwarding__ + 860
    28 com.apple.CoreFoundation 0x00007fff87a86e88 CF_forwarding_prep0 + 232
    29 com.apple.WebKit 0x00007fff82ae2284 WebFrameLoaderClient::dispatchDecidePolicyForMIMEType(void (WebCore::PolicyChecker::*)(WebCore::PolicyAction), WebCore::String const&, WebCore::ResourceRequest const&) + 164
    30 com.apple.WebCore 0x00007fff834926a8 WebCore::MainResourceLoader::didReceiveResponse(WebCore::ResourceResponse const&) + 1864
    31 com.apple.WebCore 0x00007fff834fa76a WebCore::MainResourceLoader::handleEmptyLoad(WebCore::KURL const&, bool) + 266
    32 com.apple.WebCore 0x00007fff834867a6 WebCore::MainResourceLoader::loadNow(WebCore::ResourceRequest&) + 422
    33 com.apple.WebCore 0x00007fff8348572e WebCore::MainResourceLoader::load(WebCore::ResourceRequest const&, WebCore::SubstituteData const&) + 1070
    34 com.apple.WebCore 0x00007fff834849f1 WebCore::DocumentLoader::startLoadingMainResource(unsigned long) + 113
    35 com.apple.WebCore 0x00007fff8348413f WebCore::FrameLoader::continueLoadAfterWillSubmitForm() + 175
    36 com.apple.WebCore 0x00007fff83483a92 WebCore::FrameLoader::continueLoadAfterNavigationPolicy(WebCore::ResourceReques t const&, ***::PassRefPtr<WebCore::FormState>, bool) + 578
    37 com.apple.WebCore 0x00007fff8348379a WebCore::FrameLoader::callContinueLoadAfterNavigationPolicy(void*, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>, bool) + 42
    38 com.apple.WebCore 0x00007fff834835a3 WebCore::PolicyCallback::call(bool) + 83
    39 com.apple.WebCore 0x00007fff8348337f WebCore::PolicyChecker::continueAfterNavigationPolicy(WebCore::PolicyAction) + 1471
    40 com.apple.WebKit 0x00007fff82a57dfd -[WebFramePolicyListener receivedPolicyDecision:] + 61
    41 com.apple.Safari 0x000000010002bf71 0x100000000 + 180081
    42 com.apple.CoreFoundation 0x00007fff87a8dd8c _invoking__ + 140
    43 com.apple.CoreFoundation 0x00007fff87a8dc5d -[NSInvocation invoke] + 141
    44 com.apple.CoreFoundation 0x00007fff87aa9a71 -[NSInvocation invokeWithTarget:] + 49
    45 com.apple.WebKit 0x00007fff82a57bf4 -[_WebSafeForwarder forwardInvocation:] + 132
    46 com.apple.CoreFoundation 0x00007fff87a8adac __forwarding__ + 860
    47 com.apple.CoreFoundation 0x00007fff87a86e88 CF_forwarding_prep0 + 232
    48 com.apple.WebKit 0x00007fff82ae2821 WebFrameLoaderClient::dispatchDecidePolicyForNavigationAction(void (WebCore::PolicyChecker::*)(WebCore::PolicyAction), WebCore::NavigationAction const&, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>) + 193
    49 com.apple.WebCore 0x00007fff83d5517e WebCore::PolicyChecker::checkNavigationPolicy(WebCore::ResourceRequest const&, WebCore::DocumentLoader*, ***::PassRefPtr<WebCore::FormState>, void ()(void, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>, bool), void*) + 1678
    50 com.apple.WebCore 0x00007fff83480744 WebCore::FrameLoader::loadWithDocumentLoader(WebCore::DocumentLoader*, WebCore::FrameLoadType, ***::PassRefPtr<WebCore::FormState>) + 1140
    51 com.apple.WebCore 0x00007fff8347efeb WebCore::FrameLoader::load(WebCore::DocumentLoader*) + 187
    52 com.apple.WebCore 0x00007fff8347ee4b WebCore::FrameLoader::load(WebCore::ResourceRequest const&, WebCore::SubstituteData const&, bool) + 299
    53 com.apple.WebCore 0x00007fff8347ec23 WebCore::FrameLoader::load(WebCore::ResourceRequest const&, bool) + 131
    54 com.apple.WebKit 0x00007fff82a57308 -[WebFrame loadRequest:] + 280
    55 com.apple.Safari 0x00000001000f29be 0x100000000 + 993726
    56 com.apple.AppKit 0x00007fff81e0e8ea -[NSApplication sendAction:to:from:] + 95
    57 com.apple.Safari 0x0000000100049d94 0x100000000 + 302484
    58 com.apple.AppKit 0x00007fff81e0e849 -[NSControl sendAction:to:] + 94
    59 com.apple.AppKit 0x00007fff81e9a1af -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1715
    60 com.apple.AppKit 0x00007fff81ecacea -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 555
    61 com.apple.AppKit 0x00007fff81e98c59 -[NSControl mouseDown:] + 624
    62 com.apple.AppKit 0x00007fff81db2f1b -[NSWindow sendEvent:] + 5409
    63 com.apple.Safari 0x0000000100041bf9 0x100000000 + 269305
    64 com.apple.Safari 0x0000000100041b85 0x100000000 + 269189
    65 com.apple.AppKit 0x00007fff81ce8662 -[NSApplication sendEvent:] + 4719
    66 com.apple.Safari 0x00000001000388c6 0x100000000 + 231622
    67 com.apple.AppKit 0x00007fff81c7f0aa -[NSApplication run] + 474
    68 com.apple.AppKit 0x00007fff81c77d7c NSApplicationMain + 364
    69 com.apple.Safari 0x0000000100009b1c 0x100000000 + 39708
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff873bc4ea kevent + 10
    1 libSystem.B.dylib 0x00007fff873be3bd dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff873be094 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff873bdbbe dispatch_workerthread2 + 252
    4 libSystem.B.dylib 0x00007fff873bd4e8 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff873bd385 start_wqthread + 13
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x00007fff873de316 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff873e2131 pthread_condwait + 1286
    2 com.apple.WebCore 0x00007fff833fb1d9 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3 com.apple.WebCore 0x00007fff833f72ec WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4 libSystem.B.dylib 0x00007fff873dc8b6 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff873dc769 thread_start + 13
    Thread 3: Safari: CertRevocationChecker
    0 libSystem.B.dylib 0x00007fff873a375a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff873a3dcd mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff87a54452 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff87a538df CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x000000010002f0f9 0x100000000 + 192761
    5 com.apple.Safari 0x000000010002f089 0x100000000 + 192649
    6 libSystem.B.dylib 0x00007fff873dc8b6 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff873dc769 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff873bc4ea kevent + 10
    1 libSystem.B.dylib 0x00007fff873fb128 mdns_querymDNSResponder + 1061
    2 libSystem.B.dylib 0x00007fff873fa3fe mdnssearch + 1140
    3 libSystem.B.dylib 0x00007fff873f979c mdnsaddrinfo + 715
    4 libSystem.B.dylib 0x00007fff873f881f search_addrinfo + 146
    5 libSystem.B.dylib 0x00007fff873f8248 si_addrinfo + 1352
    6 libSystem.B.dylib 0x00007fff873f7c59 getaddrinfo + 159
    7 com.apple.SystemConfiguration 0x00007fff84ef4920 __SCNetworkReachabilityGetFlags + 1182
    8 com.apple.SystemConfiguration 0x00007fff84ef4436 SCNetworkReachabilityGetFlags + 147
    9 com.apple.CFNetwork 0x00007fff809296fb _CFNetworkIsConnectedToInternet + 53
    10 com.apple.CFNetwork 0x00007fff8095109e HTTPProtocol::transformErrorDomainNetDB() + 28
    11 com.apple.CFNetwork 0x00007fff80951b61 HTTPProtocol::failWithStreamError(CFStreamError const&) + 127
    12 com.apple.CFNetwork 0x00007fff808f6090 HTTPProtocol::httpReadStreamEvent(unsigned long) + 366
    13 com.apple.CoreFoundation 0x00007fff87ab58e3 _signalEventSync + 115
    14 com.apple.CoreFoundation 0x00007fff87ab6639 cfstream_sharedsignalEventSync + 553
    15 com.apple.CoreFoundation 0x00007fff87a55f21 __CFRunLoopDoSources0 + 1361
    16 com.apple.CoreFoundation 0x00007fff87a54119 __CFRunLoopRun + 873
    17 com.apple.CoreFoundation 0x00007fff87a538df CFRunLoopRunSpecific + 575
    18 com.apple.Foundation 0x00007fff805114e3 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    19 com.apple.Foundation 0x00007fff80491ead _NSThread__main_ + 1429
    20 libSystem.B.dylib 0x00007fff873dc8b6 pthreadstart + 331
    21 libSystem.B.dylib 0x00007fff873dc769 thread_start + 13
    Thread 5: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x00007fff873a375a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff873a3dcd mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff87a54452 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff87a538df CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x000000010002f0f9 0x100000000 + 192761
    5 com.apple.Safari 0x000000010002f089 0x100000000 + 192649
    6 libSystem.B.dylib 0x00007fff873dc8b6 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff873dc769 thread_start + 13
    Thread 6: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff873de316 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff873e2131 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff851b22e0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.Safari 0x00000001001bd45d 0x100000000 + 1823837
    4 com.apple.Safari 0x0000000100046aef 0x100000000 + 289519
    5 com.apple.Safari 0x000000010004696d 0x100000000 + 289133
    6 libSystem.B.dylib 0x00007fff873dc8b6 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff873dc769 thread_start + 13
    Thread 7:
    0 libSystem.B.dylib 0x00007fff873a37ba semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x00007fff873e2022 pthread_condwait + 1015
    2 com.apple.CoreVideo 0x00007fff855c635e CVDisplayLink::waitUntil(unsigned long long) + 252
    3 com.apple.CoreVideo 0x00007fff855c581a CVDisplayLink::runIOThread() + 644
    4 com.apple.CoreVideo 0x00007fff855c555b startIOThread(void*) + 139
    5 libSystem.B.dylib 0x00007fff873dc8b6 pthreadstart + 331
    6 libSystem.B.dylib 0x00007fff873dc769 thread_start + 13
    Thread 8:
    0 libSystem.B.dylib 0x00007fff873de316 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff873e2131 pthread_condwait + 1286
    2 com.zang.RegexKit 0x000000011ce49b3c RKFastConditionLock + 686
    3 com.zang.RegexKit 0x000000011ce548b8 -[RKThreadPool workerThreadStart:] + 483
    4 com.apple.Foundation 0x00007fff80491ead _NSThread__main_ + 1429
    5 libSystem.B.dylib 0x00007fff873dc8b6 pthreadstart + 331
    6 libSystem.B.dylib 0x00007fff873dc769 thread_start + 13
    Thread 9:
    0 libSystem.B.dylib 0x00007fff873de316 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff873e2131 pthread_condwait + 1286
    2 com.zang.RegexKit 0x000000011ce49b3c RKFastConditionLock + 686
    3 com.zang.RegexKit 0x000000011ce548b8 -[RKThreadPool workerThreadStart:] + 483
    4 com.apple.Foundation 0x00007fff80491ead _NSThread__main_ + 1429
    5 libSystem.B.dylib 0x00007fff873dc8b6 pthreadstart + 331
    6 libSystem.B.dylib 0x00007fff873dc769 thread_start + 13
    Thread 10:
    0 libSystem.B.dylib 0x00007fff873e7286 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff87a75ef2 __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff873dc8b6 pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff873dc769 thread_start + 13
    Thread 11:
    0 libSystem.B.dylib 0x00007fff873a375a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff873a3dcd mach_msg + 59
    2 com.apple.QuartzCore 0x00007fff8302293e CA::Render::Server::server_thread(void*) + 177
    3 com.apple.QuartzCore 0x00007fff8302287e thread_fun + 34
    4 libSystem.B.dylib 0x00007fff873dc8b6 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff873dc769 thread_start + 13
    Thread 12: Safari: SpinningProgressIndicator
    0 libSystem.B.dylib 0x00007fff873a375a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff873a3dcd mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff87a54452 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff87a538df CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff804cca38 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff804cc917 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.apple.Safari 0x000000010008fbe7 0x100000000 + 588775
    7 com.apple.Foundation 0x00007fff80491ead _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff873dc8b6 pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff873dc769 thread_start + 13
    Thread 13:
    0 libSystem.B.dylib 0x00007fff873bd30a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff873bd71c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff873bd385 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x000000011431a228 rbx: 0x0000000000000028 rcx: 0x0000000000000086 rdx: 0x000000011431a1c0
    rdi: 0x283d6e63636d7475 rsi: 0x00007fff823c88a0 rbp: 0x00007fff5fbfd370 rsp: 0x00007fff5fbfd318
    r8: 0x00007fff8245ad1e r9: 0x0000000000000000 r10: 0x000000011421c820 r11: 0x00007fff81d92017
    r12: 0x0000000000000005 r13: 0x00000001145240d0 r14: 0x0000000000000006 r15: 0x0000000000000000
    rip: 0x00007fff8000f10a rfl: 0x0000000000010202 cr2: 0x0000000101373168
    Binary Images:
    0x100000000 - 0x1006a9fef com.apple.Safari 5.0 (6533.16) <AE7B5544-1A22-2712-5756-03687127EEF2> /Applications/Safari.app/Contents/MacOS/Safari
    0x113cad000 - 0x113cadfff com.apple.JavaPluginCocoa 13.2.0 (13.2.0) <18D9A7A8-ECFF-123C-013D-1E36D279D150> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x113cb1000 - 0x113cb9ff7 com.apple.JavaVM 13.2.0 (13.2.0) <DD0E846A-3313-09DE-D17A-AE6A3D47DC86> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x116dfe000 - 0x116e24fe7 GLRendererFloat ??? (???) <684EBDC4-63B4-BC55-60EF-0F6A7D666551> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x116eab000 - 0x117038fe7 GLEngine ??? (???) <85971DA9-5140-A226-7898-21B2D6C6F7FE> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x117069000 - 0x11748bff7 libclh.dylib 3.1.1 C (3.1.1) <08830748-80A3-2928-BDC9-D5512BE2715C> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x117cc8000 - 0x117cd4ff7 +com.evernote.EvernoteSafariClipperPlugin 1.0 (62229) <53265D11-F09F-5056-AF0A-FB98AACED0CC> /Users/Benni/Library/Internet Plug-Ins/EvernoteSafariClipperPlugin.webplugin/Contents/MacOS/EvernoteSafariCli pperPlugin
    0x119f87000 - 0x119f8afff +net.culater.SIMBL.osax 0.9.7 (0.9.7) <C63284FC-E5AB-66F6-DB88-D6D3FABF6514> /Library/ScriptingAdditions/SIMBL.osax/Contents/MacOS/SIMBL
    0x119f8f000 - 0x119f94ff7 +com.tastyapps.SpiceShaker 1.3 (1.3) <00FAEF53-77B5-5AE7-488D-6343401C892A> /Users/Benni/Library/ScriptingAdditions/SpiceShaker.osax/Contents/MacOS/SpiceSh aker
    0x11a314000 - 0x11a316ff7 +com.aquaticmac.AquaticPrime ??? (1.0.2) <19EC60EB-41C6-0D8C-5BFE-4B652261EB5D> /Users/Benni/Library/Application Support/SpiceRack/Spices/Web Snapper Plugin.bundle/Contents/Frameworks/AquaticPrime.framework/Versions/A/AquaticPrim e
    0x11a31a000 - 0x11a31cff7 +com.aquaticmac.AquaticPrime ??? (1.0.2) <19EC60EB-41C6-0D8C-5BFE-4B652261EB5D> /Users/Benni/Library/Application Support/SpiceRack/Spices/TastyAppsAVPlugin.bundle/Contents/Frameworks/AquaticPr ime.framework/Versions/A/AquaticPrime
    0x11cdde000 - 0x11cdf1fff +com.sweetpproductions.SafariAdBlocker 1.9.8.3 (1.9.8.3) <8328263C-E4BC-DE43-1306-634E7FBA3BCA> /Library/Application Support/SIMBL/Plugins/Safari AdBlocker.bundle/Contents/MacOS/Safari AdBlocker
    0x11ce09000 - 0x11ce21fe7 +org.andymatuschak.Sparkle 1.5 Beta (git) (1.5) <BE75E994-9E00-52BF-9CF1-BF66603EC687> /Library/Application Support/SIMBL/Plugins/Safari AdBlocker.bundle/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle
    0x11ce37000 - 0x11ce7ffeb +com.zang.RegexKit 0.6.0 (0.6.0) /Library/Application Support/SIMBL/Plugins/Safari AdBlocker.bundle/Contents/Frameworks/RegexKit.framework/Versions/A/RegexKit
    0x11ce9b000 - 0x11cf81fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <26FC56A6-EFD6-22FA-E1F1-4E1BA61C85BB> /usr/lib/libcrypto.0.9.7.dylib
    0x11d041000 - 0x11d058ff7 +com.tastyapps.WebSnapperPlugin 2.4.2 (2.4.2) <68B0859B-DAAB-C39E-69C0-7AEF27F5B736> /Users/Benni/Library/Application Support/SpiceRack/Spices/Web Snapper Plugin.bundle/Contents/MacOS/Web Snapper Plugin
    0x11d072000 - 0x11d0aaff7 +com.tastyapps.avplugin 1.7 (1.7) <58FA6EFE-E114-4BC4-2643-A49192B9D4A8> /Users/Benni/Library/Application Support/SpiceRack/Spices/TastyAppsAVPlugin.bundle/Contents/MacOS/TastyAppsAVPlu gin
    0x200000000 - 0x2006c3fe7 com.apple.GeForceGLDriver 1.6.10 (6.1.0) <8946B71C-EA96-5AFA-B8B6-E9029EAF56CD> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <B633F790-4DDB-53CD-7ACF-2A3682BCEA9F> /usr/lib/dyld
    0x7fff80003000 - 0x7fff80009fff libCGXCoreImage.A.dylib 543.33.0 (compatibility 64.0.0) <182C8BD9-E1C8-0970-AE82-E9E88F324A5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff8000a000 - 0x7fff800c0fff libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
    0x7fff800c1000 - 0x7fff8027ffff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <1B6C3785-BE99-EAD5-69AB-B28C40466A82> /usr/lib/libicucore.A.dylib
    0x7fff802b1000 - 0x7fff80300ff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff80301000 - 0x7fff80302ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <D4183AC4-8A65-8368-A9AF-E2A13D18519C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff80303000 - 0x7fff80305fff libRadiance.dylib ??? (???) <73CE39EA-E38B-4320-8A7D-11C1A08A8A7A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff80384000 - 0x7fff803c1ff7 libFontRegistry.dylib ??? (???) <12FDAEB9-01F7-5562-DBC6-7B2374CCAEA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff803c2000 - 0x7fff803f3fef libTrueTypeScaler.dylib ??? (???) <C15B0761-5136-BD0C-20F7-C8F8A95AF367> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff803f4000 - 0x7fff80480fef SecurityFoundation 36840.0.0 (compatibility 1.0.0) <B69E2FF9-A698-4923-BC8B-180224B6EF75> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff80481000 - 0x7fff80702fe7 com.apple.Foundation 6.6.2 (751.21) <49BEB8B8-BC1F-B4E4-3D90-A141AC764A8D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff80733000 - 0x7fff80837fff com.apple.PubSub 1.0.5 (65.19) <0C393707-6776-0365-6BFE-924CC8108F9B> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff80838000 - 0x7fff80858ff7 com.apple.DirectoryService.Framework 3.6 (621.3) <EDCAF7ED-36E1-121F-D294-5CEBC1C34C5A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff808a4000 - 0x7fff808a4ff7 com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff808d5000 - 0x7fff809a5fff com.apple.CFNetwork 454.9.4 (454.9.4) <33395EDD-D653-6EAD-57A6-9C718D69D2DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff809ae000 - 0x7fff80a88ff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff80a89000 - 0x7fff80a8fff7 IOSurface ??? (???) <F998C45A-CCCF-2306-F37A-389EE0054CB3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff80a90000 - 0x7fff80a90ff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff80baf000 - 0x7fff813b9fe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff813ba000 - 0x7fff813d0fef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff813d1000 - 0x7fff81480fff edu.mit.Kerberos 6.5.9 (6.5.9) <42364D54-C647-14DE-2B1C-D94DAA03F092> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff81481000 - 0x7fff814fefef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff81600000 - 0x7fff81608fff com.apple.DisplayServicesFW 2.2.2 (251) <3E7C0CF8-117D-9C7F-577C-C199901DFF37> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff81609000 - 0x7fff8164bfef com.apple.CoreMedia 0.484.5 (484.5) <FF8F87CB-7087-A46F-D633-6A93054BDBA2> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8164c000 - 0x7fff81657fff com.apple.corelocation 12 (12) <5CD9B2E3-3F73-899B-5C9F-8F5EBC8A6BE6> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff81658000 - 0x7fff816b6ff7 com.apple.framework.IOKit 2.0 (???) <516EB9AF-4723-FC17-984B-918115E53459> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff816b7000 - 0x7fff81700fef libGLU.dylib ??? (???) <FEDE662B-46B2-26D8-3E57-84E4C15A4FB2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff81701000 - 0x7fff81704ff7 com.apple.securityhi 4.0 (36638) <77F40B57-2D97-7AE5-1331-8945C71DFB57> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff81778000 - 0x7fff81789ff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <C1154E2E-B1CB-1FAD-77ED-B139BA1AB073> /usr/lib/libz.1.dylib
    0x7fff8178a000 - 0x7fff81795fff com.apple.CrashReporterSupport 10.6.3 (250) <52F8B18D-7953-3EE7-4AE9-89F1121A5336> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff81796000 - 0x7fff817dbfff com.apple.CoreMediaIOServices 130.0 (1035) <6D6834F6-4DB5-03E9-3962-480BBEE176EB> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff817dc000 - 0x7fff8181ffff libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff81820000 - 0x7fff81824ff7 libCGXType.A.dylib 543.33.0 (compatibility 64.0.0) <27FF96BC-1F15-A52D-3339-4BFC49D6810E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff81825000 - 0x7fff818c5fff com.apple.LaunchServices 362.1 (362.1) <2740103A-6C71-D99F-8C6F-FA264546AD8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff81915000 - 0x7fff81a84ff7 com.apple.QTKit 7.6.6 (1729) <CEDDAEA5-82F9-FF5D-B9AF-C68ACC1E3225> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff81a9b000 - 0x7fff81aeafef libTIFF.dylib ??? (???) <D6BED22B-A092-EC70-6E1D-0B52FA6FBBDE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff81aeb000 - 0x7fff81b20fef com.apple.framework.Apple80211 6.2 (620.15.1) <964022FD-ECFB-2399-18AD-68BF767601AD> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff81b21000 - 0x7fff81bb0fff com.apple.PDFKit 2.5.1 (2.5.1) <7B8A187A-F0BB-44E7-FBD4-9E1C5F9D5E85> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff81c76000 - 0x7fff8266bfe7 com.apple.AppKit 6.6.5 (1038.29) <AC1ED9CC-6149-36EE-AA57-15BA4F05EAAA> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8266c000 - 0x7fff8266dfff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff8268a000 - 0x7fff829bdfef com.apple.CoreServices.CarbonCore 861.6 (861.6) <652B1704-460F-F0D1-B917-B08698E0EF7F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff82a46000 - 0x7fff82bc2ff7 com.apple.WebKit 6533 (6533.16) <A72746E9-5958-07B2-406A-DBEB7D2A13C1> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff82bc3000 - 0x7fff82d33fef com.apple.MediaToolbox 0.484.5 (484.5) <DA4772AD-9430-024F-39FF-8B9D4B52DCD2> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff82d34000 - 0x7fff82d36fff com.apple.print.framework.Print 6.1 (237.1) <4513DB2F-737C-B43C-2D0E-23CD6E838014> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff82d61000 - 0x7fff82e47fe7 com.apple.DesktopServices 1.5.5 (1.5.5) <EFCBA7C3-A6CE-9550-FE19-73BB3D046549> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff82fd0000 - 0x7fff83368fe7 com.apple.QuartzCore 1.6.1 (227.18) <ADB9E286-C5AB-3505-35D2-849E1F560A2A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff83369000 - 0x7fff83374ff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff83375000 - 0x7fff833f4fff com.apple.audio.CoreAudio 3.2.2 (3.2.2) <2633DFAC-F6A6-489D-8DF0-F12639CCD8C4> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff833f5000 - 0x7fff84064fe7 com.apple.WebCore 6533 (6533.16) <AC146886-9761-B048-45D3-07250E03F73C> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff84065000 - 0x7fff84065ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff84066000 - 0x7fff840c8fe7 com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff840fe000 - 0x7fff84148ff7 com.apple.Metadata 10.6.3 (507.8) <A850E5A6-69D8-EBC1-B005-43F72B58EA36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff84221000 - 0x7fff84338fef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <EE067D7E-15B3-F043-6FBD-10BA31FE76C7> /usr/lib/libxml2.2.dylib
    0x7fff84339000 - 0x7fff8438efef com.apple.framework.familycontrols 2.0.1 (2010) <E6E1C44A-6513-92DF-F71E-C157C485024C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff8438f000 - 0x7fff843c8ff7 com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff843c9000 - 0x7fff843deff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <E83DAF4F-F284-BE0B-3D9D-D573023098B4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff843ea000 - 0x7fff8446ffff com.apple.print.framework.PrintCore 6.2 (312.5) <E736F6DC-2E69-A14D-6BCF-69D14232F8B8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff84470000 - 0x7fff84470ff7 com.apple.Carbon 150 (152) <8D8CF535-90BE-691C-EC1B-63FBE2162C9B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff84471000 - 0x7fff844effff com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff844f2000 - 0x7fff8452dfff com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff8452e000 - 0x7fff8463dfe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <826C2437-F760-E049-1719-9C69A3BAA4B0> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8463e000 - 0x7fff846f7fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff846f8000 - 0x7fff84760fff com.apple.AppleVAFramework 4.8.11 (4.8.11) <14AE8878-A7A6-D024-3DD4-BBFB5E7FC008> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff84761000 - 0x7fff8477afff com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff8477b000 - 0x7fff847a3fff com.apple.DictionaryServices 1.1.1 (1.1.1) <9FD709FC-23F0-F270-EAC1-C590CD516A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff84850000 - 0x7fff84c93fef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff84c9c000 - 0x7fff84d51fe7 com.apple.ColorSync 4.6.3 (4.6.3) <0522B33D-F78A-9A46-1CB2-9073E4F8EFD8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff84d52000 - 0x7fff84d53ff7 com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff84d8f000 - 0x7fff84ecdfff com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff84ee9000 - 0x7fff84f2afff com.apple.SystemConfiguration 1.10.2 (1.10.2) <7DADC459-6E38-084A-B333-8332B28C244E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff84f2b000 - 0x7fff84f41ff7 com.apple.MultitouchSupport.framework 204.12.1 (204.12.1) <38D0D705-FD15-38AE-A8B9-F9970508D1BD> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff84f4e000 - 0x7fff84f5ffff SyndicationUI ??? (???) <95A471EF-93CC-0B37-749A-57EF80527E83> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff84f60000 - 0x7fff84f7efff libPng.dylib ??? (???) <D0512FBF-911C-A9EC-465D-48A411509D6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff85165000 - 0x7fff85169ff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8516a000 - 0x7fff8519fff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <0C865212-6427-5DE4-40C4-B5739491B691> /usr/lib/libcups.2.dylib
    0x7fff851a0000 - 0x7fff8538afe7 com.apple.JavaScriptCore 6533 (6533.13) <4D8B7A37-BBDF-A789-4D9F-81F3721AA311> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8538b000 - 0x7fff853baff7 com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff853c2000 - 0x7fff853e8fe7 libJPEG.dylib ??? (???) <85902BC7-43AE-E202-0EEE-3C9996D00971> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff853e9000 - 0x7fff854a9fe7 libFontParser.dylib ??? (???) <2C6B6ABB-7EF0-3CD8-97D2-9B4534D0056C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff854aa000 - 0x7fff85516fe7 com.apple.CorePDF 1.1 (1.1) <D47B2366-5D1B-147B-B1FA-C9FE36C4EFFF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff855c2000 - 0x7fff855c2ff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff855c3000 - 0x7fff855e8fe7 com.apple.CoreVideo 1.6.1 (45.4) <B1516554-88BC-CF1E-5409-BFF27A73D1AF> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff855e9000 - 0x7fff855ecfff com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8565e000 - 0x7fff85768ff7 com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff85769000 - 0x7fff8577dfff libGL.dylib ??? (???) <A85982AB-6395-DE2B-2023-F735093E663D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8577e000 - 0x7fff8578cff7 libkxld.dylib ??? (???) <E685E658-C908-95B9-8D16-8153C1CE05D7> /usr/lib/system/libkxld.dylib
    0x7fff8578d000 - 0x7fff8578dff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8578e000 - 0x7fff857d6ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff85830000 - 0x7fff85955fef com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4DCCD01F-7516-4240-09DC-EE553317D345> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff85956000 - 0x7fff85967fff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff85968000 - 0x7fff859e3fff com.apple.ISSupport 1.9.3 (51) <BE4B548C-F9C4-2464-12A6-F94A21D569C6> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff859e4000 - 0x7fff85c4dff7 com.apple.QuartzComposer 4.1 (156.13) <0A7E8CDB-77DB-F96F-9CA4-867E9D45EB69> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff85c4e000 - 0x7fff85c8bfff com.apple.LDAPFramework 2.0 (120.1) <16383FF5-0537-6298-73C9-473AEC9C149C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff85c8c000 - 0x7fff85c98fff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <5C876577-ACB7-020C-F7DB-EE0135C3AB8D> /usr/lib/libbz2.1.0.dylib
    0x7fff85c99000 - 0x7fff85f97fef com.apple.HIToolbox 1.6.2 (???) <759E1C39-58EB-C434-3E33-416C04AFE6DC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff861f3000 - 0x7fff8630cfef libGLProgrammability.dylib ??? (???) <9D2B1DA3-C581-73F8-A2E4-01C4CE1C3B32> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff8630d000 - 0x7fff86377fe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff86378000 - 0x7fff8638afe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff8638b000 - 0x7fff86390fff libGIF.dylib ??? (???) <0E58DF99-B3DF-6FF9-E810-CCEC0853C8B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff86391000 - 0x7fff86394ff7 libCoreVMClient.dylib ??? (???) <9A0E75A9-7964-CAF9-DEB7-11A073530F64> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff86395000 - 0x7fff863b6fff libresolv.9.dylib 40.0.0 (compatibility 1.0.0) <1AE68BBB-6536-125C-DE2A-13CA916D0EC4> /usr/lib/libresolv.9.dylib
    0x7fff863b7000 - 0x7fff863e2ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff863e3000 - 0x7fff86ae0037 com.apple.CoreGraphics 1.543.33 (???) <359B3BC6-0152-94D2-3CAA-D8C24C0B9E65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff86b1d000 - 0x7fff87026fe7 com.apple.VideoToolbox 0.484.5 (484.5) <174EF984-21FE-071C-4AB4-DE345BF87791> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff8704a000 - 0x7fff870e4fff com.apple.ApplicationServices.ATS 4.2 (???) <E31469D3-A97D-63BB-FB00-05ACB2CEC561> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff870e5000 - 0x7fff87129ff7 com.apple.ImageCaptureCore 1.0.1 (1.0.1) <788A9BF0-691B-FE10-7385-AF4A7A786478> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff87223000 - 0x7fff87223ff7 com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff87224000 - 0x7fff8723afff com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff87269000 - 0x7fff872d1fff com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff872d2000 - 0x7fff872d3fff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff872d4000 - 0x7fff87389fe7 com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff873a2000 - 0x7fff87561ff7 libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <CB9A4929-61AF-DE71-5635-133E9EC95783> /usr/lib/libSystem.B.dylib
    0x7fff87562000 - 0x7fff87569fff com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8756a000 - 0x7fff875a2ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <FAB9687F-0A86-A13F-7644-CE02E71140DB> /usr/lib/libssl.0.9.8.dylib
    0x7fff875a3000 - 0x7fff875b0fe7 libCSync.A.dylib 543.33.0 (compatibility 64.0.0) <540820E4-75E3-B2A0-5EF2-222304250CD8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff875b1000 - 0x7fff875b7ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff875b8000 - 0x7fff875fbff7 libRIP.A.dylib 543.33.0 (compatibility 64.0.0) <677BA546-F215-C5C8-9C65-305E43633FDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff875fc000 - 0x7fff875fcff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff875fd000 - 0x7fff87602fff libGFXShared.dylib ??? (???) <A2C80199-6076-3CBE-E418-E0AD0A3053DE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff87603000 - 0x7fff87617ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff87618000 - 0x7fff87649fff libGLImage.dylib ??? (???) <7E8A6ED2-B093-0714-F65A-64ECC41187C4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8764a000 - 0x7fff87659ff7 com.apple.opengl 1.6.7 (1.6.7) <63D8F554-2488-4811-EEC7-672FCFAF731B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8765a000 - 0x7fff879d0fe7 com.apple.RawCamera.bundle 3.0.2 (527) <E70071D3-CC39-4B14-2AA3-EAC42BC84AD4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff879f8000 - 0x7fff87a07fff com.apple.NetFS 3.2.1 (3.2.1) <FF21DB1E-F425-1005-FB70-BC19CAF4006E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff87a08000 - 0x7fff87b7dfef com.apple.CoreFoundation 6.6.1 (550.19) <1051BA2C-DCD7-787C-907C-A50D12AA6049> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff87bc8000 - 0x7fff87c19fe7 com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff87c1a000 - 0x7fff87c3dfff com.apple.opencl 12.1 (12.1) <AB00CB6B-5BBD-C819-007A-08C0B110AB93> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff87c41000 - 0x7fff87c82fef com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff87c83000 - 0x7fff87d40ff7 com.apple.CoreServices.OSServices 357 (357) <7CFA1963-B639-BE99-12F1-220DF214AB50> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff87d41000 - 0x7fff87f83fe7 com.apple.AddressBook.framework 5.0.1 (868) <0623CCCC-6865-681A-0737-723A7B016EA1> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff87f84000 - 0x7fff87fd0fff libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
    0x7fff88497000 - 0x7fff884defef com.apple.QuickLookFramework 2.2 (327.4) <4E1658D4-F268-2A82-C095-1D01E9EAD05F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff884df000 - 0x7fff884eefff libxar.1.dylib ??? (???) <0E323815-A88A-E239-973F-2819CED2282E> /usr/lib/libxar.1.dylib
    0x7fff88503000 - 0x7fff88788fef com.apple.security 6.1.1 (37594) <ED08CC62-42E2-E97F-E807-C09EB1CF950D> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff88789000 - 0x7fff88854fe7 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <C85548CF-DED1-4672-0167-3F32A6DD0D55> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x7fff889bf000 - 0x7fff889daff7 com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff889e1000 - 0x7fff88a5efef com.apple.backup.framework 1.2.2 (1.2.2) <13A0D34C-28B7-2140-ECC9-B08D10CD4AB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff88a5f000 - 0x7fff88c19fff com.apple.ImageIO.framework 3.0.2 (3.0.1) <911FA1A5-7063-6A19-73D3-95B78A265524> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff88c1a000 - 0x7fff88c61ff7 com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff88c62000 - 0x7fff88c67ff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff88c68000 - 0x7fff88ea3fef com.apple.imageKit 2.0.3 (1.0) <9F7CBDFB-EBDC-5B86-ED43-5195F4AE9D52> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff88ea4000 - 0x7fff88f34fff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff88fcb000 - 0x7fff89014ff7 com.apple.securityinterface 4.0.1 (37214) <F8F2D8F4-861F-6694-58F6-3DC55C9DBF50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff89015000 - 0x7fff89097fff com.apple.QuickLookUIFramework 2.2 (327.4) <C35D9F62-73D0-262C-B0CE-BFF64E230588> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <CB9A4929-61AF-DE71-5635-133E9EC95783> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,1, BootROM MBP51.007E.B05, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.33f8
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 256 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.91.27)
    Bluetooth: Version 2.3.1f4, 2 service, 2 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS543225L9SA02, 232,89 GB
    Serial ATA Device: MATSHITADVD-R UJ-868
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0237, 0x04600000

    Sir Phi:
    You've got a ton of internet haxies on there --
    I would take them out and double check the compatibility of them:
    EvernoteSafariClipperPlugin 1.0 (62229) <53265D11-F09F-5056-AF0A-FB98AACED0CC> /Users/Benni/Library/Internet Plug-Ins/EvernoteSafariClipperPlugin.webplugin/Contents/MacOS/EvernoteSafariCli pperPlugin
    0x119f87000 - 0x119f8afff +net.culater.SIMBL.osax 0.9.7 (0.9.7) <C63284FC-E5AB-66F6-DB88-D6D3FABF6514> /Library/ScriptingAdditions/SIMBL.osax/Contents/MacOS/SIMBL
    0x119f8f000 - 0x119f94ff7 +com.tastyapps.SpiceShaker 1.3 (1.3) <00FAEF53-77B5-5AE7-488D-6343401C892A> /Users/Benni/Library/ScriptingAdditions/SpiceShaker.osax/Contents/MacOS/SpiceSh aker
    0x11a314000 - 0x11a316ff7 +com.aquaticmac.AquaticPrime ??? (1.0.2) <19EC60EB-41C6-0D8C-5BFE-4B652261EB5D> /Users/Benni/Library/Application Support/SpiceRack/Spices/Web Snapper Plugin.bundle/Contents/Frameworks/AquaticPrime.framework/Versions/A/AquaticPrim e
    0x11a31a000 - 0x11a31cff7 +com.aquaticmac.AquaticPrime ??? (1.0.2) <19EC60EB-41C6-0D8C-5BFE-4B652261EB5D> /Users/Benni/Library/Application Support/SpiceRack/Spices/TastyAppsAVPlugin.bundle/Contents/Frameworks/AquaticPr ime.framework/Versions/A/AquaticPrime
    0x11cdde000 - 0x11cdf1fff +com.sweetpproductions.SafariAdBlocker 1.9.8.3 (1.9.8.3) <8328263C-E4BC-DE43-1306-634E7FBA3BCA> /Library/Application Support/SIMBL/Plugins/Safari AdBlocker.bundle/Contents/MacOS/Safari AdBlocker
    0x11ce09000 - 0x11ce21fe7 +org.andymatuschak.Sparkle 1.5 Beta (git) (1.5) <BE75E994-9E00-52BF-9CF1-BF66603EC687> /Library/Application Support/SIMBL/Plugins/Safari AdBlocker.bundle/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle
    0x11ce37000 - 0x11ce7ffeb +com.zang.RegexKit 0.6.0 (0.6.0) /Library/Application Support/SIMBL/Plugins/Safari AdBlocker.bundle/Contents/Frameworks/RegexKit.framework/Versions/A/RegexKit
    0x11ce9b000 - 0x11cf81fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <26FC56A6-EFD6-22FA-E1F1-4E1BA61C85BB> /usr/lib/libcrypto.0.9.7.dylib
    0x11d041000 - 0x11d058ff7 +com.tastyapps.WebSnapperPlugin 2.4.2 (2.4.2) <68B0859B-DAAB-C39E-69C0-7AEF27F5B736> /Users/Benni/Library/Application Support/SpiceRack/Spices/Web Snapper Plugin.bundle/Contents/MacOS/Web Snapper Plugin
    0x11d072000 - 0x11d0aaff7 +com.tastyapps.avplugin 1.7 (1.7) <58FA6EFE-E114-4BC4-2643-A49192B9D4A8> /Users/Benni/Library/Application Support/SpiceRack/Spices/TastyAppsAVPlugin.bundle/Contents/MacOS/TastyAppsAVPlu gin

  • GPMC Crashing and Display issues.

    Today I went to open the GPMC on my Windows 8 Desktop and after going to edit a policy we have created all the menu items were blank. I could see the icons for them, but they had no name. After trying to navigate for a few moments MMC Crashes and gives me
    this error in event viewer:
    Faulting application name: mmc.exe, version: 6.2.9200.16384, time stamp: 0x5010a074
    Faulting module name: ntdll.dll, version: 6.2.9200.16420, time stamp: 0x505aaa82
    Exception code: 0xc0150010
    Fault offset: 0x0007df5e
    Faulting process id: 0xfc8
    Faulting application start time: 0x01cdb7783eb3c748
    Faulting application path: C:\WINDOWS\SysWOW64\mmc.exe
    Faulting module path: C:\WINDOWS\SYSTEM32\ntdll.dll
    Report Id: 8bacb439-236b-11e2-be6b-984be1ebad9b
    Faulting package full name:
    Faulting package-relative application ID:
    with this information afterwords:
    Fault bucket -1088739078, type 1
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: mmc.exe
    P2: 6.2.9200.16384
    P3: 5010a074
    P4: ntdll.dll
    P5: 6.2.9200.16420
    P6: 505aaa82
    P7: c0150010
    P8: 0007df5e
    P9:
    P10:
    Attached files:
    C:\Users\pomeroyt\AppData\Local\Temp\WER66CC.tmp.WERInternalMetadata.xml
    C:\Users\pomeroyt\AppData\Local\Temp\WER6C3B.tmp.appcompat.txt
    These files may be available here:
    C:\ProgramData\Microsoft\Windows\WER\ReportArchive\AppCrash_mmc.exe_636e6b2f6e27a9c7f7e820f7a0adb57213626294_05c36ce6
    Analysis symbol:
    Rechecking for solution: 0
    Report Id: 8bacb439-236b-11e2-be6b-984be1ebad9b
    Report Status: 1
    Hashed bucket: 098ebb650f3c851a055c696107776b03
    I'm not really sure where to go from here. Has anyone else had this issue? 
    Were running a 2008 domain. 

    I'm also having this problem. Error text from my system below.  It's a fresh install of Windows 8, joined to our domain and updated. VMWare Tools was installed automaticaly, but not even antivirus aside from that. It seems I can use most of the
    features of the console, I've even succesfully modified a GPO. If I select the comain in the left pane though, guarenteed crash.  I've tried rebooting.
    Anyone make any progress?
    Problem signature:
    Problem Event Name:                       
    APPCRASH
    Application Name:                            
    mmc.exe
    Application Version:                          
    6.2.9200.16496
    Application Timestamp:                    
    50ece2e8
    Fault Module Name:                         
    gpmgmt.dll
    Fault Module Version:                       
    6.2.9200.16518
    Fault Module Timestamp:                 
    510ca9a6
    Exception Code:                                 
    c0000005
    Exception Offset:                               
    0000000000154f4b
    OS Version:                                         
    6.2.9200.2.0.0.256.4
    Locale ID:                                            
    1033
    Additional Information 1:                 
    f5d5
    Additional Information 2:                 
    f5d5f2edea5447000260123656b930b4
    Additional Information 3:                 
    f883
    Additional Information 4:  f883ee6437fb5cbaf147d7c9ea29db21

  • Safari randomly crashes when text is entered on a web page

    I am wondering if anyone else is having this problem or if it is somehow a setup issue on my machine? Specifically when I enter text on a web page, for example, change the search field for a Google search, that sometimes Safari will hang on the second or third character (that is all the change you see), beach ball for 10 to 20 seconds and then crash. I have found that this occurs on a wide number of sites (including this forum, which is why I am using firefox to type this question). This can also occur if I "paste" the text into the text box as well as type it.
    This does not happen every time I use Safari to enter text on a web page but probably an average of one in four or five times. This usually happens five to six times a day (and I file a crash report each time) before I give up and only use Firefox so I really suspect this being something in Safari. In fact I am pretty sure this is something that started occurring after I ran my last software update (running Safari 2.04).
    Any ideas on the cause or a confirmation on this as a known issue will be greatly appreciated.

    Starman, thanks for the suggestion. I went to craiglist.org and entered "macbook"in to the search field. The text displayed only "mac" before the beach ball started spinning (I can be pretty quick at typing, so this did not take long); then after about 15 seconds it crashed yielding the following report:
    Date/Time: 2007-10-30 09:47:31.499 -0700
    OS Version: 10.4.10 (Build 8R2232)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [60]
    Version: 2.0.4 (419.3)
    Build Version: 31
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 1031
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0xbf7ffd0c
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x9080bd7b __CFStringCreateImmutableFunnel3 + 12
    1 com.apple.CoreFoundation 0x90818caf CFStringCreateWithBytes + 94
    2 com.apple.CoreFoundation 0x908386aa __CFBinaryPlistCreateObject + 1405
    3 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    4 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    5 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    6 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    7 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    8 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    9 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    10 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    11 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    12 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    13 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    14 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    15 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    16 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    17 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    18 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    19 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    20 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    21 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    22 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    23 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    24 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    25 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    26 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    27 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    28 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    29 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    30 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    31 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    32 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    33 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    34 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    35 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    36 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    37 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    38 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    39 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    40 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    41 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    42 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    43 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    44 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    45 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    46 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    47 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    48 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    49 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    50 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    51 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    52 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    53 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    54 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    55 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    56 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    57 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    58 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    59 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    60 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    61 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    62 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    63 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    64 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    65 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    66 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    67 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    68 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    69 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    70 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    71 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    72 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    73 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    74 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    75 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    76 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    77 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    78 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    79 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    80 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    81 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    82 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    83 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    84 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    85 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    86 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    87 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    88 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    89 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    90 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    91 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    92 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    93 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    94 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    95 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    96 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    97 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    98 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    99 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    100 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    101 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    102 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    103 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    104 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    105 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    106 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    107 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    108 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    109 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    110 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    111 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    112 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    113 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    114 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    115 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    116 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    117 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    118 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    119 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    120 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    121 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    122 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    123 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    124 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    125 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    126 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    127 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    128 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    129 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    130 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    131 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    132 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    133 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    134 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    135 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    136 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    137 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    138 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    139 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    140 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    141 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    142 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    143 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    144 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    145 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    146 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    147 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    148 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    149 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    150 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    151 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    152 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    153 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    154 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    155 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    156 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    157 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    158 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    159 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    160 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    161 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    162 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    163 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    164 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    165 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    166 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    167 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    168 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    169 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    170 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    171 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    172 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    173 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    174 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    175 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    176 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    177 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    178 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    179 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    180 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    181 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    182 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    183 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    184 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    185 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    186 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    187 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    188 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    189 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    190 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    191 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    192 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    193 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    194 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    195 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    196 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    197 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    198 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    199 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    200 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    201 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    202 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    203 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    204 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    205 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    206 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    207 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    208 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    209 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    210 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    211 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    212 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    213 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    214 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    215 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    216 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    217 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    218 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    219 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    220 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    221 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    222 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    223 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    224 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    225 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    226 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    227 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    228 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    229 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    230 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    231 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    232 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    233 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    234 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    235 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    236 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    237 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    238 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    239 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    240 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    241 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    242 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    243 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    244 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    245 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    246 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    247 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    248 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    249 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    250 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    251 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    252 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    253 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    254 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    255 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    256 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    257 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    258 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    259 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    260 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    261 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    262 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    263 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    264 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    265 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    266 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    267 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    268 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    269 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    270 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    271 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    272 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    273 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    274 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    275 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    276 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    277 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    278 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    279 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    280 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    281 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    282 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    283 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    284 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    285 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    286 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    287 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    288 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    289 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    290 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    291 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    292 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    293 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    294 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    295 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    296 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    297 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    298 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    299 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    300 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    301 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    302 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    303 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    304 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    305 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    306 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    307 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    308 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    309 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    310 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    311 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    312 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    313 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    314 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    315 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    316 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    317 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    318 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    319 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    320 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    321 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    322 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    323 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    324 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    325 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    326 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    327 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    328 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    329 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    330 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    331 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    332 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    333 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    334 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    335 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    336 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    337 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    338 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    339 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    340 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    341 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    342 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    343 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    344 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    345 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    346 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    347 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    348 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    349 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    350 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    351 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    352 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    353 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    354 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    355 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    356 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    357 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    358 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    359 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    360 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    361 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    362 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    363 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    364 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    365 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    366 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    367 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    368 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    369 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    370 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    371 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    372 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    373 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    374 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    375 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    376 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    377 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    378 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    379 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    380 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    381 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    382 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    383 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    384 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    385 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    386 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    387 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    388 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    389 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    390 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    391 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    392 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    393 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    394 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    395 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    396 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    397 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    398 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    399 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    400 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    401 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    402 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    403 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    404 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    405 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    406 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    407 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    408 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    409 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    410 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    411 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    412 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    413 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    414 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    415 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    416 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    417 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    418 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    419 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    420 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    421 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    422 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    423 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    424 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    425 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    426 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    427 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    428 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    429 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    430 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    431 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    432 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    433 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    434 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    435 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    436 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    437 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    438 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    439 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    440 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    441 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    442 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    443 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    444 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    445 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    446 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    447 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    448 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    449 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    450 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    451 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    452 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    453 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    454 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    455 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    456 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    457 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    458 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    459 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    460 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    461 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    462 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    463 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    464 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    465 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    466 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    467 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    468 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    469 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    470 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    471 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    472 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    473 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    474 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    475 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    476 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    477 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    478 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    479 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    480 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    481 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    482 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    483 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    484 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    485 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    486 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    487 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    488 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    489 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    490 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    491 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    492 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    493 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    494 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    495 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    496 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    497 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    498 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    499 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    500 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    501 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    502 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    503 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    504 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    505 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    506 com.apple.CoreFoundation 0x90838c0e __CFBinaryPlistCreateObject + 2785
    507 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    508 com.apple.CoreFoundation 0x9083904e __CFBinaryPlistCreateObject + 3873
    Thread 1:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92820d3a -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x92820c36 -[NSRunLoop run] + 75
    5 com.apple.WebKit 0x94d2bb89 +[WebFileDatabase _syncLoop:] + 198
    6 com.apple.Foundation 0x927eb2e0 forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92820a0f +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4 com.apple.Foundation 0x927eb2e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92847bc2 +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x927eb2e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x9284126c -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.Syndication 0x99efa966 -[AsyncDB _run:] + 181
    3 com.apple.Foundation 0x927eb2e0 forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x9001a1cc select + 12
    1 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x9083813e ecx: 0x15b9c997 edx: 0x00000000
    edi: 0x00000000 esi: 0x00000000 ebp: 0xbf800188 esp: 0xbf7ffd10
    ss: 0x0000001f efl: 0x00010282 eip: 0x9080bd7b cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0xdbfff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x54f000 - 0x550fff com.1passwd.InputManager ??? (1.0) /Users/Dad1/Library/InputManagers/1PasswdIM/1PasswdIM.bundle/Contents/MacOS/1Pa sswdIM
    0x55d000 - 0x564fff com.unsanity.smartcrashreports Smart Crash Reports version 1.2.1 (1.2.1) /Users/Dad1/Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x56f000 - 0x570fff com.apple.MIDIDevicePlugIn.iControl ??? (77) /Library/InputManagers/ProfcastGaragebandPlugin/ProfcastGaragebandPlugin.bundle /Contents/MacOS/ProfcastGaragebandPlugin
    0x705000 - 0x740fff com.onepasswd.onepasswdsafaribundle 2.4.13 (5170) /Applications/1Passwd.app/Contents/Extensions/OnePasswdSafari.bundle/Contents/M acOS/OnePasswdSafari
    0x16b78000 - 0x16beafff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x16e05000 - 0x17328fff com.macromedia.Flash Player.plugin 9.0.28 (1.0.4f22) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x41410000 - 0x414adfff com.apple.QuickTimeImporters.component 7.2 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x8fe00000 - 0x8fe4afff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.26 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91007000 - 0x91046fff com.apple.CFNetwork 129.21 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91059000 - 0x91069fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91074000 - 0x910f2fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91127000 - 0x91145fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91151000 - 0x9115ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91162000 - 0x91301fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913ff000 - 0x91407fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9140e000 - 0x91415fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91419000 - 0x9143ffff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91451000 - 0x914c7fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91518000 - 0x91518fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9151a000 - 0x91545fff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91558000 - 0x9162cfff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91667000 - 0x916dafff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91708000 - 0x917b1fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917d7000 - 0x91822fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91841000 - 0x91857fff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91863000 - 0x9187dfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91887000 - 0x918c4fff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918d8000 - 0x918e4fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918eb000 - 0x9192bfff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9193e000 - 0x919f0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a36000 - 0x91a4cfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a51000 - 0x91a6ffff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a74000 - 0x91ad3fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91ae5000 - 0x91ae9fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91aeb000 - 0x91b71fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b75000 - 0x91bb2fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bb8000 - 0x91bd2fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bd7000 - 0x91bd9fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bdb000 - 0x91cb9fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cd6000 - 0x91cd6fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cd8000 - 0x91d66fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d6d000 - 0x91d6dfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d6f000 - 0x91dc8fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dd1000 - 0x91df5fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91dfd000 - 0x92206fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92240000 - 0x925f4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92621000 - 0x9270efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92710000 - 0x9278dfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927ce000 - 0x929fefff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b18000 - 0x92b2ffff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b3a000 - 0x92b92fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92ba6000 - 0x92ba6fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92ba8000 - 0x92bb8fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bc7000 - 0x92bcffff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bd5000 - 0x92bdafff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92be0000 - 0x92c71fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c85000 - 0x92c88fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c8b000 - 0x92ca9fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cbb000 - 0x92cc1fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cc7000 - 0x92d2afff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d4e000 - 0x92d8ffff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92db6000 - 0x92dc3fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dca000 - 0x92dcffff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dd4000 - 0x930c9fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931cf000 - 0x931dafff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931df000 - 0x931fafff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9324a000 - 0x9324afff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9324c000 - 0x93902fff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c83000 - 0x93cfefff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d37000 - 0x93df1fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e34000 - 0x93e34fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e36000 - 0x93ff7fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9403d000 - 0x9407efff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94086000 - 0x940c0fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940c5000 - 0x940dbfff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94173000 - 0x941b1fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x941f5000 - 0x94206fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94214000 - 0x94252fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9426e000 - 0x9427dfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94284000 - 0x9428ffff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942db000 - 0x942f5fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x942fb000 - 0x94604fff com.apple.QuickTime 7.2.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94786000 - 0x948ccfff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94958000 - 0x94967fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9496e000 - 0x94997fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9499d000 - 0x949acfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949b0000 - 0x949d5fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x949e1000 - 0x949fefff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94d29000 - 0x94dbcfff com.apple.WebKit 419.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e16000 - 0x94e96fff com.apple.JavaScriptCore 418.6.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94ecf000 - 0x951aefff com.apple.WebCore 418.23 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9532d000 - 0x95350fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9665e000 - 0x9665efff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96cc9000 - 0x96ccefff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97054000 - 0x97068fff com.apple.audio.CoreAudioKit 1.0.1 /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x97fd2000 - 0x98e36fff com.apple.QuickTimeComponents.component 7.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99ef8000 - 0x99f2ffff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x99f4b000 - 0x99f5dfff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Model: MacBook1,1, BootROM MB11.0061.B03, 2 processors, Intel Core Duo, 2 GHz, 2 GB
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplaysintegratedvram
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x86), 1.1.9.3
    Bluetooth: Version 1.9.0f8, 2 service, 1 devices, 2 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS541616J9SA00, 149.05 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    I hope this is helpful.
    BTW - earlier in the process I had noticed all the "plist" errors in the crash report, so I remove the Safari plist file from my Library and restarted Safari, but this did not seem to help)

  • Why does Gimp Crash on Text Editing?

    Every time I open Gimp 2.8 (Mac Package) and try to edit text, it crashes. I Have the same issue with Photoshop CS5. Here is the error log using Gimp 2.8:
    Process:         X11.bin [5646]
    Path:            /Applications/Utilities/X11.app/Contents/MacOS/X11.bin
    Identifier:      org.x.X11
    Version:         2.3.6 (2.3.6)
    Build Info:      X11server-850300~2
    Code Type:       X86-64 (Native)
    Parent Process:  Xquartz [5643]
    Date/Time:       2012-05-11 10:29:39.539 +0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          10889 sec
    Crashes Since Last Report:           8
    Per-App Interval Since Last Report:  3701 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      00AEB68B-72E9-4A9A-812A-B2C773A30E8D
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    Crashed Thread:  2
    Application Specific Information:
    X.Org X Server 1.4.2-apple56 Build Date: 20100624
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff83069d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff8306a3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff81b5b902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff81b5ad8f CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox                     0x00007fff815697ee RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox                     0x00007fff815695f3 ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox                     0x00007fff815694ac BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit                        0x00007fff8978eeb2 _DPSNextEvent + 708
    8   com.apple.AppKit                        0x00007fff8978e801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.AppKit                        0x00007fff8975468f -[NSApplication run] + 395
    10  X11.bin                                 0x0000000100007035 X11ApplicationMain + 1210
    11  X11.bin                                 0x000000010001136d server_main + 217
    12  X11.bin                                 0x000000010000180d do_start_x11_server + 321
    13  X11.bin                                 0x00000001000024e0 _Xstart_x11_server + 143
    14  X11.bin                                 0x0000000100002352 mach_startup_server + 106
    15  libSystem.B.dylib                       0x00007fff830e69a8 mach_msg_server + 357
    16  X11.bin                                 0x000000010000228b main + 1378
    17  X11.bin                                 0x0000000100001268 start + 52
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff83082c0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff83084add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff830847b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff830842de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff83083c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff83083aa5 start_wqthread + 13
    Thread 2 Crashed:
    0   X11.bin                                 0x000000010001bc1b RootlessComposite + 129
    1   X11.bin                                 0x00000001000bab39 ProcRenderComposite + 374
    2   X11.bin                                 0x000000010005b781 Dispatch + 751
    3   X11.bin                                 0x0000000100069cac dix_main + 1309
    4   X11.bin                                 0x000000010001149e server_thread + 50
    5   libSystem.B.dylib                       0x00007fff830a2fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff830a2e89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff83069d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff8306a3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff81b5b902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff81b5ad8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation                0x00007fff81b5ab16 CFRunLoopRun + 70
    5   X11.bin                                 0x0000000100020469 xpbproxy_run + 554
    6   X11.bin                                 0x0000000100007065 xpbproxy_x_thread + 9
    7   libSystem.B.dylib                       0x00007fff830a2fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff830a2e89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff830a4a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff830a8881 _pthread_cond_wait + 1286
    2   X11.bin                                 0x000000010000dcf7 DarwinProcessFDAdditionQueue_thread + 89
    3   libSystem.B.dylib                       0x00007fff830a2fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff830a2e89 thread_start + 13
    Thread 5:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff830ad932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff81b7d468 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff830a2fd6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff830a2e89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff830a4a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff830a8881 _pthread_cond_wait + 1286
    2   libXplugin.1.dylib                      0x0000000100403f45 _xp_async_dequeue + 40
    3   libXplugin.1.dylib                      0x000000010040401d _xp_async_thread + 52
    4   libSystem.B.dylib                       0x00007fff830a2fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff830a2e89 thread_start + 13
    Thread 2 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000115b0cb10  rcx: 0x00000001011a4960  rdx: 0x00000001161cb000
      rdi: 0x0000000000000003  rsi: 0x0000000115b1e790  rbp: 0x00000001015dcd80  rsp: 0x00000001015dccf0
       r8: 0x00000000000000cf   r9: 0x000000000000003c  r10: 0x0000000000000001  r11: 0x000000010001bb9a
      r12: 0x0000000115f26bbc  r13: 0x00000001011a3610  r14: 0x0000000115b1c770  r15: 0x0000000000000000
      rip: 0x000000010001bc1b  rfl: 0x0000000000010202  cr2: 0x0000000000000000
    Binary Images:
           0x100000000 -        0x100194fe7 +X11.bin ??? (???) <032FDD65-EA0E-2932-4761-2DE877724B65> /Applications/Utilities/X11.app/Contents/MacOS/X11.bin
           0x100238000 -        0x100239ff7 +libAppleWM.7.dylib 8.0.0 (compatibility 8.0.0) <5A0C8860-0429-A0EE-E331-BFE805C2E96D> /usr/X11/lib/libAppleWM.7.dylib
           0x10023d000 -        0x100240fff +libXfixes.3.dylib 5.0.0 (compatibility 5.0.0) <B0DB1FAD-D228-EAD0-DAC3-C16881800743> /usr/X11/lib/libXfixes.3.dylib
           0x100245000 -        0x100356ff7 +libX11.6.dylib 9.0.0 (compatibility 9.0.0) <BE409E2D-CD46-0CA7-1E57-431ACF806B26> /usr/X11/lib/libX11.6.dylib
           0x10037c000 -        0x1003abff7 +libXfont.1.dylib 6.1.0 (compatibility 6.0.0) <BCD26E94-887C-986A-EFEF-B3F5608F1353> /usr/X11/lib/libXfont.1.dylib
           0x1003ba000 -        0x1003bbff7 +libXau.6.dylib 7.0.0 (compatibility 7.0.0) <2010E56D-ED77-CD5C-A979-D67E9DFB9579> /usr/X11/lib/libXau.6.dylib
           0x1003bf000 -        0x1003c2ff7 +libfontenc.1.dylib 2.0.0 (compatibility 2.0.0) <882C12AB-1E35-6EEE-A5CA-AC08317274F4> /usr/X11/lib/libfontenc.1.dylib
           0x1003c8000 -        0x1003f1fff +libpixman-1.0.dylib 15.0.0 (compatibility 15.0.0) <2419392D-4ACB-691D-543F-81DD108F6C7C> /usr/X11/lib/libpixman-1.0.dylib
           0x1003fb000 -        0x1003fefef +libXdmcp.6.dylib 7.0.0 (compatibility 7.0.0) <FCE923AB-FABB-0CAC-1F0B-5EA7653C89EC> /usr/X11/lib/libXdmcp.6.dylib
           0x100403000 -        0x100410fe7  libXplugin.1.dylib ??? (???) <7FDB669E-38B2-4817-A67A-608C04E34663> /usr/lib/libXplugin.1.dylib
           0x10041a000 -        0x100426ff7 +libXext.6.dylib 11.0.0 (compatibility 11.0.0) <D5CFAC2D-28BC-744B-FD5F-DD5E7C72F301> /usr/X11/lib/libXext.6.dylib
           0x10042d000 -        0x1004a8ff7 +libfreetype.6.dylib 14.2.0 (compatibility 14.0.0) <AF8BF383-1D83-3E37-4035-3438FAE1826D> /usr/X11/lib/libfreetype.6.dylib
           0x1007ec000 -        0x1007f0fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
           0x1007f5000 -        0x1007fbff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <C35BDA60-35FC-4BE7-B378-DCC73D99E2C9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
           0x1017bc000 -        0x1017e2fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
           0x11486f000 -        0x114a02fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x114a33000 -        0x114e56fef  libclh.dylib 3.1.1 C  (3.1.1) <432F5475-F934-92A0-FB49-78F03DA82176> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x200000000 -        0x200787fe7  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80020ff7  libPng.dylib ??? (???) <A6D093D2-CA9D-2035-9C11-0AE98585C6F1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff80021000 -     0x7fff8005cfff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
        0x7fff801b6000 -     0x7fff802d5fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff802d6000 -     0x7fff802f1ff7  com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
        0x7fff8153b000 -     0x7fff81839fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
        0x7fff81857000 -     0x7fff81914fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
        0x7fff81915000 -     0x7fff81919ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff81ac2000 -     0x7fff81b0efff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff81b0f000 -     0x7fff81c86fe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff81c87000 -     0x7fff81cdcff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff81d29000 -     0x7fff81d30fff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff81d56000 -     0x7fff82452ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff82453000 -     0x7fff82458ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
        0x7fff82459000 -     0x7fff8246dff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8246e000 -     0x7fff826f0fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8275e000 -     0x7fff829e8fe7  com.apple.security 6.1.2 (55002) <FD0B5AD4-74DB-7ED8-90D3-6EC56FFA8557> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82a6c000 -     0x7fff82a72ff7  IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff82a8f000 -     0x7fff82a92ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff82a93000 -     0x7fff82ab3ff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff82ab4000 -     0x7fff82acdfff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
        0x7fff82ace000 -     0x7fff82b2efe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff82bc5000 -     0x7fff82bc6ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff82bc7000 -     0x7fff82c10fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff82dbb000 -     0x7fff82dbeff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
        0x7fff82dbf000 -     0x7fff82e5ffff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
        0x7fff82e60000 -     0x7fff82f22fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff83069000 -     0x7fff8322afef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff8322b000 -     0x7fff832a9ff7  com.apple.CoreText 151.12 (???) <5BE797B7-C903-B664-ADD9-7514B1A6EF9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff83495000 -     0x7fff8351aff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
        0x7fff8351b000 -     0x7fff83543fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
        0x7fff83544000 -     0x7fff83593fef  libTIFF.dylib ??? (???) <2DDC5A18-35EE-5B59-10D8-0F6925DB3858> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff83611000 -     0x7fff83a54fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
        0x7fff83a55000 -     0x7fff83a64fef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff83a65000 -     0x7fff83a7cfff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
        0x7fff83a7d000 -     0x7fff83afcfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff83afd000 -     0x7fff83afdff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff83b2a000 -     0x7fff83b4fff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83b87000 -     0x7fff83b9dfe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
        0x7fff83e42000 -     0x7fff83e58fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff83ece000 -     0x7fff83eceff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff8409e000 -     0x7fff840bffff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff841b9000 -     0x7fff841e4ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff841e5000 -     0x7fff84218ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff842d1000 -     0x7fff842d5ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff842d6000 -     0x7fff842e5fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff842e6000 -     0x7fff844a4ff7  com.apple.ImageIO.framework 3.0.5 (3.0.5) <4CF96F2C-B7BB-4C57-E352-3C678CA2B2B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff845ae000 -     0x7fff84682fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff84683000 -     0x7fff84713fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
        0x7fff84714000 -     0x7fff847f9fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
        0x7fff847fa000 -     0x7fff849b8fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff84aac000 -     0x7fff84afbff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
        0x7fff84cfb000 -     0x7fff84cfdfff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
        0x7fff84cfe000 -     0x7fff84d13ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff84d14000 -     0x7fff84d37fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff84e39000 -     0x7fff84e3aff7  com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
        0x7fff84e3b000 -     0x7fff84e3bff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff84e3c000 -     0x7fff84e50fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff84eb9000 -     0x7fff84ecbfe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff84f93000 -     0x7fff84fdbff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
        0x7fff85387000 -     0x7fff8549efef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff85cdf000 -     0x7fff85da0fef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
        0x7fff85e02000 -     0x7fff85ebbfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff85ebc000 -     0x7fff85ff1fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff85ff2000 -     0x7fff85ffdff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
        0x7fff8638a000 -     0x7fff8638ffff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff86b25000 -     0x7fff86b32fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff86b33000 -     0x7fff86b36fff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
        0x7fff86c04000 -     0x7fff86f38fef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
        0x7fff86f88000 -     0x7fff870c6fff  com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff87a47000 -     0x7fff87a4cfff  libGIF.dylib ??? (???) <1888A176-22D5-C663-22D0-336D9D213BD6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff87a7d000 -     0x7fff87e1afe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff87e1b000 -     0x7fff87e1cfff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff87e65000 -     0x7fff87e65ff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff87e66000 -     0x7fff87f1bfe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
        0x7fff87f1c000 -     0x7fff87f2aff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff87f2b000 -     0x7fff87f6eff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff87f85000 -     0x7fff87fbffff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
        0x7fff87fc0000 -     0x7fff87ffefe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff87fff000 -     0x7fff880b5ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff8887f000 -     0x7fff89089fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
        0x7fff8908a000 -     0x7fff890d4ff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
        0x7fff890d5000 -     0x7fff890d7fff  libRadiance.dylib ??? (???) <E08CD209-E3E4-2753-AF8A-90DD12ED556F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff891b1000 -     0x7fff8921bfe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
        0x7fff89221000 -     0x7fff89232ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff89268000 -     0x7fff89268ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff89269000 -     0x7fff8926fff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff89531000 -     0x7fff89531ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff89532000 -     0x7fff89559ff7  libJPEG.dylib ??? (???) <921A3A14-A69B-F393-1678-5A5D32D4BDF2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8955a000 -     0x7fff8959bfef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
        0x7fff8959c000 -     0x7fff895efff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
        0x7fff8967e000 -     0x7fff896affff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff896b0000 -     0x7fff8974afff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
        0x7fff8974b000 -     0x7fff8a145ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8a2fb000 -     0x7fff8a2fbff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8a2fc000 -     0x7fff8a379fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff8a37a000 -     0x7fff8a3c1ff7  com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8a482000 -     0x7fff8a59cfff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
        0x7fff8a5b6000 -     0x7fff8a642fef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff8a643000 -     0x7fff8a684fff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff8a685000 -     0x7fff8a691fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
        0x7fff8a69e000 -     0x7fff8a77bfff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
        0x7fff8a7a9000 -     0x7fff8a7afff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
        0x7fff8a7b0000 -     0x7fff8a860fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,3, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.8 GHz, 4 GB, SMC 1.48f2
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: iPhone USB, Ethernet, en2
    Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: iPhone, 0x05ac  (Apple Inc.), 0x1297, 0x24100000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000 / 5
    This issue is really driving me nuts. I reinstalled PS CS5 several times, emptied font cache and check the harddisk for issues. No change at all. (aLmost) Every time I want to edit a text area in Gimp or Photoshop the programs crashes.

    You don't say if you compiled Gimp yourself, or installed the pre-compiled version from http://gimp.lisanet.de/Website/News/News.html
    At any rate, this issue also appeared for the pre-compiled version, and it was determined the version of X11 in Snow Leopard is out of date and has a bug which causes Gimp to crash when the text tool or the curves tool is used.  The work-around is to install at least version 2.7.1 or newer of XQuartz:
    http://xquartz.macosforge.org/landing/
    The Xquartz link on the Gimp on OS X site is incorrect, the one above works. The latest version of the pre-compiled Gimp includes a check to see if Xquartz is installed, if not, provides a downloaad link for it.  Note you need to log out/ back in or restart for the change to take effect after installing Xquartz.  I'm running XQuartz 2.7.2_rc2 under 10.6.8 and the Gimp runs fine.

  • FYI: Premiere 7 repeatable crash solved - nVidia issue

    Here is my story of hair pulling / frustration today.
    Symptoms:
    Windows 7 x64 / 12 GB RAM / RAID-0 / Flash drive / blah blah blah, my system hardware and OS are solid
    Premiere 7 worked fine yesterday
    Today Premiere 7 will crash anytime the Edit >> Effects tab or Edit >> Titles tab is selected
    Tried all the recommended vodoo in the articles, and nothing worked.
    Uninstall / re-install did not work
    Debugging error with Visual Studio shows a stack overflow error
    Folder  Users\<username>\AppData\Roaming\Adobe\Premiere Elements creates a mysterious new folder "G167 - 9-16-2008" everytime it crashes.
    In this folder is a file called "Trace Database.txt" which has the following text:
    ASL.MessagingService    1    5
    Master    1    10
    Most event viewer crash report entries show the following, no help:
    However on a second look, this entry was found in the sea of crash reports:
    Resolution:
    nvSCPAPI.dll is a 3D glasses driver / application nVidia installs by default with their driver.
    Yesterday I disabled it using an nVidia start menu application because I have no use for it
    Disabling this feature caused the Premiere crashes (of course it did, woudln't that be obvious to anyone?)
    Uninstalling the nVidia 3D vision application resolved the problem.

    Wish PE7 had an x64 version of the software, I have got memory low warnings several times now when it bumped up against 2 GB of used memory.
    I'm guessing that PrPro CS5 will be 64-bit, but some of that might be predicated on the actual release of Win7, and how well MS has done their SDK kit. If that happens (could also be CS5.5, or similar), I cannot imagine that PrE will be far behind.
    Adobe has been doing surveys of PrPro users and several of the questions in each have been around "would you accept a 64-bit ONLY program?" Obviously, that would shut the upgrade door on many, until they migrated to a 64-bit OS. That might be more of an issue with the population of PrE users, as they would be less likely to run out and buy a new workstation for this program. Still, many folk, who are new to NLE's, are springing for some flavor of 64-bit for other reasons. Only Adobe's surveys and some good guesses by marketing, can determine their path.
    Now, let's talk about your resources. I have 4GB on both machines (one with the 3GB switch, and one without). Still, we're not talking that much more RAM than you have.
    I have a plan, that I implement on all machines, and then employ when I am doing editing:
    The first thing that I do, before I do any editing, is clean out my system, using MSCONFIG to eliminate all unnecessary programs and Processes at boot. These are things like MS Messenger, iTunes Helper, Bonjour Services (I do need this for one progarm on my laptop, so I keep it there), and the like. These are little things that are usually installed by the OS, other programs, or the folk, who build the machine. Unless subsequent installs add this sort of stuff back, this is a one-shot deal.
    Next, I manually Exit from my AV, spyware sweepers and pop-up blockers.
    Last, I run a little utility, called EndItAll2, to then shut down all unnecessary programs and Processes (on a session basis, and not permanently, like MSCONFIG), prior to editing.
    This gets my machine in as lean, clean and mean a status, as I can. Then, I edit.
    I routinely work on some monster Projects with up to 8+ hours of material on the Timelines and 1000's of Assets. To date, I have never had one "out of resources" error. I am, however, doing SD Projects only - no HD yet.
    Don't know what programs/Processes you might have loaded, but that would be one of the first places that I'd look - if you have not done so already.
    Good luck,
    Hunt

  • Logic 9.1.8 & Mainstage 2 - crashing frequently/audio issues

    I have just uprgraded to this set up (though using the same sound card as I did on my Mac Book with Logic 8 & Snow Leopard prevously) - in order to avoid overloading which was happening on my previousl set up.. only to find that this new system seems very buggy - crashes frequently on Logic  (Sudden Motion Sensor error - have disabled that now) and Main Stage freezes. Then a wierd echoey sound can happen - whereby any audio is echoed back from DAW, in Logic AND Mainstage.
    I have down loaded two plug-ins/VST's since starting to use this new set up - an XILS Lab L.E. verision and a Crystal synth. I've downloaded the up to date Duet drivers from Apogee. (I have an Duet 1.5 that I used with my old set).
    Have looked at the Console system log to try and understand what might be happening - it is FULL of text on occasions when Logic crashes  - I am not tech savvy enough to unpick it though.
    If anyone has any suggestions to help I would be grateful, thanks.
    I do wonder if it is a Core audio issue though - given the echoiing that seems to occur...

    I have just uprgraded to this set up (though using the same sound card as I did on my Mac Book with Logic 8 & Snow Leopard prevously) - in order to avoid overloading which was happening on my previousl set up.. only to find that this new system seems very buggy - crashes frequently on Logic  (Sudden Motion Sensor error - have disabled that now) and Main Stage freezes. Then a wierd echoey sound can happen - whereby any audio is echoed back from DAW, in Logic AND Mainstage.
    I have down loaded two plug-ins/VST's since starting to use this new set up - an XILS Lab L.E. verision and a Crystal synth. I've downloaded the up to date Duet drivers from Apogee. (I have an Duet 1.5 that I used with my old set).
    Have looked at the Console system log to try and understand what might be happening - it is FULL of text on occasions when Logic crashes  - I am not tech savvy enough to unpick it though.
    If anyone has any suggestions to help I would be grateful, thanks.
    I do wonder if it is a Core audio issue though - given the echoiing that seems to occur...

  • Path Selection issue in Table Test

    Hi All
    I got issue in adding Form actions (ex:- Table test, Text matching test ) in my Oracle Forms and report product. It is not selecting the Path..
    Can any one suggest why the Path is not selecting ...?
    Appreciate your feed back.
    Regards,
    Sairam

    Hi Deepu,
    Please find the code below while doing text matching test
    web.window("//forms:window[(@name='WIN1')]").verifyText(
                                  "uniform", "365", Source.DisplayContent,
                                  TextPresence.PassIfPresent, MatchOption.Exact);
    Regards,
    Sairam

Maybe you are looking for

  • What is available free memory in skeleton air application?

    hi, My pc has 12 gb. I was developing full scale DESKTOP adobe air app and it started to crash on mousemove. So basically i wanted to see whats available free memory  it was showing 50mb that was too low for my app to process data. So i went back and

  • BDC Programming

    HI All,   I am getting  'Formatting error in KETDAT(Required Delivery Date)' field while creating salesorder for given recording in BDC programm.i am giving data through a RFC which is having structures same as BAPI_SALESORDER_CREATEFROMDAT2 . (i am

  • Fresh 'out of the box' R12.1.1 vision install on Linux 4

    On first connecting to the Apps using Internet Explorer - I get to the login page enter sysadmin/sysadmin, click Login. The browser thinks about it for a second and then returns to the login screen. No errors reported. It just doesn't progress to res

  • IMovie 11 crashes when exporting to Quicktime

    iMovie 11 crashes when exporting to Quicktime.  Some people have posted that this problem disappeared when they upgraded from Lion to Mountain Lion.  However, I am running Mt.Lion and it still happens.  If there is no fix for this bug, does anyone kn

  • Enterprise License - provisional profile expiration issue-- Need Help

    We have enterprise License through which a provisional profile was created to generate .ipa and install that .ipa to employees ipads. Provisional Profile getting expire today (7th Feb'14). 1. Do this expiration will stop the already installed applica