CS5 crashing under Win7, falut module: Photoshop; any idea ?

Hi,
Whenever I work on large documents (like 300 MB and above) it all goes well until I try to save the document. Then this error comes up and the program crashes completely, can't save and sure enough all work is lost.
Here is the log:
Faulting application name: Photoshop.exe, version: 12.0.3.0, time stamp: 0x4d0359bf
Faulting module name: Photoshop.exe, version: 12.0.3.0, time stamp: 0x4d0359bf
Exception code: 0xc0000005
Fault offset: 0x0094d193
Faulting process id: 0xb74
Faulting application start time: 0x01cbb7379fd8bc00
Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CS5\Photoshop.exe
Faulting module path: C:\Program Files\Adobe\Adobe Photoshop CS5\Photoshop.exe
Report Id: 8243b1b3-232d-11e0-906e-001cc03a2222
The PC config is:
MB: Intel
CPU: Intel E 6600 Core2Duo
RAM: 4 GB (2x2GB)
Video: nVidia GeForce 7300 LE
HDD: SSD Intel x25V (OS HDD) + 7.2k rpm Seagate 400 GB
OS: Win 7 32-bit
The system is freshly installed, and teh crash appears ever since I installed it.
Any idea of what might be happening? Any suggestions ?
Thanks!!!

Common culprits causing crashes often include outdated video drivers or 3rd party plug-ins.
Check the web site of the maker of your video card for any updates available, and if not, try running Photoshop without the Enable OpenGL Drawing setting (in Edit - Preferences - Performance).
Did you use or do you have 3rd party plug-ins installed?
-Noel

Similar Messages

  • My client has chosen pantone 2567c as their brand colour, but I can't seem to find this in illustrator, it's there in photoshop. any ideas?

    My client has chosen pantone 2567c as their brand colour, but I can't seem to find this in illustrator, it's there in photoshop. any ideas? I want to supply a vector logo for them to use as a standard. Not come across this before!
    help much appreciated.

    Thanks for the reply,
    think this was me being a bit dim, sorted the list in name order ant it was there.
    Thanks for taking the time to reply.

  • PS CC, loads but then crashes before i can do anything. any ideas as to what i could do?

    I havent run PS CC for a couple weeks, and I have not changed anything on my computer that i am aware of (is a brand new build).
    Today, I went to mess around with PS and possibly edit some images but it woulndt load properly. Well, it loads but then crashes (just closes) before I can do anything. A couple times i got a pop up indicating it cant connect to the adobe servers (not that you need net service to use the program of course) but i dont even get that popup anymore.
    This is *really* ticking me off. I dont use a firewall, but do use eset node32 antivirus 2014. never set the firewall in that eithe (not really sure how to since they changed things since the last time i bought that program). windows firewall is set, but adobe it set to go through it
    LR5, PSE12, Premiere pro CC - they all load no problem but PS CC does not load properly.
    Ive run malware bytes, did a reset/boot of the computer so far. the only program Ive noticed issues with is PS CC.
    ANY ideas?

    Hi Saleen219,
    Welcome to Adobe Forum,
    Please try this :http://helpx.adobe.com/photoshop/kb/cc-applications-crash-immediately-launch.html
    http://forums.adobe.com/message/5471698.
    They might help you.
    Regards,
    Rajshree

  • Dreamweaver cs5 recordsets issues...frustating! any ideas?

    Hi- any suggestion on how to deal with D cs5 software recordsets issues. Most of the time when I open a page that has a recordsets, or when I tried to edit or when creating recordsets or deleting, using the recordsets window, the program keeps crashing!! it is very frustrating, and I am not adding additional custom code to the recorsets, the software keeps crashing with its own generated code. If I switch between simple and advanced mode, it does the same thing.
    Sometimes, when you try to edit a recordset  it duplicates the recordset instead of editing the existing one.
    I have been waiting for an update for this issue but nothing....I am using Windows 7 and developing in PHP/MySQL
    Thanks,
    Renier

    I'm having the same probs with the recordsets duplicating. It's driving me mad and I have a lot of stuff to get on with. The program is almost unusable because of this. I will try some of these suggestions but does anyone have a definate answer why this is happening yet?
    I've made a fresh page, fresh connection, simple MYSQL statement, put a couple of results onto the page as a test, ok.
    Went back into the recordset from the panel, edited the recordset and it duplicated it!!  So nothing to do with Variables or repeat regions.
    Any ideas please. Here is my code.
    <?php require_once('MyConnections/connection.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_database, $Database);
    $query_Recordset1 = "SELECT * FROM cards ";
    $Recordset1 = mysql_query($query_Recordset1, $Database) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);mysql_select_db($database_database, $Database);
    $query_Recordset1 = "SELECT * FROM cards  where EmployeeID = 1";
    $Recordset1 = mysql_query($query_Recordset1, $Database) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <p><?php echo $row_Recordset1['cardno']; ?>
    </p>
    <p><?php echo $row_Recordset1['EmployeeID']; ?></p>
    <p><?php echo $row_Recordset1['description']; ?></p>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>

  • I keep getting crashes on launch with Pages. Any ideas?

    No matter which option I select, Pages still crashes.
    Here's the crash log. Any ideas?
    Process:         Pages [10788]
    Path:            /Applications/Pages.app/Contents/MacOS/Pages
    Identifier:      com.apple.iWork.Pages
    Version:         5.1 (1769)
    Build Info:      Pages-1769000000000000~1
    App Item ID:     409201541
    App External ID: 289042884
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [200]
    Responsible:     Pages [10788]
    User ID:         501
    Date/Time:       2014-01-24 20:36:00.715 +1100
    OS Version:      Mac OS X 10.9.2 (13C39)
    Report Version:  11
    Anonymous UUID:  C1B8072E-AFD1-8C9E-3E77-C51B7010ADDF
    Sleep/Wake UUID: D8CDF0EF-F197-43F7-B88B-3637722665B2
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: 'character index out of bounds'
    terminating with uncaught exception of type NSException
    abort() called
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff908c525c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff8e2c3e75 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff908c510c +[NSException raise:format:] + 204
    3   Pages                               0x00000001070b35d3 PagesConvertSandboxDocument + 4123996
    4   Pages                               0x000000010826c7f0 PagesConvertSandboxDocument + 22708089
    5   Pages                               0x00000001083fa239 PagesConvertSandboxDocument + 24336834
    6   Pages                               0x00000001083dfb92 PagesConvertSandboxDocument + 24228635
    7   Pages                               0x00000001082a5522 PagesConvertSandboxDocument + 22940843
    8   Pages                               0x0000000108360157 PagesConvertSandboxDocument + 23705824
    9   Pages                               0x0000000108360c95 PagesConvertSandboxDocument + 23708702
    10  Pages                               0x00000001083616d7 PagesConvertSandboxDocument + 23711328
    11  Pages                               0x00000001083597af PagesConvertSandboxDocument + 23678776
    12  Pages                               0x0000000107e52882 PagesConvertSandboxDocument + 18407435
    13  Pages                               0x0000000107e52905 PagesConvertSandboxDocument + 18407566
    14  Pages                               0x0000000107f6e1cb PagesConvertSandboxDocument + 19568980
    15  Pages                               0x0000000107f6d910 PagesConvertSandboxDocument + 19566745
    16  Pages                               0x0000000107f6b8dd PagesConvertSandboxDocument + 19558502
    17  Pages                               0x0000000106c69abf Pages + 592575
    18  Pages                               0x0000000106bdd417 Pages + 17431
    19  Pages                               0x0000000106bdcb75 Pages + 15221
    20  AppKit                              0x00007fff8e8ae54c -[NSWindowController _windowDidLoad] + 450
    21  AppKit                              0x00007fff8e895206 -[NSWindowController window] + 110
    22  Pages                               0x0000000107347543 PagesConvertSandboxDocument + 6827212
    23  Pages                               0x000000010733d901 PagesConvertSandboxDocument + 6787210
    24  AppKit                              0x00007fff8e8f16c7 -[NSDocument addWindowController:] + 228
    25  Pages                               0x0000000107324ee2 PagesConvertSandboxDocument + 6686315
    26  AppKit                              0x00007fff8ead25d0 __90-[NSDocumentController(NSInternal) _autoreopenDocumentsFromRecords:withCompletionHandler:]_block_invoke1626 + 87
    27  Pages                               0x000000010736632b PagesConvertSandboxDocument + 6953652
    28  AppKit                              0x00007fff8eaca08e __89-[NSDocumentController reopenDocumentForURL:withContentsOfURL:display:completionHandler:]_block_invoke 924 + 201
    29  AppKit                              0x00007fff8eac9d33 __89-[NSDocumentController reopenDocumentForURL:withContentsOfURL:display:completionHandler:]_block_invoke _7 + 24
    30  libdispatch.dylib                   0x00007fff969471d7 _dispatch_call_block_and_release + 12
    31  libdispatch.dylib                   0x00007fff969442ad _dispatch_client_callout + 8
    32  libdispatch.dylib                   0x00007fff9694bf03 _dispatch_main_queue_callback_4CF + 333
    33  CoreFoundation                      0x00007fff9082c679 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    34  CoreFoundation                      0x00007fff907e7954 __CFRunLoopRun + 1636
    35  CoreFoundation                      0x00007fff907e70b5 CFRunLoopRunSpecific + 309
    36  HIToolbox                           0x00007fff90baaa0d RunCurrentEventLoopInMode + 226
    37  HIToolbox                           0x00007fff90baa7b7 ReceiveNextEventCommon + 479
    38  HIToolbox                           0x00007fff90baa5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    39  AppKit                              0x00007fff8e6196de _DPSNextEvent + 1434
    40  AppKit                              0x00007fff8e618d2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    41  AppKit                              0x00007fff8e60ce2c -[NSApplication run] + 553
    42  AppKit                              0x00007fff8e5f7bf3 NSApplicationMain + 940
    43  Pages                               0x0000000106be5811 Pages + 51217
    44  libdyld.dylib                       0x00007fff8b6be5fd start + 1
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff95a8b866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff93dad35c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff95560b1a abort + 125
    3   libc++abi.dylib                         0x00007fff91bc9f31 abort_message + 257
    4   libc++abi.dylib                         0x00007fff91bef952 default_terminate_handler() + 264
    5   libobjc.A.dylib                         0x00007fff8e2c430d _objc_terminate() + 103
    6   libc++abi.dylib                         0x00007fff91bed1d1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff91bed246 std::terminate() + 54
    8   libobjc.A.dylib                         0x00007fff8e2c40b0 objc_terminate + 9
    9   libdispatch.dylib                       0x00007fff969442c1 _dispatch_client_callout + 28
    10  libdispatch.dylib                       0x00007fff9694bf03 _dispatch_main_queue_callback_4CF + 333
    11  com.apple.CoreFoundation                0x00007fff9082c679 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    12  com.apple.CoreFoundation                0x00007fff907e7954 __CFRunLoopRun + 1636
    13  com.apple.CoreFoundation                0x00007fff907e70b5 CFRunLoopRunSpecific + 309
    14  com.apple.HIToolbox                     0x00007fff90baaa0d RunCurrentEventLoopInMode + 226
    15  com.apple.HIToolbox                     0x00007fff90baa7b7 ReceiveNextEventCommon + 479
    16  com.apple.HIToolbox                     0x00007fff90baa5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    17  com.apple.AppKit                        0x00007fff8e6196de _DPSNextEvent + 1434
    18  com.apple.AppKit                        0x00007fff8e618d2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    19  com.apple.AppKit                        0x00007fff8e60ce2c -[NSApplication run] + 553
    20  com.apple.AppKit                        0x00007fff8e5f7bf3 NSApplicationMain + 940
    21  com.apple.iWork.Pages                   0x0000000106be5811 0x106bd9000 + 51217
    22  libdyld.dylib                           0x00007fff8b6be5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff95a8c662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff9694643d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff96946152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff95a8be6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff93dadf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff93db0fb9 start_wqthread + 13
    Thread 17:: Recalculation control thread
    0   libsystem_kernel.dylib                  0x00007fff95a8b716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff93daec3b _pthread_cond_wait + 727
    2   com.apple.iWork.Pages                   0x0000000107881555 0x106bd9000 + 13272405
    3   com.apple.iWork.Pages                   0x0000000107886fb8 0x106bd9000 + 13295544
    4   libsystem_pthread.dylib                 0x00007fff93dac899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff93dac72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff93db0fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff7c3c6310  rcx: 0x00007fff59024e78  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff59024ea0  rsp: 0x00007fff59024e78
       r8: 0x00007fff91bf0959   r9: 0x00007fff955888d0  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff59025000  r13: 0x00007fff590254d0  r14: 0x0000000000000006  r15: 0x00007fff59024ee0
      rip: 0x00007fff95a8b866  rfl: 0x0000000000000206  cr2: 0x0000000136054000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x106bd9000 -        0x108a8cff7  com.apple.iWork.Pages (5.1 - 1769) <4743D904-40A6-3A6F-ABC9-008952252477> /Applications/Pages.app/Contents/MacOS/Pages
           0x10929a000 -        0x1092adfff  com.apple.MediaLibrary (1.0.1 - 637.3) <D62E1374-2678-32A9-9AFC-CA64C7DEEC57> /System/Library/Frameworks/MediaLibrary.framework/Versions/A/MediaLibrary
           0x109578000 -        0x109580ff3  libCGCMS.A.dylib (599.20.6) <5C4BB99C-08D4-31DC-8DC9-B8606B7A52E4> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x10ace7000 -        0x10aceaffa  libCGXType.A.dylib (599.20.6) <B13E12CB-F50A-308F-8B3E-4ED80A826035> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x10ae81000 -        0x10aea9ffb  libRIP.A.dylib (599.20.6) <B6B603ED-5752-3F3B-AB4E-8F6FC99CE631> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff6eb41000 -     0x7fff6eb74817  dyld (239.3) <26C7F4E2-EEC5-36CA-B391-19CC5A9274AE> /usr/lib/dyld
        0x7fff8aaf6000 -     0x7fff8ab11ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8ab12000 -     0x7fff8ab3fff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8aba0000 -     0x7fff8abcfff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8abdd000 -     0x7fff8b010ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8b011000 -     0x7fff8b012ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff8b013000 -     0x7fff8b01cff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8b01d000 -     0x7fff8b044ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8b08a000 -     0x7fff8b1b9fe7  com.apple.MediaControlSender (2.0 - 200.34.3) <927A6555-E85F-3730-995D-2FA8826EFC02> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8b1ba000 -     0x7fff8b1e1ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff8b1e2000 -     0x7fff8b21eff7  com.apple.ids (10.0 - 1000) <5A8FC5D9-B8BD-3F3C-B2A0-251D90B87A61> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8b21f000 -     0x7fff8b232ff7  com.apple.AppContainer (3.0 - 1) <4ECE70AA-B888-3A36-AD0B-A7A3BCE2C298> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff8b233000 -     0x7fff8b234ffb  libScreenReader.dylib (333.10) <B8857530-E7BC-3C40-B10E-23C815801074> /usr/lib/libScreenReader.dylib
        0x7fff8b235000 -     0x7fff8b237ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8b476000 -     0x7fff8b4c5ff7  com.apple.framework.internetaccounts (2.1 - 210) <D7175985-03A5-315B-B788-FBDC0019B0EA> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8b51e000 -     0x7fff8b52bff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8b52c000 -     0x7fff8b551ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8b591000 -     0x7fff8b5dafff  com.apple.CoreMedia (1.0 - 1273.48) <1A932CB2-3309-3DC9-A7DC-CF2A882E207E> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8b5db000 -     0x7fff8b5e8fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8b5e9000 -     0x7fff8b627ff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8b628000 -     0x7fff8b640ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8b6a5000 -     0x7fff8b6b6fff  com.apple.idsfoundation (10.0 - 1000) <7976E734-3595-3164-B9D9-19CA80360BB8> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff8b6b7000 -     0x7fff8b6b8fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8b6b9000 -     0x7fff8b6baff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8b6bb000 -     0x7fff8b6beff7  libdyld.dylib (239.3) <4738ACE3-07FA-3712-8F07-8BBD84782D2D> /usr/lib/system/libdyld.dylib
        0x7fff8b6bf000 -     0x7fff8b6bffff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8b6c0000 -     0x7fff8b7f6ff6  com.apple.WebKit (9537 - 9537.74.6) <255E84B3-2A85-3D48-A320-3B9CD31D52E4> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8b7f7000 -     0x7fff8b801ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8b802000 -     0x7fff8b8cbfff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8b8cc000 -     0x7fff8b8f0fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff8b8f1000 -     0x7fff8b9dffff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8b9e0000 -     0x7fff8ba6cff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8ba7c000 -     0x7fff8bb3eff9  com.apple.CoreText (352.0 - 367.18) <F5E39280-6DCC-3EB2-AEC9-2F4C0AB2E4C2> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8bb3f000 -     0x7fff8bb6efff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8bba9000 -     0x7fff8bbe2ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8bbe3000 -     0x7fff8bbeafff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8bbed000 -     0x7fff8bbfbfff  com.apple.opengl (9.6.0 - 9.6.0) <3638253B-AB37-3BB8-A4A4-02AD9FE73F20> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8bbfc000 -     0x7fff8bc21ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8bc2c000 -     0x7fff8bc2efff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8bc2f000 -     0x7fff8bc33ff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8bc73000 -     0x7fff8bf71fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8bf9f000 -     0x7fff8bfa0fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8bfa1000 -     0x7fff8bfa2ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8bfa3000 -     0x7fff8bfd4ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff8c01c000 -     0x7fff8c089fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8c08a000 -     0x7fff8c0e2ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8c146000 -     0x7fff8c149fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8c14a000 -     0x7fff8c16efff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8c16f000 -     0x7fff8c174fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8c178000 -     0x7fff8c23cff7  com.apple.backup.framework (1.5.2 - 1.5.2) <B3D58DC2-BE52-3ECC-A77A-A9E7CA9403C4> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8c41f000 -     0x7fff8c47cfff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff8c487000 -     0x7fff8c4e7fff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8c4e8000 -     0x7fff8c4ecff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib
        0x7fff8c8e3000 -     0x7fff8c993ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8c994000 -     0x7fff8c99eff7  com.apple.AppSandbox (3.0 - 1) <7AE9F0E5-1399-3483-A333-23633C6212C1> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8c9a6000 -     0x7fff8caf9ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8cc61000 -     0x7fff8cc72ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff8cc73000 -     0x7fff8cc89fff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8ccd9000 -     0x7fff8cce1ffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8cce2000 -     0x7fff8ccfefff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8cd09000 -     0x7fff8cd09ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8cd0a000 -     0x7fff8cd4cff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8cd4d000 -     0x7fff8cd4dfff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8cd7a000 -     0x7fff8cde0fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8ce01000 -     0x7fff8ce1efff  com.apple.facetimeservices (10.0 - 1000) <5FEB87DF-3F5D-38DB-A860-04CDDA84E627> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff8ce1f000 -     0x7fff8ce28fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8ce2b000 -     0x7fff8ce53ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff8ce54000 -     0x7fff8ce55ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8ce56000 -     0x7fff8ce58ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8cea4000 -     0x7fff8cea6fff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8cea7000 -     0x7fff8ceaffff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8cef6000 -     0x7fff8cef7ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8cef8000 -     0x7fff8cf27ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8cf28000 -     0x7fff8cf5cfff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff8d1e7000 -     0x7fff8d1f9ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8d257000 -     0x7fff8d272ff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8d273000 -     0x7fff8d33efff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8d33f000 -     0x7fff8d38dfff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff8d6ee000 -     0x7fff8d6f4ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff8d773000 -     0x7fff8d773fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8d79d000 -     0x7fff8d7a4ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff8d7eb000 -     0x7fff8d817fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8d833000 -     0x7fff8d917fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8d918000 -     0x7fff8d921fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8d922000 -     0x7fff8d980ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8d985000 -     0x7fff8d985fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8d9b0000 -     0x7fff8d9e5ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8d9e6000 -     0x7fff8df09fff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8df0a000 -     0x7fff8e1defc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8e1df000 -     0x7fff8e256fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8e257000 -     0x7fff8e2a9fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff8e2aa000 -     0x7fff8e2b5ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A9866D67-C5A8-36D1-A1DB-E2FA60328698> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8e2b6000 -     0x7fff8e463f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8e477000 -     0x7fff8e47dfff  com.apple.AddressBook.ContactsFoundation (8.0 - 1369) <A5D1D494-2F84-3A97-A229-04DB308D4481> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff8e47e000 -     0x7fff8e5eeffc  com.apple.CFNetwork (673.2 - 673.2) <66625C7E-0435-3447-8950-ECB685A8D8B1> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8e5f5000 -     0x7fff8f16bfff  com.apple.AppKit (6.9 - 1265.14) <A902A8DB-9C1D-3E63-A745-355D84139118> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8fcd2000 -     0x7fff8fcd4ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8fd02000 -     0x7fff8fd32fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8fd33000 -     0x7fff8fd96ff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8fd97000 -     0x7fff8fdd1ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8fe11000 -     0x7fff8fe5efff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8fe5f000 -     0x7fff8fea6fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8febb000 -     0x7fff8fed4ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8ffe1000 -     0x7fff90199ff3  libicucore.A.dylib (511.30) <981CFC14-CBE9-3EBB-8D0F-7F30A6B8FBEE> /usr/lib/libicucore.A.dylib
        0x7fff9019a000 -     0x7fff9019cfff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff9019d000 -     0x7fff901a2fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff901a3000 -     0x7fff901a4fff  com.apple.AddressBook.ContactsData (8.0 - 1369) <BAF434EC-32B6-3F1C-8ABE-4419A15829FF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff901a5000 -     0x7fff901e4fff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff901e5000 -     0x7fff901edff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff901ee000 -     0x7fff901f1fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff901f4000 -     0x7fff90242fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff90243000 -     0x7fff9025eff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff90276000 -     0x7fff902bbffe  com.apple.HIServices (1.22 - 467.1) <2AAF2BE2-4B98-3485-B51E-435E72153449> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff902bc000 -     0x7fff90344ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff90345000 -     0x7fff903e0fff  com.apple.PDFKit (2.9.1 - 2.9.1) <F4DFF4F2-6DA3-3B1B-823E-D9ED271A1522> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff903e1000 -     0x7fff90717fff  com.apple.MediaToolbox (1.0 - 1273.48) <56D7E4FE-5658-3DA5-881B-A7C49E4DD0A2> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff90718000 -     0x7fff90728ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff90777000 -     0x7fff9095cfff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff9095d000 -     0x7fff9096dfff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff9096e000 -     0x7fff90977ffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff90978000 -     0x7fff909ebffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff909ec000 -     0x7fff909f7fff  libkxld.dylib (2422.90.19) <B5C513F9-3964-39E5-B75A-AF08EC580BA1> /usr/lib/system/libkxld.dylib
        0x7fff90a4b000 -     0x7fff90a4effc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff90a4f000 -     0x7fff90a8dfff  com.apple.ShareKit (1.0 - 185) <14FDC8CD-2F7B-3A66-B220-051670FA0289> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
        0x7fff90a9b000 -     0x7fff90afafff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff90afb000 -     0x7fff90b7bfff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff90b7c000 -     0x7fff90e26ff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff90ed4000 -     0x7fff90f64fff  com.apple.Metadata (10.7.0 - 800.20) <C9CAB80A-1575-33D3-8015-2BFB425AE936> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff91471000 -     0x7fff9148eff7  com.apple.framework.Apple80211 (9.3.1 - 931.57) <FC7D6869-78D8-3E8B-A904-DD5BD5BF9E74> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff9148f000 -     0x7fff91497fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff914a5000 -     0x7fff914abff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff916f9000 -     0x7fff9175dff3  com.apple.datadetectorscore (5.0 - 354.2) <2D4BF522-8897-3654-8E34-BC1BD42B53E3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff9176b000 -     0x7fff91772ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff91773000 -     0x7fff91aeaffa  com.apple.JavaScriptCore (9537 - 9537.74.4) <0942FE6B-3152-30FC-B92A-92A1C29C5295> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff91aeb000 -     0x7fff91b38ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff91b6e000 -     0x7fff91ba6ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff91bc6000 -     0x7fff91bc8ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff91bc9000 -     0x7fff91bf2ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff91bf3000 -     0x7fff91bffff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff91c00000 -     0x7fff91d6eff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff91d6f000 -     0x7fff91e4efff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff91e4f000 -     0x7fff91e51fff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff91e52000 -     0x7fff91e53ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff91ea8000 -     0x7fff91eb3fff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff91eb4000 -     0x7fff91f85fff  com.apple.QuickLookUIFramework (5.0 - 622.6) <18F5D642-D9D3-360B-8779-FA9C8232261A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff92114000 -     0x7fff92375fff  com.apple.imageKit (2.5 - 773) <EBC7569E-8DBF-3B76-B4C8-18EADB7CC02B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff923ba000 -     0x7fff9240bff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff92417000 -     0x7fff93265ffb  com.apple.WebCore (9537 - 9537.74.6) <C2EC9A90-39B4-3C29-8365-EF273AAA5E07> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff93318000 -     0x7fff93409ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff9340b000 -     0x7fff93424ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff93437000 -     0x7fff93526fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff93527000 -     0x7fff9376fff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff93770000 -     0x7fff93876ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff93877000 -     0x7fff939b8fff  com.apple.QTKit (7.7.3 - 2826.16) <B2124A27-50D0-3E62-BC68-1A27BBDCE6A0> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff939b9000 -     0x7fff93a42fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff93ad9000 -     0x7fff93b03ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff93b04000 -     0x7fff93b0eff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff93b0f000 -     0x7fff93b13fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff93b14000 -     0x7fff93cd2fff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff93da5000 -     0x7fff93daaff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff93dab000 -     0x7fff93db2ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff93db3000 -     0x7fff93dbaff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff93de5000 -     0x7fff93e38fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff93e39000 -     0x7fff93e39fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff93e3a000 -     0x7fff93e4bff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff93ee4000 -     0x7fff94014ff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff94015000 -     0x7fff94018fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff94307000 -     0x7fff94316ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff943b2000 -     0x7fff943b2fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff943b3000 -     0x7fff94801fff  com.apple.VideoToolbox (1.0 - 1273.48) <8CA741EE-80A1-34DB-B2FF-7413F471DE02> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff94802000 -     0x7fff94802fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff94803000 -     0x7fff9480afff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff9480b000 -     0x7fff948f2ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff948f3000 -     0x7fff94990fff  com.apple.imcore (10.0 - 1000) <0A9875AD-0895-3B5F-8A65-79486B8E3E27> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff94991000 -     0x7fff949d2fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff95123000 -     0x7fff9516fffe  com.apple.CoreMediaIO (405.0 - 4560) <16D1F674-F48D-33F0-8D15-2866247D8D3D> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff951a9000 -     0x7fff951d8fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff951d9000 -     0x7fff95240ff7  com.apple.CoreUtils (2.0 - 200.34.3) <ECA64A9E-9D8A-30CB-B833-F3BEDB0A37BC> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff95241000 -     0x7fff95259ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff9525a000 -     0x7fff954ebff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff95504000 -     0x7fff9558dff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff95685000 -     0x7fff95955ffc  com.apple.CoreImage (9.2.6) <B03BC1A1-BF17-3491-80FB-062661677D62> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff95a73000 -     0x7fff95a75ff7  com.apple.SecCodeWrapper (3.0 - 1) <81357B42-D9EF-3A62-8118-D30DF186DBAA> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff95a76000 -     0x7fff95a92ff7  libsystem_kernel.dylib (2422.90.19) <A741DDB4-8145-3499-B642-5910CF894E21> /usr/lib/system/libsystem_kernel.dylib
        0x7fff95a93000 -     0x7fff95aa0ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff95aa1000 -     0x7fff95aabff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff95aac000 -     0x7fff95b1bff1  com.apple.ApplicationServices.ATS (360 - 363.2) <6E4F7ED2-0D18-350C-B96C-83C64F84FD6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff95b5a000 -     0x7fff95b5affd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff95b5b000 -     0x7fff95b5fff7  libsystem_stats.dylib (93.90.3) <9679E01B-5046-3F34-AF67-355CE3072C5D> /usr/lib/system/libsystem_stats.dylib
        0x7fff95b60000 -     0x7fff95b89fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff95b8c000 -     0x7fff95bf1ff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff95bf2000 -     0x7fff95bf3fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff95c1b000 -     0x7fff95c66fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff95c67000 -     0x7fff95c6bff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff95d48000 -     0x7fff95f8efff  com.apple.AddressBook.framework (8.0 - 1369) <3D1A8D58-6A9E-366C-BDB8-ECC6F279DB24> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff95f8f000 -     0x7fff95f8fff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff95f90000 -     0x7fff95fd7ff7  libcups.2.dylib (372.1) <C1C57DAF-E4CF-3A0D-BBE9-8DDA093D6CE9> /usr/lib/libcups.2.dylib
        0x7fff96009000 -     0x7fff96928d5b  com.apple.CoreGraphics (1.600.0 - 599.20.6) <A24D3B7F-633C-304B-A2C5-BB847AEE7E5F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff96943000 -     0x7fff9695dfff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
        0x7fff9695e000 -     0x7fff96962fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff96963000 -     0x7fff9697aff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff9697b000 -     0x7fff9697efff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff9697f000 -     0x7fff96984ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff96985000 -     0x7fff96d66ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff96ec7000 -     0x7fff96eebff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff96eec000 -     0x7fff96fd6fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff96fd7000 -     0x7fff97001ff7  libsandbox.1.dylib (278.11) <2C5DCF4A-EF5E-3A50-8681-90FF08311F2B> /usr/lib/libsandbox.1.dylib
        0x7fff973a1000 -     0x7fff974c3ff1  com.apple.avfoundation (2.0 - 651.12) <33B132FD-921B-3635-8032-AC9DE27131B5> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff974c4000 -     0x7fff9751dfff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff9751e000 -     0x7fff97528fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff97529000 -     0x7fff97529fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigr

    You should export all the files to Pages 09 or Word format and use Pages 09 or Word. 
    Getting pages 1.7.2 on itunes is tricky if you do not have a device that already has it.  If you go to a genius bar, they may help you out and put it back on for you. The Apple Support technicians are not always the best informed. 

  • JUst installed OS10 maverick. Got updated epson scanner software. update refused opening saying third party could not be opened. same thing when trying to open grab tif file in photoshop. any ideas?gr

    Just installed maverick. dowmloaded updated drivers for epson scanner. could not open download. got message would not open because third party file. Also tried to open grab tif file in photoshop. also denied as third party file. Any ideas?

    dmartinnyc wrote:
    Just installed maverick. dowmloaded updated drivers for epson scanner. could not open download. got message would not open because third party file.
    If you are trying to install the updated Epson scanner driver when you get this message, it will be due to the installer not being digitally signed - which is odd if it is an updated driver. To get past this block, which is a function of Gatekeeper, hold down the Control button and click the installer. A pop-up window will appear. Select Open from the menu. You will now get the option to install the driver software.

  • Update crashes my AA 8...any ideas appreciated

    new to forum...
    installed CS3 online update yesterday (don't know which one as i normally decline). Double click a PDF and error window says Acrobat has encountered a problem and must shut down. Open Acrobat with no problem but when clicking on the "help" tab it crashes Acrobat and generates the same error.
    This is not a positive event for me. Any ideas / assistance is truly appreciated.
    Thanks,
    C

    Hello,
    10.5.8 is as far as 10.5 can go, there haven't been any "updates" for some time for 1.5.x, what you need is a paid "Upgrade", but to see what might work on your Mac...
    At the Apple Icon at top left>About this Mac, then click on More Info, then click on Hardware> and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: iMac
    Model Identifier: iMac7,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 6 GB
    Bus Speed: 800 MHz
    Boot ROM Version: IM71.007A.B03
    SMC Version (system): 1.21f4

  • HT203216 When I try and open microsoft outlook it crashes and won't open . Any ideas on how ti fix this ?

    Recently purchase office 365 home premium . Was working fine but now outlook wont open
    Any ideas ?

    1.  Your question has nothing to do with an iPhone, which is what this forum is for.
    2.  Your question has nothing to do with an Apple product, so I suggest you post your question the Microsoft Mac forums:  http://answers.microsoft.com/en-us/mac

  • Photoshop CS5 running under Win7 locks up when I select Image/Image Size.  Any ideas?

    Only thing I have done recently is install dropbox.  Other functions seem to work still.  Tried reboot etc.

    That's a known bug in Win8.
    Set the GPU advanced mode to "Basic" for the time being.
    Also check with your GPU maker for updated drivers.

  • Why Does Photoshop CS5 crashes under Lion?

    Using Photoshop CS5 on MacPro desktop computer. Eer since  Lion PSCS5 crashes after booting and working for a few minutes. Worked in 10.6 just fine.
    What is going on?
    Dick Foster Sonoma CA

    The Adobe engineers report that Lion has many problems they can't fix.  Check the Adobe forums for details.
    This forum here is for Power Macs (non-Intel machines) which cannot run either Lion or Photoshop CS5.

  • I want to install Photoshop cs5 (!) under Win7. Where can I download the 64bit Version (German)?

    Where can I download the 64bit Version (German)?
    Thank you.

    Per the Photoshop CS5 specs: 
    Photoshop CS5.1 runs 64-bit native on Mac OS X, Microsoft® Windows Vista®, and Windows® 7 platforms. It can also run in 32-bit mode across all platforms, including Windows XP. 64-bit users should realize noticeably greater gains in performance, in some cases as dramatic as ten times the previous speed.
    You can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site or else the download will not work properly.
    CS5: http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

  • EdgeAnimateCC2014 crash on win7 (faulting module libcef.dll)

    Hi,
    i'm just wondering if the win8(Edge animate cc crashes at startup on win 8.1) problem and remedy applies to win7?
    Edge started crashing minutes after opening and working on a project, notably after i updated my nvidia driver because PhotoshopCC2014 wouldn't run unless i did.
    My event log reads:
    Faulting application name: AdobeEdgeAnimateCC2014Helper.exe, version: 0.0.0.0, time stamp: 0x5295bbb9
    Faulting module name: libcef.dll, version: 3.1364.1130.0, time stamp: 0x5295b9b5
    Exception code: 0xc0000005
    Fault offset: 0x0003d7db
    Faulting process id: 0xcd8
    Faulting application start time: 0x01cfa0b37a2ae41d
    Faulting application path: C:\Program Files (x86)\Adobe\Adobe Edge Animate CC 2014\cef\AdobeEdgeAnimateCC2014Helper.exe
    Faulting module path: C:\Program Files (x86)\Adobe\Adobe Edge Animate CC 2014\cef\libcef.dll
    Report Id: cd6674e6-0ca6-11e4-9e8c-00268339bfef
    System info:
    Operating System: Windows 7 Professional 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.140303-2144)
    Language: English (Regional Setting: English)
    System Manufacturer: System manufacturer
    System Model: System Product Name
    BIOS: BIOS Date: 08/03/12 14:55:01 Ver: 21.04
    Processor: Intel(R) Core(TM) i7-3970X CPU @ 3.50GHz (12 CPUs), ~3.5GHz
    Memory: 65536MB RAM
    Available OS Memory: 65486MB RAM
    Page File: 4816MB used, 126153MB available
    Windows Dir: C:\Windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    Display info:
    Card name: NVIDIA GeForce GTX 580
    Manufacturer: NVIDIA
    Chip type: GeForce GTX 580
    DAC type: Integrated RAMDAC
    Device Key: Enum\PCI\VEN_10DE&DEV_1080&SUBSYS_00000000&REV_A1
    Display Memory: 4047 MB
    Dedicated Memory: 1487 MB
    Shared Memory: 2559 MB
    Any suggestions?
    thx!
    ian

    Hi ,
    To generate the crash dump on windows follow the steps :
    01)Type regedit in command run to open the registry entries.
    02)Add a new entry to computer\HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Windows Error Reporting\Local Dumps\EdgeAnimate.exe
    If any of the sun category doesn't exist , please create it.
    03)Now add "DumpFolder" , "DumpCount" , DumpType" as mentioned in the link shared by Sujai - http://msdn.microsoft.com/en-us/library/windows/desktop/bb787181%28v=vs.85%29.aspx
    i.e create DumpFolder entry of type REG_EXPAND_SZ and default value say c:\crashDumps where you have this folder crashDumps in the c directory
    Take a look at the snapshot below :
    After making these settings , relaunch Edge Animate and try to crash. This should generate the crash dump in the c:\crashDumps folder. Send that log file to us via dropbox.
    Do let me know if you need any other help!
    Thanks and Regards,
    Sudeshna Sarkar

  • T410 graphic card driver crash under win7 64x OS

    my T410 crashes everytime when WIN7 AERO function is triggered. e.g the preview windows u get when u place ur mouse over the IE icon on the taskbar.
    I've updated my gpu driver, but the problem remains, does anyone have the same problem and konw how to solve it? or I just have to wait for lenovo to release a new patch to fix it?
    my laptop's spec:           T410 2522-RT5   ram:4g   gpu:nvs3100m 256mb  OS:win7 64x professional edition  cpu:i7 m620

    sorry, there is a typo in the text above ---- its not my pc crashes, its the grahpic card driver crashes when AERO is triggered

  • Media Encoder CS4 always crashes under Win7!

    The CS4 media encoder was quite a downstep from the simple and solid one in CS3 in terms of usability and stability.
    In Vista I had to deal a lot with crahes here and crashes there depending on file formats or number of passes, it could rarely get things done.
    Now I upgraded to Win 7.
    But this time I can't even encode ANYTHING.
    It always crashes and gives me this error:
    Please Adobe, give me a version that WORKS for all that loads of money I paid you over the years!

    Okay, I found out that on completely uncompressed source videos it seems to work. So the problem may lie in the codec installations or corrupt source files. Still I wonder about this error handling and the endless "insert CD" loop afterwards.

  • Error Message:  An error occurred when attempting to change modules.  Any ideas to this error?

    I just downloaded the trial of LR 2.5.   I get this message when I try to change modules and cannot import any files.  Please Help. Thanks

    What didn't work?
    Error changing modules | Lightroom

Maybe you are looking for

  • A large universe takes a lot of time to be opened in Designer

    Hi All. When opening a large universe (I can't tell at the moment how large...) it takes a lot of time to open it. a lot of time can be up to two hours (I guess even more). Well, I have been told that there's a way to open universe in Designer withou

  • Server Size Need Help !!!!

    Hi Experts, Our current BW database structure is like below: DB Size - 180,803 MB Size Used - 180,627 MB Free - 176 MB Logical Files used by SQL server are, DATA1 - Size (66,417) - Used (66,256) - Free Disk (15,014) DATA2 - Size (55,289) - Used (55,2

  • Can not connect to web site to download shockwave page interrupt

    I am using mozzilla ans shock wave was deactivate then got deleted not I can not load a new version every time I try to download shock wave or flash the page will not connect?

  • Where are paths specified?

    Hi, I keep getting an error while building, checking dependencies: There is no SDK at specified SDKROOT_ppc path '/Developer/SDKs/MacOSX10.3.9.sdk'. And of course there is no such sdk at that path and I don't even want to use that sdk (my system is 1

  • Hierarchical Filter Selection display selection

    I am building a web report which uses Hierarchical Filter Selection on Brand to filter data as per brands. When I select a hierarchy node the data in the table gets filtered but the chosen filter value is not displayed in the Hierarchical Filter Sele