Acrobat version conflict when opening an electronic form

I have created an electronic form using Acrobat 9.0 that takes advantage of users being able to open, edit and save the form using Reader 9.0. The form includes a version-checking javascript to ensure users minimally have Reader 8.0 or 9.0 installed so that they can properly modify & save.
Unfortunately, some users have Acrobat 7.0 Standard installed on their system, and despite the fact they have set Reader 9.0 as the default application to globally open files having the .pdf extension, they're running into a problem where they always get a "wrong version" error message involving Acrobat 7.0 when trying to open the form, even from within Reader. The only remedy we've found so far is to remove the Acrobat 7.0 Standard program from their system.
Of course, this is not satisfactory, since they need to be able to modify their own and other files using their Acrobat 7.0 Standard, and do not wish to upgrade to a newer version at this time.
We'd sure appreciate any assistance or solutions with this dilemma.
Thanks in Advance,
--Calamity Vic--

Hello Michael,
Thanks for your helpful response. I was not aware of any limitation for users to prevent an installation of both Acrobat and Reader on the same system. Many of us have both in order that we can use Acrobat to develop our documents, then use the free Reader program to test and verify their function as our users will experience them.
FYI, the javascript in the form is set up to check if the user has Reader 8 or better and close the doc if not. The reason for this is that users of the form need to be able to fill the form plus add personal stamps and such -- then save their changes -- which function was only implemented at version 8.
Here is the javascript used:
if (app.viewerVersion < 8) {
    app.alert("You must have Acrobat Reader 8.0 or better to use this form.\n\nYou can find more information about and download the latest version FREE by going to http://www.adobe.com/products/reader/")
    this.closeDoc(true)
I see one solution to this that our "super user" who uses both Acrobat 7 and needs to open the form in Reader could consider setting up a second system which has Acrobat 7 installed, with Reader only installed on their main system. This is probably not very feasible though, since there will likely be a group (as many as 5-10) of super users here needing to use our form in this way.
Please let me know your opinion.
Many thanks again,
--Calamity Vic--

Similar Messages

  • FRM-92101 when openning a particular form

    Hello,
    When opening a particular form, users are encountering the error message:
    FRM-92101: There was a failure in the forms server during startup. This could happen due to invalid configuration
    We have many more forms in the application. Those are working fine.
    Details:
    OAS is 10.1.2.0.2 on windows 2003 server
    Database 10.2
    Could you please have a look on the issue.
    Regards,
    murali

    Hi,
    If you have access to metalink I recommend you this note :
    [url https://support.oracle.com/CSP/main/article?cmd=show&id=189867.1&type=Not]Master Note for: Forms: 9.x and 10.x: Troubleshooting FRM-92050, FRM-921xx [ID 189867.1]
    I also use a tip when I encounter this problem that consist on making a search/replace pl/sql : search the string "*;*" and replace it by the same "*;*" .
    That make to whole forms to be recompile for sure.
    And it works for me.
    Regards
    JeanYves

  • Error when opening large data forms

    Hi,
    We are working on a Workforce planning implementation. We have 2 large custom defined dimensions.
    When opening large data forms we get a standard "Error has occurred" error. If we reduce the member selection the data form opens fine.
    Is anyone aware of a setting that can be increased to open large data forms? Im not referring to the "Warn id data form is larger than 3000 cells" setting.
    Im pretty sure there is a parameter that can be increased but I cant find it.
    Thanks for your help.
    Seb

    Hi Seb,
    If you do find the magic parameter then let us know because I would be interested to know.
    It is probably something like ALLOW_LARGE_FORMS = true :)
    In the planning logs is the error related to planning or is essbase related error.
    Is it failing due to the amount of rows or is it because it is going beyond the max of 256 columns ?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Acrobat versions conflicts, GetObject of a specific Acrobat version with dotnet

    Hello,
    I am developing a Windows/VB.Net application that uses "Adobe Acrobat 7.0 Type Library" to interact with Acrobat.
    At a certain point this application must launch Acrobat 7.0 and to do that I use a GetObject(, "acroexch.app") and a CreateObject("acroexch.avdoc") to instanciate an Acrobat.CAcroApp and an Acrobat.CAcroAVDoc object:
    Dim acroApp As Acrobat.CAcroApp = GetObject(, "acroexch.app")
    Dim acroAvDoc As Acrobat.CAcroAVDoc = CreateObject("acroexch.avdoc")
    If acroAvDoc.Open(path, filename) Then
    acroApp.Show()
    Else
    acroApp.Exit()
    End If
    This works fine except when Acrobat 5.0 is also installed on the PC.
    Because if the user has admin rights and launches Acrobat 5.0 then the next time he/she tries my application it raises an exception on "acroAvDoc.Open(path, filename)". I know that this problem comes from Acrobat 5.0 because when the user launches Acrobat 7.0 and executes the "Detect and Repair" menu item (under "?" menu) then my application works fine again.
    So my questions are:
    1°) is it possible to specify the Acrobat version when using CreateObject and GetObject? As with a kind of GetObject(, "acroexch.app.acrobat7")?
    2°) is it possible to avoid the registry modification made when Acrobat 5.0 is executed with admin rights?
    3°) if none of the previous points are possible then is there any other way around this problem? (such as executing Acrobat 7.0 with Shell(acrobat7ExePath) and then retrieving the Acrobat.CAcroApp from the ProcessID?)
    Any hint will be helpful.

    Aandi, thank you for your reply. If Acrobat 5 has been launched at least once after installing Acrobat 7 then it modifies the registry in such a manner that even if you restart the computer and execute Acrobat 7 all ProgIDs from the SDK refer to Acrobat 5 (and then my application crashes). So you are right, using GetObject and CreateObject with the PRogIDs "acroexch.app" and "acroexch.avdoc" will not lead anywhere with conflicting versions of Acrobat.
    About executing Acrobat 7 with the "Shell()" command, is it possible to instanciate the Acrobat.CAcroApp object only by knowing the ProcessID?
    Such as (with acroPath being the path to Acrobat 7.0 exe file):
    Dim processID as integer = Shell(acroPath, AppWinStyle.MinimizedNoFocus)
    Dim proc As Process = Process.GetProcessById(processID)
    Dim acroApp As Acrobat.CAcroApp = SuperUnknownFunction(proc)
    To John T Smith: sorry if I did a mistake when I chose "Acrobat Windows" forum for my post. As this problem was tightly related to Windows registry I thought that it was the right place. Is it possible to move this discussion on another forum?

  • Error in Acrobat 6.0 When Opening PDF Sent from Acrobat 9.0

    The following error occurs:
    "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem"
    When opening a PDF sent from Acrobat 9.0.  I have Acrobat 6.0.
    The opened PDF displays OK.
    Is there a patch for this?

    There are also a lot of folks who automatically create the newest, best PDF with the latest technology and assume everyone will be able to read it. This will work for a lot of things, but there are typically features in the newer PDF versions that cause errors in older systems, such as you are getting. There are 3 choices: 1. Ask the creator to create a new version that is AA6 compatible (either in the creation process or using Reduce File Size or PDF Optimize); 2. Upgrade your AA6 to a newer version. I am not sure how far back AAX will go for upgrade -- typically 2 or 3 versions; 3. Download the new Reader and deal with compatibility issues between AR and your AA6 (there are bound to be a few -- but are typically workable once you figure out how. This is not an Adobe recommended solution).

  • New version crash when opened 4 or more tabs, high mem Usage!!

    This happened after i update firefox newest update about 2 week ago, when i opened 4 tabs or more after several times firefox freeze then continue, after that crash and and message appear contact microsoft not monzilla, i think my sytem error so i reinstall my windows and download new firefox, but still crash... i checked mem Usage is very high, it's never happened at older version even i opened 7 or 8 tabs, so please fix it at next version.. for info i use old P4 with 256mb mem and windowsXp sp2 system ... no viruses on my PC because protect by Kapersky and AVG and fresh after reinstall !!
    == This happened ==
    Every time Firefox opened
    == Opened 4 or more tabs

    256 MB RAM is very low. Add some if you can; RAM is really not very expensive.
    My P4 XP system (with 1.5GB RAM) routinely shows Firefox running 150-200 MB of usage with 20 or so tabs (no active content like Flash running). With only 256 MB, your system is using the swap file (aka, virtual memory, in the form of hard drive file) and slowing your system down.
    AVG Safe Search has recently been linked to high high CPU usage and crashes in Firefox. See:
    http://support.mozilla.com/tiki-view_forum_thread.php?comments_parentId=656957&forumId=1
    http://support.mozilla.com/en-US/kb/Firefox+crashes+due+to+AVG+SafeSearch
    http://support.mozilla.com/en-US/kb/Controlling+AVG+Firefox+add-ons
    NOTE: Upgrade to XP SP3; support for SP2 ending very soon.

  • Getting Prompt for Credentials When Opening InfoPath 2010 Form in Sharepoint 2010

    I have a domain user who runs Office 2010 x32 and uses a Sharepoint 2010 site daily. Lately a specific page on that site has been randomly giving prompts for credentials when opening existing documents and creating new ones. The process can be most easily
    replicated by opening the new document template in Infopath by going to Documents -> New in the ribbon bar of the SP page. Most of the time the Windows credentials for the user are passed to Infopath/Sharepoint automatically (which is normal), but on the
    fourth or fifth attempt to create a new form, the prompt appears. The user can still enter the credentials and open the blank template form, but a prompt should not appear. The user is also the administrator for that page, so I'm thinking it's not a permissions
    issue.
    The user is running IE 9 on Windows 7 Pro x64. I have performed the following:
    Reset advanced IE settings and all user cache data
    Cleared cached Sharepoint credentials in Windows credential manager
    Re-applied group policy for the machine using gpupdate /force
    Logged in with a clean temporary profile
    Logged in to another domain account using the user's Sharepoint credentials
    Cleared Infopath cache
    Re-installed Office 2010 x32
    The problem only occurs only on this particular machine. There are no Sharepoint or authentication-related errors or warnings in the application and system event logs. There are also no error messages on-screen when the prompt appears. I also considered
    the possibility of this being a performance related issue in the case that maybe Infopath was taking too long to start, causing the credential pass-through process to time out and fall back to a prompt. I ran disk cleanup, deleted some temporary files, and
    checked for excessive CPU/memory load. I didn't find any issues and doing these things did not help.
    I'm convinced there is another setting somewhere in Windows that is causing this. Interestingly it always happens after four or five attempts, never the first time. Can someone point me in the right direction?

    Hi Titan, this sounds like an IE security setting issue. Things to do:
    1. In Internet options>Security>Local Intranet, make sure "Enable Protected Mode" is not selected.
    2. Under Sites>Advanced, add https://*.sharepoint.com (and make sure "Require server verification..." is not checked).
    3. Under Security>Custom Level, scroll all the way to the bottom and make sure "Automatic logon with current user..." is checked.
    cameron rautmann

  • Highlighted Fields in forms to be switched off when opening a pdf form

    I have created a simple form and understand that when different machines open the forms that the "Highlight Fields" is either on or off depending on how each user has their reader setup. Is there any way that when I create the form and tell reader when it is opened to have the highlight fields switched off?

    Yes, but it's an app-wide setting and it's is considered "rude" behaivour
    to make such changes without at least informing the user of it, or (better
    yet) ask for their permission to do so.

  • Error when open Resouse Viewer form NEBC

    Hi experts,
    I facing a error when opening Resouse Viewer from NWBC.
    Could you kindy provide some ideas or suggestiongs, Thanks in advance.
    Best Regards,
    Matthew He

    Hello,
    the SAP Visual Business frontend component requires the FPM application to run in a browser mode 'standard'. You can press F12 in your browser to adjust this.
    Check note 1987004 to adjust the default mode for the application.
    In addition, it is important to check the SAP VB installation guide for the right NWBC and browser version.
    Hope this helps,
    Marcus

  • Adobe Acrobat Reader Starts when opening a Remote Desktop Session

    I recently upgraded to Acrobat Reader 8. Now I have a problem that Acrobat Reader loads when I open a Remote Desktop session. Has anyone else experienced this? Does anyone know what I should look at to get it to stop loading? Thank you.

    After a third uninstall and re-install I've managed to crack it.
    Thanks anyhow everyone.

  • Upgraded to new version and when opened it says invalid request

    upgraded version when opened it says invalid request and you cannot use it at all so i reinstalled the old version and that works just fine, so i cant get this to upgrade properly any suggestions ???????

    Which page opens?
    See these articles for some suggestions:
    *https://support.mozilla.org/kb/Firefox+has+just+updated+tab+shows+each+time+you+start+Firefox
    *https://support.mozilla.org/kb/How+to+set+the+home+page - Firefox supports multiple home pages separated by '|' symbols
    *http://kb.mozillazine.org/Preferences_not_saved

  • Acrobat XI programmatically reset/clear all form fields when opening a PDF form

    I've got a PDF form document that I'm working on.  I'd like to add something to it to programmatically clear or reset all form fields to blank when the document is opened.
    Thoughts/ideas??
    Mucho thanks!!

    You can use the resetForm JavaScript method, either in the initial page's Page Open event or in a document-level JavaScript whic will execute when the document is opened.
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.523.html

  • Selecting which version of Acrobat to use when opening a pdf

    I have a user who has Acrobat 5, 6, & 7 installed on his 10.3 system (don't ask me why - he just does).
    If you do a GetInfo on a .pdf document, Acrobat 5 is listed as the default (which is what he wants).
    However, if he uses Safari and clicks on a link to a .pdf document, it opens the document (in Safari) using Acrobat 7. He wants it to open the document external to Safari using Acrobat 5.
    How can he set this (there doesn't seem to be a setting to control it).?

    I did see another thread on how to disable the plugin:
    Trash the file /Library/Internet Plug-Ins/AdobePDFViewer.plugin and restart Safari.
    This did exactly what I was looking for.

  • Adobe Acrobat XI crashing when opening PDFs in Yosemite

    I am having a problem with Acrobat XI Pro continually crashing when I open PDF files stored on my hard drive.  The documents will then open, and Acrobat will behave normally for a bit, and then, the next time I try to open a PDF, the program crashes.  One of the crash logs is pasted below.  Does anyone have any solutions for this?  It is VERY annoying after a while.  Thanks in advance.
    Process:               AdobeAcrobat [3671]
    Path:                  /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:            com.adobe.Acrobat.Pro
    Version:               11.0.10 (11.0.10)
    Code Type:             X86 (Native)
    Parent Process:        ??? [1]
    Responsible:           AdobeAcrobat [3671]
    User ID:               501
    Date/Time:             2014-12-20 11:56:49.192 -0500
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        B94631FC-4881-B3BD-6DCD-EF2D8388D588
    Sleep/Wake UUID:       11333F74-8758-4449-98A9-D62E5440BEF8
    Time Awake Since Boot: 99000 seconds
    Time Since Wake:       9400 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x000000006f7265d1
    VM Regions Near 0x6f7265d1:
        __LINKEDIT             00000000495d5000-0000000049634000 [  380K] r--/rwx SM=COW  /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/GeForceTe slaGLDriver
    -->
        MALLOC_TINY            000000007ae00000-000000007b000000 [ 2048K] rw-/rwx SM=COW 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.Acrobat.framework   0x001d4bf9 RunAcrobat + 1380573
    1   com.adobe.Acrobat.framework   0x0131347b AcroSecurityBailOutImpl + 15689117
    2   com.adobe.Acrobat.framework   0x00e25ea2 AcroSecurityBailOutImpl + 10522564
    3   com.adobe.Acrobat.framework   0x0023b2da RunAcrobat + 1800126
    4   com.adobe.Acrobat.framework   0x00104f2e RunAcrobat + 529426
    5   com.adobe.Acrobat.framework   0x000ff1eb RunAcrobat + 505551
    6   com.adobe.Acrobat.framework   0x000fee86 RunAcrobat + 504682
    7   com.adobe.Acrobat.framework   0x000fec7e RunAcrobat + 504162
    8   com.adobe.Acrobat.framework   0x000fe2bc RunAcrobat + 501664
    9   com.adobe.Acrobat.framework   0x000fdf21 RunAcrobat + 500741
    10  com.apple.AppKit               0x93164d57 -[NSView _drawRect:clip:] + 4221
    11  com.apple.AppKit               0x93163582 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2071
    12  com.apple.AppKit               0x931638d9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2926
    13  com.apple.AppKit               0x931638d9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2926
    14  com.apple.AppKit               0x931638d9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2926
    15  com.apple.AppKit               0x931638d9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2926
    16  com.apple.AppKit               0x931638d9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2926
    17  com.apple.AppKit               0x9316153a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 876
    18  com.apple.AppKit               0x931627f4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5670
    19  com.apple.AppKit               0x931627f4 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5670
    20  com.apple.AppKit               0x93160d14 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 311
    21  com.apple.AppKit               0x9315da78 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2942
    22  com.apple.AppKit               0x9313af51 -[NSView displayIfNeeded] + 1629
    23  com.apple.AppKit               0x9315975c -[NSWindow displayIfNeeded] + 324
    24  com.adobe.Acrobat.framework   0x000f542d RunAcrobat + 465169
    25  com.apple.AppKit               0x93198570 _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 1262
    26  com.apple.AppKit               0x9380365b __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1560 + 58
    27  com.apple.CoreFoundation       0x97c4aa2d _runLoopObserverWithBlockContext + 29
    28  com.apple.CoreFoundation       0x97c4a40e __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 30
    29  com.apple.CoreFoundation       0x97c4a350 __CFRunLoopDoObservers + 400
    30  com.apple.CoreFoundation       0x97c3bcb2 __CFRunLoopRun + 946
    31  com.apple.CoreFoundation       0x97c3b696 CFRunLoopRunSpecific + 390
    32  com.apple.CoreFoundation       0x97c3b4fb CFRunLoopRunInMode + 123
    33  com.apple.HIToolbox           0x9be46178 RunCurrentEventLoopInMode + 262
    34  com.apple.HIToolbox           0x9be45d83 ReceiveNextEventCommon + 192
    35  com.apple.HIToolbox           0x9be45cac _BlockUntilNextEventMatchingListInModeWithFilter + 99
    36  com.apple.AppKit               0x93028d99 _DPSNextEvent + 734
    37  com.apple.AppKit               0x930285e1 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 186
    38  com.apple.AppKit               0x9301adac -[NSApplication run] + 907
    39  com.adobe.Acrobat.framework   0x000854d2 RunAcrobat + 6582
    40  com.adobe.Acrobat.framework   0x00083c4f RunAcrobat + 307
    41  com.adobe.Acrobat.Pro         0x00076ed5 main + 91
    42  com.adobe.Acrobat.Pro         0x00076e71 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x9827e8d2 kevent64 + 10
    1   libdispatch.dylib             0x950a373f _dispatch_mgr_invoke + 245
    2   libdispatch.dylib             0x950a33a2 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: NSOperationQueue 0x7c267b60 :: NSOperation 0x7c267de0 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x9827d8fa __semwait_signal + 10
    1   libsystem_c.dylib             0x90693c16 nanosleep$UNIX2003 + 218
    2   com.apple.Foundation           0x99d7ce71 +[NSThread sleepForTimeInterval:] + 169
    3   com.adobe.Acrobat.framework   0x00edc25a AcroSecurityBailOutImpl + 11268988
    4   com.apple.Foundation           0x99ce8eae -[__NSOperationInternal _start:] + 770
    5   com.apple.Foundation           0x99ce8ba1 -[NSOperation start] + 71
    6   com.apple.Foundation           0x99ce89eb __NSOQSchedule_f + 213
    7   libdispatch.dylib             0x950a0130 _dispatch_client_callout + 50
    8   libdispatch.dylib             0x950a3d05 _dispatch_queue_drain + 1017
    9   libdispatch.dylib             0x950a599d _dispatch_queue_invoke + 186
    10  libdispatch.dylib             0x950a2f89 _dispatch_root_queue_drain + 395
    11  libdispatch.dylib             0x950b263d _dispatch_worker_thread3 + 97
    12  libsystem_pthread.dylib       0x9c1f8296 _pthread_wqthread + 724
    13  libsystem_pthread.dylib       0x9c1f5eea start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib         0x9827d516 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9c1f8b06 _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x9c1fc1d1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x95bea0fa TSWaitOnCondition + 133
    4   com.apple.CoreServices.CarbonCore 0x95bea332 TSWaitOnConditionTimedRelative + 195
    5   com.apple.CoreServices.CarbonCore 0x95bb5dff MPWaitOnQueue + 199
    6   com.adobe.ACE                 0x0238f4dc 0x238d000 + 9436
    7   com.adobe.ACE                 0x0238f441 0x238d000 + 9281
    8   com.apple.CoreServices.CarbonCore 0x95bb645a PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    10  libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    11  libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib         0x9827d516 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x9c1f8b06 _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x9c1fc1d1 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                 0x024f8e07 0x24ed000 + 48647
    4   com.adobe.AGM                 0x024f8d46 0x24ed000 + 48454
    5   com.adobe.AGM                 0x024f8ce4 0x24ed000 + 48356
    6   com.adobe.AGM                 0x024f8984 0x24ed000 + 47492
    7   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    8   libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    9   libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib         0x98277a2e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x98276ad0 mach_msg + 68
    2   com.apple.CoreFoundation       0x97c3cae6 __CFRunLoopServiceMachPort + 214
    3   com.apple.CoreFoundation       0x97c3bef9 __CFRunLoopRun + 1529
    4   com.apple.CoreFoundation       0x97c3b696 CFRunLoopRunSpecific + 390
    5   com.apple.CoreFoundation       0x97c3b4fb CFRunLoopRunInMode + 123
    6   com.apple.AppKit               0x9319c6b4 _NSEventThread + 283
    7   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    8   libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    9   libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib         0x9827e8b6 kevent + 10
    1   com.adobe.Acrobat.framework   0x01555b69 AcroSecurityBailOutImpl + 18058379
    2   com.adobe.Acrobat.framework   0x014b16f1 AcroSecurityBailOutImpl + 17385491
    3   com.adobe.Acrobat.framework   0x014ad7d1 AcroSecurityBailOutImpl + 17369331
    4   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    5   libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    6   libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib         0x98277a2e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x98276ad0 mach_msg + 68
    2   com.apple.CoreFoundation       0x97c3cae6 __CFRunLoopServiceMachPort + 214
    3   com.apple.CoreFoundation       0x97c3bef9 __CFRunLoopRun + 1529
    4   com.apple.CoreFoundation       0x97c3b696 CFRunLoopRunSpecific + 390
    5   com.apple.CoreFoundation       0x97c3b4fb CFRunLoopRunInMode + 123
    6   com.adobe.AcrobatPlugin.EFS   0x08050876 0x8039000 + 96374
    7   com.apple.Foundation           0x99d4fdcf -[NSThread main] + 45
    8   com.apple.Foundation           0x99d4fd21 __NSThread__main__ + 1538
    9   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    10  libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    11  libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 8:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib         0x98277a2e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x98276ad0 mach_msg + 68
    2   com.apple.QuartzCore           0x90d0bd5f CA::Render::Server::server_thread(void*) + 236
    3   com.apple.QuartzCore           0x90d0bc6a thread_fun + 29
    4   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    5   libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    6   libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x98277a2e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x98276ad0 mach_msg + 68
    2   com.apple.CoreFoundation       0x97c3cae6 __CFRunLoopServiceMachPort + 214
    3   com.apple.CoreFoundation       0x97c3bef9 __CFRunLoopRun + 1529
    4   com.apple.CoreFoundation       0x97c3b696 CFRunLoopRunSpecific + 390
    5   com.apple.CoreFoundation       0x97c3b4fb CFRunLoopRunInMode + 123
    6   com.apple.CFNetwork           0x910fd8df +[NSURLConnection(Loader) _resourceLoadLoop:] + 717
    7   com.apple.Foundation           0x99d4fdcf -[NSThread main] + 45
    8   com.apple.Foundation           0x99d4fd21 __NSThread__main__ + 1538
    9   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    10  libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    11  libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 10:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x9827d852 __select + 10
    1   com.apple.CoreFoundation       0x97c8b63a __CFSocketManager + 906
    2   libsystem_pthread.dylib       0x9c1f7ecf _pthread_body + 138
    3   libsystem_pthread.dylib       0x9c1f7e45 _pthread_start + 162
    4   libsystem_pthread.dylib       0x9c1f5f0e thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib         0x9827de6e __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9c1f836d _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x9c1f5eea start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib         0x9827de6e __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9c1f836d _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x9c1f5eea start_wqthread + 30
    Thread 13:
    0   libsystem_kernel.dylib         0x9827de6e __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x9c1f836d _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x9c1f5eea start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x6f726341  ebx: 0x013132d6  ecx: 0x8fe3e9e2  edx: 0x7ea4f600
      edi: 0x7be2bd14  esi: 0xa0396038  ebp: 0xbff86ee8  esp: 0xbff86ed0
       ss: 0x00000023  efl: 0x00010282  eip: 0x001d4bf9   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x6f7265d1
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
       0x76000 -    0x76fff +com.adobe.Acrobat.Pro (11.0.10 - 11.0.10) <9B19B497-B399-3889-9550-EE2FAAD48322> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
       0x7c000 -  0x21e5ff3 +com.adobe.Acrobat.framework (11.0.10 - 11.0.10) <70EEEAC3-C9F9-3C0E-A6CE-21221D5A7AAB> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    0x238d000 -  0x24dffe7 +com.adobe.ACE (AdobeACE 2.20.02.1 - 2.20.02.1) <711209D4-FBA8-37AE-9B21-E7F7EAE52A36> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x24ed000 -  0x2ac3ff7 +com.adobe.AGM (AdobeAGM 4.28.141.1 - 4.28.141.1) <336CD7B1-DC51-3AE3-B85C-2AE91B5E7337> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x2b2d000 -  0x2b4bff3 +com.adobe.BIB (AdobeBIB 1.2.03.1 - 1.2.03.1) <21A36908-3031-35AF-A74B-ECC65BEAEC9F> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x2b50000 -  0x2e4dffb +com.adobe.CoolType (AdobeCoolType 5.11.137.1 - 5.11.137.1) <E1F9A02C-FECB-329D-8408-9615CA5B6C86> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x2e80000 -  0x2edfffb  com.apple.QuickLookFramework (5.0 - 675) <56D079F9-5BA5-3C34-A074-E61A003CBA41> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x2f17000 -  0x2f30ff7  com.apple.ScriptingBridge (1.3.2 - 66) <479A4C55-AA2E-38CD-BAB5-346AB3915797> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x2f40000 -  0x2f40fff  com.apple.quartzframework (1.5 - 1.5) <6D85B29E-D684-3DDE-8F02-D292D86A014F> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x2f44000 -  0x34b7ff7  com.apple.QuartzComposer (5.1 - 325) <BBF0AE36-52FB-36FC-AF41-493A2ECA0A9E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x3721000 -  0x37cbff7  com.apple.PDFKit (3.0 - 3.0) <951B630D-691F-33C0-A8CB-1B4FC86C0128> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x381e000 -  0x3844ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <5712F712-4A1C-35BF-AE1D-F55DA1D9877D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x3863000 -  0x3aeefff  com.apple.imageKit (2.6 - 838) <F8830E45-BD83-3E23-BB81-376F7DBC49D7> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x3c97000 -  0x3d7efff  com.apple.QuickLookUIFramework (5.0 - 675) <B85FDA00-F7AD-31A9-955D-67F70B3E2066> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x3e01000 -  0x3e04fff  com.apple.AppleSystemInfo (3.0 - 3.0) <1530F7BC-4F0A-3827-B113-EA6A1899CE4A> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x3e0a000 -  0x3e94ff3  com.apple.CorePDF (4.0 - 4) <DA26FFBC-901A-3EF5-AF2F-9699683CB185> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x3ed8000 -  0x3ee2fff  com.apple.DisplayServicesFW (2.9 - 372.1) <01C3D99D-7F75-3401-95E8-5175E028EE21> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x3eef000 -  0x3f47ff3  com.apple.ImageCaptureCore (6.0 - 6.0) <C44A39AC-CE81-3447-A860-DD01B13AA8BB> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x6949000 -  0x698bff3  com.apple.CloudDocs (1.0 - 280.1.2) <0F6DAB87-5A29-38A4-9D39-EA299E06BA13> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
    0x7fb8000 -  0x8030ff7 +com.adobe.AcrobatPlugin.Search (11.0.10 - 11.0.10) <AEC209CF-6403-38A4-952E-0477EAE34D36> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Search.acroplugin/Contents/MacOS/Search
    0x8039000 -  0x805efff +com.adobe.AcrobatPlugin.EFS (11.0.10 - 11.0.10) <900CF1F2-6DCA-3A2F-AAEA-4763FA978723> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/EFS.acroplugin/Contents/MacOS/EFS
    0x8217000 -  0x8218ff7  com.apple.AddressBook.ContactsData (9.0 - 1499) <7C476EF7-CC52-316E-85F5-3D707DE5B71B> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
    0x821e000 -  0x821eff7  libodfde.dylib (22) <A0BC85E8-EA17-32ED-AA45-8E7F0ABA2943> /usr/lib/libodfde.dylib
    0x8260000 -  0x8286ffb +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <DE33E3BF-669D-3851-8C16-CA1CFCDA315A> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x82dc000 -  0x82fdff7 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.21186 - 3.7.101.21186) <D65C0C81-572E-3DCB-A1CF-BC5BF2D59500> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8 SharedExpat
    0x8b50000 -  0x8b9bfff +com.adobe.AcrobatPlugin.WebLink (11.0.10 - 11.0.10) <8ECACD36-B02A-3B70-AE19-BEE9A15EE4C1> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/WebLink.acroplugin/Contents/MacOS/WebLink
    0x8ba3000 -  0x8dddff3 +com.adobe.AcrobatPlugin.EScript (11.0.10 - 11.0.10) <C9FC4978-0620-399C-BBFA-F380551CD3C6> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/EScript.acroplugin/Contents/MacOS/EScript
    0x8e2d000 -  0x9602ffb +com.adobe.AcrobatPlugin.Comments (11.0.10 - 11.0.10) <ED6908F0-4BAE-3861-B49C-BA7C275DCB59> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Comments.acroplugin/Contents/MacOS/Comments
    0xb0ae000 -  0xb0aeff9 +cl_kernels (???) <BB56E556-D981-4CC3-B744-6BB6C18F1C3E> cl_kernels
    0xb0b0000 -  0xb19bff7  unorm8_bgra.dylib (2.4.5) <92A32497-932A-3966-91AD-DEA4CA456A5A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0xb1c9000 -  0xb1c9ffb +cl_kernels (???) <C4F613A6-10C3-454B-BFEA-31ADD4FFE1B6> cl_kernels
    0xd6d7000 -  0xd6e2fff  com.apple.IntlPreferences (2.0 - 150.1) <F505EE85-2D0B-30B7-9ECA-741D9241F501> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    0xd6eb000 -  0xd6effff  com.apple.LoginUICore (3.0 - 3.0) <9D1B9F88-89B4-3A1B-8ADF-0A790CB38E51> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0xd728000 -  0xd72fff3  com.apple.phonenumbers (1.1.1 - 105) <19A59F22-DD76-345E-AF7B-96405D71DB5A> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0xd78a000 -  0xd7e0ffb +com.adobe.AdobeXMPCore (Adobe XMP Core 5.4 -c 5 - 78.147326) <82EFE343-F643-34AD-94FA-293E338F1F9C> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xdadc000 -  0xdbb7ff3 +com.adobe.AcrobatPlugin.Web2PDF (11.0.10 - 11.0.10) <137E6479-87C3-3D83-AA83-3D0CBF153750> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Web2PDF.acroplugin/Contents/MacOS/Web2PDF
    0xdbc4000 -  0xdbcefff  com.apple.DirectoryService.Framework (10.10 - 187) <CD98D0B6-9642-3221-92B1-66297916B820> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0xdbd7000 -  0xdbdafff  com.apple.FileProvider (1.0 - 1) <6ADBEF63-59C5-3A54-9CC0-9F7BE2B08AD6> /System/Library/PrivateFrameworks/FileProvider.framework/FileProvider
    0xe130000 -  0xe160ff7 +com.adobe.AcrobatPlugin.Updater (11.0.10 - 11.0.10) <EC03D862-E720-39CC-9749-604B2F203CDB> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Updater.acroplugin/Contents/MacOS/Updater
    0xe190000 -  0xe19efff  com.apple.AddressBook.ContactsFoundation (9.0 - 1499) <8A98BE48-A2A1-3E55-A75A-C9CA0A85B3C1> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
    0xe1af000 -  0xe1baff7  com.apple.AppleFSCompression (68.1.1 - 1.0) <51462B36-AAE0-3AF3-B882-5D74B0B61651> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0xe1d1000 -  0xe1f1ffb  com.apple.addressbook.vCard (9.0 - 1499) <D4D6BC84-6BCC-3659-A102-118BDA8D125D> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0xe212000 -  0xe2e3ffc +com.lextek.onix (3.9.7.23 - Build 08/02/09) <115917DA-DD0D-3C40-17AA-3717B7C0DA23> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Onix.framework/Onix
    0xe31a000 -  0xe336ff7  com.apple.aps.framework (4.0 - 4.0) <CA48B496-1C08-36B7-BF46-1F53BF4E59B2> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0xe35d000 -  0xe3c5ffa +AcroSQLite (1) <8667FF2C-186C-33E6-96FD-ECED266933F1> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AcroSQLite.framework/Versions/A/AcroSQLite
    0x158ac000 - 0x15991ff7 +com.adobe.amtlib (amtlib 6.2.0.42 - 6.2.0.42) <979ED254-104A-0377-8FC4-E878DA48F523> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/amtlib.framework/amtlib
    0x15f54000 - 0x16285fff  com.apple.FinderKit (1.3.1 - 1.3.1) <90949541-97D7-340C-B6CE-95FE4967EB2B> /System/Library/PrivateFrameworks/FinderKit.framework/FinderKit
    0x16478000 - 0x164d6ffb  com.apple.Suggestions (4.0 - 165) <06A8826C-CE3E-3BDC-884A-463ACE91639C> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x1650a000 - 0x1654cff7  com.apple.bom (14.0 - 193.6) <8A66E20C-4275-3861-9C2D-F2F804105FBB> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x1655e000 - 0x1658eff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <00146784-3C0A-379F-AC70-D9285073D45C> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x165ae000 - 0x16815ff3  com.apple.AddressBook.framework (9.0 - 1499) <D5BA1270-FE8E-38CE-8B74-9EA046D90B65> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x169c8000 - 0x169f9ffb  com.apple.securityinterface (10.0 - 55058) <95726911-E181-3115-8451-EE1FA35A2937> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x16a94000 - 0x172b2ffb  libclh.dylib (4.0.3 - 4.0.3) <B14E74E7-5A76-303E-B8D0-75BE87556638> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/libclh.dy lib
    0x1733b000 - 0x17348ff3  libGPUSupport.dylib (11.0.7) <09EA0A63-EF6C-3909-9CFE-5A475A2F51E2> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x179c6000 - 0x17aacff7  unorm8_rgba.dylib (2.4.5) <53C2DC36-5D81-361F-8F42-048875F5BEDD> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
    0x17ad8000 - 0x17ca0ffb +com.adobe.AcrobatPlugin.DigSig (11.0.10 - 11.0.10) <D573638E-26AD-3245-B16D-15C7F508F8C6> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/DigSig.acroplugin/Contents/MacOS/DigSig
    0x17e90000 - 0x17eabff7  com.apple.security.csparser (3.0 - 57031.1.35) <26E8C07B-7875-3D39-8377-E5DE7389771B> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
    0x18198000 - 0x18198ff0 +cl_kernels (???) <7B2DED61-E760-4859-98C1-4CBF1E5AA386> cl_kernels
    0x182af000 - 0x182afffb +cl_kernels (???) <C4F613A6-10C3-454B-BFEA-31ADD4FFE1B6> cl_kernels
    0x182be000 - 0x182beff0 +cl_kernels (???) <7B2DED61-E760-4859-98C1-4CBF1E5AA386> cl_kernels
    0x1972b000 - 0x1a1e1ff7 +com.adobe.AcrobatPlugin.PPKLite (11.0.10 - 11.0.10) <3B98FF2B-96FB-3E51-AAEE-4420FF0F6FFA> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/PPKLite.acroplugin/Contents/MacOS/PPKLite
    0x1aba8000 - 0x1bc0affb +com.adobe.AcrobatPlugin.AcroForm (11.0.10 - 11.0.10) <311CE251-982E-382C-ADFF-EBF971632D63> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/AcroForm.acroplugin/Contents/MacOS/AcroForm
    0x48000000 - 0x488f0fff  com.apple.GeForceTeslaGLDriver (10.0.19 - 10.0.0) <151074BF-3DA4-3022-A2A3-286CACFC1A25> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/GeForceTe slaGLDriver
    0x8fe06000 - 0x8fe39e03  dyld (353.2.1) <EBFF7998-58E8-32F5-BF0D-9690278EC792> /usr/lib/dyld
    0x90008000 - 0x90015fff  com.apple.OpenDirectory (10.10 - 187) <94A3ED17-CD64-3D4A-8470-69C937CABF50> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x90016000 - 0x90019fff  libpam.2.dylib (20) <E2F34522-448A-3392-BC1D-6625BEB612B9> /usr/lib/libpam.2.dylib
    0x9001e000 - 0x90020ffb  libCGXType.A.dylib (772) <9F0C0190-2E25-361D-9713-33C3DDADE8F3> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x90021000 - 0x90060fff  com.apple.NavigationServices (3.8 - 215.1) <46D8B66D-CB59-36F5-BD26-FD8309337BB3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90061000 - 0x90177ff3  com.apple.desktopservices (1.9 - 1.9) <01A07F2E-9F9A-3847-AB11-C550827B3778> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90178000 - 0x901a1fff  libRIP.A.dylib (772) <0B645C55-5450-320B-BF84-408B66A29364> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x901a2000 - 0x901d5fe3  libsystem_m.dylib (3086.1) <951F633F-57B7-398B-912F-F6ED4DB1C597> /usr/lib/system/libsystem_m.dylib
    0x901d6000 - 0x90558ff7  com.apple.VideoToolbox (1.0 - 1562.19) <0DF7B33E-B8BE-385E-931A-B7E7ECF16B7B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90559000 - 0x90559fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <180BFBE5-2218-3A6F-A1B2-CCA1C92B66F7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9055a000 - 0x9058dfff  com.apple.CoreServicesInternal (221.1 - 221.1) <045D0E8B-6935-3A11-B56B-45FF9A5474FF> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x9058e000 - 0x9060bff3  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <C3A9E799-0B67-3292-AF44-43CCA846C169> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9060c000 - 0x90614fff  com.apple.CoreServices.FSEvents (1210 - 1210) <FC372799-6E8E-3290-9816-6981D39BC9D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    0x90615000 - 0x906aaff3  libsystem_c.dylib (1044.1.2) <819FD4E2-3B29-38F0-AC5C-BEE865489F5F> /usr/lib/system/libsystem_c.dylib
    0x906ab000 - 0x906adfff  libquarantine.dylib (76) <9ADD861F-A66E-3AD1-A77E-C622E91BD203> /usr/lib/system/libquarantine.dylib
    0x906ae000 - 0x906bdff3  com.apple.opengl (11.0.7 - 11.0.7) <C4738E5F-C178-3A01-B941-C638E6A14D7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x906be000 - 0x906fefff  libauto.dylib (186) <1609D0F9-6E3A-3C67-87EF-BB0BD93EDAC9> /usr/lib/libauto.dylib
    0x906ff000 - 0x908adffb  GLEngine (11.0.7) <80C15A08-641F-3957-94B4-6CCCA9061F3F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
    0x908ae000 - 0x909c4ff7  com.apple.CoreText (352.0 - 454.1) <02F310BE-E185-328C-A461-6D6B762D4A6D> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x90a67000 - 0x90a6efff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <5D268178-3812-3777-92A6-D7D3395405B8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90bac000 - 0x90c3efff  com.apple.CoreSymbolication (3.1 - 56072) <BADFFEF1-5CD8-37BC-B8FD-7C955EF0D0A1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x90c3f000 - 0x90c40fff  liblangid.dylib (117) <34A0F807-755F-300B-B01F-AABAE3838451> /usr/lib/liblangid.dylib
    0x90c41000 - 0x90c6dffb  libsandbox.1.dylib (358.1.1) <A62AE9BC-7FF4-33D1-AB30-7497832770E7> /usr/lib/libsandbox.1.dylib
    0x90c6e000 - 0x90ce2fff  com.apple.Heimdal (4.0 - 2.0) <5D2BE254-CFCD-3A15-9A89-1CBBDE0FF265> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x90ce3000 - 0x90ea7ff3  com.apple.QuartzCore (1.10 - 361.11) <9CED60CF-9B7F-3288-A7E9-3AE087F9E076> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90ea8000 - 0x90fb4fe3  libvDSP.dylib (512) <54403134-29AE-3806-89D7-2CBA7B455736> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90fb5000 - 0x91052fff  com.apple.ink.framework (10.9 - 213) <F47949BC-ABEE-329B-B568-71C6FEF761F6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x91053000 - 0x91257ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <8485A7F6-5217-355E-8501-385C557A97EA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x91258000 - 0x91344fe7  libvMisc.dylib (512) <56B7DE45-36B1-32BE-B823-DB14F315EEB9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91347000 - 0x91782feb  com.apple.vImage (8.0 - 8.0) <56F6B317-9D70-3DC5-9868-BB6D7CB6E55D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91783000 - 0x91a75ffb  com.apple.CoreImage (10.0.33) <75B23F45-8D99-3521-89AE-AF2AF4487096> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x91a76000 - 0x91a91ff7  com.apple.CFOpenDirectory (10.10 - 187) <12F3D599-88CE-3952-8987-7F6CEA2A809A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x91a9f000 - 0x91d50ffb  com.apple.RawCamera.bundle (6.02 - 768) <AC4CE950-8A51-32E6-BB8A-44C1E5250355> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x91d51000 - 0x91d5dff3  libcommonCrypto.dylib (60061) <024B3913-15C6-3005-9E5A-EB24918F6977> /usr/lib/system/libcommonCrypto.dylib
    0x91d5e000 - 0x91ed3ff7  com.apple.QTKit (7.7.3 - 2890) <16C43187-DFFE-3BB3-AA2C-741FBEBB5585> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91ed4000 - 0x91ee2ff3  libxar.1.dylib (254) <D7C4FDEB-61AA-3FC1-8B7B-0AE3A3A64492> /usr/lib/libxar.1.dylib
    0x91f06000 - 0x92091ffb  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <44BCEAB8-306D-307F-92C8-6656F3578220> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92092000 - 0x92092fff  com.apple.ApplicationServices (48 - 48) <76C301A4-705B-33DE-BA11-C89DCF1EDCDD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92093000 - 0x92093fff  com.apple.Carbon (154 - 157) <5A078967-8437-3721-A6B1-70CC00461D7B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92094000 - 0x92099ff7  libmacho.dylib (862) <48DE74F8-09E3-344F-A82F-665083A3BF8F> /usr/lib/system/libmacho.dylib
    0x9209a000 - 0x9209dfff  com.apple.xpc.ServiceManagement (1.0 - 1) <942B9491-B97C-36DB-A9F0-3EA3273FCD2C> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x9209e000 - 0x920abff7  com.apple.HelpData (2.1.4 - 90) <6B37B1E4-9DC1-3AE9-A31B-8B282CD76FFC> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x920ac000 - 0x920c3ff3  com.apple.AppContainer (4.0 - 238) <6D233F8C-F8D1-365F-B678-E0B75A6E6C15> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x920c4000 - 0x921bbfff  libFontParser.dylib (134) <95F8F2D1-B28D-3687-95A9-45033FEE0504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x921bc000 - 0x921c4ff7  libCGCMS.A.dylib (772) <C556A973-97EF-353D-AA9A-82483BDB481C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x921c5000 - 0x925adff7  libLAPACK.dylib (1128) <4E3D1289-2C98-3E53-BB8D-AD911357FF66> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x925ae000 - 0x926f2fff  com.apple.ImageIO.framework (3.3.0 - 1038) <98EC2248-5270-3CB5-84FD-CD225A9875D4> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x93001000 - 0x93bedfff  com.apple.AppKit (6.9 - 1343.16) <FC30E524-3BC6-3220-BBB5-1512A4ED5E7B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93bee000 - 0x93bf0fff  libsystem_coreservices.dylib (9) <20E66A47-8D67-344A-A393-73926F0E5FB2> /usr/lib/system/libsystem_coreservices.dylib
    0x93bf1000 - 0x93c5dffb  com.apple.datadetectorscore (6.0 - 396.1) <77C29022-34D1-3556-95F6-FDBE4576CAF9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x93c5e000 - 0x93edaff3  com.apple.security (7.0 - 57031.1.35) <4721C22E-D6C2-3202-B80D-5E67169466D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93edb000 - 0x93ee8ff7  com.apple.ProtocolBuffer (1 - 225.1) <E5744DE6-B3FC-3289-9E71-98E88DECE545> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x93ee9000 - 0x93f89fff  com.apple.QD (301 - 301) <4DFE3689-59DE-3FBC-806B-6A4056573E52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93f8a000 - 0x93fcdfff  libGLU.dylib (11.0.7) <3519CD46-386A-3702-A5EE-AE59923C5AA7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93fce000 - 0x94029fff  com.apple.LanguageModeling (1.0 - 1) <9B39E059-F48E-31AF-B1B3-B0872F362627> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x94033000 - 0x940b2fff  com.apple.SystemConfiguration (1.14 - 1.14) <89A67A1E-850F-3ED1-AB7D-9057A5B0FF0D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x940b3000 - 0x940b4fff  libremovefile.dylib (35) <49DCAF7B-4466-3775-9E58-EA5D7CBA8AE0> /usr/lib/system/libremovefile.dylib
    0x940b5000 - 0x940effff  com.apple.AirPlaySupport (2.0 - 215.10) <BA87CB33-2E42-389A-AFC1-0ABEE42C3E38> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
    0x940f0000 - 0x9411afff  libxslt.1.dylib (13) <0F55B64A-6C55-304E-ACE0-B531027AA066> /usr/lib/libxslt.1.dylib
    0x9411b000 - 0x94138fff  libCRFSuite.dylib (34) <781A92EF-410E-39B2-953D-FEE12748D834> /usr/lib/libCRFSuite.dylib
    0x94139000 - 0x94152fff  libsystem_malloc.dylib (53.1.1) <58CD8BC7-55D1-3862-8E5D-728EE2EBE447> /usr/lib/system/libsystem_malloc.dylib
    0x94153000 - 0x94266fff  com.apple.MediaControlSender (2.0 - 215.10) <9A59F1DE-E9B6-3A56-84A1-F3F9DC66189B> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x94267000 - 0x942b5ff7  libcurl.4.dylib (83.1.2) <F5D7DC22-1308-34FD-8A4E-A4DC3F8351E4> /usr/lib/libcurl.4.dylib
    0x942b6000 - 0x9460efff  libmecabra.dylib (666.1) <540C2537-35BD-3909-B98D-66783A3FB334> /usr/lib/libmecabra.dylib
    0x9460f000 - 0x9460ffff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <96675103-6E3D-326A-83C0-82D3A34C3A1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94610000 - 0x9473dff7  com.apple.coreui (2.1 - 305) <8D2978A1-8152-32CB-B265-4C923FDF3017> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9473e000 - 0x94747fff  com.apple.AppleSRP (5.0 - 1) <41C48FA8-C249-3800-A551-7F4AFA3E723F> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x94748000 - 0x94777fff  com.apple.CoreVideo (1.8 - 145.1) <A59466FC-6B5A-3B36-BDD4-AC9CD581B7A1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94778000 - 0x94928ff7  libGLProgrammability.dylib (11.0.7) <CE02B596-76E3-3034-9E63-67FF6FF706A4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94929000 - 0x94933ffb  com.apple.audio.SoundManager (4.2 - 4.2) <4312D0A7-4B6F-3A1E-9A47-24C6E8C65E51> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94934000 - 0x9493ffff  com.apple.AppSandbox (4.0 - 238) <D05DB10E-06C7-3220-B63A-FDD1AFCAA30B> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x94940000 - 0x94947fff  com.apple.XPCService (2.0 - 1) <9A59D63D-446A-33A4-BB21-56E42417DA93> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x94948000 - 0x94b242ef  libobjc.A.dylib (646) <EF789AF0-508F-3D49-A988-376CE2E1107C> /usr/lib/libobjc.A.dylib
    0x94b25000 - 0x94b26fff  libSystem.B.dylib (1213) <77FA0B3F-4412-31F6-A798-21D068AE16C3> /usr/lib/libSystem.B.dylib
    0x94b27000 - 0x94b27fff  libunc.dylib (29) <CE960997-9D4A-3848-BAC7-B2255E6765FD> /usr/lib/system/libunc.dylib
    0x94b28000 - 0x94b4effb  libPng.dylib (1231) <A9ACFC7E-9F25-3F15-AFAB-C74C3DAA1D06> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94b4f000 - 0x94b56fff  libMatch.1.dylib (24) <428CD037-5261-39A6-83EE-A7D9ABF446EB> /usr/lib/libMatch.1.dylib
    0x94b57000 - 0x94f4dff3  com.apple.CoreGraphics (1.600.0 - 772) <0D322365-219E-3D67-96BB-2B2416ACB4F5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x94f4e000 - 0x94f56ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <A0C38380-8B46-39CF-A0A1-27ABDAD1D574> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
    0x94f57000 - 0x95048ffb  libiconv.2.dylib (42) <4AF77F10-0BEC-3BE0-99DF-C5170EDB316B> /usr/lib/libiconv.2.dylib
    0x95049000 - 0x9509eff7  com.apple.htmlrendering (77 - 1.1.4) <B85A63B9-C9DD-3ECC-B5DC-E12533C7FDF9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9509f000 - 0x950c6fff  libdispatch.dylib (442.1.4) <B26A176C-39F7-3362-B128-27B1211068B9> /usr/lib/system/libdispatch.dylib
    0x950c7000 - 0x950caff7  com.apple.help (1.3.3 - 46) <FDF183E4-3B95-3CBD-A390-2536C8E7E258> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x950cb000 - 0x950d1ff7  libsystem_networkextension.dylib (167.1.10) <FC20E3AD-A53D-3346-AC71-829E82832AE8> /usr/lib/system/libsystem_networkextension.dylib
    0x950d2000 - 0x950e0ff7  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <637E7AB2-1077-319C-A6A2-D0D0F01951BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
    0x950e1000 - 0x9511eff7  libsystem_network.dylib (411) <4D5BCDE3-5155-3D97-84C5-778D56A5122A> /usr/lib/system/libsystem_network.dylib
    0x9511f000 - 0x95132fff  libcmph.dylib (1) <2449B048-208E-36FB-9DFA-47E0F3BCF132> /usr/lib/libcmph.dylib
    0x95133000 - 0x95173ffb  libGLImage.dylib (11.0.7) <1F2F2EFE-1EFA-398F-80D6-8AC6EA5160DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95174000 - 0x95184ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <DBECFAD5-DB53-390C-AE92-09549733C861> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95185000 - 0x95211ff3  com.apple.PerformanceAnalysis (1.0 - 1) <CB175B15-8AA3-3ECA-88ED-E561D7722DFB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x95212000 - 0x9523efff  com.apple.ChunkingLibrary (2.1 - 163.1) <2B0CBB85-EF91-351A-8750-A185996E4CDB> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x9523f000 - 0x956e5ff7  com.apple.JavaScriptCore (10600 - 10600.1.17) <51DEC6FC-6F6F-39F2-A286-CCAA88285016> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x956e6000 - 0x95700ff7  liblzma.5.dylib (7) <D0BC984D-5B33-328C-8F1E-7E9C41813433> /usr/lib/liblzma.5.dylib
    0x95701000 - 0x95788fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <8DD52AC8-238C-3E5C-ADBB-ABDA770D708A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95789000 - 0x95918ff3  libsqlite3.dylib (168) <C3F78985-C19B-3320-9F71-543969632128> /usr/lib/libsqlite3.dylib
    0x95919000 - 0x9596afff  com.apple.opencl (2.4.2 - 2.4.2) <33B19D84-C463-3762-B1AB-C5CB8F7DC87F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9596b000 - 0x95a61ff7  libxml2.2.dylib (26) <2F37833C-4D55-3A09-9A0C-5904E8B6892A> /usr/lib/libxml2.2.dylib
    0x95a62000 - 0x95ad8fff  com.apple.securityfoundation (6.0 - 55126) <64E4CE02-8BE6-3408-99A5-23E5CF7545BC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95ad9000 - 0x95b2cfff  com.apple.CoreMediaIO (601.0 - 4749) <96E6B0EE-1251-39BA-A186-0D2DA82CB69C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x95b2d000 - 0x95e2bff7  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <C18EC809-6E67-3D9C-82D5-34170A81254C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95e2c000 - 0x95e85ffb  libAVFAudio.dylib (118.3) <65762748-F772-3959-8D14-197AFB778132> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x95e86000 - 0x95e8afff  libCoreVMClient.dylib (79) <85CBF1F3-3CE1-304F-88DF-15608C9A2367> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95e8b000 - 0x95eb1ff3  libc++abi.dylib (125) <E9AF8CA1-D54D-37E3-8363-A3E8C0840F71> /usr/lib/libc++abi.dylib
    0x95eb2000 - 0x95f64fff  libCoreStorage.dylib (471) <3E1DA770-7958-3243-B0D3-126E71E36BAA> /usr/lib/libCoreStorage.dylib
    0x95f65000 - 0x95f6bff7  libsystem_trace.dylib (72.1.3) <E1985F9C-78FC-3098-8683-81F0DCEE54BB> /usr/lib/system/libsystem_trace.dylib
    0x95f6c000 - 0x96011fff  com.apple.Metadata (10.7.0 - 916.1) <C1EAE5EA-C25B-337C-A0DD-82F694FDD140> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96012000 - 0x96016ffb  libGIF.dylib (1231) <9DE811E6-6151-32B2-8C89-AD97EC7815B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96017000 - 0x96149ffb  com.apple.UIFoundation (1.0 - 1) <00A59CFF-A217-3998-B22E-6E452278A302> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x9614a000 - 0x961a0fff  libc++.1.dylib (120) <D8DE4962-66CD-3491-904E-9291EEE5E570> /usr/lib/libc++.1.dylib
    0x961a1000 - 0x961a6fff  com.apple.print.framework.Print (10.0 - 265) <7C3984BB-8337-3B90-A414-17C181A45744> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x961a7000 - 0x961a8fff  libsystem_blocks.dylib (65) <5D98F022-E863-31D4-8ADE-D53B2AE0D331> /usr/lib/system/libsystem_blocks.dylib
    0x961f9000 - 0x9621fff7  com.apple.IconServices (47.1 - 47.1) <9C537499-B375-3F84-BF4A-EEF757FC26A9> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x96220000 - 0x9633cffb  com.apple.WebKitLegacy (10600 - 10600.1.25) <DEB98A5A-3404-31C6-9AB5-3A1D4DF0AF8F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy. framework/Versions/A/WebKitLegacy
    0x9633d000 - 0x96343ff3  libsystem_platform.dylib (63) <509993B7-3F26-3360-B899-0BBB15152516> /usr/lib/system/libsystem_platform.dylib
    0x96347000 - 0x96350fff  libcopyfile.dylib (118.1.2) <FAF3268F-C580-33D3-A5B4-74B8A8713216> /usr/lib/system/libcopyfile.dylib
    0x9660a000 - 0x966d5fff  com.apple.DiscRecording (9.0 - 9000.4.1) <490CDFC5-B1BF-36CA-AB7E-FEAF99BF272A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x966d6000 - 0x966fcffb  libxpc.dylib (559.1.22) <CB6B442F-8BE4-37B6-9A00-4753BC1C368C> /usr/lib/system/libxpc.dylib
    0x966fd000 - 0x966fffff  libsystem_configuration.dylib (699.1.5) <CDD8D1DA-3414-3A19-B340-EA116D52EA21> /usr/lib/system/libsystem_configuration.dylib
    0x96700000 - 0x9670dff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <DD10F01B-45E7-31A0-A19B-2AEEB689C6C4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9670e000 - 0x96716ffb  com.apple.NetFS (6.0 - 4.0) <141BFE7E-634E-32A0-8EC9-0A1A4DFEA7D9> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x96717000 - 0x96c72ffb  com.apple.MediaToolbox (1.0 - 1562.19) <6BAB878B-526B-314F-824B-95D9D2FED1D2> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x96c73000 - 0x96c9cff3  com.apple.shortcut (2.12 - 2.12) <C7682A91-4105-3C52-A15D-19749E9BEA3D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x96c9d000 - 0x96cb2ffb  com.apple.MultitouchSupport.framework (260.30 - 260.30) <2E28AF1C-AC6C-364F-B181-C5926A7F5A4D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x96cb3000 - 0x96cb5fff  com.apple.securityhi (9.0 - 55006) <E278B0FD-7303-381A-BDBC-C590C71EE86E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x96cb6000 - 0x96da6ff3  com.apple.DiskImagesFramework (10.10 - 389.1) <2C988912-3B5E-3E13-A172-01221AAC91E6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x96da7000 - 0x96dbafff  com.apple.CoreBluetooth (1.0 - 1) <DF406F6F-C173-3598-8785-8A2014F770EF> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x96dbb000 - 0x96de4ff7  libsystem_info.dylib (459) <4F7A7111-7F0D-3891-9DC9-41F5D79949FE> /usr/lib/system/libsystem_info.dylib
    0x96de5000 - 0x96df7fff  com.apple.Sharing (328.3 - 328.3) <460DD833-B33A-369E-A5EF-B21D5AA231EF> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x96f07000 - 0x96f09ff3  com.apple.EFILogin (2.0 - 2) <414F4023-49B5-3FB8-8778-55D4025EB6E8> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x96f0a000 - 0x96f0cfff  libCVMSPluginSupport.dylib (11.0.7) <A87C589A-DA64-3D62-8BDE-065784993B1A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x96f0d000 - 0x96f56ffb  libFontRegistry.dylib (134) <023BB8A2-8BBA-30DC-B0C2-A5F0AE3667D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x96f57000 - 0x96f72ff3  com.apple.openscripting (1.4 - 162) <EB1D1BA6-C0B0-3D3B-AE54-676324FFF3E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96f73000 - 0x96f7eff7  com.apple.NetAuth (5.0 - 5.0) <D6C31218-47E4-3553-9208-D1091A81044E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x96f7f000 - 0x96f83fff  com.apple.CommonPanels (1.2.6 - 96) <955375E6-2416-38E1-AFC6-477827119329> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96f84000 - 0x96fd7fff  libstdc++.6.dylib (104.1) <D0EB2C99-5939-3ABA-9C18-D9AD75CE23A1> /usr/lib/libstdc++.6.dylib
    0x96fd8000 - 0x96feaff7  libsasl2.2.dylib (193) <B5813595-A89D-39D4-BB06-F6013D3BD98C> /usr/lib/libsasl2.2.dylib
    0x96feb000 - 0x970efff7  libJP2.dylib (1231) <77B25D2E-F9DE-3565-894A-970DE207B0EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x970f0000 - 0x97259ff7  com.apple.avfoundation (2.0 - 889.10) <BC1712A8-FBDC-35A4-997C-2A0CA4296E8E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x9725a000 - 0x9728dfff  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <103A5EA0-9B75-3B23-BE72-C4DD52744A6A> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x9728e000 - 0x97291fff  libextension.dylib (55.1) <6FF35E52-648C-3F90-932C-5EB9FFEEEB49> /usr/lib/libextension.dylib
    0x97292000 - 0x972a3ff3  libsystem_coretls.dylib (35.1.2) <87AE2CBB-A397-3392-A152-02AEA6D194D6> /usr/lib/system/libsystem_coretls.dylib
    0x972a4000 - 0x97537ff7  com.apple.CoreData (110 - 526) <C2C79A0B-70B1-3D88-951D-1C19D35B78E1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97538000 - 0x97589fff  libcups.2.dylib (408) <08C5D411-533C-345A-B820-092C96215F2E> /usr/lib/libcups.2.dylib
    0x9758a000 - 0x9758cfff  com.apple.loginsupport (1.0 - 1) <47A71885-BB14-3DB8-AE19-F74ABA120290> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
    0x9758d000 - 0x9759aff7  libbz2.1.0.dylib (36) <6BC7B049-8F03-3217-9840-B1804CCBF742> /usr/lib/libbz2.1.0.dylib
    0x9759b000 - 0x975cdff7  com.apple.GSS (4.0 - 2.0) <36CBBD76-19AC-333E-AB52-A93800ABC89A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x975ce000 - 0x97645fff  com.apple.CoreUtils (1.0 - 101.1) <7169E4D1-0771-36AD-85C8-60CF37FFF16E> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x97646000 - 0x97646fff  libOpenScriptingUtil.dylib (162) <9872C464-DF90-37C2-9871-8A3F53C615EC> /usr/lib/libOpenScriptingUtil.dylib
    0x97647000 - 0x9764bffb  com.apple.IOSurface (97 - 97) <ADB57CD2-455A-317C-818E-6379BF427D10> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9764c000 - 0x97655fff  libGFXShared.dylib (11.0.7) <AFC7CCD1-D935-3968-8CE3-303C13354F2B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x97656000 - 0x97690fff  com.apple.MediaKit (16 - 757) <430EC569-B083-3608-B91F-3EC6B6065519> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x97691000 - 0x976fcff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <632A811D-4706-3ED7-85E3-DD2CDB47CF8F> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x976fd000 - 0x97714fff  libsystem_asl.dylib (267) <85BD88AD-618E-3325-AC31-10DBAB8E9AF3> /usr/lib/system/libsystem_asl.dylib
    0x97715000 - 0x9799fffb  com.apple.WebKit (10600 - 10600.1.25) <DCD91A86-737E-352F-921A-5A029DCAD0D7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x979a0000 - 0x979cfff7  com.apple.DictionaryServices (1.2 - 229) <1F5C35C7-67AA-30A0-A366-EB4B361152A3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x979d0000 - 0x97a23ff7  com.apple.HIServices (1.22 - 519) <5B54AB76-C487-367B-ACD5-2AF6BC85E1B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x97a24000 - 0x97a25fff  libDiagnosticMessagesClient.dylib (100) <3EE83437-AA9C-356B-810B-589346B73797> /usr/lib/libDiagnosticMessagesClient.dylib
    0x97a26000 - 0x97a26fff  libffi.dylib (18.1) <C15EF590-C1CD-3F0A-8988-25491841F043> /usr/lib/libffi.dylib
    0x97a27000 - 0x97a2ffff  libsystem_dnssd.dylib (561.1.1) <45CDAF46-03DE-33DB-A627-14F245993EF2> /usr/lib/system/libsystem_dnssd.dylib
    0x97a30000 - 0x97a39fff  com.apple.DiskArbitration (2.6 - 2.6) <D906604A-1D8C-31BF-8F22-EA219FFC858F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x97a3a000 - 0x97a9eff7  com.apple.AE (681 - 681) <EEE62980-421B-33BD-BB88-6BDE269A3060> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x97a9f000 - 0x97b19fff  com.apple.ApplicationServices.ATS (360 - 375) <7E075657-314E-3130-97A7-AFD826000C7B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97b1a000 - 0x97b1afff  com.apple.CoreServices (62 - 62) <FF296ED2-0F90-3055-BBE4-7BF9E42322EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97b1b000 - 0x97bc3ff7  com.apple.CoreMedia (1.0 - 1562.19) <ECB3338A-318A-3612-BBC1-11E0E99DB595> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x97bc4000 - 0x97f77fff  com.apple.CoreFoundation (6.9 - 1151.16) <2F4FE1E8-D09B-3C62-B884-7A41111F4FBB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x97f78000 - 0x98012fff  com.apple.ColorSync (4.9.0 - 4.9.0) <091CDCEC-1B25-3FE7-94C2-8AEFA6564E95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9809c000 - 0x9820dffb  libBLAS.dylib (1128) <ACEF468C-5DB1-38F3-BCB2-6F3D7F2B2040> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9820e000 - 0x98263ff3  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <F5A586C3-A440-3E0E-966A-7841A182E5B2> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98264000 - 0x98283fff  libsystem_kernel.dylib (2782.1.97) <9F86CA37-93FC-31F0-8ACC-53D244AF9EC2> /usr/lib/system/libsystem_kernel.dylib
    0x98284000 - 0x98297fff  com.apple.ProtectedCloudStorage (1.0 - 1) <0A330FB7-44EE-359F-BAB7-48351AACD305> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
    0x98298000 - 0x9829bfff  libdyld.dylib (353.2.1) <6533C0BC-6FE5-3E43-A44D-EF2193978EC0> /usr/lib/system/libdyld.dylib
    0x9829c000 - 0x9829dfff  com.apple.TrustEvaluationAgent (2.0 - 25) <28BBD931-EF7C-3753-B50E-6568F4075086> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9829e000 - 0x98494fff  libicucore.A.dylib (531.30) <BD09E200-FF42-3E9D-814C-0BC8F2C0EAC9> /usr/lib/libicucore.A.dylib
    0x9849b000 - 0x98565fff  com.apple.backup.framework (1.6.1 - 1.6.1) <82A5ADA6-6434-3801-AE63-4C56ADC93B28> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98566000 - 0x99507fff  com.apple.WebCore (10600 - 10600.1.25.2) <5185C771-B437-317C-BDAD-3EE7274B50FB> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x99508000 - 0x995f1fff  libcrypto.0.9.8.dylib (52) <8BA9026A-18DA-3F45-9850-85DF4378F284> /usr/lib/libcrypto.0.9.8.dylib
    0x995f2000 - 0x99609ff3  libLinearAlgebra.dylib (1128) <B20FAAAA-1C76-3B20-B100-5FC90F7FE023> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
    0x9960a000 - 0x9960effb  com.apple.TCC (1.0 - 1) <BFA66EA1-2839-3648-80F6-96AE136A6838> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9960f000 - 0x99620fff  libbsm.0.dylib (34) <C9F0C608-2794-3F6B-8078-583FC0046039> /usr/lib/libbsm.0.dylib
    0x99621000 - 0x996d0ff7  com.apple.Bluetooth (4.3.1 - 4.3.1f2) <5BCD60EC-DAD3-369F-B836-49086A6A6D39> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x996d1000 - 0x996dfff7  libz.1.dylib (55) <DF3B8F77-8931-3A6B-8BDF-DB67315050E6> /usr/lib/libz.1.dylib
    0x996e0000 - 0x996f0fff  libGL.dylib (11.0.7) <2AF64D8C-3447-3C85-B4A1-77F03456E402> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x996f1000 - 0x9970effb  com.apple.Ubiquity (1.3 - 313) <9ED23769-0725-3D4B-B7F4-AF08020D73C3> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9970f000 - 0x99714ff7 

    Try a restart.
    Do a backup, using either Time Machine or a cloning program, to ensure files/data can be recovered. Two backups are better than one.
    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear and again when you log in. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don’t do them all at once.
    Safe Mode - About
    Safe Mode - Yosemite

  • Acrobat 11 crashes when opening the comment section

    Acrobat 11.0.03 crashes every time I try to open the comment section or add a comment by using the tool from the tool bar.
    I already tried to reinstall Acrobat. It didn't change a thing.
    My operating system is Mac OS 10.8.4

    I also have this problem with a brand new copy of Acrobat 11 Pro. I have OS X 10.9.1. It happens every time I work with any .pdf.
    I click the comment tool and the program immediately crashes, every single time. The strange thing is, it did work for a short time when I first installed the program. Please help, very frustrating for an expensive new product. Here are some of the latest crash logs cut and pasted below:
    Process:         AdobeAcrobat [1504]
    Path:            /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:      com.adobe.Acrobat.Pro
    Version:         11.0.04 (11.0.04)
    Code Type:       X86 (Native)
    Parent Process:  launchd [219]
    Responsible:     AdobeAcrobat [1504]
    User ID:         501
    Date/Time:       2013-12-30 17:17:53.596 -0700
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  DB18E81C-DE2B-456E-F571-E37F8C2CF21A
    Sleep/Wake UUID: 03B4AFAB-2A63-4E83-9A7D-4294C8581B6F
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    terminating with uncaught exception of type devtech::LM_exception: FSRef
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x9b746952 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x95290167 pthread_kill + 101
    2   libsystem_c.dylib                       0x922c2340 abort + 155
    3   libc++abi.dylib                         0x94d43869 abort_message + 169
    4   libc++abi.dylib                         0x94d6457b default_terminate_handler() + 264
    5   libc++abi.dylib                         0x94d61dd0 std::__terminate(void (*)()) + 14
    6   libc++abi.dylib                         0x94d617eb __cxa_throw + 116
    7   com.adobe.linguistic.LinguisticManager          0x097dba46 0x97d5000 + 27206
    8   com.adobe.linguistic.LinguisticManager          0x097e4abb devtech::LM_FileSpec::LM_FileSpec(FSRef const&) + 43
    9   com.adobe.AcrobatPlugin.Spelling          0x095e8733 0x95ad000 + 243507
    10  com.adobe.AcrobatPlugin.Spelling          0x095e805e 0x95ad000 + 241758
    11  com.adobe.AcrobatPlugin.Spelling          0x095e7ffb 0x95ad000 + 241659
    12  com.adobe.AcrobatPlugin.Spelling          0x095ddacb 0x95ad000 + 199371
    13  com.adobe.Acrobat.framework             0x0026223d 0xb3000 + 1765949
    14  com.adobe.Acrobat.framework             0x00261d7e 0xb3000 + 1764734
    15  com.apple.CoreFoundation                0x965a2186 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    16  com.apple.CoreFoundation                0x965a1b43 __CFRunLoopDoTimer + 1395
    17  com.apple.CoreFoundation                0x9661c2ad __CFRunLoopDoTimers + 349
    18  com.apple.CoreFoundation                0x965596c3 __CFRunLoopRun + 1779
    19  com.apple.CoreFoundation                0x96558d5a CFRunLoopRunSpecific + 394
    20  com.apple.CoreFoundation                0x96558bbb CFRunLoopRunInMode + 123
    21  com.apple.HIToolbox                     0x91cede2d RunCurrentEventLoopInMode + 259
    22  com.apple.HIToolbox                     0x91cedbb2 ReceiveNextEventCommon + 526
    23  com.apple.HIToolbox                     0x91ced98d _BlockUntilNextEventMatchingListInModeWithFilter + 92
    24  com.apple.AppKit                        0x9aabc5a9 _DPSNextEvent + 1602
    25  com.apple.AppKit                        0x9aabbad0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    26  com.apple.AppKit                        0x9aaae35c -[NSApplication run] + 727
    27  com.adobe.Acrobat.framework             0x000bc938 0xb3000 + 39224
    28  com.adobe.Acrobat.framework             0x000bb07b RunAcrobat + 307
    29  com.adobe.Acrobat.Pro                   0x000abed5 main + 91
    30  com.adobe.Acrobat.Pro                   0x000abe71 start + 53
    Thread 1:: Dispatch queue: NSOperationQueue 0x7c076190
    0   libsystem_kernel.dylib                  0x9b746b76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x922e105b nanosleep$UNIX2003 + 219
    2   com.apple.Foundation                    0x94f86641 +[NSThread sleepForTimeInterval:] + 170
    3   com.adobe.Acrobat.framework             0x00eac8f6 0xb3000 + 14653686
    4   com.apple.Foundation                    0x94ef3fec -[__NSOperationInternal _start:] + 702
    5   com.apple.Foundation                    0x94ef3d21 -[NSOperation start] + 71
    6   com.apple.Foundation                    0x94ef3c48 __NSOQSchedule_f + 50
    7   libdispatch.dylib                       0x98f67e21 _dispatch_async_redirect_invoke + 158
    8   libdispatch.dylib                       0x98f633a6 _dispatch_client_callout + 50
    9   libdispatch.dylib                       0x98f65467 _dispatch_root_queue_drain + 257
    10  libdispatch.dylib                       0x98f66732 _dispatch_worker_thread2 + 39
    11  libsystem_pthread.dylib                 0x95290dab _pthread_wqthread + 336
    12  libsystem_pthread.dylib                 0x95294cce start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9b747992 kevent64 + 10
    1   libdispatch.dylib                       0x98f658bd _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x98f65556 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x9b7467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x95291d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x95293bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x95b17922 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x95b17b46 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x95ae3f92 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x021e74dc 0x21e5000 + 9436
    7   com.adobe.ACE                           0x021e7441 0x21e5000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x95ae456e PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x9528f5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x9528f485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x95294cf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x9b7467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x95291d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x95293bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x95b17922 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x95b17b46 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x95ae3f92 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x021e74dc 0x21e5000 + 9436
    7   com.adobe.ACE                           0x021e7441 0x21e5000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x95ae456e PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x9528f5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x9528f485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x95294cf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x9b7467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x95291d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x95293bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x95b17922 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x95b17b46 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x95ae3f92 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x021e74dc 0x21e5000 + 9436
    7   com.adobe.ACE                           0x021e7441 0x21e5000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x95ae456e PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x9528f5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x9528f485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x95294cf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x9b7467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x95291d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x95293bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x0234ef67 0x2343000 + 48999
    4   com.adobe.AGM                           0x0234eea6 0x2343000 + 48806
    5   com.adobe.AGM                           0x0234ee44 0x2343000 + 48708
    6   com.adobe.AGM                           0x0234eae4 0x2343000 + 47844
    7   libsystem_pthread.dylib                 0x9528f5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x9528f485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x95294cf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x9b7467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x95291d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x95293bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x0234ef67 0x2343000 + 48999
    4   com.adobe.AGM                           0x0234eea6 0x2343000 + 48806
    5   com.adobe.AGM                           0x0234ee44 0x2343000 + 48708
    6   com.adobe.AGM                           0x0234eae4 0x2343000 + 47844
    7   libsystem_pthread.dylib                 0x9528f5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x9528f485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x95294cf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x9b7467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x95291d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x95293bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x0234ef67 0x2343000 + 48999
    4   com.adobe.AGM                           0x0234eea6 0x2343000 + 48806
    5   com.adobe.AGM                           0x0234ee44 0x2343000 + 48708
    6   com.adobe.AGM                           0x0234eae4 0x2343000 + 47844
    7   libsystem_pthread.dylib                 0x9528f5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x9528f485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x95294cf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x9b741f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b74116c mach_msg + 68
    2   com.apple.CoreFoundation                0x96559f69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x96559541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x96558d5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x96558bbb CFRunLoopRunInMode + 123
    6   com.apple.AppKit                        0x9ac65f18 _NSEventThread + 283
    7   libsystem_pthread.dylib                 0x9528f5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x9528f485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x95294cf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x9b747976 kevent + 10
    1   com.adobe.Acrobat.framework             0x014bfa6b 0xb3000 + 21023339
    2   com.adobe.Acrobat.framework             0x0141f01b 0xb3000 + 20365339
    3   com.adobe.Acrobat.framework             0x0141ba91 0xb3000 + 20351633
    4   libsystem_pthread.dylib                 0x9528f5fb _pthread_body + 144
    5   libsystem_pthread.dylib                 0x9528f485 _pthread_start + 130
    6   libsystem_pthread.dylib                 0x95294cf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x9b747046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x95290dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x95294cce start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x9b747046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x95290dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x95294cce start_wqthread + 30
    Thread 13:
    0   libsystem_kernel.dylib                  0x9b747046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x95290dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x95294cce start_wqthread + 30
    Thread 14:
    0   libsystem_kernel.dylib                  0x9b741fb6 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework             0x00549f1e 0xb3000 + 4812574
    2   libsystem_pthread.dylib                 0x9528f5fb _pthread_body + 144
    3   libsystem_pthread.dylib                 0x9528f485 _pthread_start + 130
    4   libsystem_pthread.dylib                 0x95294cf2 thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x9b741fb6 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework             0x00549f1e 0xb3000 + 4812574
    2   libsystem_pthread.dylib                 0x9528f5fb _pthread_body + 144
    3   libsystem_pthread.dylib                 0x9528f485 _pthread_start + 130
    4   libsystem_pthread.dylib                 0x95294cf2 thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x9b741fb6 semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework             0x00549f1e 0xb3000 + 4812574
    2   libsystem_pthread.dylib                 0x9528f5fb _pthread_body + 144
    3   libsystem_pthread.dylib                 0x9528f485 _pthread_start + 130
    4   libsystem_pthread.dylib                 0x95294cf2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xa067ac0c  ecx: 0xbff512cc  edx: 0x9b746952
      edi: 0xa095c1a8  esi: 0x00000006  ebp: 0xbff512e8  esp: 0xbff512cc
       ss: 0x00000023  efl: 0x00000206  eip: 0x9b746952   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x09837c50
    Logical CPU:     0
    Error Code:      0x00080148
    Trap Number:     132
    Binary Images:
       0xab000 -    0xabfff +com.adobe.Acrobat.Pro (11.0.04 - 11.0.04) <9B19B497-B399-3889-9550-EE2FAAD48322> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
       0xb3000 -  0x2050ff3 +com.adobe.Acrobat.framework (11.0.04 - 11.0.04) <BCAF7610-4044-35E5-9F25-7BA5112FDAE6> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    0x21e5000 -  0x2337fe7 +com.adobe.ACE (AdobeACE 2.20.02.1 - 2.20.02.1) <711209D4-FBA8-37AE-9B21-E7F7EAE52A36> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x2343000 -  0x2918ff7 +com.adobe.AGM (AdobeAGM 4.28.134.1 - 4.28.134.1) <4EE50823-6517-3CEE-8154-05D8AE487BE8> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x2984000 -  0x29a2ff3 +com.adobe.BIB (AdobeBIB 1.2.03.1 - 1.2.03.1) <21A36908-3031-35AF-A74B-ECC65BEAEC9F> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x29a9000 -  0x2ca6ffb +com.adobe.CoolType (AdobeCoolType 5.11.134.1 - 5.11.134.1) <92DB0A4F-CC27-3B6A-B525-E5FE29A4193C> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x2cd8000 -  0x2cf0ff7  com.apple.ScriptingBridge (1.3.1 - 63) <6A12D8A2-A60D-3304-B3A8-DFE3901CC94A> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x2dd6000 -  0x2ddefff  com.apple.URLMount.AFPPlugin (6.0 - 6.0) <C4DD1C5F-FA24-3C2C-A5E1-6803E44CFC79> /System/Library/Filesystems/NetFSPlugins/afp.bundle/Contents/MacOS/afp
    0x45ca000 -  0x45efff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x4604000 -  0x460fffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x4690000 -  0x4690ff3 +cl_kernels (???) <BD9DF6A5-80BF-4B55-B246-19ED06AB01FF> cl_kernels
    0x46cf000 -  0x46d3ff9  libgermantok.dylib (14) <F6DEC1E3-5AAA-3BEB-9EF3-92608F4A094D> /usr/lib/libgermantok.dylib
    0x4705000 -  0x4710fff  libGPUSupport.dylib (9.0.83) <DE01868A-9511-3FAD-897B-BB6BCB70B1AA> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport .dylib
    0x4729000 -  0x47a0ffb +com.adobe.AcrobatPlugin.Search (11.0.04 - 11.0.04) <5819F990-B080-3E72-86EB-B91900A85794> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Search.acroplugin/Contents/MacOS/Search
    0x71cd000 -  0x71daff1  com.apple.KerberosHelper (4.0 - 1.0) <BDCE5217-69E5-3FBF-BAC4-76AAE84A8961> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosHelper
    0x721d000 -  0x7285ffa +AcroSQLite (1) <8667FF2C-186C-33E6-96FD-ECED266933F1> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AcroSQLite.framework/Versions/A/AcroSQLite
    0x72c1000 -  0x73a6ff7 +com.adobe.amtlib (amtlib 6.2.0.42 - 6.2.0.42) <979ED254-104A-0377-8FC4-E878DA48F523> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/amtlib.framework/amtlib
    0x741d000 -  0x741dffd +cl_kernels (???) <1C4239B0-0A0C-420C-9537-3EE69B789CC1> cl_kernels
    0x951e000 -  0x9560ff7  com.apple.AppleShareClientCore (4.0 - 3.0) <74BC747F-302B-368B-B416-AE380FD06734> /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShareClientCore
    0x95ad000 -  0x9609ff7 +com.adobe.AcrobatPlugin.Spelling (11.0.04 - 11.0.04) <B986C697-A854-334F-89DB-C422BA40934C> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Spelling.acroplugin/Contents/MacOS/Spelling
    0x9611000 -  0x9702fef +libicuuc.40.0.dylib (40) <B8EDE3B3-7400-E2FC-BA7E-4E5935A54831> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
    0x9794000 -  0x97ceff3 +com.adobe.ARE (AdobeARE 1.5.02.21195 - 1.5.02.21195) <583E0BDD-2204-3470-BDEB-330B4EE311F3> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x97d5000 -  0x9843ff7 +com.adobe.linguistic.LinguisticManager (6.1.0 - 17901) <17F4247D-ACE6-3344-809D-C2512499AFBD> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x9efa000 -  0x9f1bff7 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.21186 - 3.7.101.21186) <D65C0C81-572E-3DCB-A1CF-BC5BF2D59500> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0xb2d9000 -  0xb3aaffc +com.lextek.onix (3.9.7.23 - Build 08/02/09) <115917DA-DD0D-3C40-17AA-3717B7C0DA23> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Onix.framework/Onix
    0xd9dc000 -  0xea26fe3 +com.adobe.AcrobatPlugin.AcroForm (11.0.04 - 11.0.04) <C9F8BE69-DDFE-31BD-BF74-3E2964C0A5FA> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/AcroForm.acroplugin/Contents/MacOS/AcroForm
    0xed11000 -  0xeed8ffb +com.adobe.AcrobatPlugin.DigSig (11.0.04 - 11.0.04) <6CF56DAD-2E6D-3897-94E3-250FBC8754F6> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/DigSig.acroplugin/Contents/MacOS/DigSig
    0xeee8000 -  0xf998ff7 +com.adobe.AcrobatPlugin.PPKLite (11.0.04 - 11.0.04) <B6618276-CACB-3D28-A751-635E676E5F19> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/PPKLite.acroplugin/Contents/MacOS/PPKLite
    0xfa01000 -  0xfa27ffb +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <DE33E3BF-669D-3851-8C16-CA1CFCDA315A> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0xfb13000 -  0xfbedff3 +com.adobe.AcrobatPlugin.Web2PDF (11.0.04 - 11.0.04) <6FC8BCC9-E039-325C-A275-DB97C180FA19> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Web2PDF.acroplugin/Contents/MacOS/Web2PDF
    0xfe6e000 -  0xff1efff  ColorSyncDeprecated.dylib (426) <F54DBFF3-3165-3D15-8AE4-37B603502A5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x10120000 - 0x1020bff7  unorm8_bgra.dylib (2.3.58) <44644D3C-3D0E-3CBB-9265-664D95EC791F> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra .dylib
    0x103cc000 - 0x103fcff7 +com.adobe.AcrobatPlugin.Updater (11.0.04 - 11.0.04) <9F08F71F-2A4B-3483-83AB-53F424766532> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Updater.acroplugin/Contents/MacOS/Updater
    0x11187000 - 0x111ddffb +com.adobe.AdobeXMPCore (Adobe XMP Core 5.4 -c 5 - 78.147326) <82EFE343-F643-34AD-94FA-293E338F1F9C> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x111e6000 - 0x1121affb +com.adobe.AcrobatPlugin.PaperCapture (11.0.04 - 11.0.04) <F6BCAC01-F886-3DB3-870A-C9FED4A8CCE7> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/PaperCapture.acroplugin/Contents/MacOS/PaperCapture
    0x1154d000 - 0x11787ffb +com.adobe.AcrobatPlugin.EScript (11.0.04 - 11.0.04) <EFA64A5B-FFD0-3355-86B1-A5CF4B4E53E4> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/EScript.acroplugin/Contents/MacOS/EScript
    0x12634000 - 0x12dc3fff +com.adobe.AcrobatPlugin.Comments (11.0.04 - 11.0.04) <0CB85BDA-86FD-39C1-A19F-815921F10880> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/Comments.acroplugin/Contents/MacOS/Comments
    0x136b5000 - 0x13e70ff9  libclh.dylib (4.0.3 - 4.0.3) <922B857E-654F-3270-A4CD-2E8573E44732> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x1622c000 - 0x16f71ff7 +libicudata.40.0.dylib (40) <23160F63-D804-A6F2-0363-464FB95A9FF9> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
    0x1e020000 - 0x1e0bfffb +com.adobe.AcrobatPlugin.PDDom (11.0.04 - 11.0.04) <2D3ED12E-CA57-3D05-88BC-D4DF8EC35A24> /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Built-in/PDDom.acroplugin/Contents/MacOS/PDDom
    0x40000000 - 0x4035bff7  com.apple.driver.AppleIntelHDGraphicsGLDriver (8.18.28 - 8.1.8) <FF06E478-C961-3935-830E-327F8CE21EF8> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelH DGraphicsGLDriver
    0x48000000 - 0x488c4ff7  com.apple.GeForceTeslaGLDriver (8.18.28 - 8.1.8) <35C30A67-5DC2-363D-A2D4-8FFC9117D09A> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/GeForceTeslaGLDrive r
    0x8fe87000 - 0x8feb9417  dyld (239.3) <4B280BB1-55F8-313F-86A6-8ADD644ED69E> /usr/lib/dyld
    0x90008000 - 0x90021fff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90022000 - 0x90042fff  com.apple.facetimeservices (10.0 - 1000) <BD92DB29-AD36-3B60-A5EF-F4A68F1394A1> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x90043000 - 0x9032dfd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x9032e000 - 0x90336fff  libcopyfile.dylib (103) <1B1484BD-08B6-3BA9-94CA-A7C24B610EB3> /usr/lib/system/libcopyfile.dylib
    0x90337000 - 0x90340fff  libsystem_notify.dylib (121) <623269F5-1518-3035-A916-8AF83C972154> /usr/lib/system/libsystem_notify.dylib
    0x90341000 - 0x90345ffa  libGIF.dylib (1038) <5CEB4EDF-B0B6-33A6-BDDE-8C0D3226FA72> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90346000 - 0x904b8ffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <E5FFD35D-18CF-333C-BECE-39F8E47BE707> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x904c1000 - 0x904d6ff3  com.apple.AppContainer (3.0 - 1) <B53ED2AD-9B19-316F-B7B9-80A3A94AC1D3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x904d7000 - 0x904dbffc  com.apple.IOSurface (91 - 91) <DECEEB72-3C7E-3C21-9237-E5AD293F8B09> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x904dc000 - 0x904e2ffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x904e3000 - 0x904ecfff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x904ed000 - 0x9051dff3  libtidy.A.dylib (15.12) <3DBE95FE-8FA7-3584-9202-E37B54B3B064> /usr/lib/libtidy.A.dylib
    0x9051e000 - 0x90520fff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x90521000 - 0x9052eff7  com.apple.HelpData (2.1.4 - 90) <5BACC236-5B40-33AC-B088-87EDEFAF1D3E> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9052f000 - 0x90531ffb  libRadiance.dylib (1038) <F0D3F13B-5628-3DF9-8B86-A4D914567B25> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90534000 - 0x90565ffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x90566000 - 0x905c8ff3  com.apple.imfoundation (10.0 - 1000) <20565092-0897-3E34-A35A-E1F027D53A26> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
    0x905c9000 - 0x9061eff7  com.apple.QuickLookFramework (5.0 - 622.3) <3C6ADC02-2C67-361B-B042-47DDCC0EDA5F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9061f000 - 0x90674ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90675000 - 0x90675ffe  com.apple.AOSMigrate (1.0 - 1) <E612B5AD-06AE-3BCB-BA14-F7B64714640A> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x90676000 - 0x908dbff7  com.apple.AddressBook.framework (8.0 - 1365) <6D80FC70-269E-3C12-A9B4-279F27C58BEF> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x908dc000 - 0x9090dffd  com.apple.GSS (4.0 - 2.0) <6BA01155-4DAD-30EE-B480-D224650EA010> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9090e000 - 0x90935fff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90936000 - 0x90a98ff3  com.apple.CFNetwork (673.0.3 - 673.0.3) <5E0E9AE8-073B-3F2B-B0C7-A0129DE787F6> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x90a99000 - 0x90b03ff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x90b04000 - 0x90d68fff  com.apple.CoreData (107 - 481) <F699EC21-57D9-3AE6-A17B-C1D1092780BD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90d69000 - 0x90d6fff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x90d79000 - 0x90da7ff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x90da8000 - 0x90dcdff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x90dce000 - 0x911f3fe3  com.apple.VideoToolbox (1.0 - 1273.29) <200BFEED-8948-3266-A2C4-1DC6A695EC58> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x911f4000 - 0x91461ff6  com.apple.security (7.0 - 55471) <5FCF76B2-92C6-3404-87D3-91B3F6E203AA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91462000 - 0x9148cfff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x9148d000 - 0x9149dff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x9149e000 - 0x91535ff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x91536000 - 0x91567ff4  com.apple.securityinterface (9.0 - 55047) <0D5ED2B8-C973-3C91-BA45-22501A043263> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x9161d000 - 0x916a2ffc  com.apple.CorePDF (4.0 - 4) <73557F2A-B0EF-3128-90FE-8EDD7824CE73> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x916a3000 - 0x91734fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x91735000 - 0x91818ff7  libcrypto.0.9.8.dylib (50) <B367D3A3-FC1F-326C-92EC-CAD81666524D> /usr/lib/libcrypto.0.9.8.dylib
    0x91819000 - 0x9181dfff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9181e000 - 0x9184dff1  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <2215559E-C517-3122-906F-156FD3CC10AD> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x9184e000 - 0x918a2fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <95A1E1CF-FC3E-3203-8683-34823CD70B6B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x918a3000 - 0x918a3fff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x918a4000 - 0x918beff7  com.apple.GenerationalStorage (2.0 - 160.2) <8755F7F1-2402-387C-A32A-2270E7D680C8> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x918bf000 - 0x919a5ff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x919a6000 - 0x919e3ffb  libGLImage.dylib (9.0.83) <FA15FEB5-54E4-313B-8E78-A2D2E6C88FE1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x919e4000 - 0x91a42fff  com.apple.ViewBridge (1.0 - 46) <62450F2D-C27A-3D11-BA41-AF8C6B18BEDD> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x91a43000 - 0x91cc1ff7  com.apple.imageKit (2.5 - 770) <C2FE06B8-DB32-392F-9280-5C1CB148D174> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x91cc2000 - 0x92037ff9  com.apple.HIToolbox (2.1 - 696) <43CB31D6-4C2B-30FA-A374-DB7C5728E7AD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x92038000 - 0x92165ff9  com.apple.avfoundation (2.0 - 651.12) <1AB88210-F2E6-3318-ACB2-41ED5AE6A0EF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x92166000 - 0x92264fff  libJP2.dylib (1038) <EE0B9985-625D-39E6-B425-03FB75BA2594> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x92265000 - 0x922f7ffe  libsystem_c.dylib (997.1.1) <D06FD754-8CE3-3EB7-BE05-2EF939BBE05F> /usr/lib/system/libsystem_c.dylib
    0x922f8000 - 0x92322ff7  libsandbox.1.dylib (278.10) <28813216-B652-3E4D-B0D5-BE49B385C6EC> /usr/lib/libsandbox.1.dylib
    0x92323000 - 0x92336ff7  com.apple.idsfoundation (10.0 - 1000) <1C0CCF49-109E-3C34-96ED-466B7BEB8551> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
    0x92337000 - 0x923cfff7  com.apple.Metadata (10.7.0 - 800.12.2) <5E9EA0AC-EE9E-362E-9DAC-9B7D21A53A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x923d0000 - 0x9254eff8  libGLProgrammability.dylib (9.0.83) <268638DE-5A32-3352-9068-97244D06E43F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x9254f000 - 0x9257aff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x9257b000 - 0x92584fff  com.apple.DiskArbitration (2.6 - 2.6) <6379523D-3196-370C-AE4A-8EA586E36909> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92585000 - 0x925faffb  com.apple.framework.IOKit (2.0.1 - 907.1.13) <86D72735-9DFB-35C8-83F7-CE0DCF17D354> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x925fb000 - 0x925fcfff  com.apple.marco (10.0 - 1000) <F7AD1FF7-5B1E-3D3C-AF00-FA3A43118CE5> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x925fd000 - 0x9260bfff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x92fd4000 - 0x92fdbfff  libMatch.1.dylib (19) <3B3680FC-2AC9-37CC-B262-5ACE2CF8939A> /usr/lib/libMatch.1.dylib
    0x92fdc000 - 0x9309fff1  com.apple.CoreText (352.0 - 367.15) <746AD442-F7B4-3273-A36D-C7103D26F727> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x930a0000 - 0x930feff7  com.apple.CoreUtils (1.9 - 190.4) <9E43FF7D-7FCD-3032-9EF9-BCF6D09E73C3> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x930ff000 - 0x930fffff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93100000 - 0x93101fff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x93102000 - 0x931a1ff7  libCoreStorage.dylib (380) <55467C87-E1A3-3057-B428-9BCEFD39E36D> /usr/lib/libCoreStorage.dylib
    0x931a2000 - 0x93649fe7  com.apple.CoreAUC (6.22.08 - 6.22.08) <3F9E2986-8FF9-3339-A0C8-DC1186C4A5EC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9364a000 - 0x93723ff6  com.apple.QuickLookUIFramework (5.0 - 622.3) <41D10880-AD68-3DE3-94F0-4CA9F44EBD5B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x93724000 - 0x9372eff7  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <16E20DCD-89F4-3C8E-9DBA-EED359807038> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9372f000 - 0x93c9cfff  com.apple.QuartzComposer (5.1 - 316) <4FC30662-E3CC-3AE5-88CE-7B271B59EFF0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x93c9d000 - 0x93cbcff9  com.apple.framework.Apple80211 (9.0 - 900.47) <68E399FF-AB98-378D-94AC-D0869A72344F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x93cbd000 - 0x93cd1ff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <6860A0D0-3654-3B02-B2E9-C4D2637167B8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x93cd2000 - 0x93cd9ff7  com.apple.XPCService (2.0 - 1) <94783930-9E46-394F-B1B2-9CA57CBA2D25> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x93cda000 - 0x93ce3fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x93ce4000 - 0x94068ff7  com.apple.FinderKit (1.2.1 - 1.2.1) <ECC853B3-C06B-3D7B-BDB3-8B7B149114E4> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
    0x94069000 - 0x94087ff5  com.apple.frameworks.preferencepanes (16.0 - 16.0) <3E3368EE-CAD3-3096-89BC-D006A25A6294> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x94088000 - 0x94089fff  libSystem.B.dylib (1197.1.1) <C58F0CC9-C1FD-3024-9358-D3359A6BBCAD> /usr/lib/libSystem.B.dylib
    0x9408a000 - 0x94094fff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x94095000 - 0x94115ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <1227DF22-E2DA-3764-A1CA-10CC0CEBE377> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x94116000 - 0x942c2ff1  com.apple.QuartzCore (1.8 - 332.0) <07F9B77F-35A2-3D21-99FA-CD3FCE5B9C7B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x942c3000 - 0x94314ffb  com.apple.CoreMedia (1.0 - 1273.29) <BE08E6C7-5E6F-3B54-9C17-751CFCBD823D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x94315000 - 0x94315fff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94316000 - 0x9432dff4  com.apple.CoreMediaAuthoring (2.2 - 947) <BF917B77-0935-3F56-A2B9-E62A58A713B8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x9432e000 - 0x94338ff2  com.apple.AppSandbox (3.0 - 1) <085C3B38-C7D8-3A62-AFC6-CEE27F93DFD1> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x94339000 - 0x94342ffa  com.apple.CommonAuth (4.0 - 2.0) <6CB82D57-3C55-39E5-9036-8047DF3E6F57> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x94343000 - 0x94355fff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x94460000 - 0x9448bff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0x9448c000 - 0x94567ff7  com.apple.LaunchServices (572.23 - 572.23) <7E52FB5C-9ECF-3CB9-BF18-6652B8D8CDE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x94568000 - 0x94584ff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x94585000 - 0x945f0ff9  com.apple.Heimdal (4.0 - 2.0) <E3091095-A893-3089-8DA1-8705B3BE5BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x94614000 - 0x9462cff7  libsystem_malloc.dylib (23.1.10) <69F485C9-B3E7-3E36-A06C-D7DFD29D22E1> /usr/lib/system/libsystem_malloc.dylib
    0x9462d000 - 0x9467cfff  com.apple.opencl (2.3.57 - 2.3.57) <93385E1C-00D9-31BE-9652-7F3C09484B3E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9467d000 - 0x9467dfff  libodfde.dylib (20) <98FC02AE-C596-3ED5-80D1-C502FF6115ED> /usr/lib/libodfde.dylib
    0x9467e000 - 0x94691fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x94692000 - 0x946c7ffd  libssl.0.9.8.dylib (50) <F3BEA2DF-DB84-37F0-B4C7-97C0A4DF19C9> /usr/lib/libssl.0.9.8.dylib
    0x946c8000 - 0x9488effb  libicucore.A.dylib (511.27) <653147E9-7326-337A-99E1-B42E4D801E53> /usr/lib/libicucore.A.dylib
    0x9488f000 - 0x9489afff  libcsfde.dylib (380) <C9E61AFB-1A9D-324B-9827-06B182CDD7B0> /usr/lib/libcsfde.dylib
    0x9489b000 - 0x94afcfff  com.apple.RawCamera.bundle (4.08 - 709) <941EB1CC-D625-3678-80B0-7D7299C7F261> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x94afd000 - 0x94b29ff7  com.apple.DictionaryServices (1.2 - 208) <33873336-BECD-3F62-A315-C45F24C1818C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x94b2a000 - 0x94c36fff  com.apple.ImageIO.framework (3.3.0 - 1038) <0B4A6607-9FBC-3A6C-984A-0542DE8385FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x94c37000 - 0x94c5bfff  libJPEG.dylib (1038) <212B0986-9227-397C-9493-BCB190EC020E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94c5c000 - 0x94ce5fff  com.apple.CoreSymbolication (3.0 - 141) <178DDF5C-B6DA-39BD-84F5-FD3FA7E93BF8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x94ce6000 - 0x94d16ff7  com.apple.CoreServicesInternal (184.8 - 184.8) <88528205-9452-3EEC-BB27-DAAA7EC81E04> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x94d17000 - 0x94d42ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x94d43000 - 0x94d66ff7  libc++abi.dylib (48) <5367BE5A-D475-3FB4-972D-E1DC999A709A> /usr/lib/libc++abi.dylib
    0x94d6a000 - 0x94d6bfff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x94e75000 - 0x94e82fff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x94ed2000 - 0x94ee8ff9  com.apple.aps.framework (4.0 - 4.0) <B3D5B83C-4DDF-3E8E-A701-7931AE6FAF65> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x94eec000 - 0x95217ff6  com.apple.Foundation (6.9 - 1056) <C8AE9C03-3460-354A-A8B6-EF4955BE600D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95218000 - 0x95235ffb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0x95236000 - 0x95236fff  com.apple.Carbon (154 - 157) <6E680560-FD53-3C00-BDF7-7AFA28747DC8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95237000 - 0x95285ff9  com.apple.HIServices (1.22 - 466) <30636237-408A-3552-90C1-1279348DF7CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x95286000 - 0x9528bff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x9528c000 - 0x9528dffa  libsystem_sandbox.dylib (278.10) <F3C9C427-AF9F-3CE0-95FF-DC9ACA0B5760> /usr/lib/system/libsystem_sandbox.dylib
    0x9528e000 - 0x95295ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x95296000 - 0x95296ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <8A37963C-DF6F-3DFF-94E9-407DC5DFEDA9> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95297000 - 0x9529aff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x9529b000 - 0x9529bfff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x952a1000 - 0x952a2fff  com.apple.AddressBook.ContactsData (8.0 - 1365) <3A9C53C8-07EC-310D-80AD-0B6E2492F021> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsData
    0x952a3000 - 0x952aefff  com.apple.CrashReporterSupport (10.9 - 538) <7A5FF845-433C-33E3-99B5-F6AA5B825734> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x952af000 - 0x952caff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x952cb000 - 0x95327ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x95328000 - 0x95364ff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x95365000 - 0x953a7fff  libGLU.dylib (9.0.83) <0D9BFE5A-435E-3C66-AF96-D3567B8FC87B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x953a8000 - 0x9541eff3  com.apple.securityfoundation (6.0 - 55122) <25149798-A37E-316F-84AB-93029EAF33D8> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9541f000 - 0x95465fff  libcurl.4.dylib (78) <EC84399F-5EA8-321B-B122-99730CC557C8> /usr/lib/libcurl.4.dylib
    0x95466000 - 0x954bbfff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x954bc000 - 0x9552ffff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x95530000 - 0x95533ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x95534000 - 0x95589ff2  com.apple.Suggestions (3.0 - 137.1) <3914C088-5905-30B1-BA4A-3C778D3C3869> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x9558a000 - 0x95982ff3  com.apple.CoreGraphics (1.600.0 - 599.7) <DB004990-F06F-3768-AE4C-191B3C748EFC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x95983000 - 0x95983fff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x95984000 - 0x9598cfee  libcldcpuengine.dylib (2.3.58) <713322D8-A643-3B9F-8194-9C4020D8A4D6> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x9598d000 - 0x95991ffc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x95992000 - 0x9599cff3  com.apple.DisplayServicesFW (2.8 - 360.8.14) <B14B15EC-41BA-37F6-B696-8BBA0E325C0C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x9599d000 - 0x959a3ffc  libCGXCoreImage.A.dylib (599.7) <87F9F4B2-487E-3B11-A869-D6CBDAB39055> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A. dylib
    0x959a4000 - 0x959a4fff  com.apple.quartzframework (1.5 - 1.5) <5BB3FDD4-4727-3D1B-9582-C96F36DA1542> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x959a5000 - 0x959a8ffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x959a9000 - 0x95a55ffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x95a56000 - 0x95a57fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x95a58000 - 0x95d59ff7  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <42E10BD1-995B-3FB4-8A6D-5FD071FB8BD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x95d5a000 - 0x95d5effa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x95d5f000 - 0x95dafff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x95db0000 - 0x95dbffff  libGL.dylib (9.0.83) <E76D1F2A-D98B-3464-AD0B-FC1EBBADF027> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95dc0000 - 0x95dc3ffa  libCGXType.A.dylib (599.7) <2738FF52-4B47-31AD-B7E5-412F6AFACC2A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x95dc4000 - 0x95e62ff7  com.apple.PDFKit (2.9 - 2.9) <0792168D-320D-33EF-AE24-6CDCB8C1990A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x95e63000 - 0x95e8bff7  libRIP.A.dylib (599.7) <461297C0-DDA9-3613-8F27-D7F1AC57208F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95e8c000 - 0x961d2ffb  com.apple.MediaToolbox (1.0 - 1273.29) <60F62850-70EC-38E8-9C7F-81204CF9C382> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x961d3000 - 0x961ebfff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <630A5CCF-8FC3-379D-B0BD-41DCE1F0B624> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x963b4000 - 0x963b8fff  libheimdal-asn1.dylib (323.12) <9EA2A221-301B-3B9A-BBF2-38134145B5A8> /usr/lib/libheimdal-asn1.dylib
    0x963b9000 - 0x963bfff7  com.apple.AddressBook.ContactsFoundation (8.0 - 1365) <3CABD941-9D36-3FB7-BD93-11A7CDC3FB4D> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundat ion
    0x963c0000 - 0x964cdfe4  com.apple.MediaControlSender (1.9 - 190.4) <DF0B5A99-046A-38C1-B68E-241CB2E622BC> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
    0x964d9000 - 0x964e1ffe  libGFXShared.dylib (9.0.83) <35644AAA-B1E7-367C-90C0-378024F8A46A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x964e2000 - 0x964e2fff  libffi.dylib (18.1) <7A14A976-B202-3074-8B0D-FB718DF172DA> /usr/lib/libffi.dylib
    0x964e3000 - 0x966e5ff7  com.apple.CoreFoundation (6.9 - 855.11) <50F70E07-043A-3A2F-87EF-A36BA6C5C9D9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x966e6000 - 0x96739fff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x9673a000 - 0x9674aff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0x9674b000 - 0x9675dfff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x9675e000 - 0x9675ffff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x96766000 - 0x9676efff  libsystem_dnssd.dylib (522.1.11) <1C015806-B971-34F9-B162-3DF7897351D0> /usr/lib/system/libsystem_dnssd.dylib
    0x967ea000 - 0x96805ff6  libPng.dylib (1038) <F39168D4-ABEB-3C2D-A763-B9D3E1EF43BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96806000 - 0x96c3aff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x96c3b000 - 0x96c40ff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x96c41000 - 0x96d97ff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x96d98000 - 0x96d99ffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x96d9a000 - 0x96dccffb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x96dcd000 - 0x96f3dfff  com.apple.QTKit (7.7.3 - 2826.0.1) <2C936219-2C31-3912-8CD3-42A16844AFE2> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96f3e000 - 0x970e64af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x97a42000 - 0x97b09ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <84A7EC09-3BBD-3E04-A88C-6D3B724448FF> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x97b0a000 - 0x97b0ffff  com.apple.MediaAccessibility (1.0 - 43) <1CC2B661-146A-3FF3-B843-508F611F7B4B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x97b10000 - 0x97b38fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x97b39000 - 0x97b78ff5  com.apple.ids (10.0 - 1000) <AEDCAD16-6626-3A0B-A9BE-3FC8A47CEB52> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
    0x97b79000 - 0x97b84ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x97b85000 - 0x97bbdfff  com.apple.LDAPFramework (2.4.28 - 194.5) <0C42A932-15E8-3CD1-AC35-1DF7D41B25A2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x97bbe000 - 0x97d4eff0  GLEngine (9.0.83) <1B032F5D-0D72-30E5-B4AD-D1EBAD995DAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
    0x97d4f000 - 0x97dfaffd  com.apple.imcore (10.0 - 1000) <90B6B340-1473-3F5C-B39D-887FFD2D01AD> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x97dfb000 - 0x97e27ff7  GLRendererFloat (9.0.83) <53D57A4C-3973-33ED-A0EF-1BCFE1B97A42> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/G LRendererFloat
    0x97e5b000 - 0x97e5dff2  com.apple.EFILogin (2.0 - 2) <BC558029-74C0-3A69-B376-8F4CBF8C338F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x97e5e000 - 0x98cf9ffb  com.apple.WebCore (9537 - 9537.73.13) <85E27D26-9FA4-3CB0-9355-DDD7E3BBFBD7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore
    0x98cfa000 - 0x98d08ff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x98d09000 - 0x98d17ff3  com.apple.opengl (9.0.83 - 9.0.83) <16CFFD50-217E-3E18-88AF-7F2AD980628B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x98d18000 - 0x98d81fff  com.apple.datadetectorscore (5.0 - 354.0) <0C6C812D-3E7A-31A4-BFDE-CD3316AA35B6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x98d82000 - 0x98eb9ff3  com.apple.desktopservices (1.8 - 1.8) <4D853961-F911-3FE2-A7DF-3130EA1D8CEB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x98eba000 - 0x98ec2fff  liblaunch.dylib (842.1.4) <3798500D-4436-3AEB-B273-7F2428C33A4A> /usr/lib/system/liblaunch.dylib
    0x98ec3000 - 0x98f5ffff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x98f60000 - 0x98f61ffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x98f62000 - 0x98f7affd  libdispatch.dylib (339.1.9) <6249BAE5-044F-3A7A-9CCC-03FF7E6B405B> /usr/lib/system/libdispatch.dylib
    0x98f7b000 - 0x98f94fff  libAVFAudio.dylib (32.2) <C4CBDFDF-8F77-3872-B7DE-D2D7982084BA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
    0x98f95000 - 0x990a7ffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x990a8000 - 0x990aafff  com.apple.SecCodeWrapper (3.0 - 1) <29ECC157-F444-31FE-99CC-A9289FF3AC8D> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeW

Maybe you are looking for