C language and 'wide' chars handling crashes

We are internationalizing our product and have run into an issue that I hope someone will have some ideas about. The problem is that when we are using foreign keyboards with our internationalized app, some of the keys (e.g. Cedilla on French keyboard) cause our app to crash. I have debugged the issue to a call to C toupper() and verified that its only an issue with 64 bit opteron (not 32 sparc). Upon doing some research it turns out that towupper() should be used instead to deal with these 'wide' characters. Since changing this and the many libc family calls (e.g. strlen, strcat, strstr, isalpha, isalnum) in our codebase would be a rather large task with some potential unintended side-effects for the stateful returns, we are hoping there is another approach. Anyone out there have any suggestions before I start a mass find & replace & fix.
Thanks,
Mike

Congrats to Magnus and Andy!
 Visual C# Technical Guru - February 2015  
Magnus (MM8)
C#: Enumerating collections that change
Jaliya Udagedara: "Great article. Has a thorough and to the point explanation of problem and the solution with code samples. Loved it!"
Carmelo La Monica: "Very useful and exhaustive about errors at runtime in these circumstances. Congratulations"
Andy ONeill
c#: Practical Poly
Carmelo La Monica: "Fantastic artcle. Very detailed and exhaustive, congratulations ."
Jaliya Udagedara: "Definitely worth reading this. Explains somewhat advance topic along with a fundamental concept of programming. "
Ed Price, Azure & Power BI Customer Program Manager (Blog,
Small Basic,
Wiki Ninjas,
Wiki)
Answer an interesting question?
Create a wiki article about it!

Similar Messages

  • Recently updated to 3.8.2 v1.1 and since then my mac crashes a lot, and can't handle simple tasks. Has anyone else had this problem?

    I recently got told about the new software update for OS Yosemite.  It was version 3.8.2 v1.1 and since then my mac crashes a lot, and can't handle simple tasks. Like playing a 3 minute song, checking emails, and even whilst typing this its crashed so many more times than i've lost count. Has anyone else had this problem? And what do you recommend I do?

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

  • [SOLVED] After a crash, my languages and keyboard layouts are gone!

    So my CPU hanged, I rebooted, unfortunatelly a lot of my personal (and perhaps system) files were corrupted. All my personal GNOME settings were set to default. I had to wipe out the entire ~/.config/dconf folder in order to regain the capability to customize everything again. So all was left behind was my keyboard layout. So I went to `Regions and Languages` and... all but the system language (English) options were gone, including the layouts!
    I just reinstalled the groups gnome and gnome-extra, no to avail
    What can I do?
    edit: stupid me! The layouts were 'hidden' in the tiny window size of the thing!
    Last edited by lmello (2013-07-16 16:59:33)

    Backing up and Restoring Bookmarks
    * https://support.mozilla.com/en-US/kb/Backing%20up%20and%20restoring%20bookmarks
    Importing Bookmarks from an HTML File
    * https://support.mozilla.com/en-US/kb/Importing%20Bookmarks%20from%20an%20HTML%20File
    Lost Bookmarks
    * https://support.mozilla.com/en-US/kb/Lost%20Bookmarks
    Recovering important data from an old profile
    * https://support.mozilla.com/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile
    Check and tell if its working.

  • ASCII character/string processing and performance - char[] versus String?

    Hello everyone
    I am relative novice to Java, I have procedural C programming background.
    I am reading many very large (many GB) comma/double-quote separated ASCII CSV text files and performing various kinds of pre-processing on them, prior to loading into the database.
    I am using Java7 (the latest) and using NIO.2.
    The IO performance is fine.
    My question is regarding performance of using char[i] arrays versus Strings and StringBuilder classes using charAt() methods.
    I read a file, one line/record at a time and then I process it. The regex is not an option (too slow and can not handle all cases I need to cover).
    I noticed that accessing a single character of a given String (or StringBuilder too) class using String.charAt(i) methods is several times (5 times+?) slower than referring to a char of an array with index.
    My question: is this correct observation re charAt() versus char[i] performance difference or am I doing something wrong in case of a String class?
    What is the best way (performance) to process character strings inside Java if I need to process them one character at a time ?
    Is there another approach that I should consider?
    Many thanks in advance

    >
    Once I took that String.length() method out of the 'for loop' and used integer length local variable, as you have in your code, the performance is very close between array of char and String charAt() approaches.
    >
    You are still worrying about something that is irrevelant in the greater scheme of things.
    It doesn't matter how fast the CPU processing of the data is if it is faster than you can write the data to the sink. The process is:
    1. read data into memory
    2. manipulate that data
    3. write data to a sink (database, file, network)
    The reading and writing of the data are going to be tens of thousands of times slower than any CPU you will be using. That read/write part of the process is the limiting factor of your throughput; not the CPU manipulation of step #2.
    Step #2 can only go as fast as steps #1 and #3 permit.
    Like I said above:
    >
    The best 'file to database' performance you could hope to achieve would be loading simple, 'known to be clean', record of a file into ONE table column defined, perhaps, as VARCHAR2(1000); that is, with NO processing of the record at all to determine column boundaries.
    That performance would be the standard you would measure all others against and would typically be in the hundreds of thousands or millions of records per minute.
    What you would find is that you can perform one heck of a lot of processing on each record without slowing that 'read and load' process down at all.
    >
    Regardless of the sink (DB, file, network) when you are designing data transport services you need to identify the 'slowest' parts. Those are the 'weak links' in the data chain. Once you have identified and tuned those parts the performance of any other step merely needs to be 'slightly' better to avoid becoming a bottleneck.
    That CPU part for step #2 is only rarely, if every the problem. Don't even consider it for specialized tuning until you demonstrate that it is needed.
    Besides, if your code is properly designed and modularized you should be able to 'plug n play' different parse and transform components after the framework is complete and in the performance test stage.
    >
    The only thing that is fixed is that all input files are ASCII (not Unicode) characters in range of 'space' to '~' (decimal 32-126) or common control characters like CR,LF,etc.
    >
    Then you could use byte arrays and byte processing to determine the record boundaries even if you then use String processing for the rest of the manipulation.
    That is what my framework does. You define the character set of the file and a 'set' of allowable record delimiters as Strings in that character set. There can be multiple possible record delimiters and each one can be multi-character (e.g. you can use 'XyZ' if you want.
    The delimiter set is converted to byte arrays and the file is read using RandomAccessFile and double-buffering and a multiple mark/reset functionality. The buffers are then searched for one of the delimiter byte arrays and the location of the delimiter is saved. The resulting byte array is then saved as a 'physical record'.
    Those 'physical records' are then processed to create 'logical records'. The distinction is due to possible embedded record delimiters as you mentioned. One logical record might appear as two physical records if a field has an embedded record delimiter. That is resolved easily since each logical record in the file MUST have the same number of fields.
    So a record with an embedded delimiter will have few fields than required meaning it needs to be combined with one, or more of the following records.
    >
    My files have no metadata, some are comma delimited and some comma and double quote delimited together, to protect the embedded commas inside columns.
    >
    I didn't mean the files themselves needed to contain metadata. I just meant that YOU need to know what metadata to use. For example you need to know that there should ultimately be 10 fields for each record. The file itself may have fewer physical fields due to TRAILING NULLCOS whereby all consecutive NULL fields at the of a record do not need to be present.
    >
    The number of columns in a file is variable and each line in any one file can have a different number of columns. Ragged columns.
    There may be repeated null columns in any like ,,, or "","","" or any combination of the above.
    There may also be spaces between delimiters.
    The files may be UNIX/Linux terminated or Windows Server terminated (CR/LF or CR or LF).
    >
    All of those are basic requirements and none of them present any real issue or problem.
    >
    To make it even harder, there may be embedded LF characters inside the double quoted columns too, which need to be caught and weeded out.
    >
    That only makes it 'harder' in the sense that virtually NONE of the standard software available for processing delimited files take that into account. There have been some attempts (you can find them on the net) for using various 'escaping' techniques to escape those characters where they occur but none of them ever caught on and I have never found any in widespread use.
    The main reason for that is that the software used to create the files to begin with isn't written to ADD the escape characters but is written on the assumption that they won't be needed.
    That read/write for 'escaped' files has to be done in pairs. You need a writer that can write escapes and a matching reader to read them.
    Even the latest version of Informatica and DataStage cannot export a simple one column table that contains an embedded record delimiter and read it back properly. Those tools simply have NO functionality to let you even TRY to detect that embedded delimiters exist let alone do any about it by escaping those characters. I gave up back in the '90s trying to convince the Informatica folk to add that functionality to their tool. It would be simple to do.
    >
    Some numeric columns will also need processing to handle currency signs and numeric formats that are not valid for the database inpu.
    It does not feel like a job for RegEx (I want to be able to maintain the code and complex Regex is often 'write-only' code that a 9200bpm modem would be proud of!) and I don't think PL/SQL will be any faster or easier than Java for this sort of character based work.
    >
    Actually for 'validating' that a string of characters conforms (or not) to a particular format is an excellent application of regular expressions. Though, as you suggest, the actual parsing of a valid string to extract the data is not well-suited for RegEx. That is more appropriate for a custom format class that implements the proper business rules.
    You are correct that PL/SQL is NOT the language to use for such string parsing. However, Oracle does support Java stored procedures so that could be done in the database. I would only recommend pursuing that approach if you were already needing to perform some substantial data validation or processing the DB to begin with.
    >
    I have no control over format of the incoming files, they are coming from all sorts of legacy systems, many from IBM mainframes or AS/400 series, for example. Others from Solaris and Windows.
    >
    Not a problem. You just need to know what the format is so you can parse it properly.
    >
    Some files will be small, some many GB in size.
    >
    Not really relevant except as it relates to the need to SINK the data at some point. The larger the amount of SOURCE data the sooner you need to SINK it to make room for the rest.
    Unfortunately, the very nature of delimited data with varying record lengths and possible embedded delimiters means that you can't really chunk the file to support parallel read operations effectively.
    You need to focus on designing the proper architecture to create a modular framework of readers, writers, parsers, formatters, etc. Your concern with details about String versus Array are way premature at best.
    My framework has been doing what you are proposing and has been in use for over 20 years by three different major nternational clients. I have never had any issues with the level of detail you have asked about in this thread.
    Throughout is limited by the performance of the SOURCE and the SINK. The processing in-between has NEVER been an issu.
    A modular framework allows you to fine-tune or even replace a component at any time with just 'plug n play'. That is what Interfaces are all about. Any code you write for a parser should be based on an interface contract. That allows you to write the initial code using the simplest possible method and then later if, and ONLY if, that particular module becomes a bottlenect, replace that module with one that is more performant.
    Your intital code should ONLY use standard well-established constructs until there is a demonstrated need for something else. For your use case that means String processing, not byte arrays (except for detecting record boundaries).

  • Safari, Skype and message applications keep crashing. Need Help

    HI Guys, Safari, Skype, Chrome and messages application keeps crashing. I've unistalled glims, deleted third party kernal extension, cleared cahce, pretty much everything ive seen on this forum i have attempted short of reinstalling. at the moment, im using Chrome canary as a browser.
    when i boot in safe mode everything works perfectly. any help would be great. see below for latest safari crash report. if more lines needed let me know.
    p.s. using mid 2012 macbook air, mavericks installed.
    Process:         Safari [380]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         7.0 (9537.71)
    Build Info:      WebBrowser-7537071000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [177]
    Responsible:     Safari [380]
    User ID:         502
    Date/Time:       2013-11-22 15:57:30.157 +1100
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  DFF01155-18D1-D11C-BF17-52CD943E64FC
    Sleep/Wake UUID: 3AD30EB8-B3A9-44E8-B3A8-CD2D5F98BF1D
    Crashed Thread:  17
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000001022c2f9c
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x1022c2f9c:
        __TEXT                 0000000101d4f000-0000000102250000 [ 5124K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    --> __DATA                 0000000102250000-0000000102335000 [  916K] rw-/rwx SM=COW  /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        __DATA                 0000000102335000-000000010233a000 [   20K] rw-/rwx SM=PRV  /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00000001089c6a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001089c5d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00000001052e4315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00000001052e3939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00000001052e3275 CFRunLoopRunSpecific + 309
    5   com.apple.HIToolbox                     0x0000000107d77f0d RunCurrentEventLoopInMode + 226
    6   com.apple.HIToolbox                     0x0000000107d77cb7 ReceiveNextEventCommon + 479
    7   com.apple.HIToolbox                     0x0000000107d77abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    8   com.apple.AppKit                        0x00000001061b928e _DPSNextEvent + 1434
    9   com.apple.AppKit                        0x00000001061b88db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    10  com.apple.Safari.framework              0x0000000101dab4a0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    11  com.apple.AppKit                        0x00000001061ac9cc -[NSApplication run] + 553
    12  com.apple.AppKit                        0x0000000106197803 NSApplicationMain + 940
    13  com.apple.Safari.framework              0x0000000101f7b76d SafariMain + 267
    14  libdyld.dylib                           0x00000001088335fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x00000001089cae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000108acdf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000108ad0fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00000001089cb662 kevent64 + 10
    1   libdispatch.dylib                       0x00000001087fe43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00000001087fe152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x00000001089cae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000108acdf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000108ad0fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00000001089cae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000108acdf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000108ad0fb9 start_wqthread + 13
    Thread 5:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x00000001089ca716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0000000108acec3b _pthread_cond_wait + 727
    2   com.apple.WebCore                       0x000000010bde950b WebCore::IconDatabase::syncThreadMainLoop() + 507
    3   com.apple.WebCore                       0x000000010bde609f WebCore::IconDatabase::iconDatabaseSyncThread() + 303
    4   com.apple.JavaScriptCore                0x000000010282b44f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x0000000108acc899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x0000000108acc72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x0000000108ad0fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00000001089cae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000108acdf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000108ad0fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00000001089cae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000108acdf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000108ad0fb9 start_wqthread + 13
    Thread 8:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x00000001089c6a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001089c5d18 mach_msg + 64
    2   com.apple.QuartzCore                    0x000000010392e3b7 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore                    0x000000010392e2ed thread_fun + 25
    4   libsystem_pthread.dylib                 0x0000000108acc899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x0000000108acc72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x0000000108ad0fc9 thread_start + 13
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00000001089c6a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001089c5d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00000001052e4315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00000001052e3939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00000001052e3275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x000000010474b907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x000000010474b70b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x0000000108acc899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x0000000108acc72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x0000000108ad0fc9 thread_start + 13
    Thread 10:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00000001089ca716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0000000108acec3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x0000000102836596 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00000001028360b5 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore                0x000000010282b44f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x0000000108acc899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x0000000108acc72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x0000000108ad0fc9 thread_start + 13
    Thread 11:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00000001089ca716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0000000108acec3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x0000000102836bb7 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x0000000102836a48 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x000000010282b44f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x0000000108acc899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x0000000108acc72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x0000000108ad0fc9 thread_start + 13
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00000001089ca716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0000000108acec3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x0000000102836bb7 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x0000000102836a48 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x000000010282b44f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x0000000108acc899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x0000000108acc72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x0000000108ad0fc9 thread_start + 13
    Thread 13:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00000001089ca716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0000000108acec3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x0000000102836bb7 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x0000000102836a48 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x000000010282b44f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x0000000108acc899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x0000000108acc72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x0000000108ad0fc9 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00000001089c6a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001089c5d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00000001052e4315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00000001052e3939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00000001052e3275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00000001063591ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x0000000108acc899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x0000000108acc72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x0000000108ad0fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00000001089cae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000108acdf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000108ad0fb9 start_wqthread + 13
    Thread 16:: Safari: SafeBrowsingManager
    0   libsystem_kernel.dylib                  0x00000001089c6a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001089c5d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00000001052e4315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00000001052e3939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00000001052e3275 CFRunLoopRunSpecific + 309
    5   com.apple.Safari.framework              0x0000000101f2b429 Safari::MessageRunLoop::threadBody() + 119
    6   com.apple.JavaScriptCore                0x000000010282b44f ***::wtfThreadEntryPoint(void*) + 15
    7   libsystem_pthread.dylib                 0x0000000108acc899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x0000000108acc72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x0000000108ad0fc9 thread_start + 13
    Thread 17 Crashed:
    0   ???                                     0x00000001022c2f9c 0 + 4331417500
    Thread 17 crashed with X86 Thread State (64-bit):
      rax: 0xfffffffffe128000  rbx: 0x0000000000000000  rcx: 0x000000010888f000  rdx: 0x0000000108873000
      rdi: 0x000000010888f000  rsi: 0x0000000108873000  rbp: 0x0000000108890ff4  rsp: 0x0000000108890f5c
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00000001022c2f9c  rfl: 0x0000000000010246  cr2: 0x00000001022c2f9c
    Logical CPU:     0
    Error Code:      0x00000015
    Trap Number:     14

    Thanks for the feedback, Ralph.
    1. I did not even realise i was working off the secondary user. In my user accounts i only have the one i am currently using and a guest account set up. Dont know how i managed that?
    2. i have gotten rid of a few .plists and keychains that i foudn that were from old apps of apps i had unistalled a couple of days ago, but i may not have cleared the ones creating the problems.
    Sorry in advance for the long crash report, i know you guys dont need all of it, but it saves me reposting if i miss a section again
    If you spot anything in there, please let me know.
    Process:         Safari [535]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         7.0 (9537.71)
    Build Info:      WebBrowser-7537071000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [170]
    Responsible:     Safari [535]
    User ID:         502
    Date/Time:       2013-11-24 10:57:10.503 +1100
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  DFF01155-18D1-D11C-BF17-52CD943E64FC
    Crashed Thread:  14
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000010213b400
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x10213b400:
    -->
        __TEXT                 000000010b14c000-000000010b14d000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x0000000111dbaa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000111db9d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010e6e0315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010e6df939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010e6df275 CFRunLoopRunSpecific + 309
    5   com.apple.HIToolbox                     0x0000000111167f0d RunCurrentEventLoopInMode + 226
    6   com.apple.HIToolbox                     0x0000000111167cb7 ReceiveNextEventCommon + 479
    7   com.apple.HIToolbox                     0x0000000111167abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    8   com.apple.AppKit                        0x000000010f5b428e _DPSNextEvent + 1434
    9   com.apple.AppKit                        0x000000010f5b38db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    10  com.apple.Safari.framework              0x000000010b1b44a0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    11  com.apple.AppKit                        0x000000010f912c5e -[NSApplication _realDoModalLoop:peek:] + 642
    12  com.apple.AppKit                        0x000000010f91136e -[NSApplication runModalForWindow:] + 117
    13  com.apple.AppKit                        0x000000010f910f1d -[NSAlert runModal] + 145
    14  com.apple.AppKit                        0x000000010f5b9129 __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1054
    15  com.apple.AppKit                        0x000000010f5b8cce -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    16  com.apple.AppKit                        0x000000010f5b8c6f -[NSPersistentUIRestorer promptToIgnorePersistentState] + 213
    17  com.apple.AppKit                        0x000000010f5b8b93 -[NSPersistentUIManager promptToIgnorePersistentState] + 28
    18  com.apple.AppKit                        0x000000010f5b89b4 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 252
    19  com.apple.AppKit                        0x000000010f5b8789 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 557
    20  com.apple.AppKit                        0x000000010f5b81eb -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 242
    21  com.apple.Foundation                    0x000000010db11eaa -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 294
    22  com.apple.Foundation                    0x000000010db11d1d _NSAppleEventManagerGenericHandler + 106
    23  com.apple.AE                            0x00000001125dbe1f aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 381
    24  com.apple.AE                            0x00000001125dbc32 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    25  com.apple.AE                            0x00000001125dbb36 aeProcessAppleEvent + 315
    26  com.apple.HIToolbox                     0x00000001111745f1 AEProcessAppleEvent + 56
    27  com.apple.AppKit                        0x000000010f5b40f6 _DPSNextEvent + 1026
    28  com.apple.AppKit                        0x000000010f5b38db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    29  com.apple.Safari.framework              0x000000010b1b44a0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    30  com.apple.AppKit                        0x000000010f5a79cc -[NSApplication run] + 553
    31  com.apple.AppKit                        0x000000010f592803 NSApplicationMain + 940
    32  com.apple.Safari.framework              0x000000010b38476d SafariMain + 267
    33  libdyld.dylib                           0x0000000111c175fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x0000000111dbee6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000111eccf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000111ecffb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x0000000111dbf662 kevent64 + 10
    1   libdispatch.dylib                       0x0000000111be243d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x0000000111be2152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x0000000111dbee6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000111eccf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000111ecffb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x0000000111dbee6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000111eccf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000111ecffb9 start_wqthread + 13
    Thread 5:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x0000000111dbe716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0000000111ecdc3b _pthread_cond_wait + 727
    2   com.apple.WebCore                       0x000000011521550b WebCore::IconDatabase::syncThreadMainLoop() + 507
    3   com.apple.WebCore                       0x000000011521209f WebCore::IconDatabase::iconDatabaseSyncThread() + 303
    4   com.apple.JavaScriptCore                0x000000010bc3a44f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x0000000111ecb899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x0000000111ecb72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x0000000111ecffc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x0000000111dbee6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000111eccf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000111ecffb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x0000000111dbee6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000111eccf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000111ecffb9 start_wqthread + 13
    Thread 8:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x0000000111dbaa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000111db9d18 mach_msg + 64
    2   com.apple.QuartzCore                    0x000000010cd453b7 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore                    0x000000010cd452ed thread_fun + 25
    4   libsystem_pthread.dylib                 0x0000000111ecb899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x0000000111ecb72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x0000000111ecffc9 thread_start + 13
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x0000000111dbaa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000111db9d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010e6e0315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010e6df939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010e6df275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x000000010db57907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x000000010db5770b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x0000000111ecb899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x0000000111ecb72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x0000000111ecffc9 thread_start + 13
    Thread 10:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x0000000111dbea3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x0000000111d09e60 nanosleep + 200
    2   libsystem_c.dylib                       0x0000000111d09d52 usleep + 54
    3   com.apple.AppKit                        0x000000010f8182ad -[NSUIHeartBeat _heartBeatThread:] + 2132
    4   com.apple.Foundation                    0x000000010db5770b __NSThread__main__ + 1318
    5   libsystem_pthread.dylib                 0x0000000111ecb899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x0000000111ecb72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x0000000111ecffc9 thread_start + 13
    Thread 11:: Safari: SafeBrowsingManager
    0   libsystem_kernel.dylib                  0x0000000111dbaa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000111db9d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010e6e0315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010e6df939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010e6df275 CFRunLoopRunSpecific + 309
    5   com.apple.Safari.framework              0x000000010b334429 Safari::MessageRunLoop::threadBody() + 119
    6   com.apple.JavaScriptCore                0x000000010bc3a44f ***::wtfThreadEntryPoint(void*) + 15
    7   libsystem_pthread.dylib                 0x0000000111ecb899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x0000000111ecb72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x0000000111ecffc9 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x0000000111dbee6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000111eccf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000111ecffb9 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x0000000111dbee6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000111eccf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000111ecffb9 start_wqthread + 13
    Thread 14 Crashed:
    0   ???                                     0x000000010c40a6e6 0 + 4500530918
    Thread 14 crashed with X86 Thread State (64-bit):
      rax: 0x000000010213b400  rbx: 0x0000000000000000  rcx: 0x000000010c305000  rdx: 0x0000000000000041
      rdi: 0x0000000001a36000  rsi: 0x000000010c44e000  rbp: 0x000000010c306ff4  rsp: 0x000000010c306f64
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x000000010c40a6e6  rfl: 0x0000000000010202  cr2: 0x000000010213b400
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10b14c000 -        0x10b14cffd  com.apple.Safari (7.0 - 9537.71) <1FBFDDAA-B0FF-30F5-B819-9175B219593D> /Applications/Safari.app/Contents/MacOS/Safari
           0x10b158000 -        0x10b658ffb  com.apple.Safari.framework (9537 - 9537.71) <C27DBF3C-7BE7-3422-9081-DE09461F9B62> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
           0x10ba42000 -        0x10ba43ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
           0x10ba4e000 -        0x10ba6cff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
           0x10ba8c000 -        0x10ba8dfff  libquit.dylib (161) <12162287-B8C8-36D0-B000-ADC28731FC66> /usr/lib/libquit.dylib
           0x10ba93000 -        0x10bab0ff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x10bac1000 -        0x10bac1fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x10bac9000 -        0x10bac9fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10bad1000 -        0x10bb2fff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
           0x10bb73000 -        0x10bb7dff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x10bb90000 -        0x10bbfaff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10bc31000 -        0x10bfa7ffa  com.apple.JavaScriptCore (9537 - 9537.65) <7E76880C-832E-385B-9591-ACCF57A68385> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x10c0a7000 -        0x10c25fff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
           0x10c309000 -        0x10c3f3fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
           0x10c40d000 -        0x10c43eff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
           0x10c452000 -        0x10c45fff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
           0x10c46d000 -        0x10c47bfff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10c48a000 -        0x10c4cbfff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10cd1e000 -        0x10cebaff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10cf96000 -        0x10d1eeff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10d336000 -        0x10d3a9ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x10d3eb000 -        0x10d419ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10d448000 -        0x10d4abff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10d4e7000 -        0x10d61cffa  com.apple.WebKit (9537 - 9537.71) <8A07478D-B2CA-3724-81E4-ADC10E1AD3EA> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x10d717000 -        0x10d906ffc  com.apple.WebKit2 (9537 - 9537.71) <B8FFCE39-9DC6-304E-953A-0BAFDCD19D2F> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
           0x10daf0000 -        0x10ddeffff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10e032000 -        0x10e1dff27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
           0x10e202000 -        0x10e254fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
           0x10e2b5000 -        0x10e377ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x10e3eb000 -        0x10e3ecff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10e3f1000 -        0x10e561ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x10e667000 -        0x10e667fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10e66f000 -        0x10e854ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10e9cd000 -        0x10ead2fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x10eb3f000 -        0x10f45b05f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
           0x10f58b000 -        0x10f58bfff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10f590000 -        0x110104ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x11088d000 -        0x1108bcff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x1108e1000 -        0x1108f2ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
           0x1108f8000 -        0x1108fafff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
           0x110903000 -        0x11093bff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x110974000 -        0x110ac7ff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x110b60000 -        0x110b60ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x110b6a000 -        0x110db2fff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x110edd000 -        0x110f41ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x110f87000 -        0x1110b7ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x111139000 -        0x1113e3ffd  com.apple.HIToolbox (2.1 - 695) <C4DE35FF-D0AC-35C3-A7E6-F54CD153825C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x11153c000 -        0x111544ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x111554000 -        0x111596ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
           0x1115b2000 -        0x111699ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
           0x1116cf000 -        0x1117b3fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x111878000 -        0x1118c9ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x1118f3000 -        0x1118f8fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x111904000 -        0x111905fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
           0x11190e000 -        0x111920ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x111932000 -        0x11194aff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x11195e000 -        0x11196bfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
           0x111981000 -        0x111a44ff7  com.apple.backup.framework (1.5 - 1.5) <92C8038F-CC00-3202-90D8-3C3AEC90986F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x111ace000 -        0x111ae9ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
           0x111af5000 -        0x111b1eff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
           0x111b33000 -        0x111b37ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
           0x111b3c000 -        0x111b46fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
           0x111b55000 -        0x111b5cfff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
           0x111b6a000 -        0x111b71ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
           0x111b7b000 -        0x111bc9fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
           0x111bdf000 -        0x111bf9fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
           0x111c14000 -        0x111c17ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
           0x111c24000 -        0x111c24ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
           0x111c2d000 -        0x111c34ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
           0x111c40000 -        0x111c45fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
           0x111c4d000 -        0x111c4fff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
           0x111c59000 -        0x111c5affb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
           0x111c62000 -        0x111c73ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
           0x111c81000 -        0x111c82ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
           0x111c8e000 -        0x111d17ff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
           0x111d45000 -        0x111d47ff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
           0x111d52000 -        0x111d5afff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
           0x111d65000 -        0x111d8cffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
           0x111da9000 -        0x111dc5ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
           0x111deb000 -        0x111e1afd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
           0x111e26000 -        0x111e41ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
           0x111e4e000 -        0x111e75ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
           0x111e96000 -        0x111e9fff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
           0x111ead000 -        0x111eb3ff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
           0x111eca000 -        0x111ed1ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
           0x111ee2000 -        0x111ee3ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
           0x111eef000 -        0x111ef3fff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
           0x111efb000 -        0x111efcfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
           0x111f08000 -        0x111f0dff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
           0x111f14000 -        0x111f38fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
           0x111f58000 -        0x111f68fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
           0x111f75000 -        0x111f79fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
           0x111f7e000 -        0x111f7effd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
           0x111f85000 -        0x111f92ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
           0x111f99000 -        0x112283fff  com.apple.CoreServices.CarbonCore (1077.13 - 1077.13) <21324540-8B84-3333-ADB8-D3D5181D4639> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x112301000 -        0x112390ff7  com.apple.Metadata (10.7.0 - 800.12) <04486C95-3E49-36C4-89B6-925E925BB417> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x1123fc000 -        0x112473fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x112518000 -        0x112585fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x1125ce000 -        0x112629ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x11265f000 -        0x112728fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x1127a4000 -        0x1127cdfff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x1127f0000 -        0x1127f7fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x112806000 -        0x112811fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
           0x11281b000 -        0x112826ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x112833000 -        0x112836fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x11283e000 -        0x112855fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x11287a000 -        0x112884ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x112893000 -        0x1128bbffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
           0x1128cd000 -        0x112959ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x11298f000 -        0x1129feff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x112a2f000 -        0x112ab8fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x112b01000 -        0x112b46ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x112b79000 -        0x112b88ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x112b9d000 -        0x112beaff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x112c1b000 -        0x112c54ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x112c77000 -        0x112c80fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x112c94000 -        0x112c97ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x112ca5000 -        0x112ca5fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x112ca9000 -        0x112f7dfc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x112fc3000 -        0x112fc3fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x112fcb000 -        0x113096fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x1130a4000 -        0x113154ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x113163000 -        0x113544ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x1135ad000 -        0x11371bff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x113745000 -        0x113834fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x1138b1000 -        0x1138f8fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x113921000 -        0x113945ff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x113952000 -        0x1139abfff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x1139bb000 -        0x1139d6ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x1139e2000 -        0x1139e6ff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x1139f2000 -        0x113ae0fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x113b10000 -        0x113b12fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x113b1a000 -        0x113b61ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
           0x113b79000 -        0x113b92ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x113bab000 -        0x113bc7fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
           0x113bd8000 -        0x113cc9ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
           0x113ce0000 -        0x113d44ff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x113d70000 -        0x113d71fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x113d7b000 -        0x113d7fff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
           0x113d86000 -        0x113d92ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x113dac000 -        0x113db5fff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x113dc2000 -        0x113dfcff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x113e14000 -        0x113e39ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x113e59000 -        0x114127ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x11421f000 -        0x114272fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x114299000 -        0x1142d8fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x1142eb000 -        0x1142f3ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x1142fb000 -        0x114306fff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x11431d000 -        0x11435bff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x11436a000 -        0x11436cfff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x114377000 -        0x11437afff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x114386000 -        0x1147b9ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
           0x1149d5000 -        0x114a23fff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x114a42000 -        0x114a4eff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x114a5a000 -        0x114a73ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x114a8d000 -        0x114abdfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
           0x114ae8000 -        0x114b0dff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x114b1a000 -        0x114b9afff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x114bbb000 -        0x114c13ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x114c5d000 -        0x114c8cfff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x114cad000 -        0x114d0cfff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x114d4c000 -        0x114d76ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
           0x114d8a000 -        0x114df0fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x114e50000 -        0x114e54fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x114e61000 -        0x114e64fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x114e6e000 -        0x114e80fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x114ea1000 -        0x114eb9ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x114ed0000 -        0x114ed1ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x114ed6000 -        0x114ed8ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x114edf000 -        0x11509aff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
           0x1151f3000 -        0x1151fdff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
           0x11520c000 -        0x116058ff5  com.apple.WebCore (9537 - 9537.70) <7A90E9D3-4F26-3049-9C96-C6B8CB1395C8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
           0x11857c000 -        0x1185a8fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
           0x11861a000 -        0x118627ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Librarian
           0x118643000 -        0x11864bff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x11942d000 -        0x119455ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x119465000 -        0x119468ffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x11afc8000 -        0x11b244ff7  com.apple.RawCamera.bundle (5.01 - 718) <6CC4A1E5-A89A-369D-96C4-7A5ED40B487B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff6a046000 -     0x7fff6a079817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 1
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 869
        thread_create: 2
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=161.5M resident=77.6M(48%) swapped_out_or_unallocated=83.9M(52%)
    Writable regions: Total=1.1G written=9612K(1%) resident=13.2M(1%) swapped_out=0K(0%) unallocated=1.1G(99%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG backing stores                     464K
    CG image                               12K
    CG raster data                         12K
    CG shared images                      180K
    Image IO                               16K
    JS JIT generated code                   8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    Kernel Alloc Once                       8K
    MALLOC                               48.8M
    MALLOC (admin)                         32K
    Memory Tag 242                         12K
    Memory Tag 251                          8K
    SQLite page cache                     640K
    STACK GUARD                          56.1M
    Stack                                14.2M
    VM_ALLOCATE                          16.4M
    WebKit Malloc                        1232K
    __DATA                               23.5M
    __IMAGE                               528K
    __LINKEDIT                           41.9M
    __TEXT                              119.7M
    __UNICODE                             544K
    mapped file                          50.1M
    shared memory                           4K
    ===========                        =======
    TOTAL                                 1.4G
    TOTAL, minus reserved VM space      374.1M
    Model: MacBookAir5,2, BootROM MBA51.00EF.B02, 2 processors, Intel Core i5, 1.8 GHz, 4 GB, SMC 2.5f9
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 1024 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x802C, 0x384B54463235363634485A2D3147364D3120
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x802C, 0x384B54463235363634485A2D3147364D3120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE9), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 15 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD TS128E, 121.33 GB
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: Internal Memory Card Reader
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: MacBook Air, Apple Inc., 23.4

  • Multi languages and Special Characters in PI

    Hi gurus
    Different languages data will be coming from the source xml file and PI has to handle that data and send it to ECC  system throguh IDoc Receiver Adapter.
    .our scenario is MDM to R/3. Pi file adapter is picking the xml file from source directory path.
    the file encoding we have used is "ISo-8859" file type as "TEXT", we have also tried checking by giving the file name as"Binary", but we are still facing the issue.
    The special characters which are showing up are Å#ó
    i was trying to look at the below mentoined blog , but that blog was not availiale in sdn.
    http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/9420 [original link is broken]
    thanx in advance

    > i tiried as you suggested, but i do not have the access for the RFC destination in R/3 server.
    I mean the RFC destination in PI, not in R/3
    > i have a doubt here
    > In the xml file received by PI, the entire data will be in English, only for two particular fields the data will be in Foreign Languages(russian,greek or any other langauge).The fields are maintained under International Version Segement.
    You have to split the XML, create different IDocs by language and choose an IDoc receiver channel with tied RFC logon language 
    see SAP note 745030
    The customer should consider to use a unicode R/3 system when he wants to use different language descriptions.
    In a non-unicode system the texts from other languages cannot be read, for example the greek characters cannot be displayed when logging on in russian. In a unicode system there is no restriction.

  • HTTP status code returned by site-wide error handler is 200 OK?

    I'm using a developer install of ColdFusion 11. I set up the following page at http://localhost:8500/test/index.cfm:
    <cfthrow type="application" message="This is an error">
    When I visit that page, the HTTP status code returned is 500, as expected.
    I then created the following page at http://localhost:8500/error.cfm:
    <p>Sorry! That was an error.</p>
    If I set the site-wide error handler in the CF Admin to /error.cfm and visit /test/index.cfm, the HTTP status code returned is 200 OK.
    This seems weird to me. It looks like I can include the following in the error.cfm file to send an error code instead:
    <cfheader statuscode="500" statustext="Server Error">
    Does anyone see that as problematic? Is there a reason why the site-wide error handler should return 200 OK?

    Error Codes are the responsibility of the developer, to define and broadcast. Ultimately, the ColdFusion server has acted appropriately and fulfilled the request (hence the 202). Only the code would know what error was truly thrown, and how to appropriately handle that message to the user, hence the need for you to change the header in the response, if you want that broadcast to the browser in anything of than a "successful request" type of status.

  • Site-wide Error Handler issue

    I'm having a strange one. I'm using CF 9.0, and I have a Site-wide Error Handler set up, with the relative path set correctly.When run-time errors occur, it is calling the template exactly as expected, except for one thing.
    In addition to the error template (which shows a nice user-friendly page), I am also getting the default ColdFusion error information following.
    So...error occurs, it is throwing to the error template as expected, but then also pushing out the default error page.
    It does not do this on CF7 with identical code, so I am thinking that perhaps there is a setting on CF9 Administator that I'm not clicking. But search as I might, I only see the Site-wide Error Handler field.
    Any suggestions? This is driving me batty.

    ianskinner wrote:
    What do you get if you turn on "Robust Exception Information"?
    You are presuming that since your test error is a DSN error and this extra message is about a DSN error, that they are the same error.  That is an unproven correlation.  Or at least you have not show us the proof.
    Robust Exception Information is enabled on the Cold Fusion Administrator. I don't know why it wasn't showing earlier, but now when I run the test page I get the following:
    The web site you are  accessing has experienced an unexpected error.
    Please contact the website  administrator.
    The following information is meant for the website developer for  debugging purposes.
    Error Occurred While Processing Request
    Datasource  doesNotExist could not be found.
    The  error occurred in \\srv238\wwwroot\rjr\errorhandling\cferror_test.cfm: line  11
    9 : This query calls a non-existent datasource, triggering an error to be handled. --->
    10 :
    11 : <cfquery name="testQuery" datasource="doesNotExist">
    12 : select * from nothing
    13 : </cfquery>
    DATASOURCE
      doesNotExist
    Resources: Check the ColdFusion  documentation to verify that you are using the correct syntax.
    Search the Knowledge Base to find a solution to your problem.
    Browser 
    Mozilla/4.0 (compatible;  MSIE 6.0; Windows NT 5.1; SV1; GTB6.3; .NET CLR 1.1.4322; InfoPath.2; .NET CLR  2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022;  .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC EA 2)
    Remote  Address 
    172.21.10.142
    Referrer 
    Date/Time 
    30-Dec-09 01:21  PM
    Stack Trace  (click to expand)

  • Language and settings (date format, °Celsius, metric ...)

    Hello, again!
    Since I apt-getted my debian again to dependencies-death, I decided to give arch a new try. As I am not trying to have nvidia, xfree, kernel26 etc on the system in one step, I am surprised to have xfree and gnome with gdm, while listening to keith jarrets cologne concert via totem just after an hour I started to install arch. Well.
    What I really miss is some user-locales-wand. Where does arch read language and locale settings?
    In debian, this stuff was placed in /etc/environment. Does arch behave the same way?
    Since this is fixed on my machine, I feel lucky to have things like feet ore 39°F in the weather report.

    For system wide settings, you can add a script in /etc/profile.d:
    # cat /etc/profile.d/lang.sh
    LC_ALL=XXX
    LANG=XXX
    LC_MESSAGES=XXX
    export LC_ALL LANG LC_MESSAGES

  • Site-Wide Error Handler Filepath

    My error handler page is located at C:\Inetpub\wwwroot\portal\error_handler.cfm but cfadmin (for CF 8) wants a relative path.  I've tried:
    C:\Inetpub\wwwroot\portal\error_handler.cfm
    Inetpub\wwwroot\portal\error_handler.cfm
    wwwroot\portal\error_handler.cfm
    portal\error_handler.cfm
    error_handler.cfm
    and http://www.hostname.com/portal/error_handler.cfm
    Each time is says the specified file does not exist.
    What should the filepath be relative to?
    Thanks!

    It has to be relative to a ColdFusion mapping OR the ColdFusion web root.  The latter has always been the most reliable for me.
    It is a little known feature of ColdFusion that it often has two web roots for which it will search for cfml templates.  The web root defined for the web server such as c:\inetpub\wwwroot\ that you apparently have.  But before searching the web server web root it will search the ColdFusion web root, that on my multi-home flavor of ColdFusion is c:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\.  It is this latter directory that I put my site wide error and missing template handler fiels.  Then I just place the file names in the appropiate fields in the administrator.
    If you have a default backslash (\) mapping to your web root defined in the ColdFusion administrator, you should be able to input something like "\portal\error_handler.cfm" but I have always had difficulty getting this way to work.

  • Language and spelling

    I have choosen dansih as setup language on my mac, but I want the standard spelling chekker in Safari, mails and all other places to be norwegian. How do I do that?

    In system preferences/international/language I have following i named order: danish, norwegian, englsih, france, germany, spanish and swedish checked, because that is the language I can handle. But in the spelling and grammar/show spelling and grammar I have the same, except of norwegian. Instead I have portuguese, netherland, italian and many other, which I do not want to, and therefore I do not have them in the system preferences/international/language.
    The thing is that I often write mails, google words in all the language in system preferences/international/language, and therefore wish to, easily change the spell chekker when switching writing-language in google, forums, mails etc.
    I am glad you like to help me!

  • Is there a difference between Statement Cache and the statement handle!

    Hello!
    The OCI statement cache is !session! wide. When I have a sql statement that was used before, I can use this feature.
    But what is the difference between this feature and my statement handle for a certain sql statement that I can store and reuse a second time?
    My stored statement handle is already prepared and the placeholders are bound. The second time I only have to copy new values in the memory positions and do an execute and that's all.
    Thank you in advance
    Wolfgang

    The underlying optimization is the same. When you re-execute a statement, you are reusing the metadata already available in the statement and the cursor already open on the server. If you know exactly the set of statements that you are going to execute repeatedly, you can maintain the cache on your own. (Yes, you save on doing the Bind/Define calls multiple times).
    OCI Statement cache makes it transparent and the application does not need to keep the references/indexes to the relevant statements. Also once a cache size is set, least recently used statements get out of the cache when the cache is full and needs to accommodate more.
    To optimize the bind/defines on the statements from the statement cache, you can use this feature:
    http://www.filibeto.org/sun/lib/nonsun/oracle/11.2.0.1.0/E11882_01/appdev.112/e10646/oci09adv.htm#sthref1358

  • Lots and Lots of Safari and other system app crashes

    10.4.8
    2.0.4 Safari
    I use OnyX to repair permissions and run maint scripts
    Crash Log
    ===== Display starts at offset 78408 within file of length 209480. ====
    ===== Use File->Reload (Cmd-R) to display more. ====
    ework/Versions/A/Resources/libGIF.dylib
    0x91ae6000 - 0x91b63fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b67000 - 0x91ba4fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91baa000 - 0x91bc4fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bc9000 - 0x91bcbfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bcd000 - 0x91bcdfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91bcf000 - 0x91c5dfff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91c64000 - 0x91c64fff 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
    0x91c66000 - 0x91cbffff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91cc8000 - 0x91cecfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91cf4000 - 0x920fdfff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92137000 - 0x924ebfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92518000 - 0x9259cfff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x925d8000 - 0x92808fff com.apple.Foundation 6.4.7 (567.28) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92914000 - 0x929f2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92a0f000 - 0x92afcfff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b0c000 - 0x92b23fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b2e000 - 0x92b86fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92b9a000 - 0x92b9afff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92b9c000 - 0x92bacfff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bba000 - 0x92bc2fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bc8000 - 0x92bcdfff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bd3000 - 0x92c64fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c78000 - 0x92c7bfff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c7e000 - 0x92c9bfff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cab000 - 0x92cb1fff com.apple.print.framework.Print 5.1 (192.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cb7000 - 0x92d1afff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d3e000 - 0x92d7ffff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92da6000 - 0x92db3fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dba000 - 0x92dbffff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dc4000 - 0x930b6fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931bb000 - 0x931c6fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931cb000 - 0x931e6fff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x931fa000 - 0x9322cfff com.apple.MediaKit 8.7 (350.1) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x93236000 - 0x93236fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93238000 - 0x938eefff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c6f000 - 0x93ce9fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d22000 - 0x93de3fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e23000 - 0x93e23fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e25000 - 0x93ff7fff com.apple.QuartzCore 1.4.9 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94048000 - 0x94089fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94091000 - 0x940cbfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94159000 - 0x94197fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x941db000 - 0x941ebfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x941f8000 - 0x94235fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94251000 - 0x94260fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94267000 - 0x94272fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942be000 - 0x942d8fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x942de000 - 0x94597fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x946f8000 - 0x94841fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x948cd000 - 0x948dcfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x948e3000 - 0x9490cfff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94912000 - 0x94921fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94925000 - 0x94949fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94955000 - 0x94972fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94a16000 - 0x94a16fff com.apple.DiscRecording 3.1.4 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x94a18000 - 0x94a96fff com.apple.DiscRecordingEngine 3.1.4 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x94ac6000 - 0x94b08fff com.apple.DiscRecordingContent 3.1.4 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x94c72000 - 0x94c96fff libcurl.3.dylib /usr/lib/libcurl.3.dylib
    0x94c9d000 - 0x94d30fff com.apple.WebKit 418.9 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94d8a000 - 0x94e0cfff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94e3f000 - 0x9511efff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9529d000 - 0x952c0fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9545a000 - 0x95496fff com.apple.QTKit 7.1.3 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95a34000 - 0x95a4afff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x96443000 - 0x96443fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x969b9000 - 0x96a87fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96aa2000 - 0x96aa3fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96aa5000 - 0x96aaafff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96e24000 - 0x96e38fff com.apple.audio.CoreAudioKit 1.0.1 /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x97947000 - 0x97a4dfff com.apple.DiskImagesFramework 10.4.7 (114.2) /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
    0x97abb000 - 0x97ac8fff libbz2.1.0.dylib /usr/lib/libbz2.1.0.dylib
    0x97d8d000 - 0x98877fff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98a86000 - 0x98a88fff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x98a8a000 - 0x98c32fff QuickTimeH264.scalar /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x98c37000 - 0x98c96fff com.apple.QuickTimeMPEG.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG.component/Contents/MacOS/QuickTimeMPEG
    0x98ca2000 - 0x98d5ffff com.apple.QuickTimeMPEG4.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x98d79000 - 0x98ecafff com.apple.QuickTimeStreaming.component 7.1.3 /System/Library/QuickTime/QuickTimeStreaming.component/Contents/MacOS/QuickTime Streaming
    0x9942b000 - 0x99453fff com.apple.QuickTime Plugin.plugin 7.1.3 /Library/Internet Plug-Ins/QuickTime Plugin.plugin/Contents/MacOS/QuickTime Plugin
    0x996be000 - 0x996f5fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x99711000 - 0x99723fff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Host Name: Larry
    Date/Time: 2006-10-29 14:33:12.322 -0800
    OS Version: 10.4.8 (Build 8L2127)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [54]
    Version: 2.0.4 (419.3)
    Build Version: 2
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 223
    Thread: 0
    Exception: EXCBADINSTRUCTION (0x0002)
    Code[0]: 0x0000000d
    Code[1]: 0x00006e64
    Thread 0 Crashed:
    0 libSystem.B.dylib 0x90029ae5 _longjmp + 37
    1 <<00000000>> 0xc0010037 0 + -1073676233
    Thread 1:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082869a CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x90827eb5 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9262adc6 -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x9262acc2 -[NSRunLoop run] + 75
    5 com.apple.WebKit 0x94c9f451 +[WebFileDatabase _syncLoop:] + 198
    6 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082869a CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x90827eb5 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9262aa9b +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082869a CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x90827eb5 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92651c4e +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x90019d3c select + 12
    1 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x90024427 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x9264b2f8 -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.Syndication 0x996c1052 -[AsyncDB _run:] + 181
    3 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 ...romedia.Flash Player.plugin 0x0dc789b1 nativeShockwaveFlashTCallFrame + 325701
    2 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000001 ebx: 0x00000000 ecx: 0x0ddfabf8 edx: 0x90029ac0
    edi: 0x00000000 esi: 0x00000001 ebp: 0x0f3e1300 esp: 0x00000001
    ss: 0x0000001f efl: 0x00010202 eip: 0x90029ae5 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0xdefff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0xd174000 - 0xd175fff com.apple.textencoding.unicode 2.1 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xd7e2000 - 0xd7e2fff com.apple.SpotLightCM 1.0 (121.34) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0xd89e000 - 0xddb2fff com.macromedia.Flash Player.plugin 9.0.0 (1.0.4f20) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0xeede000 - 0xef4ffff com.DivXInc.DivXDecoder 6.2.5 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0xeffa000 - 0xeffcfff com.apple.AutomatorCMM 1.0.1 (68) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0xf17f000 - 0xf183fff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x8fe00000 - 0x8fe49fff dyld 46.9 /usr/lib/dyld
    0x90000000 - 0x9016ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901bf000 - 0x901c1fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c3000 - 0x901fffff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90226000 - 0x902fbfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031b000 - 0x9076ffff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90806000 - 0x908cefff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9090c000 - 0x9090cfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9090e000 - 0x90a01fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a51000 - 0x90ad0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90af9000 - 0x90b5dfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bcc000 - 0x90bd3fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bd8000 - 0x90c4bfff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c60000 - 0x90c72fff libauto.dylib /usr/lib/libauto.dylib
    0x90c78000 - 0x90f1efff com.apple.CoreServices.CarbonCore 682.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f61000 - 0x90fc9fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91001000 - 0x9103ffff com.apple.CFNetwork 129.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91052000 - 0x91062fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9106d000 - 0x910ebfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91120000 - 0x9113efff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9114a000 - 0x91158fff libz.1.dylib /usr/lib/libz.1.dylib
    0x9115b000 - 0x912fafff com.apple.security 4.5.1 (29002) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913f8000 - 0x91400fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91407000 - 0x9142dfff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9143f000 - 0x91446fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9144a000 - 0x914c3fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91511000 - 0x91511fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91513000 - 0x9153efff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91551000 - 0x91625fff com.apple.ColorSync 4.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91660000 - 0x916ddfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170a000 - 0x917b3fff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917d9000 - 0x91824fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91843000 - 0x91859fff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91865000 - 0x9187ffff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91889000 - 0x918c6fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918da000 - 0x918e6fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918ed000 - 0x91928fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9193a000 - 0x919ecfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a32000 - 0x91a48fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a4d000 - 0x91a6bfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a70000 - 0x91acefff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91ae0000 - 0x91ae4fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91ae6000 - 0x91b63fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b67000 - 0x91ba4fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91baa000 - 0x91bc4fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bc9000 - 0x91bcbfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bcd000 - 0x91bcdfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91bcf000 - 0x91c5dfff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91c64000 - 0x91c64fff 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
    0x91c66000 - 0x91cbffff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91cc8000 - 0x91cecfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91cf4000 - 0x920fdfff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92137000 - 0x924ebfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92518000 - 0x9259cfff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x925d8000 - 0x92808fff com.apple.Foundation 6.4.7 (567.28) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92914000 - 0x929f2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92a0f000 - 0x92afcfff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b0c000 - 0x92b23fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b2e000 - 0x92b86fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92b9a000 - 0x92b9afff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92b9c000 - 0x92bacfff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bba000 - 0x92bc2fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bc8000 - 0x92bcdfff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bd3000 - 0x92c64fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c78000 - 0x92c7bfff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c7e000 - 0x92c9bfff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cab000 - 0x92cb1fff com.apple.print.framework.Print 5.1 (192.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cb7000 - 0x92d1afff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d3e000 - 0x92d7ffff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92da6000 - 0x92db3fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dba000 - 0x92dbffff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dc4000 - 0x930b6fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931bb000 - 0x931c6fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931cb000 - 0x931e6fff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93236000 - 0x93236fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93238000 - 0x938eefff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c6f000 - 0x93ce9fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d22000 - 0x93de3fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e23000 - 0x93e23fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e25000 - 0x93ff7fff com.apple.QuartzCore 1.4.9 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94048000 - 0x94089fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94091000 - 0x940cbfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94159000 - 0x94197fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x941db000 - 0x941ebfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x941f8000 - 0x94235fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94251000 - 0x94260fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94267000 - 0x94272fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942be000 - 0x942d8fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x942de000 - 0x94597fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x946f8000 - 0x94841fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x948cd000 - 0x948dcfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x948e3000 - 0x9490cfff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94912000 - 0x94921fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94925000 - 0x94949fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94955000 - 0x94972fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94c9d000 - 0x94d30fff com.apple.WebKit 418.9 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94d8a000 - 0x94e0cfff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94e3f000 - 0x9511efff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9529d000 - 0x952c0fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96443000 - 0x96443fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96aa5000 - 0x96aaafff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96e24000 - 0x96e38fff com.apple.audio.CoreAudioKit 1.0.1 /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x97d8d000 - 0x98877fff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x996be000 - 0x996f5fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x99711000 - 0x99723fff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Host Name: Larry
    Date/Time: 2006-10-31 19:07:32.072 -0800
    OS Version: 10.4.8 (Build 8L2127)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [54]
    Version: 2.0.4 (419.3)
    Build Version: 2
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 387
    Thread: 0
    Exception: EXCBADINSTRUCTION (0x0002)
    Code[0]: 0x0000000d
    Code[1]: 0x00006e64
    Thread 0 Crashed:
    0 libSystem.B.dylib 0x90029ae5 _longjmp + 37
    1 <<00000000>> 0xc0010013 0 + -1073676269
    Thread 1:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082869a CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x90827eb5 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9262adc6 -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x9262acc2 -[NSRunLoop run] + 75
    5 com.apple.WebKit 0x94c9f451 +[WebFileDatabase _syncLoop:] + 198
    6 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082869a CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x90827eb5 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9262aa9b +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082869a CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x90827eb5 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92651c4e +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x90024427 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x9264b2f8 -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.Syndication 0x996c1052 -[AsyncDB _run:] + 181
    3 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x90019d3c select + 12
    1 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 libjvm.dylib 0x9aa651f9 JNICreateJavaVMImpl + 53115
    2 libjvm.dylib 0x9aa65192 JNICreateJavaVMImpl + 53012
    3 libjvm.dylib 0x9aa650a9 JNICreateJavaVMImpl + 52779
    4 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 libjvm.dylib 0x9aacc6ba jio_snprintf + 391236
    2 libjvm.dylib 0x9aacc522 jio_snprintf + 390828
    3 libjvm.dylib 0x9aaccbda jio_snprintf + 392548
    4 libjvm.dylib 0x9aacc210 jio_snprintf + 390042
    5 libjvm.dylib 0x9aa650a9 JNICreateJavaVMImpl + 52779
    6 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 8:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 libjvm.dylib 0x9aacc770 jio_snprintf + 391418
    2 libjvm.dylib 0x9aadb1cf JVM_MonitorWait + 3787
    3 libjvm.dylib 0x9aada7f2 JVM_MonitorWait + 1262
    4 libjvm.dylib 0x9aada4fa JVM_MonitorWait + 502
    5 <<00000000>> 0x103ca1d1 0 + 272409041
    6 <<00000000>> 0x103c4913 0 + 272386323
    7 <<00000000>> 0x103c4913 0 + 272386323
    8 <<00000000>> 0x103c215d 0 + 272376157
    9 libjvm.dylib 0x9aacde4e jio_snprintf + 397272
    10 libjvm.dylib 0x9aada2ef JVM_StartThread + 2323
    11 libjvm.dylib 0x9aada201 JVM_StartThread + 2085
    12 libjvm.dylib 0x9aada151 JVM_StartThread + 1909
    13 libjvm.dylib 0x9aada07d JVM_StartThread + 1697
    14 libjvm.dylib 0x9aa650a9 JNICreateJavaVMImpl + 52779
    15 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 9:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 libjvm.dylib 0x9aacc770 jio_snprintf + 391418
    2 libjvm.dylib 0x9aadb1cf JVM_MonitorWait + 3787
    3 libjvm.dylib 0x9aada7f2 JVM_MonitorWait + 1262
    4 libjvm.dylib 0x9aada4fa JVM_MonitorWait + 502
    5 <<00000000>> 0x103ca1d1 0 + 272409041
    6 <<00000000>> 0x103c4913 0 + 272386323
    7 <<00000000>> 0x103c49ea 0 + 272386538
    8 <<00000000>> 0x103c49ea 0 + 272386538
    9 <<00000000>> 0x103c215d 0 + 272376157
    10 libjvm.dylib 0x9aacde4e jio_snprintf + 397272
    11 libjvm.dylib 0x9aada2ef JVM_StartThread + 2323
    12 libjvm.dylib 0x9aada201 JVM_StartThread + 2085
    13 libjvm.dylib 0x9aada151 JVM_StartThread + 1909
    14 libjvm.dylib 0x9aada07d JVM_StartThread + 1697
    15 libjvm.dylib 0x9aa650a9 JNICreateJavaVMImpl + 52779
    16 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 10:
    0 libSystem.B.dylib 0x9002449f semaphorewaittrap + 7
    1 libjvm.dylib 0x9aaed2e9 JVM_RegisterSignal + 8707
    2 libjvm.dylib 0x9aada07d JVM_StartThread + 1697
    3 libjvm.dylib 0x9aa650a9 JNICreateJavaVMImpl + 52779
    4 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 11:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 libjvm.dylib 0x9aacc770 jio_snprintf + 391418
    2 libjvm.dylib 0x9aacc3df jio_snprintf + 390505
    3 libjvm.dylib 0x9aaee8dd JVM_RegisterSignal + 14327
    4 libjvm.dylib 0x9aaee5d9 JVM_RegisterSignal + 13555
    5 libjvm.dylib 0x9aada07d JVM_StartThread + 1697
    6 libjvm.dylib 0x9aa650a9 JNICreateJavaVMImpl + 52779
    7 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 12:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 libjvm.dylib 0x9aacc770 jio_snprintf + 391418
    2 libjvm.dylib 0x9aacc522 jio_snprintf + 390828
    3 libjvm.dylib 0x9aaeef6e JVM_RegisterSignal + 16008
    4 libjvm.dylib 0x9aada07d JVM_StartThread + 1697
    5 libjvm.dylib 0x9aa650a9 JNICreateJavaVMImpl + 52779
    6 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 13:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 libjvm.dylib 0x9aacc6ba jio_snprintf + 391236
    2 libjvm.dylib 0x9ab00970 JVM_RegisterSignal + 88202
    3 libjvm.dylib 0x9ab005ba JVM_RegisterSignal + 87252
    4 libjvm.dylib 0x9aa650a9 JNICreateJavaVMImpl + 52779
    5 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 14:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 libjvm.dylib 0x9aacc770 jio_snprintf + 391418
    2 libjvm.dylib 0x9aadb1cf JVM_MonitorWait + 3787
    3 libjvm.dylib 0x9aada7f2 JVM_MonitorWait + 1262
    4 libjvm.dylib 0x9aada4fa JVM_MonitorWait + 502
    5 <<00000000>> 0x103ca1d1 0 + 272409041
    6 <<00000000>> 0x103c4913 0 + 272386323
    7 <<00000000>> 0x103c49ea 0 + 272386538
    8 <<00000000>> 0x103c49ea 0 + 272386538
    9 <<00000000>> 0x103c4c19 0 + 272387097
    10 <<00000000>> 0x103c215d 0 + 272376157
    11 libjvm.dylib 0x9aacde4e jio_snprintf + 397272
    12 libjvm.dylib 0x9aada2ef JVM_StartThread + 2323
    13 libjvm.dylib 0x9aada201 JVM_StartThread + 2085
    14 libjvm.dylib 0x9aada151 JVM_StartThread + 1909
    15 libjvm.dylib 0x9aada07d JVM_StartThread + 1697
    16 libjvm.dylib 0x9aa650a9 JNICreateJavaVMImpl + 52779
    17 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 15:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 libjvm.dylib 0x9aacc770 jio_snprintf + 391418
    2 libjvm.dylib 0x9aadb1cf JVM_MonitorWait + 3787
    3 libjvm.dylib 0x9aada7f2 JVM_MonitorWait + 1262
    4 libjvm.dylib 0x9aada4fa JVM_MonitorWait + 502
    5 <<00000000>> 0x103ca1d1 0 + 272409041
    6 <<00000000>> 0x103c4913 0 + 272386323
    7 <<00000000>> 0x103c4913 0 + 272386323
    8 <<00000000>> 0x103c4c19 0 + 272387097
    9 <<00000000>> 0x103c215d 0 + 272376157
    10 libjvm.dylib 0x9aacde4e jio_snprintf + 397272
    11 libjvm.dylib 0x9aada2ef JVM_StartThread + 2323
    12 libjvm.dylib 0x9aada201 JVM_StartThread + 2085
    13 libjvm.dylib 0x9aada151 JVM_StartThread + 1909
    14 libjvm.dylib 0x9aada07d JVM_StartThread + 1697
    15 libjvm.dylib 0x9aa650a9 JNICreateJavaVMImpl + 52779
    16 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 16:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 libjvm.dylib 0x9aacc770 jio_snprintf + 391418
    2 libjvm.dylib 0x9aadb1cf JVM_MonitorWait + 3787
    3 libjvm.dylib 0x9aada7f2 JVM_MonitorWait + 1262
    4 libjvm.dylib 0x9aada4fa JVM_MonitorWait + 502
    5 <<00000000>> 0x1049d011 0 + 273272849
    6 <<00000000>> 0x1049d864 0 + 273274980
    7 <<00000000>> 0x10436cc0 0 + 272854208
    8 <<00000000>> 0x103c4c19 0 + 272387097
    9 <<00000000>> 0x103c215d 0 + 272376157
    10 libjvm.dylib 0x9aacde4e jio_snprintf + 397272
    11 libjvm.dylib 0x9aada2ef JVM_StartThread + 2323
    12 libjvm.dylib 0x9aada201 JVM_StartThread + 2085
    13 libjvm.dylib 0x9aada151 JVM_StartThread + 1909
    14 libjvm.dylib 0x9aada07d JVM_StartThread + 1697
    15 libjvm.dylib 0x9aa650a9 JNICreateJavaVMImpl + 52779
    16 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 17:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082869a CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x90839577 CFRunLoopRun + 60
    3 com.apple.QuickTime 0x9436eace QTSNetworkThread_RunThread + 117
    4 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 18:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082869a CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x90827eb5 CFRunLoopRunInMode + 61
    3 com.apple.audio.CoreAudio 0x9145b8da HALRunLoop::OwnThread(void*) + 158
    4 com.apple.audio.CoreAudio 0x9145b6f5 CAPThread::Entry(CAPThread*) + 93
    5 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 19:
    0 libSystem.B.dylib 0x90024427 semaphorewait_signaltrap + 7
    1 com.apple.ColorSync 0x9159a6bf pthreadSemaphoreWait(t_pthreadSemaphore*) + 35
    2 com.apple.ColorSync 0x915b4dd0 CMMConvTask(void*) + 60
    3 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 20:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 ...romedia.Flash Player.plugin 0x1b7df9b1 nativeShockwaveFlashTCallFrame + 325701
    2 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000001 ebx: 0x00000000 ecx: 0x1b961bf8 edx: 0x90029ac0
    edi: 0x00000000 esi: 0x00000001 ebp: 0x1dc94ef0 esp: 0x00000001
    ss: 0x0000001f efl: 0x00010202 eip: 0x90029ae5 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0xdefff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x6c2000 - 0x6c2fff com.apple.JavaPluginCocoa 11.4.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x6db000 - 0x6e7fff com.apple.JavaPluginCocoa15 11.4.0 /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Resources/JavaPlugin Cocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0xd261000 - 0xd262fff com.apple.textencoding.unicode 2.1 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xd75d000 - 0xd75ffff com.apple.AutomatorCMM 1.0.1 (68) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0xd7c9000 - 0xd7cdfff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0xd81c000 - 0xd81cfff com.apple.SpotLightCM 1.0 (121.34) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x1af8b000 - 0x1affcfff com.DivXInc.DivXDecoder 6.2.5 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1b405000 - 0x1b919fff com.macromedia.Flash Player.plugin 9.0.0 (1.0.4f20) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1cd01000 - 0x1cd09fff net.telestream.wmv.webplugin 2.1.0.33 /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.webplugin/Contents/MacOS/Flip4Mac WMV Plugin
    0x1e219000 - 0x1e255fff com.apple.QuickTimeFireWireDV.component 7.1.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1e261000 - 0x1e27afff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1e27f000 - 0x1e298fff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1ea72000 - 0x1ec65fff net.telestream.wmv.import 2.1.0.33 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1f7b2000 - 0x1f7cefff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x1fb8c000 - 0x1fbb0fff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1fbdf000 - 0x1fbe1fff com.apple.PDFImporter 1.6 (???) /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter
    0x20605000 - 0x2075efff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x2078a000 - 0x20978fff com.apple.ATIRadeonX1000GLDriver 1.4.40 (4.4.0) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x20dc8000 - 0x20dcdfff com.apple.audio.AppleHDAHALPlugIn 1.2.4 (1.2.4a21) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x212bf000 - 0x212e8fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x70000000 - 0x7010bfff com.apple.audio.units.Components 1.4.3 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe49fff dyld 46.9 /usr/lib/dyld
    0x90000000 - 0x9016ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901bf000 - 0x901c1fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c3000 - 0x901fffff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90226000 - 0x902fbfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031b000 - 0x9076ffff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90806000 - 0x908cefff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9090c000 - 0x9090cfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9090e000 - 0x90a01fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a51000 - 0x90ad0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90af9000 - 0x90b5dfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bcc000 - 0x90bd3fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bd8000 - 0x90c4bfff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c60000 - 0x90c72fff libauto.dylib /usr/lib/libauto.dylib
    0x90c78000 - 0x90f1efff com.apple.CoreServices.CarbonCore 682.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f61000 - 0x90fc9fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91001000 - 0x9103ffff com.apple.CFNetwork 129.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91052000 - 0x91062fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9106d000 - 0x910ebfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91120000 - 0x9113efff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9114a000 - 0x91158fff libz.1.dylib /usr/lib/libz.1.dylib
    0x9115b000 - 0x912fafff com.apple.security 4.5.1 (29002) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913f8000 - 0x91400fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91407000 - 0x9142dfff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9143f000 - 0x91446fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9144a000 - 0x914c3fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91511000 - 0x91511fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91513000 - 0x9153efff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91551000 - 0x91625fff com.apple.ColorSync 4.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91660000 - 0x916ddfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170a000 - 0x917b3fff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917d9000 - 0x91824fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91843000 - 0x91859fff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91865000 - 0x9187ffff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91889000 - 0x918c6fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918da000 - 0x918e6fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918ed000 - 0x91928fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9193a000 - 0x919ecfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a32000 - 0x91a48fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a4d000 - 0x91a6bfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a70000 - 0x91acefff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91ae0000 - 0x91ae4fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91ae6000 - 0x91b63fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b67000 - 0x91ba4fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91baa000 - 0x91bc4fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bc9000 - 0x91bcbfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bcd000 - 0x91bcdfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91bcf000 - 0x91c5dfff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91c64000 - 0x91c64fff 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
    0x91c66000 - 0x91cbffff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91cc8000 - 0x91cecfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91cf4000 - 0x920fdfff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92137000 - 0x924ebfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92518000 - 0x9259cfff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x925d8000 - 0x92808fff com.apple.Foundation 6.4.7 (567.28) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92914000 - 0x929f2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92a0f000 - 0x92afcfff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b0c000 - 0x92b23fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b2e000 - 0x92b86fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92b9a000 - 0x92b9afff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92b9c000 - 0x92bacfff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bba000 - 0x92bc2fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bc8000 - 0x92bcdfff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bd3000 - 0x92c64fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c78000 - 0x92c7bfff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c7e000 - 0x92c9bfff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cab000 - 0x92cb1fff com.apple.print.framework.Print 5.1 (192.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cb7000 - 0x92d1afff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d3e000 - 0x92d7ffff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92da6000 - 0x92db3fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dba000 - 0x92dbffff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dc4000 - 0x930b6fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931bb000 - 0x931c6fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931cb000 - 0x931e6fff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x931ef000 - 0x931f3fff com.apple.JavaVM 11.4.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x93236000 - 0x93236fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93238000 - 0x938eefff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c6f000 - 0x93ce9fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d22000 - 0x93de3fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e23000 - 0x93e23fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e25000 - 0x93ff7fff com.apple.QuartzCore 1.4.9 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94048000 - 0x94089fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94091000 - 0x940cbfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94159000 - 0x94197fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x941db000 - 0x941ebfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x941f8000 - 0x94235fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94251000 - 0x94260fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94267000 - 0x94272fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942be000 - 0x942d8fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x942de000 - 0x94597fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x946f8000 - 0x94841fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x948cd000 - 0x948dcfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x948e3000 - 0x9490cfff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94912000 - 0x94921fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94925000 - 0x94949fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94955000 - 0x94972fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94c9d000 - 0x94d30fff com.apple.WebKit 418.9 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94d8a000 - 0x94e0cfff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94e3f000 - 0x9511efff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9529d000 - 0x952c0fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9545a000 - 0x95496fff com.apple.QTKit 7.1.3 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96443000 - 0x96443fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x969b9000 - 0x96a87fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96aa2000 - 0x96aa3fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96aa5000 - 0x96aaafff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96e24000 - 0x96e38fff com.apple.audio.CoreAudioKit 1.0.1 /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x975b1000 - 0x975c0fff com.apple.JavaApplicationLauncher 11.4.0 /System/Library/PrivateFrameworks/JavaApplicationLauncher.framework/Versions/A/ JavaApplicationLauncher
    0x97d8d000 - 0x98877fff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98a86000 - 0x98a88fff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x98a8a000 - 0x98c32fff QuickTimeH264.scalar /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x98ca2000 - 0x98d5ffff com.apple.QuickTimeMPEG4.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x98d79000 - 0x98ecafff com.apple.QuickTimeStreaming.component 7.1.3 /System/Library/QuickTime/QuickTimeStreaming.component/Contents/MacOS/QuickTime Streaming
    0x996be000 - 0x996f5fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x99711000 - 0x99723fff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9aa21000 - 0x9aa21fff libcmm.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libcmm.jni lib
    0x9aa57000 - 0x9ad86fff libjvm.dylib /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjvm.dyl ib
    0x9adb0000 - 0x9adcbfff libjava.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjava.jn ilib
    0x9add6000 - 0x9adddfff libverify.dylib /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libverify. dylib
    0x9ae1b000 - 0x9afa7fff libawt.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libawt.jni lib
    0x9b012000 - 0x9b05bfff libfontmanager.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libfontman ager.jnilib
    0x9b078000 - 0x9b09afff libjpeg.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjpeg.jn ilib
    0x9b0e9000 - 0x9b0f3fff libnet.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libnet.jni lib
    0x9b0f6000 - 0x9b0f9fff libnio.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libnio.jni lib
    0x9b0fe000 - 0x9b145fff libsuncmm.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libsuncmm. jnilib
    0x9b14e000 - 0x9b159fff libzip.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libzip.jni lib
    0x9b1b5000 - 0x9b1b9fff libdeploy.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libdeploy. jnilib
    Host Name: Larry
    Date/Time: 2006-11-03 19:31:40.141 -0800
    OS Version: 10.4.8 (Build 8L2127)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [55]
    Version: 2.0.4 (419.3)
    Build Version: 2
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 201
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x0ca06004
    Thread 0 Crashed:
    0 com.apple.CoreGraphics 0x90326ef7 _CGSLockWindow + 1805
    1 com.apple.CoreGraphics 0x9033744e CGSDeviceLock + 215
    2 libRIP.A.dylib 0x942c06a6 ripd_Lock + 53
    3 libRIP.A.dylib 0x942bff57 ripl_BltShape + 139
    4 libRIP.A.dylib 0x942c4f79 ripc_Render + 837
    5 libRIP.A.dylib 0x942c439c ripc_DrawRects + 302
    6 com.apple.CoreGraphics 0x9033c6df __CGContextDrawRects + 319
    7 com.apple.CoreGraphics 0x9033c571 CGContextFillRects + 117
    8 com.apple.CoreGraphics 0x9033c4f8 CGContextFillRect + 32
    9 com.apple.AppKit 0x93296425 NSRectFill + 281
    10 com.apple.AppKit 0x93291c39 _NXAllocateImageCache + 2435
    11 com.apple.AppKit 0x93290f8a -[NSCachedImageRep _initWithSize:depth:separate:alpha:allowDeep:] + 350
    12 com.apple.AppKit 0x93290e26 -[NSCachedImageRep initWithSize:depth:separate:alpha:] + 78
    13 com.apple.AppKit 0x93290d25 -[NSImage lockFocus] + 285
    14 com.apple.Safari 0x0001dcbc 0x1000 + 117948
    15 com.apple.Safari 0x0001d8ed 0x1000 + 116973
    16 com.apple.AppKit 0x932ce3b1 -[NSView _drawRect:clip:] + 3228
    17 com.apple.AppKit 0x932cc893 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1273
    18 com.apple.AppKit 0x932cd041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    19 com.apple.AppKit 0x932cd041 -[NSView _recursiveDisplayRe

    OK, Here is the scoop you can spend hours and hours trying to decipher what's going on or you can do the simple fixes. 1) add another user-if the problem persist you have a system wide problem. 2)For the heck of it use your original install cd and hold down the "C" key and restart. Ignore the install menu and use the utilitie menu on the top left. Choose disk utility and repair your disk. Also after that's done open system profiler in the same menu and verify that you have the most current firmware which would be Boot ROM Version:IM41.0055.B03. If thats all good you have a corrupt file somewhere in your system files (or something missing). Use the same disk and do a archive and install with your disk. You will have to drag you mail folder over and possibly update some software but......... your free. Good luck.

  • Help my safari doesnt open and gives me a crash report

    help my safari doesn't open and gives me a crash report ever since i downloaded a file from the internet. I have a macbook air (early 2014) with running os x yosemite version 10.10.1

    There is no need to download anything to solve this problem.
    You may have installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

  • How can I buy films in languages other than German in Germany? Quite disappointed, i would line to watch films in Original language and not dubbed in strange ways...

    How can I buy films in languages other than German in Germany? Quite disappointed, i would like
    to watch films in Original language and not dubbed in strange ways...

    You are at the mercy of the content owners/copyright holders. They decide what the Apple can sell in each iTS.
    MJ

Maybe you are looking for

  • Occurred in module "ip" due to a NULL pointer dereference

    My solaris 10 x86 server would auto reboot 3 to 4 times at each day. System Config:- Dual Pentium III 1GHz VIA Chips Set main board 512MB RAM LGI SCSI Interface Hitaichi 73GB SCSI HDD Seagate 120GB IDE HDD Intel VGA Display Card 3Com 3c905 Network Ca

  • ZEN - firmware 1.

    My ZEN reports I have firmware .3.4 (was on service due some problems with the LCD) and the update program indicates that this firmware is old (?!?) and recommend me to upgrade to .2.0. Any advice?

  • Zen Micro is it worth

    Would anyone strongly suggest buying the zen touch. Is the touch good?

  • Remove Spots Cursor Problem

    I have a strange problem with Remove Spots on my desktop PC (WinXP, Core Duo 2.4, 4Gb Ram) running LR 1.3.1 The remove spots cursor seems to have some sort of crazy damping effect (the best way I can describe it). If I move the cursor then stop, the

  • Diffrent languages in form builder

    Hi Is there a function in the form builder can test for the actor’s portal language and then display labels etc. in the correct language? I thought that I could make a property for each label entry. To this property I could attach text strings for ea