Need help reading BLOB on a Zaurus

I know the topic of BLOBs comes up a lot, but I couldn't find an answer to my problem after searching the existing posts.
I'm trying to retrieve an image stored as a BLOB in an oracle DB.. The code works fine on my PC when I use getBLOB (commented out section of the code), but the target device (Zaurus or other Linux handheld) is limited to the Java 1.2 API. I changed the code to use getBinaryStream instead. Everything seems to work on the PC, but it still fails on the Zaurus. Not sure why. Any ideas?
stmt = connection.createStatement();
records = stmt.executeQuery(HOTEL_SECTION_IMAGE_QUERY);
while (records.next()){
    if (DEBUGGING_TEXT_ON)System.out.println("Reading Record");
    /*Blob image_blob=records.getBlob(3);
    if (image_blob == null){
        if (DEBUGGING_TEXT_ON)System.out.println("No image BLOB found");
    }else{
        if (DEBUGGING_TEXT_ON)System.out.println("Image BLOB found");
        if (DEBUGGING_TEXT_ON)System.out.println("Image BLOB size: " + image_blob.length());
        AppVariables.hotel_section_image = Toolkit.getDefaultToolkit().createImage(image_blob.getBytes(1L, (int) image_blob.length()));
        java.io.InputStream blob_stream;
        byte[] blob_buffer = new byte[0];
        byte[] blob_stream_packet = new byte[1];
        int temp;
        blob_stream = records.getBinaryStream (3);
        if (records.wasNull()){
            if (DEBUGGING_TEXT_ON)System.out.println("Record was NULL.");
        }else{
            if (DEBUGGING_TEXT_ON)System.out.println("BLOB Found");
            while ((temp = blob_stream.read(blob_stream_packet)) != -1) {
                if (DEBUGGING_TEXT_ON)System.out.println("Reading " + temp + " bytes from Image BLOB");
                if (DEBUGGING_TEXT_ON)System.out.println("Current Byte = " + blob_stream_packet[0]);
                byte[] temp_buffer = new byte[blob_buffer.length];
                System.arraycopy(blob_buffer, 0, temp_buffer, 0, blob_buffer.length);
                if (DEBUGGING_TEXT_ON)System.out.println("Extending BLOB buffer");
                blob_buffer = new byte[temp_buffer.length + 1];
                System.arraycopy(temp_buffer, 0, blob_buffer, 0, temp_buffer.length);
                if (DEBUGGING_TEXT_ON)System.out.println("Adding packet to BLOB buffer");
                blob_buffer[blob_buffer.length - 1] = blob_stream_packet[0];
            AppVariables.hotel_section_image = Toolkit.getDefaultToolkit().createImage(blob_buffer);
records.close();
stmt.close();Error output is:
Reading Record
Record was NULL.
Reading Record
Record was NULL.
Reading Record
Record was NULL.
Reading Record
Record was NULL.
Reading Record
Record was NULL.
Reading Record
Exception occurred during event dispatching:
java.lang.NoClassDefFoundError: java/sql/Blob
     at oracle.jdbc.driver.OracleStatement.get_blob_value (bytecode 15)
     at oracle.jdbc.driver.OracleStatement.getBinaryStreamValue (bytecode 410)
     at oracle.jdbc.driver.OracleResultSetImpl.getBinaryStream (bytecode 6)
     at windows.LoginView.checkLogin (bytecode 278)
     at windows.LoginView$LoginListener.actionPerformed (bytecode 14)
     at java.awt.Button.processActionEvent (bytecode 12)
     at java.awt.Button.processEvent (bytecode 12)
     at java.awt.Component.dispatchEventImpl (bytecode 173)
     at java.awt.Component.dispatchEvent (bytecode 2)
     at java.awt.EventDispatchThread.run (bytecode 51)
Thanks in advance.
Message was edited by:
RDLake
Message was edited by:
RDLake

1. There is a rather long, in-depth article in the wiki already. Have a look  here and here
2. is discribed there as well.
3. There is a rather long, in-depth article in the wiki already.
Last edited by JackH79 (2011-04-08 05:27:58)

Similar Messages

  • Need help reading burn CDR mp3 and dvdrw from my superdrive

    my Super Drive was fine untill i upgrade to Maverick now it wouldnt  read the music on all of my burn cdr disk and dvdrw . ALso .need help  reading my external 2TB External Ntfs Hard drive.....

    To many conflicting information...
    my Super Drive was fine untill i upgrade to Maverick
    Per your system profile: "Mac mini, Mac OS 9.1.x"
    Mac Minis do not have a superdrive.  You also posted in the Intel iMac forums.
    Please correct and/or update so that you will be provided w/the correct troubleshooting suggestions.

  • URGENT: Need help reading URL of current page

    Hello kind people!
    I need help, and its very simple:
    How do i read the URL of a web page?
    For example, the URL of this page is:
    http://forums.sun.com/thread.jspa?threadID=5327796
    So how can i be able to read in this URL in my java program?
    thanks SO MUCH
    P.S. I HAVE searched the java docs and everything, the closest thing i found was request.getRequestURL().? but i have no idea how to use it. you have NO IDEA how appreciative i would be if you could simply show me exactly how to read in the URL of a given page.
    thanks SO MUCH
    Edited by: homegrownpeas on Aug 31, 2008 5:19 PM

    Going by what I understand here is a simple version of how you can read data from over HTTP.
    This expects the "page" to be text (hence an InputStreamReader instead of an InputStream.)
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.OutputStreamWriter;
    import java.net.HttpURLConnection;
    import java.net.URL;
    import java.net.URLConnection;
    import java.util.HashMap;
    * GPLv2.
    * @author karlm816
    public class HomeGrownPeas {
          * @param args
         public static void main(String[] args) {
              HashMap<String, String> params = new HashMap<String, String>();
              params.put("threadID", "5327796");
              System.out.println(loadHttpPage("http://forums.sun.com/thread.jspa", params));     
         public static String loadHttpPage(String sUrl, HashMap<String, String> params) {
              // Build the HTTP request string
              StringBuilder sb = new StringBuilder();
              if (params != null) {
                   for (String key : params.keySet()) {
                        if (sb.length() > 0) {
                             sb.append("&");
                        sb.append(key);
                        sb.append("=");
                        sb.append(params.get(key));
              System.out.println("params: " + sb.toString());
              try {
                   URL url = new URL(sUrl);
                   URLConnection connection = url.openConnection();
                   connection.setDoOutput(true);
                   connection.setRequestProperty("Content-Length", "" + sb.length());
                   connection.setUseCaches(false);
                   if (connection instanceof HttpURLConnection) {
                        HttpURLConnection conn = (HttpURLConnection) connection;
                        conn.setRequestMethod("POST");
                   OutputStreamWriter osw = new OutputStreamWriter(connection.getOutputStream());
                   osw.write(sb.toString());
                   osw.close();
                   // Now use sb to hold the resutls from the request
                   sb = new StringBuilder();
                   BufferedReader in = new BufferedReader(
                         new InputStreamReader(
                         connection.getInputStream()));
                   String s;
                   while ((s = in.readLine()) != null) {
                        sb.append(s);
                        // To make it more "human readable"
                        sb.append("\n");
                   in.close();
             } catch (IOException e) {
                  e.printStackTrace();
                  return null;
            return sb.toString();
    }

  • Need Help:Reading Data from RU payroll cluster for table GRREC

    Hi...
    I need help on how to read data from RU cluster table for table GRREC for the employee & run date and get the value from structure PC292 .
    Please let me know about the includes and the import and export statements to be used.
    Thanks in advance,
    RAVI.

    Hi,
    Here goes pseudocode
    Includes:
    include: rpppxd00    ,
                rpppxd10     ,
                rpc2cd09     , 
                rpc2rx02_ce , "if ldb pnp_ce is used else use the same include with out _ce
                rpc2rx29      ,  
                rpc2rx39      ,
                rpppxm00    ,
                rpc2ruu0_ce ,
    Declare:
    DATA : i_rgdir   LIKE pc261        OCCURS 0 WITH HEADER LINE     ,
               i_result  TYPE pay99_result OCCURS 0 WITH HEADER LINE ,
               i_grrec   LIKE  pc292           OCCURS 0 WITH HEADER LINE .
    start-of-selection:
    GET pernr.
    Get the RGDIR VALUE for the current PERNR & selected Molga
    get rgdir data TABLES i_rgdir
                          USING pernr-pernr
                                     p_molga " parameter
    CD-KEY-PERNR = PERNR-PERNR.
    RP-IMP-C2-CU.
    i_rgdir [] = rgdir[].
      LOOP AT i_rgdir WHERE fpbeg  LE  pn-endda
                        AND fpend  GE  pn-begda
                        AND srtza  EQ 'A'
                        AND void   NE   'V'.
      get_result_tabs   TABLES i_result
                                   USING 'RU'    "  US cluster
                                         pernr-pernr
                                         i_rgdir-seqnr
          RX-KEY-PERNR = PERNR-PERNR.
          UNPACK i_RGDIR-SEQNR TO RX-KEY-SEQNO.
          RP-IMP-C2-RU.
      i_grrec[] = i_result-inter-grrec[].
      LOOP AT i_grrec.
      case i_grrec.
      use wage types required here and pass the data to output table.
      endcase.
      endloop.
      endloop
    end-of-selction.

  • Please help, I need to read blob and output in bytes from wwv_flow_files.

    Hi all,
    I am having a requirement to read a blob stored in the oracle table and convert it into bytes. I am loading this table (wwv_flow_files) with APEX.
    The code under page 1 is as follows:
    DECLARE
    z number;
    y varchar2(4000);
    x varchar2(400);
    b blob;
    BEGIN
    select filename,blob_content into x ,b from APEX_APPLICATION_files where name =:P1_FILE_NAME;
    select length(convertBlobToBytes(b)) into z from dual;
    :P1_RESULT := z;
    end;
    Java code is as follows:
    import java.io.*;
    import java.sql.Blob;
    public class convertBlob {
    * @param blob
    * @return
    public static byte[] convertBlobToBytes(Blob blob) {
    if (blob==null) return null;
    try {
    InputStream in = blob.getBinaryStream();
    int len = (int) blob.length(); //read as long
    long pos = 1; //indexing starts from 1
    byte[] bytes = blob.getBytes(pos, len);
    in.close();
    return bytes;
    catch (Exception e) {
    System.out.println(e.getMessage());
    return null;
    PL/SQL wrapper is as follows:
    CREATE OR REPLACE FUNCTION convertBlobToBytes(p1 IN BLOB) RETURN LONG RAW AUTHID CURRENT_USER AS LANGUAGE JAVA NAME 'convertBlob.convertBlobToBytes(java.sql.Blob) return byte[]';
    I loaded this java class and pl/sql wrapper into the database using JDEVELOPER.
    But I am getting the length of the file, as twice the size.
    For example, When I run the program which reads the file returns the length of the file as a byte array, the length is 819.
    When I pass the same file as a blob from apex, to the java program that converts blob to bytes, the length of the file is 1638.
    And hence I am getting wrong results, further in the process.
    Can you please help me? Any help is appreciated.
    rgds,
    Suma.

    The example on this page is showing how to read a blob in portions you determine yourself:
    http://apex.oracle.com/pls/otn/f?p=31517:91
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Need help : Reading from DAQ through TCP/IP ?!!

    Hello
    I have two machines running labview connected to a network. Basically,
    I want to read data from a temperature sensor through a DAQ card
    from one machine, and be able to plot the data in a chart in the
    other machine. I'm trying to use TCP/IP feature to do that but it's not
    working.
    There is a VI in the tcp.lib "simple data client.vi " and
    "simple data server.vi" that does the same thing except that
    the data are of type double generated from a sine function and
    a random number generator. So i tried to do the same but since
    the data read from the DAQ has a thick brown line (not sure what
    type) the task was not easy. In the server part i tried to broadcast
    3 things through (tcp write.vi): The type of the data, the l
    ength of the
    string, and the data itself. On the client side i read (tcp read.vi)
    these things and plot the data. But i'm not getting any output on the chart.
    I had to use (Type Cast), (flatten to string) and (unfatten from string)
    in order to get the right wiring. Both VIs run but there is no output
    on the chart.
    I know it's hard to explain in words, but if anyone is interested i can
    give more detai or send the vis to him to look at them. They seem very simple and
    straight forward but i don't know why they don't work.
    Appreciate any help.
    Thanks
    Sami

    Try running the "Remote Device Access Server" (RDA) on hte machine that has the DAQ card in it. You'll find it in NI-DAQ folder under National Instruments in your Start Menu. (guessing you're running Windows here?)
    With this running, you can start MAX on any machine on the network and access and configure the DAQ cards in the remote machine and program an applicaiton just as if the DAQ cards were local. You'll need to know either the remote machines IP address or network name.
    I've used it quite a bit and have never had a problem. The Help inside MAX gives good details on how to set it up and use it.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Need help reading raw files!

    Help please!  Cannot read raw files of my Nikon D5000.  Have downloaded Camera Raw 5.3 and followed instruvctions.  5.3 supports the D90 which is supposedly essential the same.  Any suggestions?

    Read the posts in the following link:-
    http://www.elementsvillage.com/forums/showthread.php?p=463255#post463255
    Try the DNG converter or the DPP software supplied with your camera until ACR 5.4 is finalized, as suggested in the posts.
    I have read that there is a way to get the Release Candidate 5.4 installed in PSE 6/7 but you need some skills in understanding computer files.

  • Need help:  Reading Subscribed AOL and Yahoo Calendars

    Both my AOL and Yahoo calendars are public and subscribed, and show up as subscribed in my iPad's "show calendars" list.  Both have checkmarks next to them.
    But I cannot read either of them on my iPad.  How do I fix this?

    Wow...OK...let me see if I can understand that...if I boil all of that down, I think we are at this point.
    You still want to send SMS to an email account -- I stand by what I said before; I know of no method that an SMS can be sent to an email. Now, if you are meaning some other kind of "text" or "messages" (there are many many kinds of those), then you will need to clarify exactly what you mean. What I gather from what you've said so far continues to mean "SMS sending to Email".
    You do not have BlackBerry Internet Service on your BB plan from your carrier. As such, you will be limited as per this guideline:
    http://www.blackberryfaq.com/index.php/What_do_I_n​eed_a_Data_Plan_for%3F
    You may think that BIS is ridiculous, but that is a core function and feature of BB's. Period. Without it, all you have is a phone (IMHO).
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Logic crashing on boot, need help reading thread

    I'm a newb, it says it's crashing on thread 8, but I don't know what thread 8 is saying. Can somebody help out? Thanks, report is below.
    Process: Logic Pro [219]
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: com.apple.logic.pro
    Version: 8.0.2 (1502.22)
    Build Info: Logic-15022200~9
    Code Type: PPC (Native)
    Parent Process: launchd [98]
    Interval Since Last Report: 382 sec
    Crashes Since Last Report: 2
    Per-App Interval Since Last Report: 54 sec
    Per-App Crashes Since Last Report: 2
    Date/Time: 2009-07-05 15:43:26.618 -0700
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: B8448C0D-9A6E-42B7-B7D3-A403B143A1DB
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 8
    Thread 0:
    0 libSystem.B.dylib 0x94744f60 _bsdthreadcreate + 12
    1 ...opellerheads.rewire.library 0x12e4f9a4 RWPUnregisterDeviceImp + 4364
    2 com.apple.logic.pro 0x001224b0 0x1000 + 1184944
    3 com.apple.logic.pro 0x0051b23c 0x1000 + 5349948
    4 com.apple.Foundation 0x93eec71c nsnotecallback + 372
    5 com.apple.CoreFoundation 0x91b6f5c8 _CFXNotificationPostNotification + 920
    6 com.apple.Foundation 0x93ee9da8 -[NSNotificationCenter postNotificationName:object:userInfo:] + 88
    7 com.apple.AppKit 0x910c7db4 -[NSApplication _postDidFinishNotification] + 108
    8 com.apple.AppKit 0x910c7ccc -[NSApplication _sendFinishLaunchingNotification] + 80
    9 com.apple.AppKit 0x9104f670 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 260
    10 com.apple.AppKit 0x9104eea8 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 88
    11 com.apple.Foundation 0x93f0cfec -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 480
    12 com.apple.Foundation 0x93f0cdc0 _NSAppleEventManagerGenericHandler + 236
    13 com.apple.AE 0x972e4ce0 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 164
    14 com.apple.AE 0x972e4be8 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 40
    15 com.apple.AE 0x972e49ec aeProcessAppleEvent + 212
    16 com.apple.HIToolbox 0x939682cc AEProcessAppleEvent + 52
    17 com.apple.AppKit 0x9104c9d4 _DPSNextEvent + 1156
    18 com.apple.AppKit 0x9104c15c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 112
    19 com.apple.AppKit 0x91045e18 -[NSApplication run] + 736
    20 com.apple.prokit 0x0227db7c NSProApplicationMain + 292
    21 com.apple.logic.pro 0x00003f18 0x1000 + 12056
    22 com.apple.logic.pro 0x00003c1c 0x1000 + 11292
    Thread 1:
    0 libSystem.B.dylib 0x947031f8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9470a11c mach_msg + 56
    2 com.apple.CoreFoundation 0x91b8d524 CFRunLoopRunSpecific + 1812
    3 com.apple.audio.CoreAudio 0x91e55fa8 HALRunLoop::OwnThread(void*) + 212
    4 com.apple.audio.CoreAudio 0x91e55de4 CAPThread::Entry(CAPThread*) + 104
    5 libSystem.B.dylib 0x947450c4 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x94709c0c _semwaitsignal + 12
    1 libSystem.B.dylib 0x9474646c pthread_condwait + 1580
    2 libGLProgrammability.dylib 0x942f8b68 glvmDoWork + 120
    3 libSystem.B.dylib 0x947450c4 pthreadstart + 316
    Thread 3:
    0 libSystem.B.dylib 0x94766d74 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x91b98998 __CFSocketManager + 764
    Thread 4:
    0 libSystem.B.dylib 0x94703258 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x94746378 pthread_condwait + 1336
    2 com.apple.logic.pro 0x006a55c4 0x1000 + 6964676
    Thread 5:
    0 libSystem.B.dylib 0x94703258 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x94746378 pthread_condwait + 1336
    2 com.apple.logic.pro 0x006a55c4 0x1000 + 6964676
    Thread 6:
    0 libSystem.B.dylib 0x94703278 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x94746368 pthread_condwait + 1320
    2 com.apple.audio.CoreAudio 0x91e679f0 HP_IOThread::WorkLoop() + 488
    3 com.apple.audio.CoreAudio 0x91e677f0 HPIOThread::ThreadEntry(HPIOThread*) + 12
    4 com.apple.audio.CoreAudio 0x91e55de4 CAPThread::Entry(CAPThread*) + 104
    5 libSystem.B.dylib 0x947450c4 pthreadstart + 316
    Thread 7:
    0 libSystem.B.dylib 0x94703258 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9470a4b4 pthreadmutexlock + 648
    2 ...opellerheads.rewire.library 0x12e80518 RWPUnregisterDeviceImp + 203904
    3 ...opellerheads.rewire.library 0x12e4f2b0 RWPUnregisterDeviceImp + 2584
    4 ...opellerheads.rewire.library 0x12e4f4a0 RWPUnregisterDeviceImp + 3080
    5 ...opellerheads.rewire.library 0x12e87a04 RWPUnregisterDeviceImp + 233836
    6 libSystem.B.dylib 0x947450c4 pthreadstart + 316
    Thread 8 Crashed:
    0 ??? 0000000000 0 + 0
    1 ??? 0x1357af98 0 + 324513688
    2 libSystem.B.dylib 0x947450c8 pthreadstart + 320
    3 ??? 0000000000 0 + 0
    Thread 8 crashed with PPC Thread State 32:
    srr0: 0x00000000 srr1: 0x4200d930 dar: 0xe0021000 dsisr: 0x42000000
    r0: 0x00000000 r1: 0xf039dde0 r2: 0x0e94fae0 r3: 0x0e94f920
    r4: 0x0e94fae0 r5: 0x00000000 r6: 0x00000007 r7: 0x00000001
    r8: 0x00000010 r9: 0x00000004 r10: 0x00000002 r11: 0x00000008
    r12: 0x0e94fae0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x0e94f920
    r24: 0x00000000 r25: 0x0e94fa80 r26: 0x0e94fa80 r27: 0x0e94fa94
    r28: 0x0e94fa50 r29: 0x0e94fae0 r30: 0xf039e000 r31: 0x0e94f410
    cr: 0x44000024 xer: 0x20000000 lr: 0x135b5a94 ctr: 0x00000000
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0x10a5feb com.apple.logic.pro 8.0.2 (1502.22) <e633de9463c24ceabd7e00ec1fd4f48c> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x1812000 - 0x183043b com.apple.XSKey 1.0.0 (52.4) /Applications/Logic Pro.app/Contents/Frameworks/XSKey.framework/Versions/A/XSKey
    0x183e000 - 0x1854123 com.apple.XAudioUnits 1.0.0 (91.7) /Applications/Logic Pro.app/Contents/Frameworks/XAudioUnits.framework/Versions/A/XAudioUnits
    0x1862000 - 0x1930ff5 com.apple.DiscRecording 4.0.5 (4050.4.1) <0ccb5df027ddfe06a7eea363f088aa54> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x1997000 - 0x1999fff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x199f000 - 0x19cafff +MusicAudioDataServices ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/MusicAudioDataServices.framework/Versions/A/MusicAu dioDataServices
    0x19e0000 - 0x1a85f4d com.apple.eloop 3.1.0 (100.4) /Applications/Logic Pro.app/Contents/Frameworks/ELoop.framework/Versions/A/ELoop
    0x1b22000 - 0x1b875df com.apple.LogicLoopBrowser 7.2 (117.4) /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x1bb6000 - 0x1bc3fef +libaafintp.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libaafintp.dylib
    0x1bd2000 - 0x1c31feb +libaafpgapi.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libaafpgapi.dylib
    0x1c68000 - 0x1ef1fff +libcom-api.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libcom-api.dylib
    0x225d000 - 0x23d6fff com.apple.prokit 4.5 (722) <0a569e9a281a8a321ad499df65fd3370> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x24ac000 - 0x2530c45 com.apple.ecore 1.1.0 (291.7) /Applications/Logic Pro.app/Contents/Frameworks/ECore.framework/Versions/A/ECore
    0x258b000 - 0x25a7ffb com.apple.audio.midi.CoreMIDI 1.6.1 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x25bd000 - 0x2640ff3 com.apple.DotMacKit 21 (3.0.1L) /Applications/Logic Pro.app/Contents/Frameworks/DotMacKit.framework/Versions/A/DotMacKit
    0x269e000 - 0x26b3fdf com.apple.EHardwareSupport 1.0.0 (163.5) /Applications/Logic Pro.app/Contents/Frameworks/EHardwareSupport.framework/Versions/A/EHardwareSupp ort
    0x26bd000 - 0x26d6fd7 com.apple.LogicFileBrowser 1.0.0 (126.7) /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x26e6000 - 0x26e8fd7 com.apple.XLogicImages 1.0.0 (117.4) /Applications/Logic Pro.app/Contents/Frameworks/XLogicImages.framework/Versions/A/XLogicImages
    0x26ec000 - 0x2707ff9 com.apple.audio.CoreAudioKit 1.5 (1.5) <b7e5287b5d5cdda58e147a6ffa19667e> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2718000 - 0x2728fdf com.apple.AERegistration 1.2 (72) /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x273a000 - 0x2742fd7 com.apple.AEProfiling 1.2 (18) /Applications/Logic Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x274a000 - 0x276bff1 libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x2773000 - 0x2794fff libexpat.1.dylib ??? (???) <e955fbf7296287c4d40694cf7dffd64f> /usr/lib/libexpat.1.dylib
    0x2b31000 - 0x2b51fff com.apple.prokit.LeopardPanels 4.5 (722) <e2688a64c32121db509c6af941d17b8d> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/Leopard Panels.bundle/Contents/MacOS/LeopardPanels
    0x9ae5000 - 0x9ae9fff com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <ee8e03f2dd8049e157fbd645586b8b73> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x9aee000 - 0x9aefffd com.apple.aoa.halplugin 2.5.8 (2.5.8f1) <0b9b5ee67a239c90f123a5f764ad50e8> /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x9afa000 - 0x9b01ff7 com.apple.proapps.mrcheckpro 1.4 (202) /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x9b17000 - 0x9b43fe7 +com.digidesign.digidesign.DigiCoreAudioPlugIn 7.4 (7.4f309) <19728db6c2f34489b2922cbce02f4005> /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x9eec000 - 0x9f08fff GLRendererFloat ??? (???) <8aec4559b92bb6b267766fe875a849a6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xaf00000 - 0xb0d9ff7 com.apple.RawCamera.bundle 2.0.14 (436) <a6356474e30acbbcdf0040a39cffd8a3> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xb16a000 - 0xb2e2ffb GLEngine ??? (???) <80f81a34d0bc3d66c860d8d97ff2b0aa> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xb314000 - 0xb5d2ff1 com.apple.ATIRadeon9700GLDriver 1.5.44 (5.4.4) <15f2c89ae9d6f0b479da29d6ae48db89> /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
    0xd01d000 - 0xd023fc7 com.apple.gal_anvil 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0xd11a000 - 0xd11dfdf com.apple.gal_common 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/common.res/Contents/MacOS/common
    0xd123000 - 0xd126fcf com.apple.gal_ebp 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/ebp.res/Contents/MacOS/ebp
    0xd13d000 - 0xd146fc7 com.apple.gal_efx 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0xd361000 - 0xd368fd7 com.apple.gal_efx2 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/efx2.res/Contents/MacOS/efx2
    0xd558000 - 0xd55bfcf com.apple.gal_egt 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0xd58b000 - 0xd58ffdf com.apple.gal_emx 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0xd658000 - 0xd65bfd7 com.apple.gal_es1 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0xd6bc000 - 0xd6c0fcf com.apple.gal_es2 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0xd75b000 - 0xd75ffd7 com.apple.gal_esp 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/esp.res/Contents/MacOS/esp
    0xd7db000 - 0xd7defc7 com.apple.gal_esu 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/esu.res/Contents/MacOS/esu
    0xd830000 - 0xd833fcf com.apple.gal_evb3 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0xd8c1000 - 0xd8c4fdf com.apple.gal_evd6 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0xd92b000 - 0xd92ffcf com.apple.gal_evoc 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0xda21000 - 0xda24fcf com.apple.gal_evp88 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0xdb74000 - 0xdb77fdf com.apple.gal_exs24 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0xdbee000 - 0xdbf2fc7 com.apple.gal_mutapdel 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0xdc33000 - 0xdc39fdf com.apple.gal_revolver 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0xde0e000 - 0xde12fdf com.apple.gal_sphere 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x12e47000 - 0x12eb3fff +se.propellerheads.rewire.library 1.7 (1.7) /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x12ed0000 - 0x12eeffff com.apple.OpenTransport 3.0 (3.0) /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x12eff000 - 0x1303bff7 +se.propellerheads.reason.engine 3.0.5 (3.0.5) /Applications/Digidesign/Ignition Pack/Reason Adapted 3 for Digidesign/Reason Adapted for Digidesign.app/Contents/PlugIns/Reason Engine.plugin/Contents/MacOS/Reason Engine
    0x1316b000 - 0x13340ff7 +com.ableton.live-engine 6.0.2 (6.0.2) /Applications/Digidesign/Ignition Pack/Live 6.0.2 OS X/Live.app/Contents/Resources/Ableton Live Engine.bundle/Contents/MacOS/Ableton Live Engine
    0x8fe00000 - 0x8fe30c23 dyld 97.1 (???) <89e41214d2c0526c559597de84b7f47e> /usr/lib/dyld
    0x90003000 - 0x905bdfff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x905be000 - 0x90675fff com.apple.QTKit 7.6.2 (1327) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90676000 - 0x90705ffb com.apple.DesktopServices 1.4.8 (1.4.8) <a944437f1e80c1e9820ba29b5ecbe373> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90706000 - 0x90724fff com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90756000 - 0x90756ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90757000 - 0x90757fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90758000 - 0x908c4ff9 com.apple.AddressBook.framework 4.1.2 (700) <c1e832e1332491f4e3cf379c48375cad> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x908c5000 - 0x90c2affe com.apple.QuartzCore 1.5.8 (1.5.8) <173de39401d774ee555d15681ba13be1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90cfb000 - 0x90d13ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90d14000 - 0x90d58fff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x90d59000 - 0x90e28fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90f0e000 - 0x90f0ffff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x90f10000 - 0x90f49fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <831d9285fb18133e193f8ed9fc04e231> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90f4a000 - 0x90f55ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90f9b000 - 0x90feafff libGLImage.dylib ??? (???) <69eba6e64ea12c7392286db4f29d7a1d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90feb000 - 0x9100afff libresolv.9.dylib ??? (???) <4a21e9ec2419ee54a8e026cd15a41a68> /usr/lib/libresolv.9.dylib
    0x91011000 - 0x91786fff com.apple.AppKit 6.5.7 (949.46) <7245a9e89b06054cb09165fc13a243a6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91787000 - 0x917b2ff7 libauto.dylib ??? (???) <34809aa24fe1bbba884cb6f58f30944d> /usr/lib/libauto.dylib
    0x918aa000 - 0x918aafff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x918ab000 - 0x919d0ffb com.apple.imageKit 1.0.2 (1.0) <964be753842e6b4b188022ac9401986a> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x919d1000 - 0x91a33ffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91a3f000 - 0x91a4bff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91a4c000 - 0x91a8dffb libTIFF.dylib ??? (???) <079b2f4b534baf99594d8cf7238e6a97> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91a8e000 - 0x91b23fff com.apple.framework.IOKit 1.5.2 (???) <818d83c184ae66ab8006e87745e47634> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91b24000 - 0x91c49ffb com.apple.CoreFoundation 6.5.6 (476.18) <d537b892a52b26cda30f2498c72706c2> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91c4a000 - 0x91e33ffb com.apple.security 5.0.5 (36371) <22333e44e3ce637a1e5db36af79b4bb2> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91e34000 - 0x91ebcffb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <356849fe490866c267b645c9a370dc1b> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91ebd000 - 0x91ec3ffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91ec4000 - 0x91ee3fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x91ee4000 - 0x91f33fff com.apple.Metadata 10.5.2 (398.25) <bd3da7b4c1955b0c7e3aeb307a648bcd> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91fd7000 - 0x91fe4fff libCSync.A.dylib ??? (???) <a207b2a10974a5d7949ce7e3f11bc33e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91fe5000 - 0x91ff8fff com.apple.LangAnalysis 1.6.4 (1.6.4) <5437ce0d075fb5424ba335f1eae71009> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91ff9000 - 0x92060ffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x92061000 - 0x92363ffb com.apple.CoreServices.CarbonCore 786.11 (786.13) <4f774fc0cc65f3198f01a960791c7049> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92378000 - 0x92378ffe com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x92379000 - 0x923abfff com.apple.bom 9.0.1 (136.1.1) <29d7ed920389992f32a7bef03c128053> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x923ac000 - 0x9254dff7 com.apple.QuartzComposer 2.1 (106.13) <9c5a8848d5a029d8d729bbaff70c5b4a> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9254e000 - 0x92608fff libcrypto.0.9.7.dylib ??? (???) <d0c8f3918053b8cb84c43e5fb40fa066> /usr/lib/libcrypto.0.9.7.dylib
    0x92609000 - 0x92693fff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x926aa000 - 0x926bafff libsasl2.2.dylib ??? (???) <45bb24b6a2ce9c0ea865bb2242f701e4> /usr/lib/libsasl2.2.dylib
    0x926bb000 - 0x926d5ffb com.apple.CoreVideo 1.6.0 (20.0) <a380c89335371ca9b4b116841a8279d2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x926d6000 - 0x9275bfff libsqlite3.0.dylib ??? (???) <c7ac09d5d803e12b655e41a992ed10c0> /usr/lib/libsqlite3.0.dylib
    0x9275c000 - 0x92763ffb com.apple.print.framework.Print 218.0.3 (220.2) <48f5dd2ce80e9f7c8e3be2acbca8584f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92764000 - 0x92767fff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92774000 - 0x92774ffc com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92775000 - 0x927d2ffb com.apple.HIServices 1.7.0 (???) <47e8403817f2fff89f88b956a0542359> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x927d3000 - 0x927defff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x927e5000 - 0x9291dfff com.apple.JavaScriptCore 5530 (5530.17) <bc7b5dfca15115226d1192a8cfd6061a> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92924000 - 0x9292fffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x92930000 - 0x92932ffd libRadiance.dylib ??? (???) <76b591029c847cf21a7dfd79c3d47b67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x932c0000 - 0x932cdfff libbz2.1.0.dylib ??? (???) <ff3050272228dbda09852641458eaaa4> /usr/lib/libbz2.1.0.dylib
    0x932ce000 - 0x9337efff com.apple.QD 3.11.56 (???) <3afac2b8eb501201f91672a32c4ecf99> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9337f000 - 0x9338dfff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x9338e000 - 0x9390afff com.apple.CoreGraphics 1.409.3 (???) <a8198d7b28607148bd0fcececb6d3fb2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9390b000 - 0x93934fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x93935000 - 0x93c6efeb com.apple.HIToolbox 1.5.5 (???) <71e35d5630fdc32c7b69be9257f0ba49> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93c6f000 - 0x93c98ffb com.apple.shortcut 1.0.1 (1.0) <2d585ff6d2228a19705d304548a1e0df> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x93c99000 - 0x93c99ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x93c9a000 - 0x93d7dfff libobjc.A.dylib ??? (???) <9d4d771d4ba8989a97a94c700487f86c> /usr/lib/libobjc.A.dylib
    0x93d7e000 - 0x93d85fff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93d86000 - 0x93e9affa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93e9b000 - 0x93ee2fff com.apple.NavigationServices 3.5.2 (163) <327a1107c525a78824e63af51d0409c4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93ee3000 - 0x94129ffb com.apple.Foundation 6.5.8 (677.24) <a3c4074556d166bd7aae61caefcf0eaa> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9427c000 - 0x942d2fff libGLU.dylib ??? (???) <4307c8f9f09bca8afc78fa089c3f074e> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x942d3000 - 0x94701ffe libGLProgrammability.dylib ??? (???) <79e91a3ef8d13e2d1eaca2a38d5575bb> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94702000 - 0x948a2ff3 libSystem.B.dylib ??? (???) <9f5a942d2b2795adb9a42ef04f018f8a> /usr/lib/libSystem.B.dylib
    0x948a3000 - 0x948abfff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x948ac000 - 0x948bbfff com.apple.DSObjCWrappers.Framework 1.3 (1.3) <8eb094e987d59fb5aeab62dd41abbc24> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x948c2000 - 0x948deffb com.apple.openscripting 1.2.8 (???) <9d11e11f169d42b0b8581026f01d8df0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x948df000 - 0x94907fff libxslt.1.dylib ??? (???) <e53c01d1fdd5261ae4c21de8c10c7e70> /usr/lib/libxslt.1.dylib
    0x94947000 - 0x94967ff7 libJPEG.dylib ??? (???) <88d442399ff35bde3ff5eacc32faf68d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x949a8000 - 0x94a2afff com.apple.print.framework.PrintCore 5.5.4 (245.6) <9e01c05323b526bfc4d8f28940c373c2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x958bb000 - 0x95bedffb com.apple.QuickTime 7.6.2 (1327) <f21b11980495fa789c8c7d6696db559a> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95bee000 - 0x95c0dfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95c24000 - 0x95c55fff com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95c56000 - 0x95c98fff com.apple.quartzfilters 1.5.0 (1.5.0) <3f2dc01a646cd5b5ea55d510583ba4d5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x95ce8000 - 0x95db0ffb com.apple.CoreData 100.2 (186.1) <5d07b92ad44a960292be6c1ff89fa807> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95db1000 - 0x95dbafff com.apple.DiskArbitration 2.2.1 (2.2.1) <d3ced3286d37da933efca5dfa28d5d73> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95dbb000 - 0x95dbbfff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95dfa000 - 0x95e93fc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95e94000 - 0x95ef5fff com.apple.CoreText 2.0.4 (???) <72b950056b8bced5bacaad5e0712fcf8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95ef6000 - 0x9603eff3 libicucore.A.dylib ??? (???) <1a5d78e761b90a7338acd37111eacd11> /usr/lib/libicucore.A.dylib
    0x9603f000 - 0x96056ffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x960bd000 - 0x96157ff7 com.apple.ApplicationServices.ATS 3.7 (???) <58dd60fd70b041c0e226f973cdd09617> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96158000 - 0x96173ffb libPng.dylib ??? (???) <5e6188219aa620a6225380a52bae6352> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96174000 - 0x961effff com.apple.SearchKit 1.2.1 (1.2.1) <a37561d610e67406b1604072e575503e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x961f0000 - 0x96217fff libcups.2.dylib ??? (???) <6c120b589d8408db134b515bb78c7da7> /usr/lib/libcups.2.dylib
    0x96218000 - 0x96220ffb libCGATS.A.dylib ??? (???) <663662a606c9f468cf2bfa1c07a571d4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x96221000 - 0x962f4fff com.apple.CoreServices.OSServices 227 (227) <6d3831bbc428821df04fba738367ce23> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x962f5000 - 0x962f8ffb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x962f9000 - 0x96363fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96368000 - 0x96691fe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x966c4000 - 0x96774ffc com.apple.CFNetwork 438.10 (438.12) <19723c3ade18013d4a3936677c8ae5d7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96775000 - 0x9677bfff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <4b4dd797209a43a4a3a08f564cc78495> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9677c000 - 0x968c3ffb com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x968c4000 - 0x96901fff libRIP.A.dylib ??? (???) <cc3c1062cba47e0bb189e1daa4295bde> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96902000 - 0x9698afff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x969f1000 - 0x969f1ff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x969f2000 - 0x96a1cff7 libssl.0.9.7.dylib ??? (???) <4892f43ea37764d3121fa7346b601d77> /usr/lib/libssl.0.9.7.dylib
    0x96a1d000 - 0x96a4afff libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x96a4b000 - 0x96b35fff libxml2.2.dylib ??? (???) <e9f58824c545bfeb50d89dbfa4d336a1> /usr/lib/libxml2.2.dylib
    0x96b36000 - 0x96b80fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x96b81000 - 0x96c31fff edu.mit.Kerberos 6.0.13 (6.0.13) <c8137653dbdf02a3f508fe8d2d744748> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96c32000 - 0x96c4dff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <e2bdc69da3439cb5e88e8f3154ecbc22> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x96c4e000 - 0x96d1dffb com.apple.syncservices 3.2 (389.17) <5b558dd8d8f3b85e1ed30731c1d83d7a> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x96d1e000 - 0x96d31ffb com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <9b6ca43797153f71176c7b126858fd35> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96d32000 - 0x96d37ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x96d38000 - 0x96da2ffb com.apple.iLifeMediaBrowser 2.0.3 (346) <443e5e1f9bd5237ea2d99e70de23ecfb> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x96da3000 - 0x96eedffb com.apple.ImageIO.framework 2.0.4 (2.0.4) <bf5d82f9a673a59b631ae3281a884efb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96f85000 - 0x96f86ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96f98000 - 0x96fcdffb com.apple.LDAPFramework 1.4.5 (110) <f4036b6291791fdac134055cbb9e1212> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9724b000 - 0x972e1fff com.apple.LaunchServices 290.3 (290.6) <57952c8c122a5b7fcf54b6cefe8cb4c8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x972e2000 - 0x97317fff com.apple.AE 402.3 (402.3) <6a6f752bba2d537eb8590e1cec01ac9a> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x97318000 - 0x97326ff3 com.apple.opengl 1.5.10 (1.5.10) <f90db7f5e4a5144afd040236f8343280> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x97327000 - 0x9732bffe libGIF.dylib ??? (???) <676e130fcbccf46a3a21b658a0d8bdc1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Try moving the folder
    /Library/Application Support/Propellerhead Software/Rewire
    to your desktop, and then try restarting Logic.
    If that works, then you need to update your Rewire software.

  • I need help reading console crash log

    My iMac crashed twice in the last 2 days which is very unusual. The first time the screen just went completely white, completely unresponsive and I had to reboot. Today, the screen suddenly went all green, completely unresponsive again and I had to restart.
    I checked the Console and there are crash logs there under System Diagnostic Reports. Can someone [much smarter than me] help me understand what might be the cause? Thank you very much in advance!
    Max
    Process:         apple-scc [238]
    Path:            /Users/Shared/apple-scc-20111121-080031.app/Contents/MacOS/apple-scc
    Identifier:      apple-scc
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [1]
    Date/Time:       2012-06-06 22:27:56.730 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    LaunchServices: GetOurLSSessionIDInit() returned err #1, securitySessionID == 0x0, vers=10600000 uid=0 euid=0
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x93a80c5a __kill + 10
    1   libSystem.B.dylib                       0x93a80c4c kill$UNIX2003 + 32
    2   libSystem.B.dylib                       0x93b135a5 raise + 26
    3   libSystem.B.dylib                       0x93b296e4 abort + 93
    4   com.apple.LaunchServices                0x90053e94 GetOurLSSessionIDInit() + 361
    5   libSystem.B.dylib                       0x93a3e300 pthread_once + 82
    6   com.apple.LaunchServices                0x90053d1f GetOurLSSessionAttributeBits() + 37
    7   com.apple.LaunchServices                0x90053ce4 NormalizeLSSessionID(LSSessionID) + 27
    8   com.apple.LaunchServices                0x90052b4e _LSApplicationCheckIn + 51
    9   com.apple.HIServices                    0x97da3eb5 _RegisterApplication + 1238
    10  com.apple.HIServices                    0x97da39b3 GetCurrentProcess + 50
    11  com.apple.HIToolbox                     0x94072e73 GetSystemUIMode + 47
    12  com.apple.HIToolbox                     0x94072e15 IsMenuBarVisible + 41
    13  com.apple.AppKit                        0x9716dde6 _NSInitializeAppContext + 59
    14  com.apple.AppKit                        0x9716d6a0 -[NSApplication init] + 738
    15  com.apple.AppKit                        0x9716d1d9 +[NSApplication sharedApplication] + 153
    16  com.apple.AppKit                        0x973a70d7 NSApplicationLoad + 101
    17  apple-scc                               0x00114bed 0x1000 + 1129453
    18  apple-scc                               0x0000968d 0x1000 + 34445
    19  apple-scc                               0x00002abf 0x1000 + 6847
    20  apple-scc                               0x000029ed 0x1000 + 6637
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x93a46382 kevent + 10
    1   libSystem.B.dylib                       0x93a46a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x93a45f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x93a45cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x93a45781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x93a455c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x93a45412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x93a459a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x93a455c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x93b29693  ecx: 0xbfffcf5c  edx: 0x93a80c5a
      edi: 0x00000001  esi: 0x00000000  ebp: 0xbfffcf78  esp: 0xbfffcf5c
       ss: 0x0000001f  efl: 0x00000286  eip: 0x93a80c5a   cs: 0x00000007
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x93b1358b
    Binary Images:
        0x1000 -   0x2a6fef +apple-scc ??? (???) <6C6B74D0-3B64-DECF-3B0C-69A06C7A067B> /Users/Shared/apple-scc-20111121-080031.app/Contents/MacOS/apple-scc
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90025000 - 0x90045fe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x90046000 - 0x900e3fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9012c000 - 0x90135ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90136000 - 0x901b0fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x901b1000 - 0x90333fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x90334000 - 0x90336ff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9033e000 - 0x90341fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x90577000 - 0x90642fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90643000 - 0x9067dff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib
    0x90bee000 - 0x90c30ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90c31000 - 0x90c3ffe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x90c79000 - 0x90c79ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90c93000 - 0x90c93ff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90c94000 - 0x90d96fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x90d97000 - 0x91008fef  com.apple.Foundation 6.6.7 (751.62) <5C995C7F-2EA9-50DC-9F2A-30237CDB31B1> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91009000 - 0x91014ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91015000 - 0x91018ff7  libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x91071000 - 0x91073ff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x912bc000 - 0x912c9ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x91381000 - 0x913cafe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x913cb000 - 0x913ecfe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9151b000 - 0x9154eff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9154f000 - 0x91567ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x91568000 - 0x917ceff7  com.apple.security 6.1.2 (55002) <64A20CEB-E614-D35F-7B9F-246BCB25BA23> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x917cf000 - 0x917cfff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x91d51000 - 0x91e5dff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91e5e000 - 0x91e5fff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x91e9c000 - 0x91ea1ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x91ea2000 - 0x91ef2ff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x92e7c000 - 0x92f24ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92f6b000 - 0x932d6ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x934cd000 - 0x934e1fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x934e2000 - 0x93513ff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93514000 - 0x93557ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9356c000 - 0x93624feb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x939c3000 - 0x939d4ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93a17000 - 0x93a1eff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93a1f000 - 0x93bc6ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x93bce000 - 0x93c0bff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x93c0c000 - 0x93cb9fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x93cba000 - 0x93ce2ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x93ce3000 - 0x93fddfef  com.apple.QuickTime 7.6.6 (1783) <1EC8DC5E-12E3-1DB8-1F7D-44C6EF193C58> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x93fde000 - 0x94070fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94071000 - 0x94395fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94396000 - 0x943daff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x943db000 - 0x94bca557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95064000 - 0x950b1feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x950b2000 - 0x950b2ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x950b5000 - 0x950d0ff7  libPng.dylib ??? (???) <25DF2360-BFD3-0165-51AC-0BDAF7899DEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95b25000 - 0x95ba5feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95ba6000 - 0x95bb8ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x95bb9000 - 0x95fcfff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95ffc000 - 0x96094fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96095000 - 0x964caff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9659a000 - 0x9659dffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x965ae000 - 0x96667fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x966e2000 - 0x9681ffe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96820000 - 0x96830ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x96831000 - 0x9683bffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9683c000 - 0x968eaff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96927000 - 0x96996ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96a75000 - 0x96a79ff7  libGIF.dylib ??? (???) <2123645B-AC89-C4E2-8757-85834CAE3DD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96a7a000 - 0x96b36fff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96b37000 - 0x96b98fe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96b99000 - 0x96b9ffff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96cb0000 - 0x96ccfff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96cd5000 - 0x96e50fe7  com.apple.CoreFoundation 6.6.5 (550.43) <10B8470A-88B7-FC74-1C2F-E5CBD966C051> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96e6a000 - 0x96e76ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x96e77000 - 0x96e9bff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96e9c000 - 0x96fcafe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9714e000 - 0x9715cff7  com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9715d000 - 0x9715dff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9716a000 - 0x97a4dff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97ac6000 - 0x97b2affb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x97b56000 - 0x97d18feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x97d21000 - 0x97d2bfe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x97d2c000 - 0x97d48fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x97da2000 - 0x97df5ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x97e2b000 - 0x97e95fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x97ef6000 - 0x97efaff7  libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9838d000 - 0x9848efe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x9848f000 - 0x984a3ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x985b1000 - 0x98691fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9879a000 - 0x9879aff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x988e2000 - 0x988e3ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x988e4000 - 0x988f9fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x98b54000 - 0x98b97ff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x98c07000 - 0x98c89ffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x98c8a000 - 0x98c8aff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98cd4000 - 0x98d18fe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x98eb4000 - 0x98efaff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x98f5c000 - 0x98f82ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x98f83000 - 0x9902ffe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x990bd000 - 0x990c1ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x990d5000 - 0x990dbfe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x990fa000 - 0x991d4fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x991d5000 - 0x991f7fef  com.apple.DirectoryService.Framework 3.6 (621.12) <A4A47C88-138C-A237-88A5-877E5CAB4494> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9991c000 - 0x99c3cff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x99c3d000 - 0x99c3dff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x99d29000 - 0x99dc4fe7  com.apple.ApplicationServices.ATS 275.16 (???) <873C8B8A-B563-50F7-7628-524EE9E8DF0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x99de7000 - 0x99e44ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib

    I typed "sh" first, then the command and now it worked. This was the output:
    com.apple.launchd.peruser.26
    com.apple.launchd.peruser.501
    com.apple.launchd.peruser.212
    com.apple.launchd.peruser.0
    com.apple.AppleFileServer
    com.apple.xprotectupdater
    com.apple.WindowServer
    com.apple.webdavfs_load_kext
    com.apple.warmd
    com.apple.vsdbutil
    com.apple.var-db-shadow-backup
    com.apple.var-db-dslocal-backup
    com.apple.UserNotificationCenter
    com.apple.usbmuxd
    com.apple.TrustEvaluationAgent.system
    com.apple.taskgated
    com.apple.SystemStarter
    com.apple.systempreferences.install
    com.apple.systemkeychain
    com.apple.syslogd
    com.apple.suhelperd
    com.apple.storereceiptinstaller
    com.apple.statd.notify
    com.apple.spindump_symbolicator
    com.apple.spindump
    com.apple.smbfs_load_kext
    com.apple.smb.sharepoints
    com.apple.smb.server.preferences
    com.apple.service_helper
    com.apple.securityd
    com.apple.scsid
    com.apple.SCHelper
    com.apple.sandboxd
    com.apple.RFBRegisterMDNS_ScreenSharing.server
    com.apple.RFBRegisterMDNS_RemoteManagement.server
    com.apple.RFBEventHelper
    com.apple.ReportCrash.Root
    com.apple.RemoteDesktop.PrivilegeProxy
    com.apple.racoon
    com.apple.proxyhelper
    com.apple.printtool
    com.apple.preferences.timezone.auto
    com.apple.preferences.timezone.admintool
    com.apple.portmap
    com.apple.platform.ptmd
    com.apple.periodic-weekly
    com.apple.periodic-monthly
    com.apple.periodic-daily
    com.apple.PCIELaneConfigTool
    com.apple.pcastagentconfigd
    com.apple.ocspd
    com.apple.notifyd
    com.apple.nis.ypbind
    com.apple.nfsd
    com.apple.newsyslog
    com.apple.netauth.sysagent
    com.apple.metadata.mds
    com.apple.mDNSResponderHelper
    com.apple.mDNSResponder
    com.apple.loginwindow
    com.apple.lockd
    com.apple.locationd
    com.apple.locate
    com.apple.kuncd
    com.apple.kextd
    com.apple.KernelEventAgent
    com.apple.KerberosAutoConfig
    com.apple.InternetSharing
    com.apple.installd
    com.apple.IIDCAssistant
    com.apple.IFCStart
    com.apple.hidd
    com.apple.hdiejectd
    com.apple.gssd
    com.apple.fseventsd
    com.apple.FontWorker
    com.apple.fontmover
    com.apple.fontd
    com.apple.familycontrols
    com.apple.dynamic_pager
    com.apple.dvdplayback.setregion
    com.apple.DumpPanic
    com.apple.dpd
    com.apple.distnoted
    com.apple.diskmanagementd
    com.apple.diskarbitrationd
    com.apple.DirectoryServicesLocal
    com.apple.DirectoryServices
    com.apple.DiagnosticReportCleanUp
    com.apple.dashboard.advisory.fetch
    com.apple.cvmsServ
    com.apple.coreservicesd
    com.apple.CoreRAID
    com.apple.configd
    com.apple.bsd.launchdadd
    com.apple.bsd.dirhelper
    com.apple.blued
    com.apple.backupd
    com.apple.backupd-wake
    com.apple.backupd-auto
    com.apple.backupd-attach
    com.apple.awacsd
    com.apple.automountd
    com.apple.autofsd
    com.apple.auditd
    com.apple.audio.coreaudiod
    com.apple.aslmanager
    com.apple.applepushserviced
    com.apple.appleprofilepolicyd
    com.apple.alfhelper
    com.apple.alf
    com.apple.airport.updateprefs
    com.apple.airportd
    com.apple.AirPort.wps
    com.apple.afpfs_checkafp
    com.apple.afpfs_afpLoad
    com.apple.ActivityMonitor
    com.logmein.logmeinserver
    com.google.keystone.daemon
    com.backblaze.bzserv
    com.apple.apple-scc-1321891231
    com.apple.launchctl.System
    I think I figured it out!  On 2011.11.21 I talked to Apple Support on a scheduled support call. I recall that he had me install something to gain remote access to my computer to troubleshoot. That's what that app was for. They must use Bomgar software to do this. That being said, I am going to delete it.
    Thank you for all your help. Additional comments? Please let me know.

  • Imac has crashed twice. need help reading crash log

    Hi. I got a new imac less than a year ago and recently it has crashed twice. Can anyone tell me why this has happened. Here is the log. Thanks!
    Process:    
    CalendarAgent [169]
    Path:       
    /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAg ent
    Identifier: 
    CalendarAgent
    Version:    
    1.0 (57)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [133]
    User ID:    
    501
    Date/Time:  
    2014-04-03 17:41:19.389 -0400
    OS Version: 
    Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Sleep/Wake UUID: 66D5512F-DBB7-4CCD-8E49-9DF90B7A7168
    Crashed Thread:  7  Dispatch queue: tcpConnWorkQueue
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         
    0x00007fff8825c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib         
    0x00007fff8825bc42 mach_msg + 70
    2   com.apple.CoreFoundation       
    0x00007fff87185233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation       
    0x00007fff8718a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation       
    0x00007fff8718a0e2 CFRunLoopRunSpecific + 290
    5   CalendarAgent                  
    0x000000010bc8bab3 0x10bc8b000 + 2739
    6   libdyld.dylib                  
    0x00007fff8cbac7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         
    0x00007fff8825ed16 kevent + 10
    1   libdispatch.dylib              
    0x00007fff8a2cddea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib              
    0x00007fff8a2cd9ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libc++abi.dylib                
    0x00007fff8cb81eee __dynamic_cast + 4
    1   com.apple.security             
    0x00007fff84f1fecd Attachment& Security::MappingHandle<long>::find<Attachment>(long, int) + 71
    2   com.apple.security             
    0x00007fff84f1fb15 Attachment::upcallMalloc(long, unsigned long) + 19
    3   com.apple.security             
    0x00007fff84d92c82 Security::PluginSession::malloc(unsigned long) + 20
    4   com.apple.security             
    0x00007fff84d98b73 Security::DLPluginSession::malloc(unsigned long) + 9
    5   com.apple.security             
    0x00007fff84d8a642 Security::CssmAllocatorMemoryFunctions::relayMalloc(unsigned long, void*) + 22
    6   com.apple.security             
    0x00007fff84d92cdc Security::CssmMemoryFunctionsAllocator::malloc(unsigned long) + 20
    7   com.apple.security             
    0x00007fff84f1fb29 Attachment::upcallMalloc(long, unsigned long) + 39
    8   com.apple.security             
    0x00007fff84d92c82 Security::PluginSession::malloc(unsigned long) + 20
    9   com.apple.security             
    0x00007fff84d98b73 Security::DLPluginSession::malloc(unsigned long) + 9
    10  com.apple.security             
    0x00007fff84d8a77c cssm_db_unique_record* Security::Allocator::alloc<cssm_db_unique_record>() + 18
    11  com.apple.security             
    0x00007fff84d8a6b9 Security::AppleDatabase::createUniqueRecord(Security::DbContext&, unsigned int, Security::RecordId const&) + 33
    12  com.apple.security             
    0x00007fff84e85b19 Security::AppleDatabase::dataGetNext(Security::DbContext&, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 119
    13  com.apple.security             
    0x00007fff84d8abd2 Security::DatabaseSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 170
    14  com.apple.security             
    0x00007fff84d9c593 cssm_DataGetNext(cssm_dl_db_handle, long, cssm_db_record_attribute_data*, cssm_data*, cssm_db_unique_record**) + 132
    15  com.apple.security             
    0x00007fff84d9c442 CSSM_DL_DataGetNext + 108
    16  com.apple.security             
    0x00007fff84d9c6e1 SSDLSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 161
    17  com.apple.security             
    0x00007fff84d9c63e non-virtual thunk to SSDLSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 13
    18  com.apple.security             
    0x00007fff84d9c593 cssm_DataGetNext(cssm_dl_db_handle, long, cssm_db_record_attribute_data*, cssm_data*, cssm_db_unique_record**) + 132
    19  com.apple.security             
    0x00007fff84d9c442 CSSM_DL_DataGetNext + 108

    I'm sorry, Here it is... Thanks.
    Process:    
    CalendarAgent [169]
    Path:       
    /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAg ent
    Identifier: 
    CalendarAgent
    Version:    
    1.0 (57)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [133]
    User ID:    
    501
    Date/Time:  
    2014-04-03 17:41:19.389 -0400
    OS Version: 
    Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Sleep/Wake UUID: 66D5512F-DBB7-4CCD-8E49-9DF90B7A7168
    Crashed Thread:  7  Dispatch queue: tcpConnWorkQueue
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff8825c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8825bc42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff87185233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff8718a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff8718a0e2 CFRunLoopRunSpecific + 290
    5   CalendarAgent            
    0x000000010bc8bab3 0x10bc8b000 + 2739
    6   libdyld.dylib            
    0x00007fff8cbac7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff8825ed16 kevent + 10
    1   libdispatch.dylib        
    0x00007fff8a2cddea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib        
    0x00007fff8a2cd9ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libc++abi.dylib          
    0x00007fff8cb81eee __dynamic_cast + 4
    1   com.apple.security       
    0x00007fff84f1fecd Attachment& Security::MappingHandle<long>::find<Attachment>(long, int) + 71
    2   com.apple.security       
    0x00007fff84f1fb15 Attachment::upcallMalloc(long, unsigned long) + 19
    3   com.apple.security       
    0x00007fff84d92c82 Security::PluginSession::malloc(unsigned long) + 20
    4   com.apple.security       
    0x00007fff84d98b73 Security::DLPluginSession::malloc(unsigned long) + 9
    5   com.apple.security       
    0x00007fff84d8a642 Security::CssmAllocatorMemoryFunctions::relayMalloc(unsigned long, void*) + 22
    6   com.apple.security       
    0x00007fff84d92cdc Security::CssmMemoryFunctionsAllocator::malloc(unsigned long) + 20
    7   com.apple.security       
    0x00007fff84f1fb29 Attachment::upcallMalloc(long, unsigned long) + 39
    8   com.apple.security       
    0x00007fff84d92c82 Security::PluginSession::malloc(unsigned long) + 20
    9   com.apple.security       
    0x00007fff84d98b73 Security::DLPluginSession::malloc(unsigned long) + 9
    10  com.apple.security       
    0x00007fff84d8a77c cssm_db_unique_record* Security::Allocator::alloc<cssm_db_unique_record>() + 18
    11  com.apple.security       
    0x00007fff84d8a6b9 Security::AppleDatabase::createUniqueRecord(Security::DbContext&, unsigned int, Security::RecordId const&) + 33
    12  com.apple.security       
    0x00007fff84e85b19 Security::AppleDatabase::dataGetNext(Security::DbContext&, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 119
    13  com.apple.security       
    0x00007fff84d8abd2 Security::DatabaseSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 170
    14  com.apple.security       
    0x00007fff84d9c593 cssm_DataGetNext(cssm_dl_db_handle, long, cssm_db_record_attribute_data*, cssm_data*, cssm_db_unique_record**) + 132
    15  com.apple.security       
    0x00007fff84d9c442 CSSM_DL_DataGetNext + 108
    16  com.apple.security       
    0x00007fff84d9c6e1 SSDLSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 161
    17  com.apple.security       
    0x00007fff84d9c63e non-virtual thunk to SSDLSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 13
    18  com.apple.security       
    0x00007fff84d9c593 cssm_DataGetNext(cssm_dl_db_handle, long, cssm_db_record_attribute_data*, cssm_data*, cssm_db_unique_record**) + 132
    19  com.apple.security       
    0x00007fff84d9c442 CSSM_DL_DataGetNext + 108
    20  com.apple.security       
    0x00007fff84d982f1 Security::CssmClient::DbDbCursorImpl::next(Security::CssmClient::DbAttributes*, Security::CssmDataContainer*, Security::CssmClient::DbUniqueRecord&) + 475
    21  com.apple.security       
    0x00007fff84e4358e Security::CssmClient::SSDbCursorImpl::next(Security::CssmClient::DbAttributes*, Security::CssmDataContainer*, Security::CssmClient::DbUniqueRecord&, cssm_access_credentials const*) + 64
    22  com.apple.security       
    0x00007fff84d9ba9c Security::CssmClient::SSDbCursorImpl::next(Security::CssmClient::DbAttributes*, Security::CssmDataContainer*, Security::CssmClient::DbUniqueRecord&) + 12
    23  com.apple.security       
    0x00007fff84d9b455 Security::KeychainCore::KeychainSchemaImpl::KeychainSchemaImpl(Security::CssmCl ient::Db const&) + 725
    24  com.apple.security       
    0x00007fff84d9b158 Security::KeychainCore::KeychainSchema::KeychainSchema(Security::CssmClient::Db const&) + 40
    25  com.apple.security       
    0x00007fff84d9b0d1 Security::KeychainCore::KeychainImpl::keychainSchema() + 63
    26  com.apple.security       
    0x00007fff84d9ab8d Security::KeychainCore::DefaultCredentials::operator()(Security::CssmClient::Db ) + 79
    27  com.apple.security       
    0x00007fff84d9a9eb Security::KeychainCore::KeychainImpl::defaultCredentials() + 157
    28  com.apple.security       
    0x00007fff84d9648b Security::CssmClient::DbImpl::open() + 221
    29  com.apple.security       
    0x00007fff84d9fcd5 Security::KeychainCore::KCCursorImpl::next(Security::KeychainCore::Item&) + 257
    30  com.apple.security       
    0x00007fff84dd970a _SecIdentityCopyPreferenceMatchingName(__CFString const*, unsigned int, __CFArray const*, OpaqueSecIdentityRef**) + 435
    31  com.apple.security       
    0x00007fff84dd9014 SecIdentityCopyPreference + 261
    32  com.apple.CFNetwork      
    0x00007fff89da0b64 HTTPProtocolSSLSupport::getSSLCertsCached(__CFString const*) + 236
    33  com.apple.CFNetwork      
    0x00007fff89da07c1 HTTPProtocol::setupSSLPropertiesOnStream(_CFURLRequest const*) + 411
    34  com.apple.CFNetwork      
    0x00007fff89da0400 HTTPProtocol::openStream() + 80
    35  com.apple.CFNetwork      
    0x00007fff89d9f964 HTTPProtocol::useNetConnectionForRequest(NetConnection*, __CFHTTPMessage*, unsigned char, unsigned char) + 910
    36  com.apple.CFNetwork      
    0x00007fff89db986f HTTPConnectionCacheEntry::connectionWasLost(NetConnection*) + 657
    37  com.apple.CFNetwork      
    0x00007fff89db9584 HTTPConnectionCacheEntry::removeUnauthConnection(NetConnection*) + 202
    38  com.apple.CoreFoundation 
    0x00007fff87186154 CFArrayApplyFunction + 68
    39  com.apple.CFNetwork      
    0x00007fff89d9d87a HTTPConnectionCacheEntry::findOrCreateEmptyUnauthenticatedNetConnection(HTTPPro tocol*, __CFHTTPMessage*, unsigned char*, __CFError**) + 754
    40  com.apple.CFNetwork      
    0x00007fff89d9cb9c HTTPConnectionCacheEntry::enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 622
    41  com.apple.CFNetwork      
    0x00007fff89d9c520 HTTPConnectionCache::_onqueue_enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 178
    42  com.apple.CFNetwork      
    0x00007fff89d9c445 __enqueueRequestForProtocol_block_invoke_0 + 26
    43  com.apple.CFNetwork      
    0x00007fff89e35fea __block_global_1 + 28
    44  com.apple.CoreFoundation 
    0x00007fff87186154 CFArrayApplyFunction + 68
    45  com.apple.CFNetwork      
    0x00007fff89d96374 RunloopBlockContext::perform() + 124
    46  com.apple.CFNetwork      
    0x00007fff89d9624b MultiplexerSource::perform() + 221
    47  com.apple.CoreFoundation 
    0x00007fff87167b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    48  com.apple.CoreFoundation 
    0x00007fff87167455 __CFRunLoopDoSources0 + 245
    49  com.apple.CoreFoundation 
    0x00007fff8718a7f5 __CFRunLoopRun + 789
    50  com.apple.CoreFoundation 
    0x00007fff8718a0e2 CFRunLoopRunSpecific + 290
    51  com.apple.Foundation     
    0x00007fff8d82f546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    52  com.apple.Foundation     
    0x00007fff8d88d562 __NSThread__main__ + 1345
    53  libsystem_c.dylib        
    0x00007fff880c0772 _pthread_start + 327
    54  libsystem_c.dylib        
    0x00007fff880ad1a1 thread_start + 13
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib   
    0x00007fff8825e322 __select + 10
    1   com.apple.CoreFoundation 
    0x00007fff871c9f46 __CFSocketManager + 1302
    2   libsystem_c.dylib        
    0x00007fff880c0772 _pthread_start + 327
    3   libsystem_c.dylib        
    0x00007fff880ad1a1 thread_start + 13
    Thread 4:: com.apple.calendar.agent.ApplePushServiceConnection
    0   libsystem_kernel.dylib   
    0x00007fff8825c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8825bc42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff87185233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff8718a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff8718a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CalendarAgent  
    0x000000010bc9c0fc -[CalAgentAPSConnectionManager _calAPSMain] + 731
    6   com.apple.Foundation     
    0x00007fff8d88d562 __NSThread__main__ + 1345
    7   libsystem_c.dylib        
    0x00007fff880c0772 _pthread_start + 327
    8   libsystem_c.dylib        
    0x00007fff880ad1a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff8825e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff880c2f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff880c2ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff880ad191 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff8825e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff880c2f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff880c2ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff880ad191 start_wqthread + 13
    Thread 7 Crashed:: Dispatch queue: tcpConnWorkQueue
    0   com.apple.security       
    0x00007fff84d7fdc5 Security::RefPointer<Security::CssmClient::ObjectImpl>::release() + 21
    1   com.apple.security       
    0x00007fff84dd15a6 std::_Rb_tree<long, std::pair<long const, SSDatabase>, std::_Select1st<std::pair<long const, SSDatabase> >, std::less<long>, std::allocator<std::pair<long const, SSDatabase> > >::_M_erase(std::_Rb_tree_node<std::pair<long const, SSDatabase> >*) + 46
    2   com.apple.security       
    0x00007fff84e28f0e SSDLSession::~SSDLSession() + 590
    3   com.apple.security       
    0x00007fff84dd130a SSDLSession::~SSDLSession() + 18
    4   com.apple.security       
    0x00007fff84da4ada Security::CssmPlugin::moduleDetach(long) + 220
    5   com.apple.security       
    0x00007fff84dd126f CSSM_SPI_ModuleDetach__apple_cspdl + 35
    6   com.apple.security       
    0x00007fff84da4831 Attachment::detach(bool) + 127
    7   com.apple.security       
    0x00007fff84da461f CSSM_ModuleDetach + 33
    8   com.apple.security       
    0x00007fff84da45c8 Security::CssmClient::AttachmentImpl::deactivate() + 44
    9   com.apple.security       
    0x00007fff84da4563 Security::CssmClient::AttachmentImpl::~AttachmentImpl() + 31
    10  com.apple.security       
    0x00007fff84dd1206 Security::CssmClient::CSPDLImpl::~CSPDLImpl() + 32
    11  com.apple.security       
    0x00007fff84e42401 Security::CssmClient::SSCSPDLImpl::~SSCSPDLImpl() + 25
    12  com.apple.security       
    0x00007fff84d7fdf8 Security::RefPointer<Security::CssmClient::ObjectImpl>::release() + 72
    13  com.apple.security       
    0x00007fff84d98fec Security::CssmClient::ObjectImpl::~ObjectImpl() + 54
    14  com.apple.security       
    0x00007fff84dd1083 Security::CssmClient::SSDbImpl::~SSDbImpl() + 25
    15  com.apple.security       
    0x00007fff84d7fdf8 Security::RefPointer<Security::CssmClient::ObjectImpl>::release() + 72
    16  com.apple.security       
    0x00007fff84ee7937 Security::KeychainCore::KeychainImpl::~KeychainImpl() + 239
    17  com.apple.security       
    0x00007fff84dd0f12 Security::KeychainCore::KeychainImpl::~KeychainImpl() + 18
    18  com.apple.security       
    0x00007fff84d7fefa Security::CFClass::refCountForType(long, void const*) + 190
    19  com.apple.CoreFoundation 
    0x00007fff8715e324 CFRelease + 324
    20  com.apple.security       
    0x00007fff84d9fa2f std::vector<Security::KeychainCore::Keychain, std::allocator<Security::KeychainCore::Keychain> >::~vector() + 33
    21  com.apple.security       
    0x00007fff84ee14b2 Security::KeychainCore::Trust::~Trust() + 48
    22  com.apple.security       
    0x00007fff84dd0a66 Security::KeychainCore::Trust::~Trust() + 18
    23  com.apple.security       
    0x00007fff84d7fefa Security::CFClass::refCountForType(long, void const*) + 190
    24  com.apple.CoreFoundation 
    0x00007fff8715e324 CFRelease + 324
    25  com.apple.CFNetwork      
    0x00007fff89db67e2 HTTPProtocol::~HTTPProtocol() + 508
    26  com.apple.CoreFoundation 
    0x00007fff8715e3df CFRelease + 511
    27  com.apple.CoreFoundation 
    0x00007fff8716283a __CFBasicHashDrain + 442
    28  com.apple.CoreFoundation 
    0x00007fff8715e3df CFRelease + 511
    29  com.apple.CFNetwork      
    0x00007fff89d88d03 SocketStream::~SocketStream() + 477
    30  com.apple.CFNetwork      
    0x00007fff89d88b14 SocketStream::~SocketStream() + 24
    31  com.apple.CoreFoundation 
    0x00007fff8715e3df CFRelease + 511
    32  libdispatch.dylib        
    0x00007fff8a2cef01 _dispatch_call_block_and_release + 15
    33  libdispatch.dylib        
    0x00007fff8a2cb0b6 _dispatch_client_callout + 8
    34  libdispatch.dylib        
    0x00007fff8a2cc47f _dispatch_queue_drain + 235
    35  libdispatch.dylib        
    0x00007fff8a2cc2f1 _dispatch_queue_invoke + 52
    36  libdispatch.dylib        
    0x00007fff8a2cc1c3 _dispatch_worker_thread2 + 249
    37  libsystem_c.dylib        
    0x00007fff880c2cdb _pthread_wqthread + 404
    38  libsystem_c.dylib        
    0x00007fff880ad191 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff8825e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff880c2f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff880c2ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff880ad191 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff8825e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff880c2f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff880c2ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff880ad191 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib   
    0x00007fff8825c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8825bc42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff87185233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff8718a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff8718a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation     
    0x00007fff8d8927ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.CalendarStore  
    0x00007fff8d2d912a -[CalSingleSynchronousTask executeTask:usingTaskManager:] + 175
    7   com.apple.CalendarStore  
    0x00007fff8d2d937b -[CalPropFindSynchronousTask executePropFindTask:usingTaskManager:] + 32
    8   com.apple.CalendarStore  
    0x00007fff8d2da44f __113-[CalDAVAccountRefreshQueueableOperation(Private) rectifyPrincipalPathForPrincipal:inManagedObjectContext:error:]_block_invoke_0 + 230
    9   com.apple.CalendarStore  
    0x00007fff8d2da017 -[CalDAVAccountRefreshQueueableOperation(Private) rectifyPrincipalPathForPrincipal:inManagedObjectContext:error:] + 788
    10  com.apple.CalendarStore  
    0x00007fff8d1bc2bf -[CalDAVAccountRefreshQueueableOperation(Private) refresh] + 1061
    11  com.apple.CalendarStore  
    0x00007fff8d1bbd2b -[CalDAVAccountRefreshQueueableOperation refreshWithExceptionHandling] + 108
    12  com.apple.Foundation     
    0x00007fff8d88d562 __NSThread__main__ + 1345
    13  libsystem_c.dylib        
    0x00007fff880c0772 _pthread_start + 327
    14  libsystem_c.dylib        
    0x00007fff880ad1a1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib   
    0x00007fff8825e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff880c2f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff880c2ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff880ad191 start_wqthread + 13
    Thread 7 crashed with X86 Thread State (64-bit):
      rax: 0x5000000000000000  rbx: 0x00007ffeec357d00  rcx: 0x0000000000018b00  rdx: 0x0000000000002060
      rdi: 0x00007ffeec32ce20  rsi: 0x00007ffeec32ce10  rbp: 0x000000010bf5b570  rsp: 0x000000010bf5b560
       r8: 0x00007ffeec35fda8   r9: 0x000000000ddee39d  r10: 0x00007ffeec3119c0  r11: 0x00000000e1adcb20
      r12: 0x00007ffeec35fd30  r13: 0x00007ffeec35fc60  r14: 0x00007ffeec32ce20  r15: 0x0000000000000000
      rip: 0x00007fff84d7fdc5  rfl: 0x0000000000010206  cr2: 0x000000010c95b000
    Logical CPU: 0
    Binary Images:
    0x10bc8b000 -   
    0x10bc8bfff  CalendarAgent (1.0 - 57) <D7916728-291A-3B77-B1A8-53FD7017C4A0> /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarA gent
    0x10bc97000 -   
    0x10bcadff7  com.apple.CalendarAgent (1.0 - 57) <762A246C-65FC-339D-A0F2-8ED9C907A9C2> /System/Library/PrivateFrameworks/CalendarAgent.framework/Versions/A/CalendarAg ent
    0x10c043000 -   
    0x10c046ff7  com.apple.yahoo.iaplugin (2.1 - 210) <A76EFC19-AD8D-3F24-8801-1A5FCA471232> /System/Library/InternetAccounts/Yahoo.iaplugin/Contents/MacOS/Yahoo
    0x10c04e000 -   
    0x10c052ff7  com.apple.google.iaplugin (2.1 - 210) <5CE22781-4FE8-37D6-8BDF-0048331595CA> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
    0x10c05e000 -   
    0x10c05ffff  com.apple.AddressBook.LocalSourceBundle (2.1 - 1170) <F902B042-3BD2-3FD5-98E5-8F0563D687D1> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x10da17000 -   
    0x10da1afff  com.apple.DirectoryServicesSource (2.1 - 1170) <F0560AC5-BBF4-3AB2-88CF-466B45F79341> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x10da21000 -   
    0x10da74fff  com.apple.AddressBook.CardDAVPlugin (10.8 - 333) <14C01B09-7E73-30C2-9882-AF4223A1A4F0> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x10daa0000 -   
    0x10dab1ff7  com.apple.NSServerNotificationCenter (5.0 - 5.0) <D2C056B1-CE25-32B2-9FDA-33569F512A48> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x7fff6b88b000 -
    0x7fff6b8bf93f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
    0x7fff82f90000 -
    0x7fff83247ff7  com.apple.MediaToolbox (1.0 - 926.106) <57043584-98E7-375A-89AE-F46480AA5D97> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff83260000 -
    0x7fff832dfff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff832f7000 -
    0x7fff833d1fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff833d2000 -
    0x7fff83439fff  com.apple.coredav (1.0.1 - 179.7) <EEFBD7EA-82F4-32AB-8D2B-541D74FB764A> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x7fff8343a000 -
    0x7fff8345bfff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff83587000 -
    0x7fff835ceff7  com.apple.CalDAV (6.0 - 112.6) <BEE75B4F-A36E-3753-BDAF-1F766849960B> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x7fff845e0000 -
    0x7fff845e0fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff845e1000 -
    0x7fff845f8fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff845f9000 -
    0x7fff84600fff  com.apple.phonenumbers (1.1 - 47) <0EB01ED6-F8DD-3A72-89C6-BA3E7AD805C8> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x7fff84601000 -
    0x7fff84882fff  com.apple.AOSKit (1.051 - 152.4) <01C09924-2603-3C1E-97F7-9484CBA35BC9> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x7fff84883000 -
    0x7fff848ddfff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff848de000 -
    0x7fff84a8cfff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff84a8d000 -
    0x7fff84d3cfff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff84d3d000 -
    0x7fff84d45fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
    0x7fff84d46000 -
    0x7fff84d6ffff  libsandbox.1.dylib (220.3) <2C26165F-C3D5-3458-8D3E-EE748A3DA19A> /usr/lib/libsandbox.1.dylib
    0x7fff84d70000 -
    0x7fff84d7cff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <4F3284A9-EFD4-3A77-8B7F-D3D611D656A0> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff84d7d000 -
    0x7fff8504eff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8504f000 -
    0x7fff85088ff7  libssl.0.9.8.dylib (47.2) <46DF85DC-18FB-3108-91F6-52AE3EBF2347> /usr/lib/libssl.0.9.8.dylib
    0x7fff85089000 -
    0x7fff850e6fff  com.apple.ExchangeWebServices (3.0.1 - 158) <6E3D5786-394F-3400-8331-425F8E45CF12> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x7fff850e7000 -
    0x7fff851e4fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
    0x7fff851e5000 -
    0x7fff85219fff  com.apple.securityinterface (6.0 - 55024.4) <FCF87CA0-CDC1-3F7C-AADA-2AC3FE4E97BD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff85275000 -
    0x7fff852cfff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff852d0000 -
    0x7fff852d1fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff85317000 -
    0x7fff85325ff7  libsystem_network.dylib (77.10) <2AAA67A1-525E-38F0-8028-1D2B64716611> /usr/lib/system/libsystem_network.dylib
    0x7fff856df000 -
    0x7fff856eafff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff856eb000 -
    0x7fff856ebfff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff856ec000 -
    0x7fff856f3fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
    0x7fff856f4000 -
    0x7fff8580dfff  com.apple.ImageIO.framework (3.2.2 - 851) <6552C673-9F29-3B31-A12E-C4391A950965> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8585b000 -
    0x7fff858c8ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff858c9000 -
    0x7fff858e3fff  com.apple.CoreMediaAuthoring (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x7fff858eb000 -
    0x7fff858f7fff  libCSync.A.dylib (333.1) <319D3E83-8086-3990-8773-872F2E7C6EB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff858f8000 -
    0x7fff85978ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <AFDC05E6-F842-33D9-9379-81DF26E510CA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff85979000 -
    0x7fff859afff7  libsystem_info.dylib (406.17) <C9BA1024-043C-3BD5-908F-AF709E05DEE4> /usr/lib/system/libsystem_info.dylib
    0x7fff859b0000 -
    0x7fff85a0cfff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff85a0d000 -
    0x7fff85c0dfff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
    0x7fff85c3c000 -
    0x7fff85c44fff  com.apple.AppSandbox (2.1 - 1) <79F5851B-C5B4-3D6F-8F99-AAF20F3DE9C2> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff85c76000 -
    0x7fff85c7cfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff85efb000 -
    0x7fff85efcff7  libSystem.B.dylib (169.3) <92475A81-385C-32B9-9D6D-38E4BAC90996> /usr/lib/libSystem.B.dylib
    0x7fff85efd000 -
    0x7fff85f10ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <023D909C-3AFA-3438-88EB-05D0BDA5AFFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff85f11000 -
    0x7fff85f74fff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff85f75000 -
    0x7fff85f87ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    0x7fff85f88000 -
    0x7fff85ff7fff  com.apple.WhitePagesFramework (10.7.0 - 141.0) <5CF63349-06EE-379D-9B75-3B73E475F0FD> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x7fff8604c000 -
    0x7fff8614efff  libJP2.dylib (851) <26FFBDBF-9CCE-33D7-A45B-0A31C98DA37E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff86160000 -
    0x7fff8616bff7  com.apple.ProtocolBuffer (2 - 104) <5BA49EB9-1361-3BFF-856C-C5F1D0486072> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff86197000 -
    0x7fff8623dff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8623e000 -
    0x7fff8665bfff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff8665c000 -
    0x7fff8665dff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
    0x7fff8665e000 -
    0x7fff8675cfff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff8675d000 -
    0x7fff86762fff  com.apple.OpenDirectory (10.8 - 151.10) <1F47EC96-7403-3690-8D8D-C31D3B6FDA0A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff86763000 -
    0x7fff86785ff7  com.apple.Kerberos (2.0 - 1) <416543F5-E7AF-3269-843F-C8CDA8DD0FFA> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff86797000 -
    0x7fff867a8ff7  com.apple.CalendarFoundation (1.0 - 29) <FA5851BE-B592-3E9A-B5A6-7B40BE5A0991> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x7fff867a9000 -
    0x7fff867faff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff867fb000 -
    0x7fff86802fff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff86803000 -
    0x7fff86a5eff7  com.apple.QuartzComposer (5.1 - 287.1) <D1DD68D1-05D5-3037-ABB6-BF6EB183C155> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff86a5f000 -
    0x7fff86a6aff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff86a86000 -
    0x7fff86ab2fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <CCF2C41D-93D0-3547-A2B1-D6A69932CADF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff86aec000 -
    0x7fff86aecfff  com.apple.ApplicationServices (45 - 45) <5302CC85-D534-3FE5-9E56-CA16762177F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff86aed000 -
    0x7fff86af3fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
    0x7fff86b3e000 -
    0x7fff86b6cfff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff86b6d000 -
    0x7fff86b8eff7  libCRFSuite.dylib (33) <B49DA255-A4D9-33AF-95AB-B319570CDF7B> /usr/lib/libCRFSuite.dylib
    0x7fff86c0a000 -
    0x7fff87046fff  com.apple.VideoToolbox (1.0 - 926.106) <B1185D9D-02AC-3D27-B894-21B1179F2AEF> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff87047000 -
    0x7fff87048ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff87049000 -
    0x7fff8704bfff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff87054000 -
    0x7fff87082ff7  libsystem_m.dylib (3022.6) <11B6081D-6212-3EAB-9975-BED6234BD6A5> /usr/lib/system/libsystem_m.dylib
    0x7fff87083000 -
    0x7fff87134fff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff87135000 -
    0x7fff87154ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
    0x7fff87155000 -
    0x7fff8733fff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff87340000 -
    0x7fff87657ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff87b60000 -
    0x7fff87bb7ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff87bb8000 -
    0x7fff87bbbfff  com.apple.help (1.3.2 - 42) <418A9A41-BCB4-32A2-97ED-3A388F69CA9D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff87bbc000 -
    0x7fff87bc7fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
    0x7fff87bc8000 -
    0x7fff87ef8fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff880ab000 -
    0x7fff880abffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff880ac000 -
    0x7fff88178ff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
    0x7fff8818d000 -
    0x7fff8818efff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8818f000 -
    0x7fff881c9ff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff881ca000 -
    0x7fff88219fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8821a000 -
    0x7fff88228fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
    0x7fff88229000 -
    0x7fff8822bff7  libunc.dylib (25) <2FDC94A7-3039-3680-85F3-2164E63B464D> /usr/lib/system/libunc.dylib
    0x7fff8822c000 -
    0x7fff8824bff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff8824c000 -
    0x7fff88267ff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
    0x7fff88268000 -
    0x7fff88275fff  com.apple.AppleFSCompression (49 - 1.0) <E616053D-D3C2-3600-B8DF-A5E0D9665634> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff88276000 -
    0x7fff88283ff7  com.apple.NetAuth (4.0 - 4.0) <A4A21A2F-B26A-3DC9-95E4-DAFA43A4A2C3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff88284000 -
    0x7fff88285ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
    0x7fff88286000 -
    0x7fff88289fff  com.apple.AppleSystemInfo (2.0 - 2) <C9D7F3A6-F926-39F3-8F55-A3A137DDAE50> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff882f0000 -
    0x7fff8835eff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8835f000 -
    0x7fff88361fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff88362000 -
    0x7fff8838cff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8838d000 -
    0x7fff883b4fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff883b5000 -
    0x7fff883f9fff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
    0x7fff883fa000 -
    0x7fff88553ff7  com.apple.syncservices (7.1 - 713.1) <1B20AF09-C1E5-3B70-A57F-177A4D92E403> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x7fff88554000 -
    0x7fff885c4fff  com.apple.ISSupport (1.9.8 - 56) <19436666-D781-3C6A-B091-85BE7316E4B2> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff885c7000 -
    0x7fff8862ffff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff88e16000 -
    0x7fff88ee8ff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff88f12000 -
    0x7fff88f5cff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff88f5d000 -
    0x7fff88fa0ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff88fa1000 -
    0x7fff88fb8fff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff88fb9000 -
    0x7fff88fb9fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff88fba000 -
    0x7fff8903cff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff891e6000 -
    0x7fff891eafff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
    0x7fff891ed000 -
    0x7fff89200ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
    0x7fff892a1000 -
    0x7fff892f0ff7  libFontRegistry.dylib (100) <F7EC0287-58E4-3ABE-A45E-B105A68EA76E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff89446000 -
    0x7fff89448fff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff89449000 -
    0x7fff8944dfff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8944e000 -
    0x7fff89469ff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x7fff8946a000 -
    0x7fff8946afff  com.apple.AOSMigrate (1.0 - 1) <9E7A92DC-649D-3908-BB36-B7F445261F14> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x7fff8946b000 -
    0x7fff8947aff7  libxar.1.dylib (105) <B6A7C8AA-3E20-3A1D-A7BA-4FD0052FA508> /usr/lib/libxar.1.dylib
    0x7fff8947b000 -
    0x7fff894c6fff  com.apple.CoreMedia (1.0 - 926.106) <64467905-48DC-37F9-9F32-186768CF2640> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff894c7000 -
    0x7fff894c7fff  com.apple.Cocoa (6.7 - 19) <3CFC90D2-2BE9-3E5C-BFDB-5E161A2C2B29> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff894c8000 -
    0x7fff89514fff  com.apple.framework.CoreWLAN (3.4 - 340.18) <3735FB49-30C0-3B11-BE25-2ACDD96041B5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff89515000 -
    0x7fff89518fff  libRadiance.dylib (851) <C317B2C7-CA3A-329F-B6DC-7CC33FE08C81> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff89519000 -
    0x7fff89521fff  com.apple.AOSNotification (1.7.0 - 636.5) <15EFB097-C811-3F4A-9085-1FBC3EBFA457> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x7fff89522000 -
    0x7fff89a92ff7  com.apple.CoreAUC (6.22.03 - 6.22.03) <A77BC97A-B695-3F7E-8696-5B2357C2726B> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff89a93000 -
    0x7fff89c2efef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff89c99000 -
    0x7fff89ce5ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
    0x7fff89ce6000 -
    0x7fff89ce8ff7  com.apple.print.framework.Print (8.0 - 258) <8F243E49-021F-3892-B555-3010A7F450A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff89cf6000 -
    0x7fff89d18ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
    0x7fff89d19000 -
    0x7fff89e8eff7  com.apple.CFNetwork (596.5 - 596.5) <22372475-6EF4-3A04-83FC-C061FE4717B3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff89e9a000 -
    0x7fff89e9afff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
    0x7fff89e9b000 -
    0x7fff89ea4ff7  com.apple.CommerceCore (1.0 - 26.2) <AF35874A-6FA7-328E-BE30-8BBEF0B741A8> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8a0ee000 -
    0x7fff8a0f2fff  com.apple.SecCodeWrapper (2.1 - 1) <D25DD827-7F03-35AA-AD37-8E8D49AAD765> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x7fff8a12c000 -
    0x7fff8a137fff  com.apple.CalendarAgentLink (1.0 - 38) <975BA2F1-5EA9-3173-831A-75143B45B262> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x7fff8a138000 -
    0x7fff8a177ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8a178000 -
    0x7fff8a178fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8a179000 -
    0x7fff8a1caff7  com.apple.iCalendar (6.0 - 126.5) <3C743E01-70DB-341C-89EC-13B5EA70EEE2> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x7fff8a219000 -
    0x7fff8a278fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff8a279000 -
    0x7fff8a2c8ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/

  • My Photoshop CS5 crashes - need help reading crash report

    Hi,
    I am running Mac OS 10.8.5 with Photoshop CS5 (all updates performed). Suddenly my PS crashed by opening the mor than one file.
    I would appreciate someone's help to read my crash report - as to what software is causing it.
    Thanks!
    Here is the crash report:
    Process:         Adobe Photoshop CS5 [961]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.4 (12.0.4x20110407.r.1265] [12.0.4)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [127]
    User ID:         501
    Date/Time:       2013-11-16 11:38:40.796 -0500
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Interval Since Last Report:          637558 sec
    Crashes Since Last Report:           11
    Per-App Interval Since Last Report:  575446 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      BDE9FF28-A09D-759E-5E0C-4B0C16CC5CD9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 0000000100000000-00000001026fc000 [ 39.0M] r-x/rwx SM=COW  /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                     000000000000000000 0 + 0
    1   FontExplorer X for Photoshop CS5          0x0000000119b150df FEX::BasicFEXNotifyHandler::notifiyAll(std::string const&) + 669
    2   FontExplorer X for Photoshop CS5          0x0000000119b153bb FEX::MacFEXNotifyHandler::push() + 197
    3   QtCore                                  0x000000011bf51f5e QMetaObject::activate(QObject*, QMetaObject const*, int, void**) + 1534
    4   QtCore                                  0x000000011bf4eab2 QObject::event(QEvent*) + 434
    5   QtGui                                   0x000000011f9a378d QApplicationPrivate::notify_helper(QObject*, QEvent*) + 189
    6   QtGui                                   0x000000011f9ac159 QApplication::notify(QObject*, QEvent*) + 2057
    7   QtCore                                  0x000000011bf3d87b QCoreApplication::notifyInternal(QObject*, QEvent*) + 123
    8   QtGui                                   0x000000011f9a3aec QApplicationPrivate::findClosestTouchPointId(QPointF const&) + 412
    9   QtGui                                   0x000000011f961d6c QDesktopWidget::resizeEvent(QResizeEvent*) + 5996
    10  com.apple.CoreFoundation                0x00007fff8e7d2804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    11  com.apple.CoreFoundation                0x00007fff8e7d231d __CFRunLoopDoTimer + 557
    12  com.apple.CoreFoundation                0x00007fff8e7b7ad9 __CFRunLoopRun + 1529
    13  com.apple.CoreFoundation                0x00007fff8e7b70e2 CFRunLoopRunSpecific + 290
    14  com.apple.HIToolbox                     0x00007fff87ebceb4 RunCurrentEventLoopInMode + 209
    15  com.apple.HIToolbox                     0x00007fff87ebcc52 ReceiveNextEventCommon + 356
    16  com.apple.HIToolbox                     0x00007fff87ebcae3 BlockUntilNextEventMatchingListInMode + 62
    17  com.apple.AppKit                        0x00007fff896da533 _DPSNextEvent + 685
    18  com.apple.AppKit                        0x00007fff896d9df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    19  QtGui                                   0x000000011f963403 QDesktopWidget::resizeEvent(QResizeEvent*) + 11779
    20  QtCore                                  0x000000011bf3c924 QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 68
    21  QtCore                                  0x000000011bf3ccd7 QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 343
    22  QtGui                                   0x000000011fdac875 QDialog::exec() + 229
    23  FontExplorer X for Photoshop CS5          0x0000000119b3fa86 FontExplorerXPlugin::processFonts(std::vector<Gryps::SmartPointer<FEX::FEXFontInfo>, std::allocator<Gryps::SmartPointer<FEX::FEXFontInfo> > >&) + 866
    24  FontExplorer X for Photoshop CS5          0x0000000119b07591 FormatPluginMain + 897
    25  com.adobe.Photoshop                     0x00000001006ffcf9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4339805
    26  com.adobe.Photoshop                     0x00000001004655b6 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1610010
    27  com.adobe.Photoshop                     0x0000000100503faa AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2259726
    28  com.adobe.Photoshop                     0x0000000100504201 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2260325
    29  com.adobe.Photoshop                     0x000000010050a2b8 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2285084
    30  com.adobe.Photoshop                     0x00000001006af8b4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4011032
    31  com.adobe.Photoshop                     0x000000010006598f 0x100000000 + 416143
    32  com.adobe.Photoshop                     0x00000001006b5977 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4035803
    33  com.adobe.Photoshop                     0x000000010006b345 0x100000000 + 439109
    34  com.adobe.Photoshop                     0x000000010006c097 0x100000000 + 442519
    35  com.adobe.Photoshop                     0x00000001000711ba 0x100000000 + 463290
    36  com.adobe.Photoshop                     0x00000001000665d3 0x100000000 + 419283
    37  com.adobe.Photoshop                     0x0000000100066696 0x100000000 + 419478
    38  com.adobe.Photoshop                     0x00000001012e1ef4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16800344
    39  com.adobe.Photoshop                     0x0000000100078704 0x100000000 + 493316
    40  com.adobe.Photoshop                     0x00000001000665d3 0x100000000 + 419283
    41  com.adobe.Photoshop                     0x0000000100066696 0x100000000 + 419478
    42  com.adobe.Photoshop                     0x00000001012e1ef4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16800344
    43  com.apple.AppKit                        0x00007fff896d121a -[NSApplication run] + 636
    44  com.adobe.Photoshop                     0x00000001012e04a4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16793608
    45  com.adobe.Photoshop                     0x00000001012e0f01 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796261
    46  com.adobe.Photoshop                     0x00000001000682e6 0x100000000 + 426726
    47  com.adobe.Photoshop                     0x00000001002371f1 0x100000000 + 2322929
    48  com.adobe.Photoshop                     0x0000000100237281 0x100000000 + 2323073
    49  com.adobe.Photoshop                     0x00000001000022f4 0x100000000 + 8948
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff865e8d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8cd49dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8cd499ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff865e86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a294f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a294ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a27f191 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff865e86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a294f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a294ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a27f191 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.adobe.amt.services                  0x0000000107c29c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services                  0x0000000107c22cce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services                  0x0000000107c29cbe AMTThread::Worker(void*) + 28
    5   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff865e86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a294f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a294ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a27f191 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff865e66da semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x00007fff8c39b58f MPWaitOnSemaphore + 79
    2   MultiProcessor Support                  0x0000000110f20b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff865e66da semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x00007fff8c39b58f MPWaitOnSemaphore + 79
    2   MultiProcessor Support                  0x0000000110f20b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff865e66da semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x00007fff8c39b58f MPWaitOnSemaphore + 79
    2   MultiProcessor Support                  0x0000000110f20b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff865e66da semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x00007fff8c39b58f MPWaitOnSemaphore + 79
    2   MultiProcessor Support                  0x0000000110f20b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff865e66da semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x00007fff8c39b58f MPWaitOnSemaphore + 79
    2   MultiProcessor Support                  0x0000000110f20b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c3c4210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c3c43e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8c326a98 MPWaitOnQueue + 252
    5   AdobeACE                                0x000000010598a18d 0x105950000 + 237965
    6   AdobeACE                                0x0000000105989b3a 0x105950000 + 236346
    7   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c3c4210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c3c43e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8c326a98 MPWaitOnQueue + 252
    5   AdobeACE                                0x000000010598a18d 0x105950000 + 237965
    6   AdobeACE                                0x0000000105989b3a 0x105950000 + 236346
    7   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c3c4210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c3c43e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8c326a98 MPWaitOnQueue + 252
    5   AdobeACE                                0x000000010598a18d 0x105950000 + 237965
    6   AdobeACE                                0x0000000105989b3a 0x105950000 + 236346
    7   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c3c4210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c3c43e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8c326a98 MPWaitOnQueue + 252
    5   AdobeACE                                0x000000010598a18d 0x105950000 + 237965
    6   AdobeACE                                0x0000000105989b3a 0x105950000 + 236346
    7   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c3c4210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c3c43e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8c326a98 MPWaitOnQueue + 252
    5   AdobeACE                                0x000000010598a18d 0x105950000 + 237965
    6   AdobeACE                                0x0000000105989b3a 0x105950000 + 236346
    7   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c3c4210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c3c43e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8c326a98 MPWaitOnQueue + 252
    5   AdobeACE                                0x000000010598a18d 0x105950000 + 237965
    6   AdobeACE                                0x0000000105989b3a 0x105950000 + 236346
    7   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c3c4210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c3c43e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8c326a98 MPWaitOnQueue + 252
    5   AdobeACE                                0x000000010598a18d 0x105950000 + 237965
    6   AdobeACE                                0x0000000105989b3a 0x105950000 + 236346
    7   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c3c4210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c3c43e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8c326a98 MPWaitOnQueue + 252
    5   AdobeACE                                0x000000010598a18d 0x105950000 + 237965
    6   AdobeACE                                0x0000000105989b3a 0x105950000 + 236346
    7   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c3c4210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c3c43e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8c326a98 MPWaitOnQueue + 252
    5   AdobeACE                                0x000000010598a18d 0x105950000 + 237965
    6   AdobeACE                                0x0000000105989b3a 0x105950000 + 236346
    7   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c3c4210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c3c43e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8c326a98 MPWaitOnQueue + 252
    5   AdobeACE                                0x000000010598a18d 0x105950000 + 237965
    6   AdobeACE                                0x0000000105989b3a 0x105950000 + 236346
    7   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c3c4210 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c3c43e7 TSWaitOnConditionTimedRelative + 132
    4   com.apple.CoreServices.CarbonCore          0x00007fff8c326a98 MPWaitOnQueue + 252
    5   AdobeACE                                0x000000010598a18d 0x105950000 + 237965
    6   AdobeACE                                0x0000000105989b3a 0x105950000 + 236346
    7   com.apple.CoreServices.CarbonCore          0x00007fff8c39b7e0 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    9   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff865e8386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8a31c7c8 nanosleep + 163
    2   com.adobe.PSAutomate                    0x0000000114d82e4b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate                    0x0000000114d64d83 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate                    0x0000000114d82f46 ScObjects::Thread::go(void*) + 166
    5   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.adobe.adobeswfl                     0x000000011eb3f89d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000011e8f85e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000011eb3f9b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000011eb3fd1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000011eb3fe49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.adobe.adobeswfl                     0x000000011eb3f89d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000011e8f85e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000011eb3f9b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000011eb3fd1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000011eb3fe49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.adobe.adobeswfl                     0x000000011eb3f89d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000011e8f85e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000011eb3f9b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000011eb3fd1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000011eb3fe49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.adobe.adobeswfl                     0x000000011eb3f89d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000011e8f85e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000011eb3f9b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000011eb3fd1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000011eb3fe49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.adobe.adobeswfl                     0x000000011eb3f89d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000011e8f85e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000011eb3f9b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000011eb3fd1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000011eb3fe49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   com.adobe.adobeswfl                     0x000000011eb3f89d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                     0x000000011e8f85e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                     0x000000011eb3f9b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000011eb3fd1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000011eb3fe49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib                  0x00007fff865e6686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff865e5c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8e7b2233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8e7b7916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8e7b70e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMediaIO                   0x00007fff8c28d6e8 CMIO::DAL::RunLoop::OwnThread(void*) + 146
    6   com.apple.CoreMediaIO                   0x00007fff8c2852ce CAPThread::Entry(CAPThread*) + 156
    7   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296ff3 _pthread_cond_wait + 927
    2   com.adobe.adobeswfl                     0x000000011eb3f869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl                     0x000000011eb5c0ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl                     0x000000011eb3f9b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000011eb3fd1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000011eb3fe49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296ff3 _pthread_cond_wait + 927
    2   com.adobe.adobeswfl                     0x000000011eb3f869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl                     0x000000011ecd9e6f APXGetHostAPI + 4146655
    4   com.adobe.adobeswfl                     0x000000011eb3f9b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                     0x000000011eb3fd1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                     0x000000011eb3fe49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib                  0x00007fff865e82aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x000000011886b982 Invoke + 54020
    2   ServiceManager-Launcher.dylib           0x000000011886aadf Invoke + 50273
    3   ServiceManager-Launcher.dylib           0x0000000118869b26 Invoke + 46248
    4   ServiceManager-Launcher.dylib           0x0000000118869b81 Invoke + 46339
    5   ServiceManager-Launcher.dylib           0x0000000118869c02 Invoke + 46468
    6   ServiceManager-Launcher.dylib           0x000000011886430d Invoke + 23695
    7   ServiceManager-Launcher.dylib           0x00000001188644a6 Invoke + 24104
    8   ServiceManager-Launcher.dylib           0x0000000118864f2f Invoke + 26801
    9   ServiceManager-Launcher.dylib           0x000000011886501d Invoke + 27039
    10  ServiceManager-Launcher.dylib           0x000000011886831f Invoke + 40097
    11  ServiceManager-Launcher.dylib           0x00000001188685c5 Invoke + 40775
    12  ServiceManager-Launcher.dylib           0x0000000118868b84 Invoke + 42246
    13  ServiceManager-Launcher.dylib           0x0000000118868d71 Invoke + 42739
    14  ServiceManager-Launcher.dylib           0x000000011885adaf Login + 1773
    15  ServiceManager-Launcher.dylib           0x000000011885c295 Login + 7123
    16  ServiceManager-Launcher.dylib           0x00000001188692a8 Invoke + 44074
    17  ServiceManager-Launcher.dylib           0x000000011886b6c1 Invoke + 53315
    18  libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    19  libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   libtbb.dylib                            0x0000000106bee22c tbb::internal::GenericScheduler::wait_while_pool_is_empty() + 92
    3   libtbb.dylib                            0x0000000106bf8b84 tbb::internal::CustomScheduler<tbb::internal::IntelSchedulerTraits>::wait_for_all(tbb::ta sk&, tbb::task*) + 1858
    4   libtbb.dylib                            0x0000000106bf0e3a tbb::internal::GenericScheduler::worker_routine(void*) + 632
    5   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   libtbb.dylib                            0x0000000106bee22c tbb::internal::GenericScheduler::wait_while_pool_is_empty() + 92
    3   libtbb.dylib                            0x0000000106bf8b84 tbb::internal::CustomScheduler<tbb::internal::IntelSchedulerTraits>::wait_for_all(tbb::ta sk&, tbb::task*) + 1858
    4   libtbb.dylib                            0x0000000106bf0e3a tbb::internal::GenericScheduler::worker_routine(void*) + 632
    5   libsystem_c.dylib                       0x00007fff8a292772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a27f1a1 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib                  0x00007fff865e80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a296fb9 _pthread_cond_wait + 869
    2   libtbb.dylib                            0x0000000106bee22c tbb::internal::GenericScheduler::wait_while_pool_is_empty() + 92
    3   libtbb.dylib                            0x0000000106bf8b84 tbb::internal::CustomScheduler<tbb::internal::IntelSchedulerTraits>::wait_for_all(tbb::ta sk&, tbb::task*) + 1858

    Mine too. In fact, after 4 years my iMac is acting very strange. It is acting like a virus on a PC. Everything I read says that is not possible.  Wish I knew what to do.

  • Need help reading an internal table

    Howdy,
    I have an internal table (itab_knvh) that contains all the entries from table KNVH for a specified sales area.
    Now I have another internal table (itab_kunnr) that contains all the customers that I need data for.
    How can I read all the entries from itab_knvh where the 'date from' value (datab) is greater than today's date?
    At the moment I have:
    <b>  LOOP AT itab_kunnr.
        <i>READ TABLE itab_knvh WITH KEY kunnr = itab_kunnr-kunnr.</i>
        IF sy-subrc = 0.
          IF itab_knvh-datab GE p_validh.
            WRITE:/ itab_kunnr.
          ENDIF.
        ENDIF.
      ENDLOOP.</b>
    but I don't think this will work if more than one customer entry exists in itab_knvh.
    So is there a way of writing:
    READ TABLE itab_knvh WITH KEY kunnr = itab_kunnr-kunnr
                                  datab GE sy-datum.
    Any ideas???

    Hi Steve,
    If you have written <i>exactly</i> the same SELECT statement as you have posted here, then it is in error.
    Try this one out, instead.
    select single hkunnr
                  datab
                  hzuor 
             from knvh
             into (itab_hier_output-old_kunnr,
                   itab_hier_output-old_datab,
                   itab_hier_output-old_hzuor)
            where kunnr = itab_kunnr-kunnr
              and datbi = itab_hier_output-new_datab.
    Regards,
    Anand Mandalika.

  • Need help reading a file ~!

    Hi,
    I cant seem to read this file. It compiles without errors, but i get a java.nullPointerException when i run it. My data file looks like this:
    5
    class1
    class2
    class3
    class4
    class5
    1-2 1-3 2-4 3-4 4-5
    here is my code to read the file:         public void Read(String fileName) {
                    try {
                            String num; //number of cells
                            String cells; //cell data
                            FileReader file = new FileReader(fileName);
                            BufferedReader in = new BufferedReader (file);
                            num = in.readLine();
                            number = Integer.valueOf(num).intValue(); //converts string to int
                            co = new ClassObject[number];
                            System.out.println("There are " + number + " total classes");
    //## PROBLEM OCCURS IN THIS FOR LOOP which reads in the 5 names of classes
                            for (int b=0; b<number; b++){
                                   co.className = in.readLine();
    } //#### end of problem
    while ((cells = in.readLine()) != null) {
    StringTokenizer st1 = new StringTokenizer(cells, " ");
    while (st1.hasMoreTokens()) {
    String ST1 = st1.nextToken();
    StringTokenizer st2 = new StringTokenizer(ST1, "-");
    String ST2 = st2.nextToken();
    co[x] = new ClassObject();
    co[x].classNumber = Integer.valueOf(ST2).intValue();
    ST2 = st2.nextToken();
    co[x].classRelation = Integer.valueOf(ST2).intValue();
    x++;
    } catch (IOException e) {
    System.out.println("Warning: Cannot Read File");
    System.exit(0);
    setPositions();
    thanks for any help!

    Sorry, I didn't notice your comment in the code.
    for (int b=0; b<number; b++){
      co[ b]= new ClassObject();
      co[ b].className = in.readLine();
    }

  • Need help reading error report, please help!

    Hi all, this is my first post on here and would really appreciate some help. Safari keeps quiting unexpectedly. I've read a few discussions posted and have tried out updating Java and repairing permissions although the problem persists. I set up another admin account and all is fine with safari, I'm using it to write this.
    Would really appreciate some help sorting this out it's getting very annoying!
    Below is the report.
    Thanks
    Process: Safari [548]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.1.2 (6534.52.7)
    Build Info: WebBrowser-75345207~2
    Code Type: X86-64 (Native)
    Parent Process: launchd [508]
    Date/Time: 2012-02-02 13:23:37.269 +0000
    OS Version: Mac OS X 10.6.8 (10K549)
    Report Version: 6
    Interval Since Last Report: 26467 sec
    Crashes Since Last Report: 26
    Per-App Interval Since Last Report: 21427 sec
    Per-App Crashes Since Last Report: 26
    Anonymous UUID: 3C3F4CBC-2D18-4D47-AAAD-4D98F93164C9
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000018
    Crashed Thread: 3 WebCore: IconDatabase
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x00007fff85488d7a mach_msg_trap + 10
    1 libSystem.B.dylib 0x00007fff854893ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff84ad9902 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff84ad8d8f CFRunLoopRunSpecific + 575
    4 com.apple.HIToolbox 0x00007fff899f77ee RunCurrentEventLoopInMode + 333
    5 com.apple.HIToolbox 0x00007fff899f75f3 ReceiveNextEventCommon + 310
    6 com.apple.HIToolbox 0x00007fff899f74ac BlockUntilNextEventMatchingListInMode + 59
    7 com.apple.AppKit 0x00007fff86d9eeb2 _DPSNextEvent + 708
    8 com.apple.AppKit 0x00007fff86d9e801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9 com.apple.Safari.framework 0x00007fff877b72be -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 177
    10 com.apple.AppKit 0x00007fff86d6468f -[NSApplication run] + 395
    11 com.apple.AppKit 0x00007fff86d5d3b0 NSApplicationMain + 364
    12 com.apple.Safari.framework 0x00007fff87975924 SafariMain + 200
    13 com.apple.Safari 0x0000000100000f1c 0x100000000 + 3868
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff854a1c0a kevent + 10
    1 libSystem.B.dylib 0x00007fff854a3add _dispatch_mgr_invoke + 154
    2 libSystem.B.dylib 0x00007fff854a37b4 _dispatch_queue_invoke + 185
    3 libSystem.B.dylib 0x00007fff854a32de _dispatch_worker_thread2 + 252
    4 libSystem.B.dylib 0x00007fff854a2c08 _pthread_wqthread + 353
    5 libSystem.B.dylib 0x00007fff854a2aa5 start_wqthread + 13
    Thread 2:
    0 libSystem.B.dylib 0x00007fff854a2a2a __workq_kernreturn + 10
    1 libSystem.B.dylib 0x00007fff854a2e3c _pthread_wqthread + 917
    2 libSystem.B.dylib 0x00007fff854a2aa5 start_wqthread + 13
    Thread 3 Crashed: WebCore: IconDatabase
    0 com.apple.WebCore 0x00007fff82e477ad bool ***::HashTable<***::String, std::pair<***::String, WebCore::PageURLRecord*>, ***::PairFirstExtractor<std::pair<***::String, WebCore::PageURLRecord*> >, ***::StringHash, ***::PairHashTraits<***::HashTraits<***::String>, ***::HashTraits<WebCore::PageURLRecord*> >, ***::HashTraits<***::String> >::contains<***::String, ***::IdentityHashTranslator<***::String, std::pair<***::String, WebCore::PageURLRecord*>, ***::StringHash> >(***::String const&) const + 45
    1 com.apple.WebCore 0x00007fff823dbf9b WebCore::IconDatabase::pruneUnretainedIcons() + 331
    2 com.apple.WebCore 0x00007fff823c358a WebCore::IconDatabase::syncThreadMainLoop() + 362
    3 com.apple.WebCore 0x00007fff823c0b28 WebCore::IconDatabase::iconDatabaseSyncThread() + 296
    4 libSystem.B.dylib 0x00007fff854c1fd6 _pthread_start + 331
    5 libSystem.B.dylib 0x00007fff854c1e89 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff85488d7a mach_msg_trap + 10
    1 libSystem.B.dylib 0x00007fff854893ed mach_msg + 59
    2 com.apple.QuartzCore 0x00007fff80c04396 CA::Render::Server::server_thread(void*) + 177
    3 com.apple.QuartzCore 0x00007fff80c042d6 thread_fun + 34
    4 libSystem.B.dylib 0x00007fff854c1fd6 _pthread_start + 331
    5 libSystem.B.dylib 0x00007fff854c1e89 thread_start + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff854a2a2a __workq_kernreturn + 10
    1 libSystem.B.dylib 0x00007fff854a2e3c _pthread_wqthread + 917
    2 libSystem.B.dylib 0x00007fff854a2aa5 start_wqthread + 13
    Thread 6:
    0 libSystem.B.dylib 0x00007fff85488d7a mach_msg_trap + 10
    1 libSystem.B.dylib 0x00007fff854893ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff84ad9902 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff84ad8d8f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8009314f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff80014114 __NSThread__main__ + 1429
    6 libSystem.B.dylib 0x00007fff854c1fd6 _pthread_start + 331
    7 libSystem.B.dylib 0x00007fff854c1e89 thread_start + 13
    Thread 7: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x00007fff85488d7a mach_msg_trap + 10
    1 libSystem.B.dylib 0x00007fff854893ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff84ad9902 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff84ad8d8f CFRunLoopRunSpecific + 575
    4 com.apple.Safari.framework 0x00007fff8792daa5 Safari::MessageRunLoop::threadBody() + 107
    5 com.apple.Safari.framework 0x00007fff8792dadf Safari::MessageRunLoop::threadCallback(void*) + 9
    6 libSystem.B.dylib 0x00007fff854c1fd6 _pthread_start + 331
    7 libSystem.B.dylib 0x00007fff854c1e89 thread_start + 13
    Thread 8: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff854c3a6a __semwait_signal + 10
    1 libSystem.B.dylib 0x00007fff854c7881 _pthread_cond_wait + 1286
    2 com.apple.JavaScriptCore 0x00007fff85aca1c0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.Safari.framework 0x00007fff879a8685 Safari::MessageQueueWaitResult Safari::MessageQueue<***::RefPtr<Safari::SnapshotStore::DiskAccessMessage> >::waitForMessageFilteredWithTimeout<bool ()(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&)>(***::RefPtr<Safari: :SnapshotStore::DiskAccessMessage>&, bool (&)(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&), double) + 149
    4 com.apple.Safari.framework 0x00007fff879a6a85 Safari::SnapshotStore::diskAccessThreadBody() + 379
    5 com.apple.Safari.framework 0x00007fff879a723f Safari::SnapshotStore::diskAccessThreadCallback(void*) + 9
    6 libSystem.B.dylib 0x00007fff854c1fd6 _pthread_start + 331
    7 libSystem.B.dylib 0x00007fff854c1e89 thread_start + 13
    Thread 3 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000fff rbx: 0x00000001005c9540 rcx: 0x00000001003152f8 rdx: 0x00000000ffffffff
    rdi: 0x0000000100530150 rsi: 0x00000001007c0dd0 rbp: 0x00000001007c0cd0 rsp: 0x00000001007c0c90
    r8: 0x0000000100530100 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x00007fff822f6940
    r12: 0x0000000000000001 r13: 0x00000001005300f8 r14: 0x0000000100530000 r15: 0x00000001005d8000
    rip: 0x00007fff82e477ad rfl: 0x0000000000010206 cr2: 0x0000000000000018
    Binary Images:
    0x100000000 - 0x100000fff com.apple.Safari 5.1.2 (6534.52.7) <5BABE0D3-3AE2-90EF-B89B-32BE68862F48> /Applications/Safari.app/Contents/MacOS/Safari
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld
    0x7fff80003000 - 0x7fff80285fff com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff80286000 - 0x7fff803a5fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff803a6000 - 0x7fff80bb0fe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff80bb1000 - 0x7fff80f4efe7 com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff80f4f000 - 0x7fff80f66fff com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff8112c000 - 0x7fff811b8fef SecurityFoundation ??? (???) <8A74D45E-9FE9-DD58-42F5-C7474FFDD0C1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff811b9000 - 0x7fff81378fff com.apple.ImageIO.framework 3.0.5 (3.0.5) <B29E46EB-E042-E73F-4014-B8BCD3E5A484> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff81379000 - 0x7fff81536fe7 com.apple.WebKit2 6534.52 (6534.52.7) <EF04B551-3612-DA0D-B7F3-48781234DCCE> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x7fff81583000 - 0x7fff815d6ff7 com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff815d7000 - 0x7fff81618fff com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8161c000 - 0x7fff816d2ff7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
    0x7fff816d3000 - 0x7fff816ecfff com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff816f9000 - 0x7fff81720ff7 libJPEG.dylib ??? (???) <D57C9593-7CF3-637C-DC4E-E78C654528BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff81721000 - 0x7fff81762fef com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff81a34000 - 0x7fff81ab1fef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff81ab2000 - 0x7fff81ef5fef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff81f26000 - 0x7fff81f29ff7 libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff81fc8000 - 0x7fff81ff3ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
    0x7fff81ffb000 - 0x7fff8201cfff libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
    0x7fff82047000 - 0x7fff820ccff7 com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff82185000 - 0x7fff82185ff7 com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff82186000 - 0x7fff822c4fff com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff822c5000 - 0x7fff822d6ff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
    0x7fff822f3000 - 0x7fff823acfff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
    0x7fff823ad000 - 0x7fff823bafe7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff823bb000 - 0x7fff833edfef com.apple.WebCore 6534.52 (6534.52.11) <78740DDE-7B9C-92EC-9CF6-C8DD1815B609> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff833ee000 - 0x7fff8348efff com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff8348f000 - 0x7fff834dbfff libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
    0x7fff8353f000 - 0x7fff8361cfff com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff8377e000 - 0x7fff8377eff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff837cf000 - 0x7fff837defef com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff837df000 - 0x7fff838e3ff7 com.apple.PubSub 1.0.5 (65.28) <0C94CB22-B6B6-F37A-A4FD-A33BB2A29996> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff83deb000 - 0x7fff83df6ff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff83df7000 - 0x7fff83f0efef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
    0x7fff83f0f000 - 0x7fff83f52fef libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
    0x7fff8422d000 - 0x7fff842c7fff com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8431b000 - 0x7fff84320fff libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff84321000 - 0x7fff84349fff com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff8434a000 - 0x7fff84365ff7 com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff84366000 - 0x7fff843a9ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff843aa000 - 0x7fff843c0fe7 com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff84457000 - 0x7fff844a1ff7 com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff844e8000 - 0x7fff84531fef libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff84986000 - 0x7fff84a36fff edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff84a37000 - 0x7fff84a7fff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff84a80000 - 0x7fff84a86ff7 com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff84a87000 - 0x7fff84a8cff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff84a8d000 - 0x7fff84c04fe7 com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff84c3f000 - 0x7fff84c40fff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff84caa000 - 0x7fff84cb0ff7 IOSurface ??? (???) <6AF28EC1-BCC4-9F65-AF7D-ABE60B91072A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff84cb1000 - 0x7fff84d6efff com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff84d97000 - 0x7fff84d97ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff84d98000 - 0x7fff84d98ff7 com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff84d99000 - 0x7fff84e17ff7 com.apple.CoreText 151.12 (???) <5BE797B7-C903-B664-ADD9-7514B1A6EF9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff84e18000 - 0x7fff84e1ffff com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff84e20000 - 0x7fff84ee1fef com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff85175000 - 0x7fff853fffe7 com.apple.security 6.1.2 (55002) <FD0B5AD4-74DB-7ED8-90D3-6EC56FFA8557> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff85400000 - 0x7fff85447ff7 com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff85488000 - 0x7fff85649fef libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    0x7fff8564a000 - 0x7fff8566dfff com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8569e000 - 0x7fff85783fef com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff85784000 - 0x7fff85789fff libGIF.dylib ??? (???) <28EB1356-2807-589E-4613-47188DA9F0A5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff857d5000 - 0x7fff857e1fff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
    0x7fff85930000 - 0x7fff85932fff com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff85933000 - 0x7fff85989fff libTIFF.dylib ??? (???) <261A14BF-F52D-3A54-993F-07089FC7E931> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8598a000 - 0x7fff859d9ff7 com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff859da000 - 0x7fff859e5fff com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff859e6000 - 0x7fff859e8fff libRadiance.dylib ??? (???) <6F9CF2E2-8856-19AF-2F3B-31F70B47FAA3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff859ea000 - 0x7fff85abefe7 com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff85abf000 - 0x7fff85d4afef com.apple.JavaScriptCore 6534.52 (6534.52.7) <C8340CAE-B6AC-BCBB-24AB-A6B8B1276C23> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff85e4e000 - 0x7fff85edefff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff8611a000 - 0x7fff86199fe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8619a000 - 0x7fff8619dff7 com.apple.securityhi 4.0 (36638) <EABABBA8-AB59-599A-1884-0010C059DE62> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff861e0000 - 0x7fff86315fff com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8643b000 - 0x7fff8676ffef com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff86770000 - 0x7fff86bb7fef com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff86bb8000 - 0x7fff86c0dff7 com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff86ca7000 - 0x7fff86cbbfff libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff86cbc000 - 0x7fff86d26fe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff86d27000 - 0x7fff86d5aff7 libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff86d5b000 - 0x7fff87755ff7 com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff87756000 - 0x7fff87f87fe7 com.apple.Safari.framework 6534 (6534.52.7) <CE2D4B77-63EA-81C6-B04C-7E1F9D6C80BB> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7fff87f88000 - 0x7fff88146fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
    0x7fff881e3000 - 0x7fff88219ff7 com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff88283000 - 0x7fff882c1fe7 libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff882c2000 - 0x7fff882fdfff com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff88c92000 - 0x7fff88d0eff7 com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff88d0f000 - 0x7fff88d12fff com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff88d19000 - 0x7fff88dcefe7 com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff88dcf000 - 0x7fff88e91fe7 libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff88e92000 - 0x7fff88e92ff7 com.apple.Carbon 150 (152) <C0E61968-57F3-6EE1-8524-32A18955BAF0> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff88e93000 - 0x7fff88e97ff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff88e98000 - 0x7fff88eacff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff88ead000 - 0x7fff88ecefe7 libPng.dylib ??? (???) <35B8B684-D1F4-C33E-ECB1-F2D110ED9860> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff88ecf000 - 0x7fff88eefff7 com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff88f38000 - 0x7fff88f69fff libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff891d4000 - 0x7fff891e2ff7 libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
    0x7fff891e3000 - 0x7fff89208ff7 com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8921b000 - 0x7fff89221fff libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff89222000 - 0x7fff89282fe7 com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff89283000 - 0x7fff89295fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff89296000 - 0x7fff8929aff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8929b000 - 0x7fff893b5fff libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff893b6000 - 0x7fff893ffff7 com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff89402000 - 0x7fff89413fff SyndicationUI ??? (???) <D0B68148-DB2E-D613-B507-EA95311B5045> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff89414000 - 0x7fff8944efff libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
    0x7fff8944f000 - 0x7fff8944fff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff89450000 - 0x7fff895edfef com.apple.WebKit 6534.52 (6534.52.7) <CE3B2C17-67CD-E5DA-1580-B08B10A8FFBB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff8965e000 - 0x7fff8966dfff com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff89670000 - 0x7fff896adff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
    0x7fff896ae000 - 0x7fff896bdfff libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
    0x7fff896be000 - 0x7fff896c9fff com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff8975a000 - 0x7fff8975bff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff89774000 - 0x7fff8978afef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff897c9000 - 0x7fff897caff7 com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff899ba000 - 0x7fff899baff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff899c9000 - 0x7fff89cc7fff com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff89d07000 - 0x7fff8a403ff7 com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8a404000 - 0x7fff8a40aff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8a5ee000 - 0x7fff8a603ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib

    Roarior616 it appears that the additional language files have been removed from your installed applications.  Please use the uninstaller located in the Programs and Features control panel to remove the current installation and then reinstall.

Maybe you are looking for

  • ITunes sharing among iPhones with different Apple ID's one computer WITHOUT home sharing, shared folder, etc...

    I feel like I am losing my mind, here. A few things I want to clear up before you read my question: No, I am not new to Apple. Yes, I understand that Home Sharing works for any group of devices authrized with my Apple ID. Home Sharing is not my issue

  • Can't put movie into iDVD

    Hi, i was trying to add a video clip that is about 30 seconds long into my iDVD project. So I hit the + button and selected "add movie". A box appeared saying "add movie here". So i double clicked and on the right hand side in the Media> Movies box,

  • Y computer-----/keyboard is typing hyphens spontaneously and it's difficul-to -control.-

    Hi, When-ever I want to type, -----------hyphens keep appearing -and they ar-e difficult to co-ntrol.  ---------like this! ----------------------------- Has anyone seen -this problem? thanks Kerensa S-heen

  • Change report into ALV format

    Hi Experts I am new in ALV ...... How can I make this report in ALV Grid Format, please help to change it and revert me back if possible I need the top of page which should shows parameters also regards Piroz REPORT Z_ESLP_ZROLE LINE-SIZE  90 LINE-CO

  • 7920 cannot register with AP after firmware upgrade

    We have a customer using 7920 with Firmware 1.08. He tries to test the Beta firmware (cmterm_7920_3.3.02_05_005.bin) on some 7920. The upgrade finished correctly and after reconfiguration, 7920 register to the APS. On two devices, he got a problem: -