Dynamic logic expression

Hi Experts, 
Iu2019m trying to build a routine with dynamic logical expressions but it's now working...
Basically Iu2019m building a string with the expression, a and after the string it's completed Iu2019m calling a macro that consist in a if.
if expression eq true
return true value
but the value returned by the macro it's always false, even when the logical expression it's true...
i already tried the logical function BOOLC but apparently my version, ECC 6, doesnu2019t recognize it....
Below goes the code, if anyone could help me Iu2019ll be appreciated.
"Macro definition
DEFINE check_condition.
IF &1 EQ ABAP_TRUE.
    move 'X' to &2.
  endif.
END-OF-DEFINITION.
LOOP AT tab_regras."Rules
    CLEAR: str_cond, lv_result.
    LOOP AT dfies_tab WHERE fieldname CS 'ARGUMENTO'.
      CLEAR: lw_string, str_1, str_2, str_3.
      ASSIGN COMPONENT dfies_tab-fieldname OF STRUCTURE tab_regras TO <fs_field>.
      CHECK <fs_field> IS NOT INITIAL.
      SPLIT <fs_field> AT '/' INTO  str_1 str_2 str_3.
      ASSIGN (str_1) TO <fs_value1>.
"     ASSIGN (str_2) TO <fs_value2>.
"      ASSIGN (str_3) TO <fs_value3>.
      IF str_cond IS INITIAL..
        CONCATENATE <fs_value1> str_2 str_3 INTO str_cond SEPARATED BY space.
        CONTINUE.
      ENDIF.
      CONCATENATE str_cond 'and' <fs_value1> str_2 str_3 INTO str_cond SEPARATED BY space."string condition
    ENDLOOP.
    check_condition str_cond lv_result.
    CHECK lv_result EQ 'X'.
Thanks in advance,
Best Regards
João Martins

It would be helpful if you show us what is the example content of str_cond .
Anyhow your check looks like you want to compare some condition with value X which abap_true denotes i.e.
if field_1 = 10 and field_2 = 20 EQ 'X'. 
endif.
This doesn't make sense for me or maybe I am missing something which is hidden behid this str_cond . Your left hand side expression value must however be equal to right hand side value. So the conditon will only be true if
if 'X' = 'X'.
endif.
Regards
Marcin
PS: please note that in ABAP there is no real boolean value, so you can't have condition like in JAVA or C
if (true_condition)
//do something
you always have to compare two values (here abap_true which is X if fact).
Edited by: Marcin Pciak on May 24, 2011 3:59 PM

Similar Messages

  • Dynamic Logical Expressions in ABAP: IF (lt_cond)...

    is it possible to have a dynamically constructured logical expression?
    I have a condition I need to use in an IF, but I want to avoid hard-coding, so I dynamicallybuild it.
    for a simple example:
    CONCATENATE ITAB-f1
               'EQ'
               varValue
               INTO lt_cond SEPARATED BY SPACE.
    IF (lt_cond).
      WRITE:/ 'Success'.
    ENDIF.
    Is it possible to do this?
    NL

    I am trying to use the macro to check an IF (cond).
    cond is a dynamically constructed condition.
    The bold part of my code way below is my problem area.
    I'm having no trouble getting COND constructed. But I am having trouble between my macro and the processing as my error always tells me I'm calling my macro without 2 actual parameters. Or when I DEFINE my macro with &1 instead of &1 &2, I get 'incorrect logical expression'.
    I've read all the documentation I can find on this, but i still cannot figure out why my macro is not processing.
    Code is lengthy, but if you can, please help.
    I'm anticipating the output to be 'FAILURE' at this point. I just want the condition COND to be processed.
    data: tabfield(20) type c,
          orcheck type I,
          cond type string.
    DATA: BEGIN OF ITAB_NOTIDX OCCURS 0,
          FIELD LIKE ZDOLTARC02-SEARCHFLD,
          VALUE LIKE ZDOLTARC03-VALUE,
          STRUCTURE LIKE ZDOLTARC02-STRUCTURE,
          AOBJ LIKE ZDOLTARC02-A_OBJ,
          END OF ITAB_NOTIDX.
    DATA: BEGIN OF ITAB_AOBJ OCCURS 0,
          AOBJ LIKE ZDOLTARC02-A_OBJ,
          END OF ITAB_AOBJ.
    DATA: ITAB_AOBJF LIKE ITAB_AOBJ.
    DATA: ITAB_NOTIDXF LIKE ITAB_NOTIDX.
    DATA: varAOBJ LIKE ZDOLTARC02-A_OBJ.
    ITAB_NOTIDXF-FIELD = 'LIFNR'.
    ITAB_NOTIDXF-VALUE = '123'.
    ITAB_NOTIDXF-STRUCTURE = 'BKPF'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    ITAB_NOTIDXF-FIELD = 'LIFNR'.
    ITAB_NOTIDXF-VALUE = 'ABC'.
    ITAB_NOTIDXF-STRUCTURE = 'BKPF'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    ITAB_NOTIDXF-FIELD = 'LIFNR'.
    ITAB_NOTIDXF-VALUE = '001'.
    ITAB_NOTIDXF-STRUCTURE = 'BKPF'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    ITAB_NOTIDXF-FIELD = 'SAKNR'.
    ITAB_NOTIDXF-VALUE = '111'.
    ITAB_NOTIDXF-STRUCTURE = 'BSEG'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    ITAB_NOTIDXF-FIELD = 'SAKNR'.
    ITAB_NOTIDXF-VALUE = '222'.
    ITAB_NOTIDXF-STRUCTURE = 'BSEG'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    ITAB_NOTIDXF-FIELD = 'KUNNR'.
    ITAB_NOTIDXF-VALUE = 'CCC'.
    ITAB_NOTIDXF-STRUCTURE = 'BSEG'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    ITAB_NOTIDXF-FIELD = 'KUNNR'.
    ITAB_NOTIDXF-VALUE = 'DDD'.
    ITAB_NOTIDXF-STRUCTURE = 'BSEG'.
    ITAB_NOTIDXF-AOBJ = 'FI_DOCUMNT'.
    APPEND ITAB_NOTIDXF TO ITAB_NOTIDX.
    LOOP AT ITAB_NOTIDX.
      WRITE:/ ITAB_NOTIDX-FIELD, ITAB_NOTIDX-VALUE, ITAB_NOTIDX-STRUCTURE, ITAB_NOTIDX-AOBJ.
    ENDLOOP.
    DATA: VARFIELDNAME LIKE ZDOLTARC02-FIELD.
    CONCATENATE cond
               INTO Cond.
    SORT ITAB_NOTIDX BY AOBJ FIELD.
    varFieldName = Itab_NOTIDX-FIELD.
    ORCHECK = 0.
    ITAB_AOBJF = 'FI_DOCUMNT'.
    APPEND ITAB_AOBJF TO ITAB_AOBJ.
    LOOP AT ITAB_AOBJ.
       MOVE ITAB_AOBJ-AOBJ TO varAOBJ.
       WRITE:/ varAOBJ.
       LOOP AT ITAB_NOTIDX WHERE AOBJ EQ varAOBJ.
               WRITE:/ 'LOOP TEST'.
            IF ITAB_NOTIDX-FIELD EQ varFieldName.
                 WRITE:/ VARFIELDNAME.
                 IF ORCHECK <> 0.
                 CONCATENATE cond
                                'OR'
                                INTO cond SEPARATED BY SPACE.
                 ENDIF.
                 CONCATENATE ITAB_NOTIDX-STRUCTURE
                        ITAB_NOTIDX-FIELD
                        INTO tabfield.
                 CONCATENATE cond
                        tabfield
                        'EQ'
                        '''' ITAB_NOTIDX-value ''''
                        INTO cond SEPARATED BY SPACE.
                 ORCHECK = ORCHECK + 1.
            ELSE.
                MOVE ITAB_NOTIDX-FIELD TO varFieldName.
              WRITE:/ '2', VARFIELDNAME.
                CLEAR TABFIELD.
              ORCHECK = 0.
              CONCATENATE ITAB_NOTIDX-STRUCTURE
                    varFieldName
                    INTO TABFIELD.
                 CONCATENATE cond
                        'AND'
                        TABFIELD
                    'EQ'
                    '''' ITAB_NOTIDX-VALUE ''''
                        INTO cond SEPARATED BY SPACE.
                    ORCHECK = ORCHECK + 1.
            ENDIF.
       ENDLOOP.
    ENDLOOP.
    CONCATENATE COND
                INTO COND.
    write:/ COND. "constructed properly
    <b>DEFINE my_dynamic_check.
    if &1, &2.
      write:/ 'Success'.
    else.
      write:/ 'Failed'.
    endif.
    END-OF-DEFINITION.
    my_dynamic_check (cond).</b>

  • How to pass dynamic logical expression to function module

    Hi,
    I'm using FM META_READ_TABLE as below:
    As mentioned above im using META_READ_TABLE FM to get company codes from CSKS table of ECC. Below is the code im using:
       DATA:i_opt type STANDARD TABLE OF RFC_DB_OPT, i_fld type STANDARD TABLE OF RFC_DB_FLD,
           i_res type STANDARD TABLE OF TAB512.
    Constants:   c_expr(72) TYPE c VALUE 'KOSTL EQ COST_CTR', c_fld(5) TYPE c VALUE 'BUKRS'.
      w_opt-text = c_expr.
    w_fld-FIELDNAME = c_fld.
    append: w_opt to i_opt,
            w_fld to i_fld.
    data i_control type STANDARD TABLE OF BBP_CONTROL_RECORD.
    **&&--Get Co code from ECC (CSKS table)
    CALL FUNCTION 'META_READ_TABLE'
      EXPORTING
        QUERY_TABLE          = c_table
    *   DELIMITER            = ' '
    *   NO_DATA              = ' '
    *   ROWSKIPS             = '0'
    *   ROWCOUNT             = '0'
        LOGICAL_SYSTEM       = v1_logsys
      TABLES
        OPTIONS              = i_opt
        FIELDS               = i_fld
        DATA                 = i_res
        CONTROL_RECORD       = i_control.
    however it is giving me 'Communication Error' while executing this piece of code. I guess the problem here is with passing query to i_opt table. obviously the way im doing this is wrong and it has to be dynamic. Could anybody please give me idea how to execute fm with dynamic query i.e., 'KOSTL EQ COST_CTR' where COST_CTR is cost center and an importing parameter to this.please advise.
    Rgds

    The "communication error" would seem more likely to be a problem with an RFC call - does 'META_READ_TABLE" call another function in the remote system?
    We don't have that function module here (is it SRM?) but you should be able to construct your dynamic "where" something like this (p_kostl is the variable in this example):
      data:
        l_where     type text72.
      concatenate
        'KOSTL EQ_'
        p_kostl      "variable
        into l_where.
      translate l_where using '_ '.  "replace underscore with space
    Jonathan

  • How to create an ABAP Query with OR logical expression in the select-where

    Hi,
    In trying to create an ABAP query with parameters. So it will select data where fields are equal to the parameters entered. The default logical expression is SELECT.. WHERE... AND.. However I want to have an OR logical expression instead of AND.. how can I attain this??
    Please help me on this.. Points will be rewarded.
    Thanks a lot.
    Regards,
    Question Man

    Hi Bhupal, Shanthi, and Saipriya,
    Thanks for your replies. But that didn't answer my question.
    Bhupal,
    You cannot just replace AND with OR in an ABAP QUERY. ABAP QUERY is a self generated SAP code. You'll just declare the tables, input parameters and output fields to be displayed and it will create a SAP standard code. If you'll try to change the code and replace the AND with OR in the SAP standard code, the system will require you to enter access key/object key for that particular query.
    Shanthi,
    Yes, that is exactly what need to have. I need to retireve DATA whenever one of the conditions was satisfied.
    Saipriya,
    Like what I have said, this is a standard SAP code so we can't do your suggestion.
    I have already tried to insert a code in the ABAP query (there's a part there wherein you can have extra code) but that didn't work. Can anybody help me on this.
    Thanks a lot.
    Points will be rewarded.
    Regards,
    Question Man

  • Logical expression( = , =, , ) in read statement

    Hi All,
    Is it possible to use the logical expressions like (<= , >=, <, >) in the read statement?

    While you can only use "=" with the READ statement, you can use the READ statement to position the cursor at the first record you want and then use the LOOP with your operators to get only those records you want (assuming standard tables that have been correctly sorted). This can be very efficient.
    There have been many discussion about this in the forums. Please search and you'll see them.
    Rob

  • Logical expressions in Link editor

    Hi all,
    Is it possible to define logical expressions (using AND, OR) in the Link editor of BLS or are we left with only using the Conditional Action block? Thanks...

    Yes it is.
    For AND : <<Condition1>> <b>&&</b> <<Condition2>>
    For OR : <<Condition1>> <b>||</b> <<Condition2>>
    You can use the <b>double ampersand (&&)</b> for <b>AND</b> and <b>double pipe (||)</b> for <b>OR</b>

  • Help! Logic Express 8 does not work on my Mac Pro with OS 10.5.1

    Hello, I hope somebody around here is able to help me.
    I have got a new Mac Pro with one Quad core processor since yesterday and it works fine except for Logic Express 8 (version 8.0.1). Whenever I start Logic the program crashes as soon as "Core Audio initialisieren" is shown in the display. I have tried to reinstall the program, deleted it completely and installed it again. It is always the same.
    Has anyone else experienced this problem? What can I do about it? I am a musician and I really need Logic Express to run.

    Confused. 10.6 is DVD based. Only Lion and above are downloads.
    And best install is not to upgrade. Do a clean install  - on another drive.
    Corrupt partition tables or bad sectors or no room to adjust the partitions or the directory is corrupt.
    ERASE the drive if Repair Disk didn't work.

  • Loops in Logic Express

    First of all I best say that I am new to Logic Express and Garageband, in fact the Mac thing so forgive the basic nature of this post. I have had some funny goings on with my mac since a failed software install so I decided to rebuild everything including the OS. Having re-installed Garageband and Logic Express I find most of the loops are missing. Some are there but all drum loops and others have gone. I tried to look up options to see if there is a tick box to install them but nothing. If I look in library, the loop directory is also missing. Can anyone suggest anything?
    Thanks
    Tetleyted

    Thanks for the reply. took a look but the directory structure as follows: HD/Library/Audio/Apple Loops/User Loops (Apple doesn't exist. I have a feeling that garageband and Logic Express hasn't completed the install. I have tried to re-run it but the same thing happened - no loops. Any suggestions welcomed.

  • Some organs don't play in new Logic Express files after JamPacks installed

    After loading only the instruments from the Symphony Orchestra and World Music GarageBand Jam Packs, I lost the ability to hear most of the organs available in Logic Express and all of the organs available in GarageBand after inserting them into Logic Express tracks. These same organ sounds still play in any Logic Express file set up prior to the installation of the JamPacks and they continue to play in GarageBand. Can an uninstall/reinstall of Logic Express 7.2.3 be a fix for this or is there an easier way to return the lost instruments to Logic Express?
    1.83 GHz Intel Core Duo iMac   Mac OS X (10.4.8)   Midisport 4x4, iControl

    The loss of instrument sounds in Logic Express had nothing to do with the installation of GarageBand JamPacks. The midi channel setting in the Inspector box of the Arrange window in Logic Express needed to be set to channel 1 to get midi data from other than channel 1 to play some of the inserted CoreAudio instruments. I don't understand what's going on but now I'm able to get the instruments that would not play.

  • How to connect my Alesis to Logic Express Pro, running on an Intel Mac Mini

    Hi,
    would anyone possibly have an idea how to connect my Alesis Multimix 8 USB to Logic Express 7,2?
    The Alesis has a USB out. But I don't see anything in the L/E documentation on USB connections.
    I'm hopeful there's another way.
    Thanks very much.
    -peter

    LE documentation won't give instructions for use of 3rd party equipment, except possibly generically.
    Have you downloaded the latest drivers? If it is a USB item, perhaps you are meant to plug in the USB cable rather than wishing it was something else.

  • Logic Express wont open Because of mountain lion!

    recently upgraded to mountain lion, and noticed shortly after that logic express 9 will not open in any form.
    please help me get logic express running again!

    Hi
    You seem to have double posted?
    https://discussions.apple.com/message/21033857#21033857
    CCT

  • I am trying to connect Garritan Personal Symphony to Logic Express and Garageband. A dialog box pops up and asks for plugin Garritan-P. Where do I find it and what do I do with it. I can't locate this plugin doing searches on any of the porgrams.

    I am trying to connect Garritan Personal Symphony to Logic Express and Garageband. A dialog box pops up and asks for plugin Garritan-P. Where do I find it and what do I do with it. I can't locate this plugin doing searches on any of the porgrams.

    I'm not sure which version of Garritan Personal Orchestra you have or when you are getting a window pop-up, but check this link for starters:
    http://afjohnston.blogspot.com/2009/11/using-garritan-personal-orchestra-gpo.htm l

  • Logic Express won't start at all

    Howdy!
    I just installed the Snow Leopard and downloaded the updated to 10.6.2 right away and then continued installing iLife, iWork and Logic Express 9 - without installing the OS updates yet. After restarting I can't start neither Logic nor GarageBand. All i get is the "Application has suddenly stopped working" during the loading screen and that's it. Have i done sth wrong and is there sth i could do to fix this right this moment? Or is there sth major hassle going on?
    I've got an Intel Mac Book 2gHz.
    And here's the report:
    Process: Logic Express [166]
    Path: /Applications/Logic Express.app/Contents/MacOS/Logic Express
    Identifier: com.apple.logic.express
    Version: 9.0.0 (1660.12)
    Build Info: Logic-16601200~2
    Code Type: X86 (Native)
    Parent Process: launchd [88]
    Date/Time: 2010-01-09 19:53:55.777 +0200
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 7250 sec
    Crashes Since Last Report: 12
    Per-App Interval Since Last Report: 121 sec
    Per-App Crashes Since Last Report: 6
    Anonymous UUID: A208740D-F241-4458-BD08-E6BF31E8D407
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 9
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x9102c52e sem_wait$NOCANCEL$UNIX2003 + 10
    1 ...lodyneEssentialRewireDevice 0x47b3befc GNCondition::waitForSignal() + 32
    2 ...lodyneEssentialRewireDevice 0x47b42207 GNMessagePort::registerMessagePortWithName(GNString*, GNData* ()(GNMessagePort, GNData*), int, int, GNDictionary*) + 315
    3 ...lodyneEssentialRewireDevice 0x47b351a6 GNReWire2AudioDeviceHost::create() + 172
    4 ...lodyneEssentialRewireDevice 0x47b33327 RWDEFOpenDevice + 89
    5 ...opellerheads.rewire.library 0x47a8c84e 0x47a88000 + 18510
    6 ...opellerheads.rewire.library 0x47a8c9b8 0x47a88000 + 18872
    7 ...opellerheads.rewire.library 0x47a8f8e0 RWPUnregisterDeviceImp + 5438
    8 ...opellerheads.rewire.library 0x47a8d689 RWM2OpenDeviceImp + 57
    9 ...le.music.apps.MAAudioEngine 0x02ac4ce4 ReWireUpdateMIDIInfos() + 2772
    10 ...le.music.apps.MAAudioEngine 0x02aadb4f MD::Init(int, bool) + 2367
    11 ...le.music.apps.MAAudioEngine 0x02ab6fed GetCurrentCoreAudioDeviceNameFromUserDefaults(signed char) + 8749
    12 com.apple.logic.express 0x0008327b 0x1000 + 533115
    13 com.apple.logic.express 0x00084d71 0x1000 + 540017
    14 com.apple.logic.express 0x003a22e5 0x1000 + 3805925
    15 com.apple.logic.express 0x0017d22e 0x1000 + 1557038
    16 com.apple.logic.express 0x00180de5 0x1000 + 1572325
    17 com.apple.logic.express 0x005c9ec3 0x1000 + 6065859
    18 com.apple.Foundation 0x973971c7 nsnotecallback + 176
    19 com.apple.CoreFoundation 0x944b19a9 __CFXNotificationPost + 905
    20 com.apple.CoreFoundation 0x944b13da _CFXNotificationPostNotification + 186
    21 com.apple.Foundation 0x9738c094 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    22 com.apple.Foundation 0x97399471 -[NSNotificationCenter postNotificationName:object:] + 56
    23 com.apple.AppKit 0x9867873a -[NSApplication _postDidFinishNotification] + 125
    24 com.apple.AppKit 0x9867864a -[NSApplication _sendFinishLaunchingNotification] + 74
    25 com.apple.AppKit 0x987cf595 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 274
    26 com.apple.AppKit 0x987cf1b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    27 com.apple.Foundation 0x973cc404 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    28 com.apple.Foundation 0x973cc1c8 _NSAppleEventManagerGenericHandler + 228
    29 com.apple.AE 0x967a8f3a aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    30 com.apple.AE 0x967a8e39 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    31 com.apple.AE 0x967a8d46 aeProcessAppleEvent + 197
    32 com.apple.HIToolbox 0x968342a1 AEProcessAppleEvent + 50
    33 com.apple.AppKit 0x98648d02 _DPSNextEvent + 1420
    34 com.apple.AppKit 0x98648306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    35 com.apple.AppKit 0x9860a49f -[NSApplication run] + 821
    36 com.apple.prokit 0x01048a01 NSProApplicationMain + 326
    37 com.apple.logic.express 0x00003686 0x1000 + 9862
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x90fdc0ea kevent + 10
    1 libSystem.B.dylib 0x90fdc804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x90fdbcc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x90fdba68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x90fdb4f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x90fdb336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x90fdb182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x90fdb718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x90fdb336 start_wqthread + 30
    Thread 3:
    0 libSystem.B.dylib 0x90fd4856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x944d2ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x90fe2fbd pthreadstart + 345
    3 libSystem.B.dylib 0x90fe2e42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x90fe3806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x90fe34c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x90fe5158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.music.apps.MAFiles 0x029ec888 CheckNavServices + 54440
    4 com.apple.music.apps.MAFiles 0x029ec951 CheckNavServices + 54641
    5 libSystem.B.dylib 0x90fe2fbd pthreadstart + 345
    6 libSystem.B.dylib 0x90fe2e42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x90fe3806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x90fe34c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x90fe5158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.music.apps.MAFiles 0x029ec888 CheckNavServices + 54440
    4 com.apple.music.apps.MAFiles 0x029ec951 CheckNavServices + 54641
    5 libSystem.B.dylib 0x90fe2fbd pthreadstart + 345
    6 libSystem.B.dylib 0x90fe2e42 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x90fb593a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90fe3445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x91012028 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x92d38965 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x92d3b997 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x92d39294 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x92d38b2b HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x92d38a42 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x90fe2fbd pthreadstart + 345
    9 libSystem.B.dylib 0x90fe2e42 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x90fb593a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90fe3445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x91012028 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x92d38965 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x92d3b997 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x92d39294 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x92d38b2b HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x92d38a42 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x90fe2fbd pthreadstart + 345
    9 libSystem.B.dylib 0x90fe2e42 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x90fb5922 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x90fbb3e6 pthreadmutexlock + 490
    2 ...opellerheads.rewire.library 0x47aae70d RWPUnregisterDeviceImp + 131947
    3 ...opellerheads.rewire.library 0x47a92f68 RWPUnregisterDeviceImp + 19398
    4 ...opellerheads.rewire.library 0x47a937d4 RWPUnregisterDeviceImp + 21554
    5 ...opellerheads.rewire.library 0x47aaea5c RWPUnregisterDeviceImp + 132794
    6 libSystem.B.dylib 0x90fe2fbd pthreadstart + 345
    7 libSystem.B.dylib 0x90fe2e42 thread_start + 34
    Thread 9 Crashed:
    0 ??? 0000000000 0 + 0
    1 ...lodyneEssentialRewireDevice 0x47b5b6ab GNThreadHandler(void*) + 103
    2 libSystem.B.dylib 0x90fe2fbd pthreadstart + 345
    3 libSystem.B.dylib 0x90fe2e42 thread_start + 34
    Thread 9 crashed with X86 Thread State (32-bit):
    eax: 0x41b32c20 ebx: 0x47b41e40 ecx: 0x42400494 edx: 0x41b32be0
    edi: 0x42400490 esi: 0xb04bf000 ebp: 0xb04bef48 esp: 0xb04bef1c
    ss: 0x0000001f efl: 0x00010206 eip: 0x00000000 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0xafeff6 com.apple.logic.express 9.0.0 (1660.12) <67CB56FE-4027-D58F-3DBF-A0F564F11155> /Applications/Logic Express.app/Contents/MacOS/Logic Express
    0xd59000 - 0xd64fff com.apple.music.apps.MAUnitTest 9.0.0 (73.6) <22259358-AE5C-945B-6D62-6E34E5D950D0> /Applications/Logic Express.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0xd6c000 - 0xd86fe7 com.apple.music.apps.MAAudioUnitSupport 9.0.0 (201.7) <6D2A993E-779E-FB31-F90F-3A338966BC31> /Applications/Logic Express.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudio UnitSupport
    0xd95000 - 0xdc4ff7 +MAAssetSharing ??? (???) /Applications/Logic Express.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetShar ing
    0xdd6000 - 0xe55fdf com.apple.DotMacKit 21 (3.0.1L) /Applications/Logic Express.app/Contents/Frameworks/DotMacKit.framework/Versions/A/DotMacKit
    0xeb2000 - 0xf0efff com.apple.music.apps.MALoopManagement 9.0.0 (195.6) <9C9059FD-BE29-0A5E-6185-B2233AFFC61A> /Applications/Logic Express.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopMan agement
    0xf2b000 - 0xfe0fe7 libcrypto.0.9.7.dylib ??? (???) <4917E4F2-817F-5AC4-3FBE-54BC96360448> /usr/lib/libcrypto.0.9.7.dylib
    0x1026000 - 0x11d9feb com.apple.prokit 5.0.1 (906) <B5BA53AD-9CB2-8C6B-09D7-A71FEC4C2FEE> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1298000 - 0x1324fff com.apple.music.apps.MACore 9.0.0 (436.8) <DC688622-2EC3-0552-BB43-4F1696DA5236> /Applications/Logic Express.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x1360000 - 0x13acfff com.apple.audio.midi.CoreMIDI 1.7 (42) <670CB7F9-AA00-86F3-6623-E1335F7AEA83> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x13d1000 - 0x1413fe7 com.apple.music.apps.MAHarmony 9.0.0 (174.6) <5F47D7A3-0574-13E1-9CAF-EDF89733C4D6> /Applications/Logic Express.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x1427000 - 0x1828ff7 com.apple.music.apps.MAPlugInGUI 9.0.0 (396.8) <A487ACA5-94EF-4791-E7D4-8ED63F48E882> /Applications/Logic Express.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1ab0000 - 0x1b92fff com.apple.music.apps.OMF 9.0.0 (98.6) <82D9E964-5848-89EB-6F05-45EAA15CFAF6> /Applications/Logic Express.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1ba6000 - 0x216efe3 com.apple.music.apps.MADSP 9.0.0 (550.11) <835026EC-7FD3-D516-2D5D-4213509F2E15> /Applications/Logic Express.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x2858000 - 0x2879fff com.apple.music.apps.LogicFileBrowser 9.0.0 (201.6) <B3E20521-2E57-9C51-A2F7-BD8A908EC82F> /Applications/Logic Express.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFile Browser
    0x2889000 - 0x28fbfff com.apple.music.apps.LogicLoopBrowser 9.0.0 (190.6) <66261E15-D1F5-38E6-4695-A08B4D0333A6> /Applications/Logic Express.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoop Browser
    0x2922000 - 0x2943ffb com.apple.music.apps.MAApogeeSupport 9.0.0 (284.6) <A43886F9-C126-31F8-6913-006215E98823> /Applications/Logic Express.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSu pport
    0x294e000 - 0x2953fff com.apple.music.apps.MAResources 9.0.0 (202.6) <3EEFB4EE-C0D0-5608-1690-D97EE7E2C2AA> /Applications/Logic Express.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x2958000 - 0x2981fef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <C5992CBA-0496-9681-A7CA-A932F2BC1CB9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2992000 - 0x29a1fff com.apple.AERegistration 1.2 (77) <0C4C1300-9E3A-E2A1-4507-380C2544B223> /Applications/Logic Express.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistrat ion
    0x29b4000 - 0x29bbfff com.apple.AEProfiling 1.2 (22) <50FD5623-D2C1-8102-FD41-D8E745E08353> /Applications/Logic Express.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x29c3000 - 0x2a72feb com.apple.music.apps.MAFiles 9.0.0 (117.7) <DEB3851C-012E-1B3E-BBB8-7C9821D2FCDF> /Applications/Logic Express.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2a8b000 - 0x2af8fef com.apple.music.apps.MAAudioEngine 9.0.0 (127.9) <89A97108-13A6-A6F3-86BF-4067D9B1BD32> /Applications/Logic Express.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngin e
    0x2b3b000 - 0x2b45ff3 com.apple.music.apps.MAToolKit 9.0.0 (323.6) <8B657E8E-C862-5011-0EC6-D5F73BCFF3D8> /Applications/Logic Express.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2b4b000 - 0x2b69fef com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x2b78000 - 0x2bb8ff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x1ab44000 - 0x1ab72ff7 com.apple.prokit.SnowLeopardPanels 5.0.1 (906) <200EE10C-484D-A71C-ADFF-4DCC8411C31D> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x403fc000 - 0x40409ff7 com.apple.iokit.IOHIDLib 1.6.1 (1.6.1) <6402BAEB-0141-9AD9-54D0-E49203DAF1EC> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x40518000 - 0x4051cff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <C36F9194-6DB6-0AA8-4839-71191EEBAC65> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x40521000 - 0x40527ffb com.apple.audio.AppleHDAHALPlugIn 1.7.9 (1.7.9a4) <A686EC36-C3D5-131F-46D2-F174F5477C77> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x4052c000 - 0x4054affb +com.digidesign.digidesign.DigiCoreAudioPlugIn 7.1.1 (7.1.1f86) /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x40552000 - 0x40584fff +com.grame.JackRouter JackRouter (0.8.7) <0A3CF26F-4280-7D1D-6130-F290E6D9FDC3> /Library/Audio/Plug-Ins/HAL/JackRouter.plugin/Contents/MacOS/JackRouter
    0x405b3000 - 0x405dbff2 +Jackmp ??? (???) <47146C88-50C3-341A-9A33-C05548B96476> /Library/Frameworks/Jackmp.framework/Versions/A/Jackmp
    0x40600000 - 0x4061aff8 +com.usb-audio.hal ??? (1.4.9) /Library/Audio/Plug-Ins/HAL/usb-audio.com.plugin/Contents/MacOS/usb-audio.com
    0x411d7000 - 0x411dfff7 com.apple.proapps.mrcheckpro 1.4 (359) <353F1A07-BA95-60CD-D083-4537D209BB69> /Applications/Logic Express.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x414c8000 - 0x41639ff7 GLEngine ??? (???) <D336658A-F6DB-6D61-9CA6-04299E7D5420> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x4166a000 - 0x416aaff7 com.apple.driver.AppleIntelGMA950GLDriver 1.6.6 (6.0.6) <965B9C6A-2A0D-CDEA-D1D5-1074F0301A1A> /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x416b3000 - 0x416cfff7 GLRendererFloat ??? (???) <8FF7B576-512C-C2F8-4C0C-967FB3D9EEA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x41ad5000 - 0x41ad7ff7 com.apple.music.apps.common.resources 9.0.0 (269.6) <5ED5C53C-4EE7-3BB1-42C2-F9F8A457342B> /Applications/Logic Express.app/Contents/Resources/common.res/Contents/MacOS/common
    0x41adc000 - 0x41adeff7 com.apple.music.apps.efx.resources 9.0.0 (269.6) <CA047E40-1D9F-4FC0-447B-2435926EDD95> /Applications/Logic Express.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x41ae3000 - 0x41ae5ff7 com.apple.music.apps.egt.resources 9.0.0 (269.6) <8C852C25-5AB3-6110-3002-863FAC7DD041> /Applications/Logic Express.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x41aea000 - 0x41aecff7 com.apple.music.apps.emx.resources 9.0.0 (269.6) <9177FCE7-AA8D-D50A-5E07-A73BFAF1A303> /Applications/Logic Express.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x41af1000 - 0x41af3ff7 com.apple.music.apps.es1.resources 9.0.0 (269.6) <E4CDF9D6-A03A-CADF-A060-7A638BA9CD85> /Applications/Logic Express.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x41af8000 - 0x41afaff7 com.apple.music.apps.es2.resources 9.0.0 (269.6) <77D71604-32D7-D068-A06F-086A17377CC2> /Applications/Logic Express.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x423d8000 - 0x423daff7 com.apple.music.apps.evb3.resources 9.0.0 (269.6) <4FBC844F-915E-3137-D532-0CA378FDD8FC> /Applications/Logic Express.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x423df000 - 0x423e1ff7 com.apple.music.apps.evd6.resources 9.0.0 (269.6) <CABA89D0-266F-1839-8F92-98C25E4E031F> /Applications/Logic Express.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x423e6000 - 0x423e8ff7 com.apple.music.apps.evoc.resources 9.0.0 (269.6) <C9257521-EFE5-4AD7-0A24-B1FEEF856474> /Applications/Logic Express.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x423ed000 - 0x423efff7 com.apple.music.apps.evp88.resources 9.0.0 (269.6) <24594199-E9B2-686B-AC62-4D545CD14018> /Applications/Logic Express.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x423f4000 - 0x423f6ff7 com.apple.music.apps.exs24.resources 9.0.0 (269.6) <C3EDCD43-BC4E-4C86-A5DE-E3F3F5DF3D25> /Applications/Logic Express.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x42500000 - 0x42502fff com.apple.music.apps.guitaramp.resources 9.0.0 (269.6) <B5524840-C847-A2BB-BA5C-C8408B993806> /Applications/Logic Express.app/Contents/Resources/guitaramp.res/Contents/MacOS/guitaramp
    0x42507000 - 0x42509ff7 com.apple.music.apps.guitarcontrols.resources 9.0.0 (269.6) <738EEDEB-B471-502A-D718-7F5FE5B96831> /Applications/Logic Express.app/Contents/Resources/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x4250e000 - 0x42510fff com.apple.music.apps.mutapdel.resources 9.0.0 (269.6) <FF701F3F-5D9C-2DD2-4F72-0A9079E7AE39> /Applications/Logic Express.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0x42515000 - 0x42517fff com.apple.music.apps.pedalboard.resources 9.0.0 (269.6) <B0D0243F-0FFB-9E1D-05D6-94C67F09B2F8> /Applications/Logic Express.app/Contents/Resources/pedalboard.res/Contents/MacOS/pedalboard
    0x4251c000 - 0x4251efff com.apple.music.apps.revolver.resources 9.0.0 (269.6) <7154D20C-7769-E282-0A4B-A7E17407C91C> /Applications/Logic Express.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x47a88000 - 0x47ae7fe1 +se.propellerheads.rewire.library 1.7 (1.7) /Users/niko/Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x47b06000 - 0x47b21ff7 com.apple.OpenTransport 10.6.0 (10.6.0) <ECA6FEC6-5ECD-51BA-162F-CFC43899196A> /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x47b32000 - 0x47d5ffdb +com.celemony.MelodyneEssentialRewireDevice 1.8.0.5 (1.8.0.5) <9E08C45B-8E62-48ED-9E53-2E3FD7C4CAB1> /Library/Application Support/Propellerhead Software/ReWire/MelodyneEssentialReWireDevice.plugin/Contents/MacOS/MelodyneEss entialRewireDevice
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x9009ffe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x900a0000 - 0x900e4fe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90103000 - 0x90143ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90144000 - 0x90194ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90195000 - 0x901b4fe3 libexpat.1.dylib ??? (???) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x901b5000 - 0x901c9ffb 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
    0x901ca000 - 0x901cdffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90a7b000 - 0x90bbafe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90bbb000 - 0x90bd7fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90bf1000 - 0x90bf1ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90bf2000 - 0x90c42ff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x90c43000 - 0x90c77ff7 libssl.0.9.8.dylib ??? (???) <F3402001-EC8D-58E5-4A23-02A979C9E857> /usr/lib/libssl.0.9.8.dylib
    0x90cbf000 - 0x90cbfff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90fb5000 - 0x91159feb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x9115a000 - 0x9119cfe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x911a5000 - 0x911cdff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x911ce000 - 0x911dbff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x911dc000 - 0x911e0ff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91220000 - 0x91297fe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91319000 - 0x9152bfff com.apple.RawCamera.bundle 2.2.1 (477) <10937A0D-0856-1B69-AE27-43BC15B7DD21> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x91537000 - 0x9156fff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91570000 - 0x9188ffe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x918d9000 - 0x91918ff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x91919000 - 0x9193bfef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9193c000 - 0x91975fe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91976000 - 0x9198eff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9198f000 - 0x91a2cfe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91a2e000 - 0x91ab0ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91ab1000 - 0x91b42fe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91b43000 - 0x91b43ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91b44000 - 0x91c36ff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x91c37000 - 0x91c3dff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91cad000 - 0x91ddbfe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91ddc000 - 0x91f1dff7 com.apple.syncservices 5.1 (578) <88BAF2E9-3A67-EEAB-2EBF-4F7D1D28B39E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x91f1e000 - 0x91f67fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91f97000 - 0x91fb7fe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91fb8000 - 0x91ffbff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91ffc000 - 0x9202dff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9210a000 - 0x921b2ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x921ec000 - 0x923ecfeb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x923ed000 - 0x92401fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x92402000 - 0x92448ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x92449000 - 0x92453ff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92454000 - 0x92464ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x92465000 - 0x9287bff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9287c000 - 0x928dcfe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x928dd000 - 0x92921ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9293d000 - 0x929aeff7 com.apple.iLifeMediaBrowser 2.1.3 (346.0.3) <C862CAE1-1906-CD45-7D66-F8798483BAA5> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x929d6000 - 0x929d8fe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x929f2000 - 0x92a9ffe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x92aa0000 - 0x92aa1ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x92b1e000 - 0x92b1eff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92c14000 - 0x92c55ff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92c5e000 - 0x92d11fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x92d12000 - 0x92d17ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x92d18000 - 0x92d92fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92d9e000 - 0x92da1fe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x92ee5000 - 0x930c0ff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x930c1000 - 0x9319eff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9319f000 - 0x9324dff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9324e000 - 0x9325eff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93267000 - 0x93274ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x93275000 - 0x932acff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x932ad000 - 0x93a904b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93a91000 - 0x93a92ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x93a93000 - 0x93ad0ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x93ad1000 - 0x93cb3fff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93cb4000 - 0x93d7efef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93ea4000 - 0x93eaefe7 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
    0x93eaf000 - 0x93eebfff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x93eec000 - 0x93f27fe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x93f30000 - 0x93f39ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x93f3a000 - 0x94030ff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94031000 - 0x940eafe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x940eb000 - 0x940fcff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x940fd000 - 0x94328ff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94329000 - 0x94393fe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x94394000 - 0x9439afff 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
    0x9439b000 - 0x943a6ff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x943a7000 - 0x943b4ff7 libbz2.1.0.dylib ??? (???) <495732E1-2AC4-44FC-E633-4CBCC503B924> /usr/lib/libbz2.1.0.dylib
    0x943d7000 - 0x94445ff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x94457000 - 0x945cefef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x945cf000 - 0x945e4fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95574000 - 0x955c5ff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x955c6000 - 0x958bffef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x958c0000 - 0x95a7cfef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95b94000 - 0x95b94ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x95b95000 - 0x95d32fef com.apple.JavaScriptCore 6531.21 (6531.21.9) <C3642BB4-3D06-B371-B4CD-0DF5DA646673> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95d33000 - 0x95d3dffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95d3e000 - 0x95d7cff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x95d7d000 - 0x95de1ffb 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
    0x95de2000 - 0x95de3ff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95ec9000 - 0x95eedff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95eee000 - 0x95f0cff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95f0d000 - 0x9608ffe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x96090000 - 0x960eaff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x960eb000 - 0x960edff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x960ee000 - 0x960eeff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x960ef000 - 0x961f0fe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x961f1000 - 0x961f5ff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x961f6000 - 0x961f9ff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x9621c000 - 0x9621cff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9621d000 - 0x9629dfeb 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
    0x9629e000 - 0x9630dff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9630e000 - 0x96366fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9636c000 - 0x9646efef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x9646f000 - 0x96549ff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x966b8000 - 0x96750fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96798000 - 0x9679ffff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x967a0000 - 0x967a4ff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x967a5000 - 0x967d8ff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x967f8000 - 0x96b1bfef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96b1c000 - 0x96b37ff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96b38000 - 0x96b68ff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x96b69000 - 0x96b76ff7 com.apple.AppleFSCompression 1.0 (1.0) <DEF0B7B0-993B-F088-8F73-4318C3CA1F64> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x96b77000 - 0x96c48fe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x96c49000 - 0x96c4cff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x96c4d000 - 0x96c82ff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96c89000 - 0x96d64ff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x96d65000 - 0x96dd5ff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x96dd6000 - 0x96dd6ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x96dd9000 - 0x96e26feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x96e27000 - 0x96e61ffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x96e62000 - 0x97297ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x972ab000 - 0x972abff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x972e4000 - 0x9730afff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97381000 - 0x975f1ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x975f2000 - 0x97959ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x97a0a000 - 0x97a16ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x97a17000 - 0x97a67fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x97a68000 - 0x97a88fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x97a94000 - 0x97b0dff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97b0e000 - 0x97bb5fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x97bb6000 - 0x97c0cff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x97dcf000 - 0x97efbfe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x97efc000 - 0x97f23ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x98025000 - 0x984d3fe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x984fa000 - 0x9850cff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9857c000 - 0x9858afe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x9858b000 - 0x985fffef com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x98600000 - 0x98edeff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x98edf000 - 0x98fecff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x990f5000 - 0x990f7ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x990f8000 - 0x99152fe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x99153000 - 0x99202ff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x99203000 - 0x99465ff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x99466000 - 0x9949bff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: MacBook2,1, BootROM MB21.00A5.B07, 2 processors, Intel Core 2 Duo, 2 GHz, 2 GB, SMC 1.13f3
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplaysintegratedvram
    Memory Module: global_name
    AirPort: AirPort Extreme, Atheros 5416: 2.0.19.8
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK1234GSX, 111,79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857D
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x021b, 0x1d200000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x7d100000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8240, 0x5d200000

    Didn't help:( I removed the "Propellerhead Software" folder (as it only contained stuff that i've never used) entirely.
    When i had Tiger, Garageband worked perfectly, but it seems all the trouble began after installing Snow Leopard...
    Here's the latest crash log:
    Process: Logic Express [200]
    Path: /Applications/Logic Express.app/Contents/MacOS/Logic Express
    Identifier: com.apple.logic.express
    Version: 9.0.1 (1664.13)
    Build Info: Logic-16641300~1
    Code Type: X86 (Native)
    Parent Process: launchd [86]
    Date/Time: 2010-01-10 13:53:37.463 +0200
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 12022 sec
    Crashes Since Last Report: 22
    Per-App Interval Since Last Report: 77 sec
    Per-App Crashes Since Last Report: 7
    Anonymous UUID: A208740D-F241-4458-BD08-E6BF31E8D407
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 9
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x90aba52e sem_wait$NOCANCEL$UNIX2003 + 10
    1 ...lodyneEssentialRewireDevice 0x478a1efc GNCondition::waitForSignal() + 32
    2 ...lodyneEssentialRewireDevice 0x478a8207 GNMessagePort::registerMessagePortWithName(GNString*, GNData* ()(GNMessagePort, GNData*), int, int, GNDictionary*) + 315
    3 ...lodyneEssentialRewireDevice 0x4789b1a6 GNReWire2AudioDeviceHost::create() + 172
    4 ...lodyneEssentialRewireDevice 0x47899327 RWDEFOpenDevice + 89
    5 ...opellerheads.rewire.library 0x477f284e 0x477ee000 + 18510
    6 ...opellerheads.rewire.library 0x477f29b8 0x477ee000 + 18872
    7 ...opellerheads.rewire.library 0x477f58e0 RWPUnregisterDeviceImp + 5438
    8 ...opellerheads.rewire.library 0x477f3689 RWM2OpenDeviceImp + 57
    9 ...le.music.apps.MAAudioEngine 0x029cfd84 ReWireUpdateMIDIInfos() + 2820
    10 ...le.music.apps.MAAudioEngine 0x029b7fff MD::Init(int, bool) + 2367
    11 ...le.music.apps.MAAudioEngine 0x029c1832 GetCurrentCoreAudioDeviceNameFromUserDefaults(signed char) + 9298
    12 com.apple.logic.express 0x000857bb 0x1000 + 542651
    13 com.apple.logic.express 0x00087341 0x1000 + 549697
    14 com.apple.logic.express 0x003ab015 0x1000 + 3842069
    15 com.apple.logic.express 0x0017f64e 0x1000 + 1566286
    16 com.apple.logic.express 0x00183535 0x1000 + 1582389
    17 com.apple.logic.express 0x005cf5e3 0x1000 + 6088163
    18 com.apple.Foundation 0x9192c1c7 nsnotecallback + 176
    19 com.apple.CoreFoundation 0x904459a9 __CFXNotificationPost + 905
    20 com.apple.CoreFoundation 0x904453da _CFXNotificationPostNotification + 186
    21 com.apple.Foundation 0x91921094 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    22 com.apple.Foundation 0x9192e471 -[NSNotificationCenter postNotificationName:object:] + 56
    23 com.apple.AppKit 0x9403d73a -[NSApplication _postDidFinishNotification] + 125
    24 com.apple.AppKit 0x9403d64a -[NSApplication _sendFinishLaunchingNotification] + 74
    25 com.apple.AppKit 0x94194595 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 274
    26 com.apple.AppKit 0x941941b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    27 com.apple.Foundation 0x91961404 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    28 com.apple.Foundation 0x919611c8 _NSAppleEventManagerGenericHandler + 228
    29 com.apple.AE 0x964eaf3a aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    30 com.apple.AE 0x964eae39 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    31 com.apple.AE 0x964ead46 aeProcessAppleEvent + 197
    32 com.apple.HIToolbox 0x9840a2a1 AEProcessAppleEvent + 50
    33 com.apple.AppKit 0x9400dd02 _DPSNextEvent + 1420
    34 com.apple.AppKit 0x9400d306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    35 com.apple.AppKit 0x93fcf49f -[NSApplication run] + 821
    36 com.apple.prokit 0x00edda01 NSProApplicationMain + 326
    37 com.apple.logic.express 0x00003846 0x1000 + 10310
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x90a6a0ea kevent + 10
    1 libSystem.B.dylib 0x90a6a804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x90a69cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x90a69a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x90a694f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x90a69336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x90a69182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x90a69718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x90a69336 start_wqthread + 30
    Thread 3:
    0 libSystem.B.dylib 0x90a62856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x90466ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x90a70fbd pthreadstart + 345
    3 libSystem.B.dylib 0x90a70e42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x90a71806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x90a714c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x90a73158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.music.apps.MAFiles 0x028f6808 ResolveFile + 55784
    4 com.apple.music.apps.MAFiles 0x028f68d1 ResolveFile + 55985
    5 libSystem.B.dylib 0x90a70fbd pthreadstart + 345
    6 libSystem.B.dylib 0x90a70e42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x90a71806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x90a714c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x90a73158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.music.apps.MAFiles 0x028f6808 ResolveFile + 55784
    4 com.apple.music.apps.MAFiles 0x028f68d1 ResolveFile + 55985
    5 libSystem.B.dylib 0x90a70fbd pthreadstart + 345
    6 libSystem.B.dylib 0x90a70e42 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x90a4393a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90a71445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90aa0028 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x91f96965 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x91f99997 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x91f97294 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x91f96b2b HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x91f96a42 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x90a70fbd pthreadstart + 345
    9 libSystem.B.dylib 0x90a70e42 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x90a4393a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90a71445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x90aa0028 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x91f96965 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x91f99997 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x91f97294 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x91f96b2b HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x91f96a42 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x90a70fbd pthreadstart + 345
    9 libSystem.B.dylib 0x90a70e42 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x90a43922 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x90a493e6 pthreadmutexlock + 490
    2 ...opellerheads.rewire.library 0x4781470d RWPUnregisterDeviceImp + 131947
    3 ...opellerheads.rewire.library 0x477f8f68 RWPUnregisterDeviceImp + 19398
    4 ...opellerheads.rewire.library 0x477f97d4 RWPUnregisterDeviceImp + 21554
    5 ...opellerheads.rewire.library 0x47814a5c RWPUnregisterDeviceImp + 132794
    6 libSystem.B.dylib 0x90a70fbd pthreadstart + 345
    7 libSystem.B.dylib 0x90a70e42 thread_start + 34
    Thread 9 Crashed:
    0 ??? 0000000000 0 + 0
    1 ...lodyneEssentialRewireDevice 0x478c16ab GNThreadHandler(void*) + 103
    2 libSystem.B.dylib 0x90a70fbd pthreadstart + 345
    3 libSystem.B.dylib 0x90a70e42 thread_start + 34
    Thread 9 crashed with X86 Thread State (32-bit):
    eax: 0x427e13b0 ebx: 0x478a7e40 ecx: 0x02d418f4 edx: 0x427e11f0
    edi: 0x02d418f0 esi: 0xb04bf000 ebp: 0xb04bef48 esp: 0xb04bef1c
    ss: 0x0000001f efl: 0x00010206 eip: 0x00000000 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0xb50ff6 com.apple.logic.express 9.0.1 (1664.13) <6F594E3D-D030-BB4F-3A11-4277FA5C7F14> /Applications/Logic Express.app/Contents/MacOS/Logic Express
    0xdc3000 - 0xdcefff com.apple.music.apps.MAUnitTest 9.0.1 (75.2) <99E7B611-8361-63A0-C114-16557CE3DB85> /Applications/Logic Express.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0xdd6000 - 0xdf1fe7 com.apple.music.apps.MAAudioUnitSupport 9.0.1 (204.5) <0F7D5B64-16B0-35A2-711B-B0419A8C906E> /Applications/Logic Express.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudio UnitSupport
    0xe00000 - 0xe30fff +MAAssetSharing ??? (???) /Applications/Logic Express.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetShar ing
    0xe42000 - 0xe9efff com.apple.music.apps.MALoopManagement 9.0.1 (197.2) <291CBE21-11E6-0025-B994-05D2CB42AA9F> /Applications/Logic Express.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopMan agement
    0xebb000 - 0x106efeb com.apple.prokit 5.0.1 (906) <B5BA53AD-9CB2-8C6B-09D7-A71FEC4C2FEE> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x112d000 - 0x11bbfeb com.apple.music.apps.MACore 9.0.1 (440.4) <C64D01B2-C301-2389-359F-954C41018F09> /Applications/Logic Express.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x11f8000 - 0x1244fff com.apple.audio.midi.CoreMIDI 1.7 (42) <670CB7F9-AA00-86F3-6623-E1335F7AEA83> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1269000 - 0x12abfe7 com.apple.music.apps.MAHarmony 9.0.1 (176.2) <427AF3A8-691B-2D4C-A699-75A22FC34EE4> /Applications/Logic Express.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x12bf000 - 0x16cbffb com.apple.music.apps.MAPlugInGUI 9.0.1 (399.4) <714D5231-F77B-E15C-B95E-75FA681A0E8E> /Applications/Logic Express.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1957000 - 0x1a39fff com.apple.music.apps.OMF 9.0.1 (100.2) <CDAB3B9A-4DB2-1613-96E5-61C0A081F3AE> /Applications/Logic Express.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1a4d000 - 0x205dff5 com.apple.music.apps.MADSP 9.0.1 (554.7) <5891FD33-56B6-5A7E-CBA8-E197DC35DA9E> /Applications/Logic Express.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x275b000 - 0x277bff7 com.apple.music.apps.LogicFileBrowser 9.0.1 (204.2) <9DA54F4C-4FA8-950A-4DE8-D6EAC4E8022A> /Applications/Logic Express.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFile Browser
    0x278b000 - 0x2803fff com.apple.music.apps.LogicLoopBrowser 9.0.1 (193.2) <B1BC94E9-CE76-E293-7D7B-3FC5B6E07C25> /Applications/Logic Express.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoop Browser
    0x282c000 - 0x284dff3 com.apple.music.apps.MAApogeeSupport 9.0.1 (292.2) <241878DF-6077-856C-D8C5-4F1BADD8CBB7> /Applications/Logic Express.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSu pport
    0x2858000 - 0x285dfff com.apple.music.apps.MAResources 9.0.1 (204.2) <9D284412-2F03-A42F-CB44-8BFB30F1CC0B> /Applications/Logic Express.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x2862000 - 0x288bfef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <C5992CBA-0496-9681-A7CA-A932F2BC1CB9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x289c000 - 0x28abfff com.apple.AERegistration 1.2 (77) <9E328A00-EE04-F5D1-0564-C0BD1C477F03> /Applications/Logic Express.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistrat ion
    0x28be000 - 0x28c5fff com.apple.AEProfiling 1.2 (22) <CC396984-C1A1-0215-E4E6-920570C49552> /Applications/Logic Express.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x28cd000 - 0x297cfeb com.apple.music.apps.MAFiles 9.0.1 (119.2) <C4D90525-6B1E-C521-FB1F-2BAFF4B61883> /Applications/Logic Express.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2995000 - 0x2a03fff com.apple.music.apps.MAAudioEngine 9.0.1 (131.6) <00F11F0F-A276-C2EE-4BF8-D538C186AAB7> /Applications/Logic Express.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngin e
    0x2a47000 - 0x2a50fff com.apple.music.apps.MAToolKit 9.0.1 (327.2) <8B69837B-28EF-742D-1D43-8420DF772052> /Applications/Logic Express.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2a56000 - 0x2a74fef com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x2a83000 - 0x2b1fffc com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Express.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2b7c000 - 0x2c31fe7 libcrypto.0.9.7.dylib ??? (???) <4917E4F2-817F-5AC4-3FBE-54BC96360448> /usr/lib/libcrypto.0.9.7.dylib
    0x2c77000 - 0x2cb7ff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x1ac88000 - 0x1acb6ff7 com.apple.prokit.SnowLeopardPanels 5.0.1 (906) <200EE10C-484D-A71C-ADFF-4DCC8411C31D> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x40563000 - 0x40570ff7 com.apple.iokit.IOHIDLib 1.6.1 (1.6.1) <6402BAEB-0141-9AD9-54D0-E49203DAF1EC> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x4067b000 - 0x4067fff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <C36F9194-6DB6-0AA8-4839-71191EEBAC65> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x40684000 - 0x4068affb com.apple.audio.AppleHDAHALPlugIn 1.7.9 (1.7.9a4) <A686EC36-C3D5-131F-46D2-F174F5477C77> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x4068f000 - 0x406adffb +com.digidesign.digidesign.DigiCoreAudioPlugIn 7.1.1 (7.1.1f86) /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x406b5000 - 0x406e7fff +com.grame.JackRouter JackRouter (0.8.7) <0A3CF26F-4280-7D1D-6130-F290E6D9FDC3> /Library/Audio/Plug-Ins/HAL/JackRouter.plugin/Contents/MacOS/JackRouter
    0x40716000 - 0x4073eff2 +Jackmp ??? (???) <47146C88-50C3-341A-9A33-C05548B96476> /Library/Frameworks/Jackmp.framework/Versions/A/Jackmp
    0x40761000 - 0x4077bff8 +com.usb-audio.hal ??? (1.4.9) /Library/Audio/Plug-Ins/HAL/usb-audio.com.plugin/Contents/MacOS/usb-audio.com
    0x41340000 - 0x41348ff7 com.apple.proapps.mrcheckpro 1.4 (361) /Applications/Logic Express.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x415d7000 - 0x41748ff7 GLEngine ??? (???) <D336658A-F6DB-6D61-9CA6-04299E7D5420> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x41779000 - 0x417b9ff7 com.apple.driver.AppleIntelGMA950GLDriver 1.6.6 (6.0.6) <965B9C6A-2A0D-CDEA-D1D5-1074F0301A1A> /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x417c2000 - 0x417deff7 GLRendererFloat ??? (???) <8FF7B576-512C-C2F8-4C0C-967FB3D9EEA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x41be5000 - 0x41be7ff7 com.apple.music.apps.common.resources 9.0.1 (272.2) <5C48863F-7BFF-1251-EBA6-76C9C04A6014> /Applications/Logic Express.app/Contents/Resources/common.res/Contents/MacOS/common
    0x41bec000 - 0x41beeff7 com.apple.music.apps.efx.resources 9.0.1 (272.2) <5B9CE675-34D0-6EA3-5BCA-9AF9987C327D> /Applications/Logic Express.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x41bf3000 - 0x41bf5ff7 com.apple.music.apps.egt.resources 9.0.1 (272.2) <72850210-3B5A-FD2B-F33D-189868FC25C8> /Applications/Logic Express.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x424d8000 - 0x424daff7 com.apple.music.apps.emx.resources 9.0.1 (272.2) <5C9C3EE9-36D5-C4EE-B0CF-D51D19F51D21> /Applications/Logic Express.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x424df000 - 0x424e1ff7 com.apple.music.apps.es1.resources 9.0.1 (272.2) <978A6B5A-CDA0-41B6-4452-08B6B0F80439> /Applications/Logic Express.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x424e6000 - 0x424e8ff7 com.apple.music.apps.es2.resources 9.0.1 (272.2) <E78F47CF-EB5F-7BAA-FA8A-219DEAF19C36> /Applications/Logic Express.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x424ed000 - 0x424efff7 com.apple.music.apps.evb3.resources 9.0.1 (272.2) <ECA5B631-B0FF-116E-CB3A-C7DB5326C301> /Applications/Logic Express.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x424f4000 - 0x424f6ff7 com.apple.music.apps.evd6.resources 9.0.1 (272.2) <8AC0DB32-946B-3527-7D34-8AA3CF499A62> /Applications/Logic Express.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x424fb000 - 0x424fdff7 com.apple.music.apps.evoc.resources 9.0.1 (272.2) <284E5FA7-B6D3-8899-F2CA-8CF18AF58E90> /Applications/Logic Express.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x42502000 - 0x42504ff7 com.apple.music.apps.evp88.resources 9.0.1 (272.2) <FBF7C039-3F2D-4BCC-5025-3924BD7AED4B> /Applications/Logic Express.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x42509000 - 0x4250bff7 com.apple.music.apps.exs24.resources 9.0.1 (272.2) <6289D1C2-E268-30C6-1314-E3F965DAABFB> /Applications/Logic Express.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x42510000 - 0x42512fff com.apple.music.apps.guitaramp.resources 9.0.1 (272.2) <BB97F128-ADB5-6787-9499-B4DBE1F68ADF> /Applications/Logic Express.app/Contents/Resources/guitaramp.res/Contents/MacOS/guitaramp
    0x42517000 - 0x42519ff7 com.apple.music.apps.guitarcontrols.resources 9.0.1 (272.2) <4404421F-90D3-09EB-BF3B-09FE9712C68F> /Applications/Logic Express.app/Contents/Resources/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x4251e000 - 0x42520fff com.apple.music.apps.mutapdel.resources 9.0.1 (272.2) <8A4F9CE4-35AC-371E-4D97-DC89E558A746> /Applications/Logic Express.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0x42525000 - 0x42527fff com.apple.music.apps.pedalboard.resources 9.0.1 (272.2) <A6D97501-9350-28BE-AB7C-73157A1F1177> /Applications/Logic Express.app/Contents/Resources/pedalboard.res/Contents/MacOS/pedalboard
    0x4252c000 - 0x4252efff com.apple.music.apps.revolver.resources 9.0.1 (272.2) <68A55D00-A2C9-3328-E103-15212921391B> /Applications/Logic Express.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x477ee000 - 0x4784dfe1 +se.propellerheads.rewire.library 1.7 (1.7) /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x4786c000 - 0x47887ff7 com.apple.OpenTransport 10.6.0 (10.6.0) <ECA6FEC6-5ECD-51BA-162F-CFC43899196A> /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x47898000 - 0x47ac5fdb +com.celemony.MelodyneEssentialRewireDevice 1.8.0.5 (1.8.0.5) <9E08C45B-8E62-48ED-9E53-2E3FD7C4CAB1> /Library/Application Support/Propellerhead Software/ReWire/MelodyneEssentialReWireDevice.plugin/Contents/MacOS/MelodyneEss entialRewireDevice
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x90038ff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0x9005b000 - 0x900cffef com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x9014f000 - 0x90150ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90151000 - 0x9021bfef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9021c000 - 0x9021dff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9021e000 - 0x9024fff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x90250000 - 0x902beff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x902bf000 - 0x902bfff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x902d3000 - 0x902d4ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x902d5000 - 0x9030dff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9030e000 - 0x90372ffb 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
    0x90373000 - 0x903cdfe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x903ce000 - 0x903eafe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x903eb000 - 0x90562fef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90563000 - 0x90612ff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90613000 - 0x90632fe3 libexpat.1.dylib ??? (???) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x90633000 - 0x90710ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90711000 - 0x90780ff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90781000 - 0x90829ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9082a000 - 0x90850fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x908aa000 - 0x908b7ff7 libbz2.1.0.dylib ??? (???) <495732E1-2AC4-44FC-E633-4CBCC503B924> /usr/lib/libbz2.1.0.dylib
    0x908cc000 - 0x908cffe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9097f000 - 0x909e9fe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x909ea000 - 0x90a3afe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90a3b000 - 0x90a42fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90a43000 - 0x90be7feb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x90be8000 - 0x90bf8ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x90c2a000 - 0x90d2cfef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x90d2d000 - 0x90dadfeb 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
    0x90fbe000 - 0x90fc0ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90fc9000 - 0x913dfff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x913e0000 - 0x91407ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x914ed000 - 0x9166ffe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x91670000 - 0x91673ff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91674000 - 0x91676ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91677000 - 0x91684ff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91685000 - 0x91685ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9169c000 - 0x918feff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x918ff000 - 0x91903ff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x91904000 - 0x9190efe7 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
    0x91916000 - 0x91b86ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91c37000 - 0x91c7aff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91c7b000 - 0x91cc1ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x91cc2000 - 0x91d53fe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91d54000 - 0x91d54ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91e68000 - 0x91f75ff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x91f76000 - 0x91ff0fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91ff1000 - 0x9249ffe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x924a0000 - 0x9257bff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x92665000 - 0x9270cfe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9270d000 - 0x927ffff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x92800000 - 0x9280bff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92880000 - 0x928f7fe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92911000 - 0x92926fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92927000 - 0x929dafff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x929db000 - 0x929e7ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x929e8000 - 0x92a39ff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92a65000 - 0x92ba4fe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x92cae000 - 0x92cd2ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92cd3000 - 0x92d43ff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92d8d000 - 0x92d9aff7 com.apple.AppleFSCompression 1.0 (1.0) <DEF0B7B0-993B-F088-8F73-4318C3CA1F64> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x92d9b000 - 0x92dbbfe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x92dbc000 - 0x92df7fe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x93034000 - 0x9303afff 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
    0x9303b000 - 0x93169fe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x931ab000 - 0x931b1ff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x931b2000 - 0x9328cff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9328d000 - 0x932bdff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x932be000 - 0x932beff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93aea000 - 0x93b1fff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93b20000 - 0x93f55ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x93f83000 - 0x93fbffff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x93fc0000 - 0x93fc4ff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x93fc5000 - 0x948a3ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x948ab000 - 0x948effe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9490e000 - 0x9491fff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x94920000 - 0x94960ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9497f000 - 0x94aabfe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94aac000 - 0x94aafffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94abb000 - 0x94b69ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94b6a000 - 0x94e89fe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x94e8a000 - 0x95027fef com.apple.JavaScriptCore 6531.21 (6531.21.9) <C3642BB4-3D06-B371-B4CD-0DF5DA646673> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95028000 - 0x95321ff3 com.apple.RawCamera.bundle 2.3.0 (505) <1C7CEA30-FFE2-B4DE-98CE-D6518DF1E54B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95322000 - 0x9533dff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95346000 - 0x953a0ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x953a1000 - 0x95412ff7 com.apple.iLifeMediaBrowser 2.1.3 (346.0.3) <C862CAE1-1906-CD45-7D66-F8798483BAA5> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x95413000 - 0x954e4fe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x954e5000 - 0x954f7ff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x954fd000 - 0x95531ff7 libssl.0.9.8.dylib ??? (???) <F3402001-EC8D-58E5-4A23-02A979C9E857> /usr/lib/libssl.0.9.8.dylib
    0x95532000 - 0x95633fe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x95634000 - 0x9566bff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9566c000 - 0x9566cff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x956e6000 - 0x9573cff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9573d000 - 0x95751fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x95752000 - 0x95756ff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x95757000 - 0x957f3fe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x957f4000 - 0x957f7ff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x957f8000 - 0x95a23ff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95a24000 - 0x95b1aff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x95b1b000 - 0x95bb3fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95bb4000 - 0x95bf5ff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95bf6000 - 0x95c46ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x95c47000 - 0x95c94feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x95c95000 - 0x95e95feb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95e96000 - 0x95fd7ff7 com.apple.syncservices 5.1 (578) <88BAF2E9-3A67-EEAB-2EBF-4F7D1D28B39E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x95fd8000 - 0x95fd8ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x95fea000 - 0x96033fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9604d000 - 0x96091ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x96094000 - 0x960ecfe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x960ed000 - 0x9612cff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x96422000 - 0x96482fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96483000 - 0x964a1ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x964e3000 - 0x964e5fe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x964e6000 - 0x964e6ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x964e7000 - 0x9651aff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x974aa000 - 0x974d2ff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x9754f000 - 0x97d324b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x97d33000 - 0x97d33ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x97f47000 - 0x97ff4fe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x97ff5000 - 0x98003fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x98004000 - 0x9836bff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9836c000 - 0x9838cfe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x98393000 - 0x983cdffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x983ce000 - 0x986f1fef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x986f2000 - 0x98734fe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x98735000 - 0x98910ff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x98911000 - 0x98c0afef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x98c0b000 - 0x98c49ff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x98c4a000 - 0x98c62ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x98caa000 - 0x98d63fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x98df7000 - 0x98e01ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x98e05000 - 0x98e87ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x98ea9000 - 0x98ea9ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x98eaa000 - 0x98eccfef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x98ecd000 - 0x990affff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x990b0000 - 0x99129ff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9912a000 - 0x99133ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x99231000 - 0x99245ffb 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
    0x99246000 - 0x9924bff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9924c000 - 0x99285fe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x992a5000 - 0x992b5ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x992b6000 - 0x992c0ff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x992c1000 - 0x9935efe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9935f000 - 0x9936cff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9936d000 - 0x993bdff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x993be000 - 0x9957afef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9957b000 - 0x995b8ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: MacBook2,1, BootROM MB21.00A5.B07, 2 processors, Intel Core 2 Duo, 2 GHz, 2 GB, SMC 1.13f3
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplaysintegratedvram
    Memory Module: global_name
    AirPort: AirPort Extreme, Atheros 5416: 2.0.19.8
    Bluetooth: Version 2.2.4f3, 2 service, 0 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK1234GSX, 111,79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857D
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x021b, 0x1d200000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x7d100000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8240, 0x5d200000

  • Logic Express 9 won't open

    I can't seem to get Logic Express 9 to work at all. I just installed and updated it for the third time, and I'm still unable to open it. I get an error saying Logic Express cannot be opened, followed by a crash log:
    Process:         Logic Express [1082]
    Path:            /Applications/Logic Express.app/Contents/MacOS/Logic Express
    Identifier:      com.apple.logic.express
    Version:         9.1.6 (1700.45)
    Build Info:      Logic-17004500~3
    Code Type:       X86 (Native)
    Parent Process:  launchd [145]
    Date/Time:       2012-02-13 18:44:42.801 -0500
    OS Version:      Mac OS X 10.7.3 (11D50)
    Report Version:  9
    Interval Since Last Report:          67435 sec
    Crashes Since Last Report:           6
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      57F1A319-C6A1-452F-98A9-8667A6B3489C
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Library not loaded: /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
      Referenced from: /Applications/Logic Express.app/Contents/MacOS/Logic Express
      Reason: image not found
    Binary Images:
        0x1000 -   0xbb5fff  com.apple.logic.express (9.1.6 - 1700.45) <0FDA8063-3BB3-167D-560C-1ECE9386A64E> /Applications/Logic Express.app/Contents/MacOS/Logic Express
      0xe5b000 -   0xe79fef  com.apple.XSKey (1.0.0 - 52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
      0xe88000 -   0xe94ff3  com.apple.music.apps.MAUnitTest (9.1.6 - 95.82) <02C63231-F64F-674D-2A7E-A4974F917697> /Applications/Logic Express.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
      0xe9e000 -   0xed1fe7  com.apple.music.apps.MAAudioUnitSupport (9.1.6 - 232.98) <44FB5C01-C003-C5DF-81D9-7356A6808852> /Applications/Logic Express.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudio UnitSupport
      0xee6000 -   0xf17ff3  com.apple.musicaudiodataservices (1.1 - 250.80) <654B2360-62C4-A828-6BD4-F6DCC4173F27> /Applications/Logic Express.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetShar ing
      0xf2b000 -   0xf2dfff  com.apple.ExceptionHandling (1.5 - 10) <6CA9446C-7EF9-35EE-BDF2-AA8D51E93E9E> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
      0xf33000 -   0xf91ff3  com.apple.music.apps.MALoopManagement (9.1.6 - 218.82) <C07ED6FF-4850-54A6-F0C3-46AED9F95CD3> /Applications/Logic Express.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopMan agement
    0x8feb0000 - 0x8fee2aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x9037e000 - 0x903e2fff  com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91a2c000 - 0x91cb1fe3  com.apple.QuickTime (7.7.1 - 2315) <E6249041-B569-3A96-897F-E84B1C057948> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9238e000 - 0x9239cfff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x9239d000 - 0x923a5fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92f71000 - 0x92f71fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93787000 - 0x9395efff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x941e0000 - 0x942c1ff7  com.apple.DiscRecording (6.0.3 - 6030.4.1) <BB3FE6A8-B9EB-3CA2-B87E-70F7688527EA> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x947b5000 - 0x94907fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <E369AC9E-F548-3DF6-B320-9D09E486070E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9817f000 - 0x9817ffff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9af0e000 - 0x9af6fffb  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <E617857C-D870-3E2D-BA13-3732DD1BC15E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9b930000 - 0x9bbe1ff7  com.apple.AddressBook.framework (6.1 - 1083) <060E8C9F-FBF8-3394-8D63-D2DE0F428829> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    Model: MacBookPro8,2, BootROM MBP81.0047.B24, 4 processors, Intel Core i7, 2.2 GHz, 8 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333531533642465238432D48392020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333531533642465238432D48392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.100.98.75.19)
    Bluetooth: Version 4.0.3f12, 2 service, 11 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 3
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52f, 0xfa130000 / 6
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 7
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0245, 0xfa120000 / 4
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: iLok, 0x088e, 0x5036, 0xfd120000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3
    FireWire Device: USB2.0 & 1394 & eSATA combo Drive, PI-367, 800mbit_speed

    I am having a very similar problem and would like to see if it can be fixed without having to reinstall Lion. When I try to open Logic Express 9 It immediately crashes and I get this error message:
    Process:         Logic Express [605]
    Path:            /Applications/Logic Express.app/Contents/MacOS/Logic Express
    Identifier:      com.apple.logic.express
    Version:         9.1.7 (1700.57)
    Build Info:      Logic-17005700~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [108]
    Date/Time:       2012-03-29 14:39:28.586 -0500
    OS Version:      Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Interval Since Last Report:          1318136 sec
    Crashes Since Last Report:           18
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      D8BC46A8-BFFB-496D-BC91-B6AC91BD1D68
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Library not loaded: /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
      Referenced from: /Applications/Logic Express.app/Contents/MacOS/Logic Express
      Reason: image not found
    Binary Images:
        0x1000 -   0xbbafff  com.apple.logic.express (9.1.7 - 1700.57) <DE4CFCF1-9C00-562E-6449-FBE6FB30F3DD> /Applications/Logic Express.app/Contents/MacOS/Logic Express
      0xe4f000 -   0xe6dfef  com.apple.XSKey (1.0.0 - 52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
      0xe7c000 -   0xe88ff3  com.apple.music.apps.MAUnitTest (9.1.7 - 95.94) <D8B89167-A7D2-2C2F-B401-1E17BD85C2FD> /Applications/Logic Express.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
      0xe90000 -   0xec3fe7  com.apple.music.apps.MAAudioUnitSupport (9.1.7 - 233.39) <13FB1823-E7E6-A34B-6D89-E30D01605DC1> /Applications/Logic Express.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudio UnitSupport
      0xed0000 -   0xf01ff3  com.apple.musicaudiodataservices (1.1 - 250.92) <11E60B69-F34E-72B0-DC8E-BC23B4D9D949> /Applications/Logic Express.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetShar ing
      0xf10000 -   0xf12fff  com.apple.ExceptionHandling (1.5 - 10) <7C514CC4-7951-31CA-AEB3-D4AF49F44AE7> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
      0xf18000 -   0xf76ff3  com.apple.music.apps.MALoopManagement (9.1.7 - 218.94) <E1772A24-827D-AF1F-7C09-E25FC729F95B> /Applications/Logic Express.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopMan agement
    0x8fe05000 - 0x8fe37aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x9168d000 - 0x9176eff7  com.apple.DiscRecording (6.0.3 - 6030.4.1) <BB3FE6A8-B9EB-3CA2-B87E-70F7688527EA> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x91c08000 - 0x91e8dfe3  com.apple.QuickTime (7.7.1 - 2315) <E6249041-B569-3A96-897F-E84B1C057948> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91e90000 - 0x91ef1ffb  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <E617857C-D870-3E2D-BA13-3732DD1BC15E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92085000 - 0x9225cfff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9230c000 - 0x92314fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x97ad7000 - 0x97ae5fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x97e5a000 - 0x97facfff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <E369AC9E-F548-3DF6-B320-9D09E486070E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9bd34000 - 0x9bd98fff  com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9c294000 - 0x9c294fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9ca1b000 - 0x9ccccff7  com.apple.AddressBook.framework (6.1 - 1083) <060E8C9F-FBF8-3394-8D63-D2DE0F428829> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9cddb000 - 0x9cddbfff  com.apple.Carbon (153 - 153) <F996332A-390E-3337-A09E-A1E54004B567> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    I have uninstalled/reinstalled Logic Express 9 several times, and it is completely up to date. I tried the solution mentioned above (the whole Prokit.framework update thing), but it wont let me install the update, saying that a ,"more recent update", is already installed. However, when i go directly to the Prokit.framework folder it is completely empty. I have already tried zapping my P-RAM as well as repairing my disk permissions.
    This stupid problem is becoming a huge pain, so any help would be greatly appreciated.

  • When I open logic express 8 with eyetv open but not active and i close logic express 8 and make eyetv active it won't show closed captioning even though closed captioning is turned on

    when I open logic express 8 with eyetv open but not active and i close logic express 8 and make eyetv active eyetv won't show closed captioning even though closed captioning is turned on.  When I totally close eyetv and reopen eyetv and open a live tv window the closed captioning comes back.  I never noticed this with os leopard, Just after i installed os snow leopard.  All software is up to date only I think, thanks to apple they droped support for logic express.  Thanks for any suggestions.

    Does toggling CC off & back on bring it back?
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.

Maybe you are looking for

  • How can I merge layers with multiple layer styles added to them?

    So I have this issue where I have to merge lots of layers in order to finish the job. Thing is that two of them have layer styles added to them. Each one has two different layers styles added to it. If I try to merge the layers, the effect won't stay

  • Security.properties, ejb.properties, transaction.interoperability

    My team is attempting to upgrade our app to Java 1.4.2_04. We have a Java application that is using J2EE. We keep getting exceptions in our log file pertaining to the above file names 'not found'. If these are required files, can anyone help us figur

  • Command feather is unavailable?

    When trying to run some actions, I get this error message in PS CS4: The feather command is not available now." WHy is it unavilable and how can I make it available? Thanks so much for your help.

  • Nokia 822 dead

    I need to know what I can do about my phone dying for no reason. Yesterday I was listening to music in my car and suddenly the phone froze then shut down. It would not turn on with a soft start, battery removal, or hard start. All that would happen i

  • Iphone 3G language pack/install language pack (DANISH/DANSK)

    Hey! I somehow deleted or changed my language on the writing board... See... The language itself works, everything is on the language i want (DANISH LANGUAGE) but when i want to write somehing the language on the on the writing thing (DONT KNOW WHAT