InDesign CS4 script - change tracking/kerning

Hi Chaps,

Does anyone know of a JS Script to change (0) tracking and kerning (Optical) of paragraph Styles and the document as a whole in InDesign CS4?

Here below the code change tracking and kerning in your paragraph styles.

myDoc var = app.activeDocument;

myStyles = myDoc.paragraphStyles;

for (oneStyle = 1; oneStyle)<>

{

.tracking myStyles [oneStyle] = 0;

.kerningMethod myStyles [oneStyle] = 'view ';

}

Shonky

Tags: InDesign

Similar Questions

  • Text find and change the problem CS3 and CS4 scripts

    I use the script below to find text and turn them into others.

    There is one thing the script can't do it for me.

    Example:


    (g) management

    (1) that no law that is adopted in the Cayman Islands, a tax to collect profits, income, gains or satisfaction does apply to the company or its activities; and

    (2) that the above-mentioned tax or any tax in the form of rights of succession or inheritance tax is payable in respect of shares, debentures or other obligations of the company.

    Example: (end)

    I had a lot of subjects or points in the passage. And I want to change the space between '(g)' and 'Management' in a tab character. So I revised the plain text file 1texte.

    PS: 1text.txt is filled with what to change.

    text {findWhat: "^ p(^?)" ' "} {changeTo: "^ p(^?)"} ^ t "} {includeMasterPages:true, includeHiddenLayers:true, includeFootnotes:true, wholeWord:false} search all space-dash-space and replace it with an en dash."

    The result is:

    (^?) ^ tManagement

    (^?) ^ tthat any law that is passed in the Cayman Islands, imposing a tax on profits, income, not capital gains or satisfaction applies to the company or its activities. and

    (^?) ^ tthat the above-mentioned tax or any tax in the form of rights of succession or inheritance tax is payable in respect of shares, debentures or other obligations of the company.

    PS: ^ t is a tab character.

    result (END)

    This is not what I want.

    It should be"(g) ^ tManagement'.

    PS: ^ t is a tab character.

    Please someboady help me out revised the script below to change the text in what I want. Thank you very much.

    Here's the script.

    FindChangeByList.jsx
    An InDesign CS4 JavaScript
    /*
    @@BUILDINFO @ "FindChangeByList.jsx" 2.0.0.0 January 10, 2008
    */
    Loads a series of strings delimited by tab characters from a text file, and then executes a series
    Find/replace operations based on the lines read from the file.
    //
    The data file is delimited by tabs, returns to cart that separates records.
    //
    The format of each record in the file is:
    findType < tab > findProperties < tab > changeProperties < tab > findChangeOptions < tab > description
    //
    Where:
    < tab > is a tab character
    findType is 'text', 'grep' or 'glyph' (this sets the find/replace operation type to use).
    findProperties is a recording of properties (text) search preferences.
    changeProperties is a recording of properties (text) of the change preferences.
    findChangeOptions is a recording of properties (text) of the options find/replace.
    Description is a description of the search/replace operation
    //
    Very simple example:
    text {findWhat: "-"} {changeTo: "^ _"} {includeMasterPages:true, includeHiddenLayers:true, includeFootnotes:true, wholeWord:false} find all double hyphens and replace by an em dash.
    //
    More complex example:
    text {findWhat: ' ^ 9 ^ 9.} {' ^ 9 ^ 9 '} {appliedCharacterStyle: 'price'} {include notes: true, include master pages: true include hidden layers: true, any word: false} find $ 10.00 to $ 99.99 and apply the character style 'price '.
    //
    All metacharacters search InDesign are allowed in the properties 'findWhat' and 'changeTo"findTextPreferences and changeTextPreferences.
    //
    If you enter the backslashes in the object findGrepPreferences findWhat property, they must be "escaped".
    as shown in the example below:
    //
    {"findWhat: '"\\s+ "}
    //
    To learn more about InDesign scripting, go to http://www.adobe.com/products/indesign/scripting/index.html
    or visit the InDesign Scripting user to http://www.adobeforums.com users forum
    //
    main();
    main() {} function
    var myObject;
    Ensure that the interaction of the user (dialog boxes display, etc.) is turned on.
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
    If (app.documents.length > 0) {}
    If (app.selection.length > 0) {}
    {Switch(App.Selection[0].constructor.) Name)}
    case 'PointInsertion ':
    'character ': case
    case "word":
    case 'TextStyleRange ':
    case "line":
    stops of the "Point":
    case "TextColumn":
    case 'text ':
    case "cell":
    case "column":
    case 'Row ':
    case 'Table ':
    myDisplayDialog();
    break;
    by default:
    An option has been selected, but it was not a text object, so look for in the document.
    myFindChangeByList (app.documents.item (0));
    }
    }
    else {}
    Nothing has been selected, then just search for the document.
    myFindChangeByList (app.documents.item (0));
    }
    }
    else {}
    Alert ("no document is open. Please open a document and try again. ») ;
    }
    }
    function myDisplayDialog() {}
    var myObject;
    var myDialog = app.dialogs.add({name:"FindChangeByList"});)
    {with (MyDialog.dialogColumns.Add ())}
    {with (dialogRows.Add ())}
    {with (dialogColumns.Add ())}
    staticTexts.add ({staticLabel: "beach of research :"});})
    }
    var myRangeButtons = radiobuttonGroups.add ();
    {with (myRangeButtons)}
    radiobuttonControls.add ({staticLabel: "Document", checkedState:true});})
    radiobuttonControls.add ({staticLabel: "Selected Story"});
    If (app.selection [0] .silence! = "") {}
    radiobuttonControls.add ({staticLabel: "Sélection", checkedState:true});})
    }
    }
    }
    }
    Ditto var = myDialog.show ();
    if(myResult == true) {}
    {Switch (myRangeButtons.selectedButton)}
    case 0:
    myObject = app.documents.item (0);
    break;
    case 1:
    myObject = app.selection [0] .parentStory;
    break;
    case 2:
    myObject = app.selection [0];
    break;
    }
    myDialog.destroy ();
    myFindChangeByList (myObject);
    }
    else {}
    myDialog.destroy ();
    }
    }
    function myFindChangeByList (myObject) {}
    var myScriptFileName, myFindChangeFile, myFindChangeFileName, myScriptFile, ditto;
    var myFindChangeArray, myFindPreferences, myChangePreferences, myFindLimit, monarticle;
    var myStartCharacter, myEndCharacter;
    var myFindChangeFile = myFindFile("/FindChangeSupport/1test.txt")
    If (myFindChangeFile! = null) {}
    myFindChangeFile = File (myFindChangeFile);
    Ditto var = myFindChangeFile.open ("r", not defined, undefined);
    if(myResult == true) {}
    Loop in find/replace operations.
    {}
    myLine = myFindChangeFile.readln ();
    Ignore blank lines and comment lines.
    If ((myLine.Substring (0.4) == "Text") |) (myLine.substring (0.4) == "grep"). (myLine.substring (0, 5) is "glyph")) {
    myFindChangeArray = myLine.split ("\t");
    The first field in the line is the findType chain.
    myFindType = myFindChangeArray [0];
    The second field in the line is the FindPreferences channel.
    myFindPreferences = myFindChangeArray [1];
    The second field in the line is the ChangePreferences channel.
    myChangePreferences = myFindChangeArray [2];
    The fourth field is the range - used only text find/replace.
    myFindChangeOptions = myFindChangeArray [3];
    {Switch (myFindType)}
    case 'text ':
    myFindText (myObject, myFindPreferences, myChangePreferences, myFindChangeOptions);
    break;
    case "grep":
    myFindGrep (myObject, myFindPreferences, myChangePreferences, myFindChangeOptions);
    break;
    case 'glyph ':
    myFindGlyph (myObject, myFindPreferences, myChangePreferences, myFindChangeOptions);
    break;
    }
    }
    } while(myFindChangeFile.eof == false);
    myFindChangeFile.close ();
    }
    }
    }
    function myFindText (myObject, myFindPreferences, myChangePreferences, myFindChangeOptions) {}
    Reset the preferences of find/replace before each search.
    app.changeTextPreferences = NothingEnum.nothing;
    app.findTextPreferences = NothingEnum.nothing;
    var myString = "app.findTextPreferences.properties =" + myFindPreferences + «;"»»» » ;
    myString += "app.changeTextPreferences.properties =" + myChangePreferences + ";". " » ;
    myString += "app.findChangeTextOptions.properties =" + myFindChangeOptions + ";". " » ;
    app.doScript (myString, ScriptLanguage.javascript);
    myFoundItems = myObject.changeText ();
    Reset the find/change preferences after each search.
    app.changeTextPreferences = NothingEnum.nothing;
    app.findTextPreferences = NothingEnum.nothing;
    }
    function myFindGrep (myObject, myFindPreferences, myChangePreferences, myFindChangeOptions) {}
    Reset the find/change grep preferences before each search.
    app.changeGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences = NothingEnum.nothing;
    var myString = "app.findGrepPreferences.properties =" + myFindPreferences + «;"»»» » ;
    myString += "app.changeGrepPreferences.properties =" + myChangePreferences + ";". " » ;
    myString += "app.findChangeGrepOptions.properties =" + myFindChangeOptions + ";". " » ;
    app.doScript (myString, ScriptLanguage.javascript);
    var myFoundItems = myObject.changeGrep ();
    Reset grep find/change preferences after each search.
    app.changeGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences = NothingEnum.nothing;
    }
    function myFindGlyph (myObject, myFindPreferences, myChangePreferences, myFindChangeOptions) {}
    Reset the preferences of glyph in find/replace before each search.
    app.changeGlyphPreferences = NothingEnum.nothing;
    app.findGlyphPreferences = NothingEnum.nothing;
    var myString = "app.findGlyphPreferences.properties =" + myFindPreferences + «;"»»» » ;
    myString += "app.changeGlyphPreferences.properties =" + myChangePreferences + ";". " » ;
    myString += "app.findChangeGlyphOptions.properties =" + myFindChangeOptions + ";". " » ;
    app.doScript (myString, ScriptLanguage.javascript);
    var myFoundItems = myObject.changeGlyph ();
    Reset glyph in find/change preferences after each search.
    app.changeGlyphPreferences = NothingEnum.nothing;
    app.findGlyphPreferences = NothingEnum.nothing;
    }
    function myFindFile (myFilePath) {}
    var myScriptFile = myGetScriptPath();
    var myScriptFile = File (myScriptFile);
    var myScriptFolder = myScriptFile.path;
    CheminMonFichier = myScriptFolder + CheminMonFichier;
    If (queue (CheminMonFichier) .exists == false) {}
    Display a dialog box.
    CheminMonFichier is File.openDialog ("choose the file containing your list find/replace");.
    }
    Return CheminMonFichier;
    }
    function myGetScriptPath() {}
    try {}
    myFile = app.activeScript;
    }
    {catch (MyError)}
    myFile = myError.fileName;
    }
    return myFile;
    }

    I'm not a writer, but I'll take a stab and try to make a difference here.

    The main problem, in my opinion, is that you use a plain text instead of GREP search. Text gross has no provision to replace the text found by itself, for example, rather than using the codes you entered a literal string. Your search text of ' ^ p(^?) ' means find any character in brackets that occurs after a paragraph break. I would use in GREP ^ \s+ (\(.+?\)) which translates to find an opening parenthesis at the beginning of a paragraph (so he'll find if it happens to be the first character in th in a story) followed by a number any characters up to the first parenthesis (in the case where you have double the figures or double entries letter) followed by ANY white space (in the case where it is not an ordinary space or multiple spaces). Replace $1\t which means the text found in the first set of parentheses in query search followed by a tab.

    Parentheses are special in GREP, they surround groups of terms you want to re-use the text found, so looking for the actual characters you need to 'escape' with the-prefix, so \(.+\) will find a paren open followed by all the characters up to the end last paren in the paragraph. Addition of the? After the + makes research stop at the first closing paren met, although there are several sets in the paragraph.

  • Select texts based on the option "customer tracking/kerning.

    Hi all

    If it is possible to push all the texts of tracking/kerning table? If it is possible to attack with highlighting of text as shown below?

    Screen shot 2015-05-05 at 5.11.34 PM.png

    Screen shot 2015-05-05 at 5.12.36 PM.png

    So I put together a few lines.

    Try them and tell me if it points in the right direction.

    To use the Script, you need an InDesign file with text. Some characters have kerning (-100). On top, you need a character style in the InDesign document with the name of "red". If you change the color in the character style, you should see that the characters with kerning (-100) have given color after you run the script.

    Kind regards

    Daniel (from Switzerland)

    main();
    exit();
    
    function main() {
    
        // if there is an open document in InDesign
        if (app.documents.length > 0) {
            var myDoc = app.activeDocument;
    
            // get the selected text
            var mySel = myDoc.selection[0];
    
            if ((mySel != null) && (mySel.constructor.name == "Text")) {
    
                // create an array
                var charArray = new Array();
                alert("information \nText selected");
    
                alert("Information\n# characters selected: " + mySel.characters.length);
    
                for (var i = 0; i < mySel.characters.length; i++) {
                    var myChar = mySel.characters[i];
    
                    // if the kerning was changed
                    if (myChar.kerningMethod == "Manual") {
    
                        // output to the console
                        $.write("Character: >" + myChar.contents + "< kerning: " + myChar.kerningValue);
    
                        // if the kerning is -100 or  less
                        if (myChar.kerningValue < -99) {
    
                            // apply characterstyle to found characters no array needed
                            myChar.appliedCharacterStyle = myDoc.characterStyles.item("red");
                            $.writeln(" OK got it");
    
                            // push character into array
                            charArray.push(myChar);
                        }
                        else $.writeln();
                    }
                }
                alert("Information\nCharacters with kernig -199 found: " + charArray.length);
            }
            else alert("Warning\nNoting or no text selected");
        }
        else alert("Warning\nno document open");
    
        alert("Information\nI did my job, what about yours?");
    }
    
  • InDesign CS4 closure of serious error. Reinstall did not help.

    I started having a strange "error importing file" in InDesign CS4, where I couldn't open the .indd files. After looking around, I tried a few fixes, including the removal of preferences, validate my fonts (and remove those with errors) and removing SING them. After doing this, I started getting the message 'Serious error' at the start of the program and could not operational. I tried to reinstall the program, but he persists. Illustrator, Photoshop, and DreamWeaver are still working fine. Any ideas?

    Crash report:

    Process: Adobe InDesign CS4 [2530]

    Path: / Applications/Adobe InDesign CS4/Adobe CS4.app/Contents/MacOS/Adobe InDesign CS4 InDesign

    ID: com.adobe.InDesign

    Version: 6.0.0.352 (6000)

    Code type: X 86 (native)

    Parent process: launchd [185]

    Date/time: 2013-01-15 11:43:44.436-0700

    OS version: Mac OS X 10.6.8 (10 K 549)

    Report Version: 6

    Interval since last report: 359584 sec

    Crashes since last report: 10

    Per-App interval since last report: 231 s

    Per-App crashes since last report: 5

    Anonymous UUID: 971BFDD7-1685-4342-BB19-A8B24F54038D

    Exception type: EXC_BAD_ACCESS (SIGBUS)

    Exception codes: KERN_PROTECTION_FAILURE at 0 x 0000000000000000

    Crashed Thread: the queue on the Main Thread 0 shipping: com.apple.main - wire

    Thread 0 crashed: main Thread Dispatch queue: com.apple.main - wire

    0 PublicLib.dylib 0x010ea0e7 ProtectiveShutdown::~ProtectiveShutdown() + 279

    1... adobe. InDesign.AppFramework 0x221302f9 0 22117000 + 103161 x

    2 PublicLib.dylib 0x010b50db CmdUtils::ProcessCommand(ICommand*) + 59

    3 com.adobe.InDesign.Widgets 0x2699834f GetPlugIn + 2943

    4 WidgetBinLib.dylib 0x027a0f4e CTreeViewWidgetMgr::InternalSetStyle (long) + 382

    5 WidgetBinLib.dylib 0x027a117f CTreeViewWidgetMgr::RegisterStyleWidget (long, unsigned long, IDType < PluginID_tag >) + 127

    6... dobe. InDesign.TableStylesUI 0x2163ad32 0x2162c000 + 60722

    7 WidgetBinLib.dylib 0x027a1418 CTreeViewWidgetMgr::GetNodeWidgetHeight(NodeID const&) const + 328

    8 WidgetBinLib.dylib 0x0279c261 TreeWidgetControlView::ConstrainDimensions(PMPoint const&) const + 209

    9... dobe. InDesign.TableStylesUI 0x2164b6a1 0x2162c000 + 128673

    10 WidgetBinLib.dylib 0x027918f1 SizePanelDetailController::ReadWrite (IPMStream *, IDType < ImplementationID_tag >) + 289

    11 com.adobe.InDesign.Widgets 0x26996cf9 MOwnerDrawDDCtrlData::AddWidget (IControlView *, long, short) + 22089

    12 PublicLib.dylib 0x0118d1aa CreateObjectNoInit (IDataBase *, const RsrcSpec & IDType < PMIID_tag >) + 570

    13 PublicLib.dylib 0x0118d379 CreateObject (IDataBase *, const RsrcSpec & IDType < PMIID_tag >) + 41

    14... obe. InDesign.Application UI 0x2232764d 0x222ef000 + 230989

    15... obe. InDesign.Application UI 0x22346ec5 GetPlugIn + 57493

    16 PublicLib.dylib 0x010e6958 CInitializer::RegisterResources (IPMStream *, void *) + 24

    17 PublicLib.dylib 0x010d53a1 CResourceShell::PrivateEnumerateResourcesLI (PMLocaleId const &, IDType < PluginID_tag > const &, long, unsigned short (*) (* IPMStream, void *), void *) + 353

    18 PublicLib.dylib 0x010d54ea CResourceShell::EnumerateResourcesLI (PMLocaleId const &, IDType < PluginID_tag > const &, long, unsigned short (*) (* IPMStream, void *), void *, short) + 58

    19 PublicLib.dylib 0x010e78b9 CInitializer::Register (IDType < PluginID_tag >, PMLocaleId const &) + 73

    20... adobe. InDesign.AppFramework 0x2217d163 GetPlugIn + 275763

    21... adobe. InDesign.AppFramework 0x2217d239 GetPlugIn + 275977

    22... adobe. InDesign.AppFramework 0x2213dee5 GetPlugIn + 17077

    23 main 0x000026eb com.adobe.InDesign + 187

    24 com.adobe.InDesign 0x00001fb2 start + 258

    25 com.adobe.InDesign 0x00001ed9 start + 41

    Thread 1: dispatch queue: com.apple.libdispatch - Manager

    0 libSystem.B.dylib 0x93f9d382 kevent + 10

    1 libSystem.B.dylib 0x93f9da9c _dispatch_mgr_invoke + 215

    2 libSystem.B.dylib 0x93f9cf59 _dispatch_queue_invoke + 163

    3 libSystem.B.dylib 0x93f9ccfe _dispatch_worker_thread2 + 240

    4 libSystem.B.dylib 0x93f9c781 _pthread_wqthread + 390

    5 libSystem.B.dylib 0x93f9c5c6 start_wqthread + 30

    Thread 2:

    0 libSystem.B.dylib 0x93f76b5a semaphore_timedwait_signal_trap + 10

    1 libSystem.B.dylib 0x93fa46e1 _pthread_cond_wait + 1066

    2 libSystem.B.dylib 0x93fd35a8 pthread_cond_timedwait_relative_np + 47

    3... ple. CoreServices.CarbonCore 0x9934bb90 TSWaitOnConditionTimedRelative + 242

    4... ple. CoreServices.CarbonCore 99347533 MPWaitOnQueue + 250 x 0

    5 PMRuntime.dylib 0 00012668 MemUtils::GetAvailMem() + 296 x

    6... ple. CoreServices.CarbonCore 0x9932b54a PrivateMPEntryPoint + 68

    7 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    8 libSystem.B.dylib 0x93fa40de thread_start + 34

    3 wire:

    0 libSystem.B.dylib 0x93f76afa mach_msg_trap + 10

    1 libSystem.B.dylib 0x93f77267 mach_msg + 68

    2... ple. CoreServices.CarbonCore 0x993f3ab0 TS_exception_listener_thread + 160

    3 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    4 libSystem.B.dylib 0x93fa40de thread_start + 34

    Thread 4:

    0 libSystem.B.dylib 0x93fa4aa2 __semwait_signal + 10

    1 libSystem.B.dylib 0x93fa475e _pthread_cond_wait + 1191

    pthread_cond_wait 2 libSystem.B.dylib 0x93fa63f8 $UNIX2003 + 73

    3... ple. CoreServices.CarbonCore 0x9936021e TSWaitOnCondition + 126

    4... ple. CoreServices.CarbonCore 0x9934bb68 TSWaitOnConditionTimedRelative + 202

    5... ple. CoreServices.CarbonCore 99347533 MPWaitOnQueue + 250 x 0

    6 AdobeACE 0x0004c38d 0x1b000 + 201613

    7 AdobeACE 0x0004bd85 0x1b000 + 200069

    8... ple. CoreServices.CarbonCore 0x9932b54a PrivateMPEntryPoint + 68

    libSystem.B.dylib 9 0x93fa4259 _pthread_start + 345

    10 libSystem.B.dylib 0x93fa40de thread_start + 34

    Wire 5:

    0 libSystem.B.dylib 0x93fa4aa2 __semwait_signal + 10

    1 libSystem.B.dylib 0x93fa475e _pthread_cond_wait + 1191

    pthread_cond_wait 2 libSystem.B.dylib 0x93fa63f8 $UNIX2003 + 73

    3... ple. CoreServices.CarbonCore 0x9936021e TSWaitOnCondition + 126

    4... ple. CoreServices.CarbonCore 0x9934bb68 TSWaitOnConditionTimedRelative + 202

    5... ple. CoreServices.CarbonCore 99347533 MPWaitOnQueue + 250 x 0

    6 AdobeACE 0x0004c38d 0x1b000 + 201613

    7 AdobeACE 0x0004bd85 0x1b000 + 200069

    8... ple. CoreServices.CarbonCore 0x9932b54a PrivateMPEntryPoint + 68

    libSystem.B.dylib 9 0x93fa4259 _pthread_start + 345

    10 libSystem.B.dylib 0x93fa40de thread_start + 34

    Line 6:

    0 libSystem.B.dylib 0x93fa4aa2 __semwait_signal + 10

    1 libSystem.B.dylib 0x93fa475e _pthread_cond_wait + 1191

    pthread_cond_wait 2 libSystem.B.dylib 0x93fa63f8 $UNIX2003 + 73

    3... ple. CoreServices.CarbonCore 0x9936021e TSWaitOnCondition + 126

    4... ple. CoreServices.CarbonCore 0x9934bb68 TSWaitOnConditionTimedRelative + 202

    5... ple. CoreServices.CarbonCore 99347533 MPWaitOnQueue + 250 x 0

    6 AdobeACE 0x0004c38d 0x1b000 + 201613

    7 AdobeACE 0x0004bd85 0x1b000 + 200069

    8... ple. CoreServices.CarbonCore 0x9932b54a PrivateMPEntryPoint + 68

    libSystem.B.dylib 9 0x93fa4259 _pthread_start + 345

    10 libSystem.B.dylib 0x93fa40de thread_start + 34

    Line 7:

    0 libSystem.B.dylib 0x93f76b42 semaphore_wait_signal_trap + 10

    1 libSystem.B.dylib 0x93fa46f8 _pthread_cond_wait + 1089

    2 libSystem.B.dylib 0x93fed05f pthread_cond_wait + 48

    3 com.adobe.amt.services 0x1f1eb552 C_EULA_AskToAcceptEULA + 21368

    4 com.adobe.amt.services 0x1f1e6995 C_EULA_AskToAcceptEULA + 1979

    5 com.adobe.amt.services 0x1f1eb5b0 C_EULA_AskToAcceptEULA + 21462

    6 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    7 libSystem.B.dylib 0x93fa40de thread_start + 34

    Slide 8: com.apple.CFSocket.private

    0 libSystem.B.dylib 0x93f95ac6 select$ DARWIN_EXTSN + 10

    1 com.apple.CoreFoundation 0x95cb7c53 __CFSocketManager + 1091

    2 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    3 libSystem.B.dylib 0x93fa40de thread_start + 34

    Wire 9: IPCClient rcvr: FMClient.501.2530.2690368832.1

    0 libSystem.B.dylib 0x93f95ac6 select$ DARWIN_EXTSN + 10

    1... extensis.cpp - core-framework 0x298f9523 GIPCReceiver::OSWaitForData() + 2301

    2... extensis.cpp - core-framework 0x298edc0f GIPCClient::ReceiverThreadProc(GThread*) + 949

    3... extensis.cpp - core-framework 0x299719c7 GThread::PthreadInternal(void*) + 239

    4 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    5 libSystem.B.dylib 0x93fa40de thread_start + 34

    Thread 10: Agent IF Message Handler

    0 libSystem.B.dylib 0x93fa4aa2 __semwait_signal + 10

    1 libSystem.B.dylib 0x93fa475e _pthread_cond_wait + 1191

    pthread_cond_timedwait 2 libSystem.B.dylib 0x93fa42b1 $UNIX2003 + 72

    3... extensis.cpp - core-framework 0x2992ed5d GSemaphore::TimedWait (unsigned long) + 77

    4... extensis.cpp - core-framework 0x298f276f + 39 GIPCClient::GIPCMTDataAccumulator:WaitForData(unsigned_long,_std::vector<char,_std::allocator<char>_>&,_bool)

    5   .... ExtensisFontManagement.sdk 0x29eae2d7 GAgentIFMessageHandlerThread::RunMessageHandlerThread() + 497

    6   .... ExtensisFontManagement.sdk 0x29eaea65 GAgentIFMessageHandlerThread::AgentIFMessageHandlerThreadFunc(GThread*) + 67

    7... extensis.cpp - core-framework 0x299719c7 GThread::PthreadInternal(void*) + 239

    8 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    libSystem.B.dylib 9 0x93fa40de thread_start + 34

    Wire 11:

    0 libSystem.B.dylib 0x93f76b42 semaphore_wait_signal_trap + 10

    1 libSystem.B.dylib 0x93fa46f8 _pthread_cond_wait + 1089

    2 libSystem.B.dylib 0x93fed05f pthread_cond_wait + 48

    3... oost_thread-mt - 1_34_1.dylib 0 x 01596080 boost::detail:condition_impl:do_wait(_opaque_pthread_mutex_t*) + 24

    4... adobe. InDesign.AppFramework 0x2220319f + 824687 GetPlugIn

    5... oost_thread-mt - 1_34_1.dylib 0x015993a6 boost::function0 < sub, std::allocator < boost::function_base > >: Operator() (const + 34)

    6... oost_thread-mt - 1_34_1.dylib 0x015987e5 boost::thread_group:create_thread(boost::function0<void,_std::allocator<boost::function_base>_>_const&) + 223

    7 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    8 libSystem.B.dylib 0x93fa40de thread_start + 34

    12 wire:

    0 libSystem.B.dylib 0x93f76b42 semaphore_wait_signal_trap + 10

    1 libSystem.B.dylib 0x93fa46f8 _pthread_cond_wait + 1089

    2 libSystem.B.dylib 0x93fed05f pthread_cond_wait + 48

    3... oost_thread-mt - 1_34_1.dylib 0 x 01596080 boost::detail:condition_impl:do_wait(_opaque_pthread_mutex_t*) + 24

    4... adobe. InDesign.AppFramework 0x2220319f + 824687 GetPlugIn

    5... oost_thread-mt - 1_34_1.dylib 0x015993a6 boost::function0 < sub, std::allocator < boost::function_base > >: Operator() (const + 34)

    6... oost_thread-mt - 1_34_1.dylib 0x015987e5 boost::thread_group:create_thread(boost::function0<void,_std::allocator<boost::function_base>_>_const&) + 223

    7 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    8 libSystem.B.dylib 0x93fa40de thread_start + 34

    Line 13:

    0 libSystem.B.dylib 0x93f76b42 semaphore_wait_signal_trap + 10

    1 libSystem.B.dylib 0x93fa46f8 _pthread_cond_wait + 1089

    2 libSystem.B.dylib 0x93fed05f pthread_cond_wait + 48

    3... oost_thread-mt - 1_34_1.dylib 0 x 01596080 boost::detail:condition_impl:do_wait(_opaque_pthread_mutex_t*) + 24

    4... adobe. InDesign.AppFramework 0x2220319f + 824687 GetPlugIn

    5... oost_thread-mt - 1_34_1.dylib 0x015993a6 boost::function0 < sub, std::allocator < boost::function_base > >: Operator() (const + 34)

    6... oost_thread-mt - 1_34_1.dylib 0x015987e5 boost::thread_group:create_thread(boost::function0<void,_std::allocator<boost::function_base>_>_const&) + 223

    7 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    8 libSystem.B.dylib 0x93fa40de thread_start + 34

    Thread 14:

    0 libSystem.B.dylib 0x93f76b42 semaphore_wait_signal_trap + 10

    1 libSystem.B.dylib 0x93fa46f8 _pthread_cond_wait + 1089

    2 libSystem.B.dylib 0x93fed05f pthread_cond_wait + 48

    3... oost_thread-mt - 1_34_1.dylib 0 x 01596080 boost::detail:condition_impl:do_wait(_opaque_pthread_mutex_t*) + 24

    4... adobe. InDesign.AppFramework 0x2220319f + 824687 GetPlugIn

    5... oost_thread-mt - 1_34_1.dylib 0x015993a6 boost::function0 < sub, std::allocator < boost::function_base > >: Operator() (const + 34)

    6... oost_thread-mt - 1_34_1.dylib 0x015987e5 boost::thread_group:create_thread(boost::function0<void,_std::allocator<boost::function_base>_>_const&) + 223

    7 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    8 libSystem.B.dylib 0x93fa40de thread_start + 34

    Line 15:

    0 libSystem.B.dylib 0x93f76b42 semaphore_wait_signal_trap + 10

    1 libSystem.B.dylib 0x93fa46f8 _pthread_cond_wait + 1089

    2 libSystem.B.dylib 0x93fed05f pthread_cond_wait + 48

    3... oost_thread-mt - 1_34_1.dylib 0 x 01596080 boost::detail:condition_impl:do_wait(_opaque_pthread_mutex_t*) + 24

    4... adobe. InDesign.AppFramework 0x2220319f + 824687 GetPlugIn

    5... oost_thread-mt - 1_34_1.dylib 0x015993a6 boost::function0 < sub, std::allocator < boost::function_base > >: Operator() (const + 34)

    6... oost_thread-mt - 1_34_1.dylib 0x015987e5 boost::thread_group:create_thread(boost::function0<void,_std::allocator<boost::function_base>_>_const&) + 223

    7 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    8 libSystem.B.dylib 0x93fa40de thread_start + 34

    16 wire:

    0 libSystem.B.dylib 0x93f76b42 semaphore_wait_signal_trap + 10

    1 libSystem.B.dylib 0x93fa46f8 _pthread_cond_wait + 1089

    2 libSystem.B.dylib 0x93fed05f pthread_cond_wait + 48

    3... oost_thread-mt - 1_34_1.dylib 0 x 01596080 boost::detail:condition_impl:do_wait(_opaque_pthread_mutex_t*) + 24

    4... adobe. InDesign.AppFramework 0x2220319f + 824687 GetPlugIn

    5... oost_thread-mt - 1_34_1.dylib 0x015993a6 boost::function0 < sub, std::allocator < boost::function_base > >: Operator() (const + 34)

    6... oost_thread-mt - 1_34_1.dylib 0x015987e5 boost::thread_group:create_thread(boost::function0<void,_std::allocator<boost::function_base>_>_const&) + 223

    7 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    8 libSystem.B.dylib 0x93fa40de thread_start + 34

    Thread 17:

    0 libSystem.B.dylib 0x93f76b42 semaphore_wait_signal_trap + 10

    1 libSystem.B.dylib 0x93fa46f8 _pthread_cond_wait + 1089

    2 libSystem.B.dylib 0x93fed05f pthread_cond_wait + 48

    3 TINthread.dylib 0x1f0447a5 ThreadUtils::ThreadPool::Dispatcher() + 277

    4 TINthread.dylib 0x1f04483f ThreadUtils::ThreadPool:ThreadProc(void*) + 17

    5 libSystem.B.dylib 0x93fa4259 _pthread_start + 345

    6 libSystem.B.dylib 0x93fa40de thread_start + 34

    18 wire:

    0 libSystem.B.dylib 0x93f9c412 __workq_kernreturn + 10

    1 libSystem.B.dylib 0x93f9c9a8 _pthread_wqthread + 941

    2 libSystem.B.dylib 0x93f9c5c6 start_wqthread + 30

    Thread 0 crashed with X 86 Thread State (32-bit):

    EAX: 0 x 00000000 ebx: 0x010e9fe4 ecx: 0x089ce4f4 edx: 0x07e0a9f0

    EDI: 0xbfffee48 esi: 0x039ee664 ebp: 0xbfffeea8 esp: 0xbfffede0

    SS: 0x0000001f efl: 0 x 00010246 eip: 0x010ea0e7 cs: 0 x 00000017

    DS: 0x0000001f are: 0x0000001f fs: 0 x 00000000 gs: 0 x 00000037

    CR2: 0x00000000

    Binary images:

    0x1000 - 0x3ff7 + com.adobe.InDesign 6.0.0.352 (6000) < 970AB63A-C7CF-E2BD-6F84-37178B986F1A > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Adobe InDesign CS4

    0x8000 - 0x8fff + InDesignModel? (???) < 04F752B0-79DF-B0C0-0D40-E5D56F5E6763 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel

    0xC000 - 0xcfff + InDesignModelAndUI? (???) < 2822805A-73B5-F1C1-F21F-77EA75E194B8 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI

    0x10000 - 0x16fff + PMRuntime.dylib? (???) < 9428E22B-B3BF-6645-9DE1-E821B48AE928 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/PMRuntime.dylib

    0x1b000 - 0x128fff + AdobeACE? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE

    0 x 146000 - 0x64efff + AdobeAGM? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM

    0x7be000 - 0x7fdff7 + AdobeARE? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE

    0 x 807000 - 0x820fff + AdobeBIB? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB

    0x82a000 - 0x84bff7 + AdobeBIBUtils? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils

    0 x 858000 - 0xaebfc7 + AdobeCoolType? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType

    0xb6f000 - 0xf39fef + AdobeMPS? (???) < 4E366E06-A4EB-4717-9639-0443743F5104 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS

    0xfc8000 - 0x1029fff + ObjectModelLib.dylib? (???) < 4FD4B086-E451-4EA3-2DBD-0CFB7EF8BBA2 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/ObjectModelLib.dylib

    0 x 1046000 - 0x107cfff + DataBaseLib.dylib? (???) < DAF68BCD-3194-48AD-5086-E06FD2529E85 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/DataBaseLib.dylib

    0x108c000 - 0x13fafff + PublicLib.dylib? (???) < BC602492-4629-CD2E-5901-D4A8AEE8BA69 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/PublicLib.dylib

    0 x 1557000 - 0x1578fda + AdobeAFL? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL

    0 x 1594000 - 0x159affe + libboost_thread-mt - 1_34_1.dylib? (???) < DB58BCE6-F2FC-4E5B-B87F-ED405C3F62A7 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/libboost_thread-mt-1_34_1.dylib

    0x15a5000 - 0x1635fc3 + WRServices? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices

    0x17b0000 - 0x17b4ffc + com.adobe.AdobeCrashReporter 2.5 (3.0.20080806) / applications/Adobe InDesign CS4 / Adobe InDesign CS4.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter

    0x17ba000 - 0x216a57f + libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0

    0x216d000 - 0x223c23b + libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0) ib.36.0/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicui18n.dyl

    0x22e5000 - 0x23b9db7 + libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0

    0x241a000 - 0x2461fc7 + com.adobe.adobe_caps adobe_caps 2.0.99.0 (2.0.99.0) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps

    0 x 2467000 - 0x24ddfff + libboost_regex-mt - 1_34_1.dylib? (???) < 3FE3AFA1-CCA6-740C-9460-E04378983CF0 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/libboost_regex-mt-1_34_1.dylib

    0 x 2513000 - 0x26c9ff4 + com.adobe.amtlib amtlib 2.0.1.10077 (2.0.1.10077) < CB2EC3BF-6771-4DAB-BF29-6775FB6F9608 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib

    0 x 2700000 - 0x2740ff7 com.apple.vmutils 4.2 (106) < 7AAF9FDA-AC1E-09FD-889E-68FFB5F94BA8 > /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils

    0 x 2759000 - 0x2890fef + WidgetBinLib.dylib? (???) < F506904C-A3A5-2E16-C1E4-BBB1018D4288 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/WidgetBinLib.dylib

    0 x 2926000 - 0x2b20fcf + AdobeOwl? (???) < F209A9B2-9606-4182-93D8-84B349CFBE48 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl

    0x2b9b000 - 0x3099fc3 + AdobeOwlCanvas? (???) < DC1EE447-FCDB-43C8-B6D2-A5454291C85D >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas

    0x33dd000 - 0x33ddff7 libmx. A.dylib 315.0.0 (compatibility 1.0.0) < 01401BF8-3FC7-19CF-ACCE-0F292BFD2F25 >/usr/lib/libmx. A.dylib

    0 x 3700000 - 0x3712ff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) < 8D606435-1A3C-FE0B-824A-1386809FFFF5 > /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib

    0 x 3716000 - 0x3723ff7 + com.adobe.asneu.framework stand version 1.6.2 1.6.2f01 / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/asneu.framework/Versions/A/asneu

    0 x 3727000 - 0x372bff9 + com.adobe.InDesign.Data UI 6.0.0.352 (?) < 85A22E03-9C0E-6F41-9C99-DDD06DD88300 > services/Applications/Adobe InDesign CS4 / Plug - Ins / Data / Data Services user interface Services. InDesignPlugin / Data Services UI

    0 x 3730000 - 0x3737ff8 + com.adobe.InDesign.Data 6.0.0.352 (?) < B53B8B9E-B41C-A9C4-8070-B835E5DC71F2 > / Applications/Adobe InDesign CS4/Plug-Ins/Data/Data Services Services.InDesignPlugin / Data Services

    0x373d000 - 0x3749ff5 + com.adobe.InDesign.DTTransform 6.0.0.352 (?) < C11BA48D-46A8-06FB-D803-15BE309A319E > / Applications/Adobe InDesign CS4/Plug-Ins/Data Services/DTTransform.InDesignPlugin/DTTransform

    0 x 3751000 - import filter + com.adobe.InDesign.Media 0x3767feb 6.0.0.352 (?) < B25EA5A7-E8AD-2EA0-D1F2-793594E772EB > / Applications/Adobe InDesign CS4/Plug-Ins/filters/Media Filter.InDesignPlugin/Media import filter import

    0x37f7000 - import filter + com.adobe.InDesign.PNG 0x37fafff UI 6.0.0.352 (?) < B11AF6F4-2AFF-7BA8-D2AE-BA2C0E6EC36A > / Applications/Adobe InDesign CS4/Plug-Ins/filters/PNG import filter UI. UI InDesignPlugin/PNG import filter

    0x7de9000 - 0x7df7fe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) < 07211458-FD06-9FEF-3DF4-2E5F0304D4BC > /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib

    0x7dfb000 - 0x7dfcff2 + com.adobe.InDesign.Help 6.0.0.352 (?) < 0F4B3A38-9C70-AF9B-BF2E-214D9934FBD9 >/Applications/Adobe InDesign CS4/Plug-Ins/UI/Help.InDesignPlugin/Help

    0x7ffa000 - 0x7ffcff2 + com.adobe.InDesign.SimpleTextImportFilter 6.0.0.352 (?) < 78004381-49BA-D66C-35CE-45DB39FEBB1E >/Applications/Adobe InDesign CS4/Plug-Ins/Filters/SimpleTextImportFilter.InDesignPlugin/SimpleTextImportFilter

    0x1ef91000 - 0x1efb4fff + com.adobe.InDesign.Dictionary 6.0.0.352 dialogue editor (?) < 5C09D301-0BCE-7DBD-C28A-A1F55139E2CE > / Applications/Adobe InDesign CS4/Plug-Ins/dictionaries/Dictionary Editor Dialog.InDesignPlugin/Dictionary Editor dialog box

    0x1efc9000 - 0x1efe4fff + com.adobe.InDesign.LILO 6.0.0.352 (?) < 0E824840-5088-6779-6D7E-1D940C75F0E8 > / Applications/Adobe InDesign CS4/Plug-Ins/dictionaries/LILO/LILO. InDesignPlugin/LILO

    0x1f043000 - 0x1f046fff + TINthread.dylib? (???) / Library/Application Support/Adobe/SING/Mark II / TINthread.dylib

    0x1f1cb000 - 0x1f26cfc3 + com.adobe.amt.services AMTServices 2.0.1.10077 (BuildVersion: 53.352460;) Brand: Tuesday, July 29, 2008 16:31:09) (2 0) < 31E82904-C3C2-424E-A1AE-A5EFADBB19B8 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices

    0x1f2ba000 - 0x1f2bfff3 + com.adobe.InDesign.QTAccess 6.0.0.352 (?) < 1A40EE48-3845-A79D-198B-522022908941 >/Applications/Adobe InDesign CS4/Plug-Ins/Filters/QTAccess.InDesignPlugin/QTAccess

    0x1f2c4000 - 0x1f2cefff + com.extensis.fontplugins (3.0.12.4) 3.0.12.4 < 35C4B615-2162-FB86-5BDE-C05146996BC8 > Applications/Suitcase Fusion 4.app/Contents/Resources/PluginFiles/ExtensisPlugins.framework/ExtensisPlugins

    0x1f8ac000 - 0x1f8ccff9 + TextPanelLib.dylib? (???) < B37A8DDD-502A-8DCE-5574-FE4F8A52A48A >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/TextPanelLib.dylib

    0x1f8df000 - 0x1f8ebff3 + com.adobe.InDesign.SaveBack 6.0.0.352 (?) < 5FEC3A18-4BD3-1044-6236-3115C0C6858E >/Applications/Adobe InDesign CS4/Plug-Ins/Filters/SaveBack.InDesignPlugin/SaveBack

    0x1f8f4000 - 0x1f8f8ff1 + com.adobe.InDesign.JPEG export UI 6.0.0.352 (?) < 8A3D6AD4-9FDF-4DBF-345C-3640D15B1C43 > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/JPEG Export UI. InDesignPlugin/JPEG export UI

    0x1fa00000 - 0x1faaafff + com.adobe.linguistic.LinguisticManager 4.0.0 (7963) < B915463F-F448-4704-A0D8-BEE4B780F298 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic

    0x1facd000 - 0x1fae6fff + com.adobe.InDesign.Sangam preferences UI 6.0.0.352 (?) < 8DF39D2E-CAE2-5231-4E82-6F8FC0866E68 > / Applications/Adobe InDesign CS4/Plug-Ins/filters/Sangam Preferences UI. InDesignPlugin/Sangam Preferences UI

    0x1faf5000 - 0x1fb41ffe + AdobeSangam 3.0.0 (3.0.0 compatibility) < 7CA1710B-7675-42EA-A688-F3570ABB577B >/Applications/Adobe InDesign CS4 / Adobe InDesign CS4.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam

    0x1fba4000 - 0x1fbf3ff3 + com.adobe.InDesign.SangamExport 6.0.0.352 (?) < 9DBC6F9D-C04E-BD09-6655-B5FB0C504802 >/Applications/Adobe InDesign CS4/Plug-Ins/Filters/SangamExport.InDesignPlugin/SangamExport

    0x1fc11000 - 0x1fd08fef + com.adobe.InDesign.SangamServicer - map 6.0.0.352 (?) < F94FF017-6AC1-81D3-4380-B1572289D0D4 >/Applications/Adobe InDesign CS4/Plug-Ins/Filters/SangamServicer-Mapper.InDesignPlugin/SangamServicer-Mapper

    0x1fd4d000 - 0x1fdd5fff + com.adobe.InDesign.Tagged text attributes 6.0.0.352 (?) < 392E29FB-F331-5765-4292-C72B2008621A > / Applications/Adobe InDesign CS4/Plug-Ins/filters/tag Attributes.InDesignPlugin/Tagged text attributes of text

    0x1fe06000 - 0x1fe12fed + com.adobe.InDesign.Tagged text filters UI 6.0.0.352 (?) < F2CD8EAB-8C46-480C-524F-E39E1E31F577 > / Applications/Adobe InDesign CS4/Plug-Ins/filters/tag text filters UI. InDesignPlugin/tag UI text filters

    0x1fe18000 - 0x1feb4ff2 + com.adobe.InDesign.Tagged text filters 6.0.0.352 (?) < 0036BA3A-F257-141C-5B9F-5DFF9F7E8579 > / Applications/Adobe InDesign CS4/Plug-Ins/filters/tag Filters.InDesignPlugin/Tagged text filters text

    0x1fec3000 - 0x20097ff7 + com.extensis.AutoActivationPlugin.ID6 (3.0.12.4) 3.0.12.4 < 6F2FF185-39B6-85D4-27A7-83363A73C26E > / Applications/Adobe InDesign CS4/Plug-Ins/do Activation/ExtensisFontManagementIDCS4.InDesignPlugin/Contents/MacOS/ExtensisFontManageme ntIDCS4

    0x201ba000 - 0x201c2ff9 + com.adobe.InDesign.Clipping path of dialogue 6.0.0.352 (?) < C047A93F-1863-13EE-048F-9F9406C7DDFE > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Clipping Path Dialog.InDesignPlugin/Clipping dialogue paths

    0x201cb000 - management of + com.adobe.InDesign.Color 0x201eefff UI 6.0.0.352 (?) < 7932C550-D31C-6230-30FD-B4DC96D7F35B > / Applications/Adobe InDesign CS4/Plug-Ins/color/graphic Management Interface. InDesignPlugin/Color management interface

    0x201fa000 - 0x20247ff9 + com.adobe.InDesign.Color picker Panel 6.0.0.352 (?) < 6D5F716C-4997-E6CD-6625-8C95A4A630BB > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Color Picker Panel.InDesignPlugin/Color Picker Panel

    0 x 20262000 - 0x20335ffb + com.adobe.InDesign.Dynamic documents 6.0.0.352 (?) < F93D80E9-A3D8-41E4-EE20-54FC9C8DAD6B > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/dynamic Documents.InDesignPlugin/Dynamic Documents

    0x2037a000 - 0x2045bfc3 + AdobeSWFPort? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeSWFPort.framework/Versions/A/AdobeSWFPort

    0x2048f000 - 0x204a1ffd + com.adobe.InDesign.DynamicDocumentsUI 6.0.0.352 (?) < E6DE79DC-BA0F-C0CE-7C9E-2881BF96953B >/Applications/Adobe InDesign CS4/Plug-Ins/Graphics/DynamicDocumentsUI.InDesignPlugin/DynamicDocumentsUI

    0x204a7000 - 0x204aefff + com.adobe.InDesign.EPS UI 6.0.0.352 (?) < 402F654F-BD3A-F518-319A-66F8351A1C0A > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/EPS UI. UI InDesignPlugin/EPS

    0x204b4000 - 0x204baff7 + com.adobe.InDesign.Generic style Editor 6.0.0.352 (?) < 6CDB2DCF-DBF6-F8F2-4CD4-575D9FDE0D4A > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Generic Style Editor.InDesignPlugin/Generic Style Editor

    0x204c3000 - 0x204e5ff7 + com.adobe.InDesign.Gradient Panel 6.0.0.352 (?) < 23AEA9F7-222A-BA00-5288-F5EE281C9155 > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/gradient Panel.InDesignPlugin/Gradient Panel

    0x204f4000 - 0x20537fff + com.adobe.InDesign.Graphic panels 6.0.0.352 (?) < 3491741F-72ED-3490-7CBF-FA5FB3027855 > / Applications/Adobe InDesign CS4/Plug-Ins/graph/Graphic Panels.InDesignPlugin/Graphic panels

    0 x 20550000 - 0x20565fff + com.adobe.InDesign.JPEG export 6.0.0.352 (?) < 842E1B3B-42C2-0191-198B-A392862655A2 > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/JPEG Export.InDesignPlugin/JPEG Export

    0 x 20573000 - 0x205a8ff7 + com.adobe.InDesign.Output from 6.0.0.352 (?) < 8DBEAAE5-BBA0-B48F-A83E-506430EAB349 > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/output Preview.InDesignPlugin/Output Preview

    0x205bb000 - 0x205c8ff1 + com.adobe.InDesign.OutputMiscUI 6.0.0.352 (?) < BA56ACAB-1453-D2E3-655C-EFDBD9543783 >/Applications/Adobe InDesign CS4/Plug-Ins/Graphics/OutputMiscUI.InDesignPlugin/OutputMiscUI

    0x205d4000 - 0x20625ff7 + com.adobe.InDesign.PDF UI 6.0.0.352 (?) < F979295A-2243-A862-B339-1EA6780E6A7E > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/PDF UI. UI InDesignPlugin/PDF

    0x2063e000 - 0x2069efc7 + AdobeXMP? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP

    0x206ad000 - 0x206bbffd + com.adobe.InDesign.Printer styles 6.0.0.352 (?) < 7C016F3F-411F-EC5F-75BB-8507878340C8 > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Printer Styles.InDesignPlugin/Printer Styles

    0x206c5000 - 0x20766fe1 + com.adobe.InDesign.PrintUI 6.0.0.352 (?) < 8F9CB925-7B0F-FB0C-CE9E-8ACE5C193809 >/Applications/Adobe InDesign CS4/Plug-Ins/Graphics/PrintUI.InDesignPlugin/PrintUI

    import of 0x207a7ff5 + com.adobe.InDesign.PS 0x2079d000 - UI 6.0.0.352 (?) < B8028ED9-7B2F-96DF-ACA9-341B4F74EE88 > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/PS Import UI. InDesignPlugin/PS Import UI

    0x207b0000 - 0x207c3fff + com.adobe.InDesign.Swatch Library Panel 6.0.0.352 (?) < 80A8B416-E4AA-B266-FE6D-4D27A34626B8 > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Swatch Panel.InDesignPlugin/Swatch Library panel library

    0x207cb000 - 0x2083cff9 + com.adobe.InDesign.Swatches Panel 6.0.0.352 (?) < A27CCA98-A346-0EE7-65F5-721D79D0B8AC > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/color chart Panel.InDesignPlugin/Swatches Panel

    0 x 20860000 - 0x208ceffd + com.adobe.InDesign.Transparency UI 6.0.0.352 (?) < 763895B4-7EE8-FFAF-27F7-13C198906B92 > / Applications/Adobe InDesign CS4/Plug-Ins/Graphics/transparent UI. InDesignPlugin/transparency UI

    0x208f2000 - 0x2092dfff + com.adobe.InDesign.Assignment UI 6.0.0.352 (?) < A910C644-993D-3FE0-924D-8AF5EFA4B614 > / Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/assignment UI. Assignment/InDesignPlugin UI

    0 x 20942000 - 0x20955fe5 + com.adobe.InDesign.InCopy bridge UI 6.0.0.352 (?) < DCDBF6B5-5632-E91F-BB74-0EF1B28FF7CD > / Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/InCopy Bridge UI. InDesignPlugin/InCopy Bridge UI

    0x2095e000 - 0x20985fff + com.adobe.InDesign.InCopy bridge 6.0.0.352 (?) < 501249E6-E625-1E51-1821-B549B67DAB5E > / Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/InCopy Bridge.InDesignPlugin/InCopy Bridge

    0 x 20991000 - 0x20995ff9 + com.adobe.InDesign.InCopyExport 6.0.0.352 (?) < 0DEA75D0-0A6E-4A74-C7DC-BCE47FE84CE6 >/Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/InCopyExport.InDesignPlugin/InCopyExport

    0x2099c000 - 0x2099fff3 + com.adobe.InDesign.InCopyExportUI 6.0.0.352 (?) < B04E33E5-5B1B-4E42-A389-7A7ACECA9D6C >/Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/InCopyExportUI.InDesignPlugin/InCopyExportUI

    0x209a4000 - 0x209a9fff + com.adobe.InDesign.InCopyImport 6.0.0.352 (?) < 1255EF04-F4D8-7327-63BF-EC98077DB93F >/Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/InCopyImport.InDesignPlugin/InCopyImport

    0x209ae000 - 0x209b2fff + com.adobe.InDesign.InCopyWorkflow UI 6.0.0.352 (?) < 589DC441-A7AD-2227-7B6A-9A76051A3D6C > / Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/InCopyWorkflow UI. InDesignPlugin/InCopyWorkflow UI

    0x209b8000 - 0x209efff7 + com.adobe.InDesign.Note 6.0.0.352 (?) < A727FD92-2A60-E6A2-6FF5-8EAB4359DA2E >/Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/Note.InDesignPlugin/Note

    0x20a04000 - 0x20a0cffb + com.adobe.InDesign.NotePref 6.0.0.352 (?) < 6A2E5C76-343F-CCD2-FE42-9F5D9C536E4C >/Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/NotePref.InDesignPlugin/NotePref

    0x20a17000 - 0x20a19ff2 + com.adobe.InDesign.Username UI 6.0.0.352 (?) < A2AEF94D-F8DA-9928-269E-F15F3AE94DA7 > / Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/username user interface. UI InDesignPlugin/username

    0x20a1e000 - 0x20a60fff + com.adobe.InDesign.ButtonUI 6.0.0.352 (?) < 4798B84D-AC6A-3649-2E7F-D77B605B0897 >/Applications/Adobe InDesign CS4/Plug-Ins/Interactive/ButtonUI.InDesignPlugin/ButtonUI

    0x20a7b000 - 0x20a94ff7 + com.adobe.InDesign.MediaUI 6.0.0.352 (?) < 11C77707-A565-50AC-CE15-51DC1F5DB074 >/Applications/Adobe InDesign CS4/Plug-Ins/Interactive/MediaUI.InDesignPlugin/MediaUI

    0x20aa2000 - 0x20aabfff + com.adobe.InDesign.Alignment Panel 6.0.0.352 (?) < 496EA1C7-E070-855A-0212-859689B7FEF3 > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Panel.InDesignPlugin/Alignment Panel alignment

    0x20ab2000 - 0x20adcff3 + com.adobe.InDesign.Asset Library Panel 6.0.0.352 (?) < 5499FAE6-DD38-6283-C7BC-34D8AC5B9EC5 > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Asset Library Panel.InDesignPlugin / Asset Library panel

    0x20af2000 - 0x20b35fff + com.adobe.InDesign.Asset PubLibrary 6.0.0.352 (?) < ABA04474-28F1-A433-D1F6-9547C6340953 > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Asset PubLibrary.InDesignPlugin / Asset PubLibrary

    0x20b4a000 - 0x20b78ff1 + com.adobe.InDesign.Book Panel 6.0.0.352 (?) < 98F1E7EE-ED0E-3CB9-11AE-803FA2E1B624 > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Book Panel.InDesignPlugin / Book Panel

    0x20b8d000 - 0x20b9dff7 + com.adobe.InDesign.Bookmark Panel 6.0.0.352 (?) < 3BCF5D34-F64C-E02C-E115-B54F5588E88A > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Bookmark Panel.InDesignPlugin / Bookmark Panel

    0x20baa000 - 0x20bcdff1 + com.adobe.InDesign.Control Panel 6.0.0.352 (?) < 36AC28AA-8BD0-5147-BCB9-EDFF8F55D947 > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Control Panel.InDesignPlugin/Control Panel

    0x20bdd000 - 0x20be2fff guides + com.adobe.InDesign.Create of 6.0.0.352 (?) < 1D544186-D159-F548-AC11-53BEA3B3E32C > dialogue/Applications/Adobe InDesign CS4 / Plug - Ins / page/creation of Guides Dialog.InDesignPlugin/Create Guides dialog layout

    0x20be8000 - 0x20c11fff + com.adobe.InDesign.Eyedropper tool 6.0.0.352 (?) < DCB9B263-CA26-3166-4295-8E5FD885D13E > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/pipette Tool.InDesignPlugin/Eyedropper tool

    0x20c1f000 - 0x20c70ffd + com.adobe.InDesign.Hyperlinks Panel 6.0.0.352 (?) < 1C45A1F4-0115-E4F3-A9EF-5CD82563FB3B > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/links Panel.InDesignPlugin/Hyperlinks Panel

    0x20c87000 - 0x20cd7ff3 + com.adobe.InDesign.Index Panel 6.0.0.352 (?) < 4C950BC3-94E5-7442-99CC-141B6E4BB781 > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Index Panel.InDesignPlugin / Index Panel

    0x20cec000 - 0x20cf9fff + Kangxi? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/unihan.framework/Versions/A/unihan

    0x20d0b000 - 0x20d44ff3 + com.adobe.InDesign.Info Panel 6.0.0.352 (?) < A44ED97C-5C45-8C81-0D44-F884E52CD784 > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Info Panel.InDesignPlugin / Info Panel

    0x20d56000 - 0x20dacfef + com.adobe.InDesign.Knowledge base 6.0.0.352 (?) < 4B56F760-BA47-A4CF-5C39-E8B64CDB454D > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Knowledge Base.InDesignPlugin/Knowledge Base

    0x20dc0000 - 0x20de1ff9 + com.adobe.InDesign.Layers panel 6.0.0.352 (?) < 6ECE67A7-473C-F979-9836-C29783EF2C20 > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/layers Panel.InDesignPlugin/Layers Panel

    0x20df3000 - 0x20df5ff7 + com.adobe.InDesign.Layout setting Panel 6.0.0.352 (?) < 69CB7865-2D40-C519-28BF-06B4700FADF6 > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Layout Panel.InDesignPlugin / setting adjustment panel Layout

    0x20dfa000 - 0x20e10fff + com.adobe.InDesign.Layout setting 6.0.0.352 (?) < E647D3F3-A97C-0965-85A5-B9C8212B9F04 > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Layout Adjustment.InDesignPlugin / Layout adjustment

    0x20e1a000 - 0x20e3ffff + com.adobe.InDesign.Links UI 6.0.0.352 (?) < 7A82B26D-9E4A-2C36-AF1B-E5728638E224 > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/links UI. InDesignPlugin/links UI

    0x20e51000 - 0x20eb1ff1 + com.adobe.InDesign.ObjectStylesUI 6.0.0.352 (?) < A8C7976D-0346-A50B-B6AD-492846741299 >/Applications/Adobe InDesign CS4/Plug-Ins/Layout/ObjectStylesUI.InDesignPlugin/ObjectStylesUI

    0x20ed1000 - 0x20ee4ff9 configuration dialog box + com.adobe.InDesign.Page 6.0.0.352 (?) < 9E3076FE-2315-B82E-2CC8-62CBECED9137 > / Applications/Adobe InDesign CS4/Plug-Ins/page/Page layout Dialog.InDesignPlugin Setup / Page Setup dialog box

    0x20eeb000 - 0x20f52ff9 + com.adobe.InDesign.Pages Panel 6.0.0.352 (?) < 8BF988BB-791B-2EDD-4DB7-5DB1FB73C4D2 > / Applications/Adobe InDesign CS4/Plug-Ins/page/page layout Panel.InDesignPlugin / Pages Panel

    0x20f6f000 - 0x20f78ff1 + com.adobe.InDesign.Sections UI 6.0.0.352 (?) < FA736396-CF9B-F6C4-BF76-5DE40597D321 > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Sections UI. InDesignPlugin/Sections UI

    0x20f7e000 - 0x20f83ff9 + com.adobe.InDesign.StepRepeat 6.0.0.352 (?) < 731A4ACB-E181-4D1C-DE20-3BC5A0C36074 >/Applications/Adobe InDesign CS4/Plug-Ins/Layout/StepRepeat.InDesignPlugin/StepRepeat

    0x20f8a000 - 0x20fb5ff7 + com.adobe.InDesign.Text wrap Panel 6.0.0.352 (?) < 8DE26186-BAD9-F996-87CB-F5201229551F > / Applications/Adobe InDesign CS4/Plug-Ins/layout page/Text Wrap Panel.InDesignPlugin / Text Layout Panel

    0x20fc6000 - 0x20febffd + com.adobe.InDesign.TOC 6.0.0.352 UI (?) < 13CDCE4A-D2D9-083E-0560-AE7BCC5C7C40 > dialogue/Applications/Adobe InDesign CS4 / Plug - Ins / page/TOC UI Dialog.InDesignPlugin development / TOC UI Dialog

    0x20ffb000 - 0x21018ff9 + com.adobe.InDesign.Transform Panel 6.0.0.352 (?) < 82FA3595-A7D0-7A4A-8DF2-BB71C22E0A45 > / Applications/Adobe InDesign CS4/Plug-Ins/Layout Panel.InDesignPlugin page/Transform / Transform Panel

    import of 0x21036ff3 + com.adobe.InDesign.Image 0 x 21024000 - UI 6.0.0.352 (?) < 4426829B-28C7-6333-5ACA-B4F84EDB9F4D > / Applications/Adobe InDesign CS4/Plug-Ins/Page article/Image Import UI. InDesignPlugin/Image Import UI

    0 x 21042000 - 0x21050fff + com.adobe.InDesign.Scotch rules of 6.0.0.352 (?) < 74F27148-FACF-5BD6-0006-9DE1FD3F2D50 > / Applications/Adobe InDesign CS4/Plug-Ins/Page Item/Scotch Rules.InDesignPlugin/tape rules

    0 x 21058000 - 0x2108efff + com.adobe.InDesign.BNUI 6.0.0.352 (?) < AED17DBC-0E6D-6C1A-47FA-DCE1863C8E25 > / Applications/Adobe InDesign CS4/Plug-Ins/PMPack/BNUI. InDesignPlugin/BNUI

    0x210a3000 - 0x210aaff7 + com.adobe.InDesign.CropTool 6.0.0.352 (?) < 918C0A42-7442-4C3B-19C6-976479A0DD41 >/Applications/Adobe InDesign CS4/Plug-Ins/PMPack/CropTool.InDesignPlugin/CropTool

    0x210b2000 - 0x21131fff + com.adobe.InDesign.DataMerge 6.0.0.352 (?) < 198D3D5E-B1BB-FE63-13A4-3EBFB2A8FCD3 >/Applications/Adobe InDesign CS4/Plug-Ins/PMPack/DataMerge.InDesignPlugin/DataMerge

    0x2115e000 - 0x2117fff7 + com.adobe.InDesign.DataMergeUI 6.0.0.352 (?) < 6B9F2583-53D7-1319-0A1E-2A353D9837F7 >/Applications/Adobe InDesign CS4/Plug-Ins/PMPack/DataMergeUI.InDesignPlugin/DataMergeUI

    0 x 21190000 - 0x2119efff + com.adobe.InDesign.PMWelcomeScreen 6.0.0.352 (?) < 17CCEBF1-6941-902D-4742-B02B31B5A517 >/Applications/Adobe InDesign CS4/Plug-Ins/PMPack/PMWelcomeScreen.InDesignPlugin/PMWelcomeScreen

    0x211ab000 - 0x211b1ff8 com.apple.carbonframeworktemplate 1.3 (1.3.11) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient

    0x211b6000 - 0x21240ffb + com.adobe.InDesign.Package and UI 6.0.0.352 preflight (?) < 382B9E43-94D8-6410-3C4E-B58F9B851CDC > UI/Applications/Adobe InDesign CS4/Plug-Ins/prepress/package and preflight. UI InDesignPlugin/package and preflight

    0 x 21270000 - 0x213abff7 + com.adobe.InDesign.Package and 6.0.0.352 before the flight (?) < 4433C445-8D25-223C-05FC-8F5A7BE7F7CA > / Applications/Adobe InDesign CS4/Plug-Ins/prepress/package and Preflight.InDesignPlugin/Package and preflight

    0x213eb000 - 0x2140fff6 + AdobeAXE8SharedExpat? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t

    0 x 21417000 - 0x2150ffff + com.adobe.InDesign.JBX 6.0.0.352 (?) < E59EE5A5-9A7C-4163-F181-2F4573FF68DA > / Applications/Adobe InDesign CS4/Plug-Ins/sandbox / "JBX". InDesignPlugin / "JBX"

    0x2155d000 - 0x21560ff5 + com.adobe.InDesign.Script Panel 6.0.0.352 label (?) < ABF61B34-056D-3C4A-8CE0-9975F05D8267 > / Applications/Adobe InDesign CS4/Plug-Ins/Script/Script Label Panel.InDesignPlugin/Script Label Panel

    0 x 21567000 - 0x2156efff + com.adobe.InDesign.Scripts Panel 6.0.0.352 (?) < 6CF81082-2079-F857-9AE3-54141FA55B18 > / Applications/Adobe InDesign CS4/Plug-Ins/Script/Scripts Panel.InDesignPlugin/Scripts Panel

    0 x 21576000 - 0x2160afff + com.adobe.InDesign.Tables UI 6.0.0.352 (?) < D086D539-9F0F-E41D-A540-671BF40FE65C > / Applications/Adobe InDesign CS4/Plug-Ins/Tables/Tables UI. InDesignPlugin/Tables UI

    0x2162c000 - 0x21693fff + com.adobe.InDesign.TableStylesUI 6.0.0.352 (?) < 8618D6AA-6181-6AAD-394A-C14C3FB08BA4 >/Applications/Adobe InDesign CS4/Plug-Ins/Tables/TableStylesUI.InDesignPlugin/TableStylesUI

    0x216b2000 - 0x216f5ff7 + com.adobe.InDesign.Character Panel 6.0.0.352 (?) < 3CA23003-ADED-0E4F-7914-02B14F96F3F3 > / Applications/Adobe InDesign CS4/Plug-Ins/text/characters Panel.InDesignPlugin/Character Panel

    0 x 21712000 - 0x2172dfff + com.adobe.InDesign.Conditional UI 6.0.0.352 text (?) < C53D556D-0A80-D348-7990-D4CF215CA67E > / Applications/Adobe InDesign CS4/Plug-Ins/text/conditional text UI. InDesignPlugin/conditional text UI

    0x2173d000 - 0x2174efff + com.adobe.InDesign.Create described 6.0.0.352 (?) < 34C8477C-B742-DC59-1530-F92449FB0634 > / Applications/Adobe InDesign CS4/Plug-Ins/text/create Outlines.InDesignPlugin/Create outlines

    0 x 21757000 - 0x21810fff + com.adobe.InDesign.Find and 6.0.0.352 Panel change (?) < 2C457607-292C-1E46-F8D8-A0F9E83F52F3 > / Applications/Adobe InDesign CS4/Plug-Ins/text/Find and change Panel.InDesignPlugin/Find and change Panel

    0x2183a000 - 0x21852fff + com.adobe.InDesign.Find Panel 6.0.0.352 Format change (?) < 79BC0738-646D-B618-43DE-63477BF8D87E > / Applications/Adobe InDesign CS4/Plug-Ins/text/Find Exchange Format Panel.InDesignPlugin/Find change Format Panel

    0x2185f000 - 0x21875ff9 + com.adobe.InDesign.Font use of dialogue 6.0.0.352 (?) < 6667279D-486C-F58A-4BD6-068E8522E90A > / Applications/Adobe InDesign CS4/Plug-Ins/text/fonts Dialog.InDesignPlugin / make use of use dialogue of

    0 x 21880000 - 0x218dfff2 + com.adobe.InDesign.Glyphs Panel 6.0.0.352 (?) < DE87C30B-D802-A6E2-1BF7-2B40B762FA5C > / Applications/Adobe InDesign CS4/Plug-Ins/text/glyphs Panel.InDesignPlugin/Glyphs Panel

    0x218f7000 - 0x218fdfff + com.adobe.InDesign.Hyphenation Panel 6.0.0.352 (?) < C3CFD45F-7B94-E9A8-1E18-8969784D4630 > / Applications/Adobe InDesign CS4/Plug-Ins/text/hyphenation Panel.InDesignPlugin/unhappy Panel

    0 x 21906000 - 0x21910ffd + com.adobe.InDesign.Indents and 6.0.0.352 tabs (?) < 7625F0BC-91D5-2A4D-1C28-9B004648D653 > / Applications/Adobe InDesign CS4/Plug-Ins/text/dashes and Tabs.InDesignPlugin/Indents and tabs

    0 x 21919000 - 0x2191efff + com.adobe.InDesign.Justification Panel 6.0.0.352 (?) < 87EC2B50-54F6-086E-2095-949E3850D70D > / Applications/Adobe InDesign CS4/Plug-Ins/text/Justification Justification/Panel.InDesignPlugin Panel

    0 x 21925000 - 0x21929fff + com.adobe.InDesign.Keeps Panel 6.0.0.352 (?) < CF35583F-8A7F-0726-56F2-5DF5D4C0DF0F > / Applications/Adobe InDesign CS4/Plug-Ins/text/call Panel.InDesignPlugin/Keeps Panel

    0x2192e000 - 0x21949ff3 + com.adobe.InDesign.Optical 6.0.0.352 kerning (?) < A8B92C1B-ABA9-EF53-E6B1-500C12C97652 > Applications/Adobe Kerning.InDesignPlugin/Optical InDesign CS4/Plug-Ins/text/optical kerning

    0 x 21952000 - 0x2196efff + com.adobe.InDesign.Paragraph Panel 6.0.0.352 (?) < C954E80A-D677-9EA5-B71A-9647B4AFBFE7 > / Applications/Adobe InDesign CS4/Plug-Ins/text/paragraph Panel.InDesignPlugin/Paragraph Panel

    0x2197c000 - 0x21986ff2 + com.adobe.InDesign.Paragraph rules Panel 6.0.0.352 (?) < FEA8CA85-E548-98EB-6B74-51F8275DEBA4 > / Applications/Adobe InDesign CS4/Plug-Ins/text/paragraph rules rules Panel.InDesignPlugin/Paragraph Panel

    0x2198d000 - 0x2199bffb + com.adobe.InDesign.Path UI 6.0.0.352 type (?) < E88B9803-C125-424B-7D7D-E601E99071DB > / Applications/Adobe InDesign CS4/Plug-Ins/text/path Type UI. InDesignPlugin/Path Type UI

    0x219a5000 - 0x219acff5 + PathTypeLib.dylib? (???) < DAE01C24-16F1-7785-78DC-90936D2606E6 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/PathTypeLib.dylib

    0x219b2000 - 0x219caffd + com.adobe.InDesign.RunIn styles Panel 6.0.0.352 (?) < 0A845616-B800-CC27-3560-2AE8B80270E4 > / Applications/Adobe InDesign CS4/Plug-Ins/text/RunIn Styles Panel.InDesignPlugin/RunIn Styles Panel

    0x219d6000 - 0x219e7fff + com.adobe.InDesign.SING 6.0.0.352 (?) < 30CE431D-04C6-F3ED-86E8-A67FA93DFB60 > / Applications/Adobe InDesign CS4/Plug-Ins/text/SING. InDesignPlugin / SING

    0x219f2000 - 0x21a20ffb + com.adobe.InDesign.Spelling Panel 6.0.0.352 (?) < 3BAB117C-339B-CED2-C9B1-2C5C39F32FA0 > / Applications/Adobe InDesign CS4/Plug-Ins/text/spelling Panel.InDesignPlugin/Spelling Panel

    0x21a34000 - 0x21a3effd + com.adobe.InDesign.Story Panel 6.0.0.352 (?) < 74C1A1C5-65C3-C7BF-00BD-57711F4C8312 > / Applications/Adobe InDesign CS4/Plug-Ins/text/history Panel.InDesignPlugin/Story Panel

    0x21a46000 - 0x21a84fff + com.adobe.InDesign.Style Panel 6.0.0.352 (?) < C0B6312B-D927-2AA8-5F42-961B774EE756 > / Applications/Adobe InDesign CS4/Plug-Ins/text/Style Panel.InDesignPlugin/Style Panel

    0x21aa0000 - color Panel + com.adobe.InDesign.Text 0x21aa7ff5 6.0.0.352 (?) < 7024E146-9825-7FD9-6782-EF8AAE336C14 > / Applications/Adobe InDesign CS4/Plug-Ins/text/Text Color Panel.InDesignPlugin/Text color Panel

    0x21aac000 - frame + com.adobe.InDesign.Text 0x21ac1ff1 6.0.0.352 Options (?) < 7CC9425A-A54C-FC8D-9A34-CDCD403F2483 > / Applications/Adobe InDesign CS4/Plug-Ins/text/text frame Options.InDesignPlugin/Text Frame Options

    0x21acc000 - 0x21b01fff + com.adobe.InDesign.Text Panel 6.0.0.352 (?) < F85AAED2-99E6-96BF-E4D5-3E9D700B1EEE > / Applications/Adobe InDesign CS4/Plug-Ins/text/Text Panel.InDesignPlugin/Text Panel

    0x21b14000 - 0x21b27ff5 + com.adobe.InDesign.Text preferences 6.0.0.352 (?) < 891714B6-9258-092B-F70D-6CE1AD5892A1 > / Applications/Adobe InDesign CS4/Plug-Ins/text/Text Preferences.InDesignPlugin/Text preferences

    0x21b31000 - 0x21b48ff9 + com.adobe.InDesign.Text rule 6.0.0.352 (?) < F6161D34-AF7E-3391-FFC8-34FCF31D2CF3 > / Applications/Adobe InDesign CS4/Plug-Ins/text/Text Ruler.InDesignPlugin/Text sovereign

    0x21b53000 - 0x21b61ff2 + com.adobe.InDesign.Text Panel 6.0.0.352 style (?) < 8E84FBAC-3BB2-48C9-6A88-ED2E59AD9AF4 > / Applications/Adobe InDesign CS4/Plug-Ins/text/Text Style Panel.InDesignPlugin/Text Style Panel

    0x21b6a000 - 0x21b7bfe7 + com.adobe.InDesign.CSXS 6.0.0.352 (?) < 157644AF-C315-2A02-4BB8-111ECF157B7E > / Applications/Adobe InDesign CS4/Plug-Ins/UI/CSXS. InDesignPlugin/CSXS

    0x21b89000 - 0x21bebfe7 + com.adobe.PlugPlug 1.0.0.73 (1.0.0.73) / applications/Adobe InDesign CS4 / Adobe InDesign CS4.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug

    0x21c2d000 - 0x21cfffe7 + AdobeAXEDOMCore? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore

    0x21d31000 - 0x21d4dff9 + com.adobe.InDesign.Galley preferences 6.0.0.352 (?) < D09D8478-1DE4-1AD6-D39A-8A219AD3BEF6 > / Applications/Adobe InDesign CS4/Plug-Ins/UI/Galley Preferences.InDesignPlugin/Galley preferences

    0x21d5d000 - Panel preferences + com.adobe.InDesign.General 0x21d63ffe 6.0.0.352 (?) < FCEA8C2E-AC68-949D-BD8D-E7C6F0AB0D73 > / Applications/Adobe InDesign CS4/Plug-Ins/UI/General Preferences Panel.InDesignPlugin/General preferences panel

    0x21d69000 - 0x21d77ff5 + com.adobe.InDesign.Performance UI 6.0.0.352 (?) < 6317F432-FD07-3257-6FD5-8B4AA98EAEE3 > / Applications/Adobe InDesign CS4/Plug-Ins/UI/Performance UI. InDesignPlugin-Performance UI

    0x21d83000 - 0x21d96fff + com.adobe.InDesign.Shortcut 6.0.0.352 dialogue editor (?) < 3774220F-2424-05CF-F33E-9FACC829F118 > / Applications/Adobe InDesign CS4/Plug-Ins/UI/shortcut Editor Dialog.InDesignPlugin/Shortcut Editor dialog box

    0x21da0000 - 0x21dabfff + com.adobe.InDesign.Tool box 6.0.0.352 (?) < 6694A1DD-95E8-5C43-1908-414AD2532EB4 > / Applications/Adobe InDesign CS4/Plug-Ins/tool/UI Box.InDesignPlugin/Tool Box

    0x21db5000 - 0x21dbcffb + com.adobe.InDesign.Tool Tips 6.0.0.352 (?) < 817781E2-3F65-AD79-F9BC-0C678DBBAE7B > / Applications/Adobe InDesign CS4/Plug-Ins/tool/UI Tips.InDesignPlugin/Tool tips

    0x21dc5000 - 0x21dcbff7 + com.adobe.InDesign.PerformanceMetrics 6.0.0.352 (?) < 71D6DC9A-F541-4A8D-B286-8AE1014BE5A0 >/Applications/Adobe InDesign CS4/Plug-Ins/Utility/PerformanceMetrics.InDesignPlugin/PerformanceMetrics

    0x21dd0000 - 0x21dedff7 + com.adobe.InDesign.Plugin manager 6.0.0.352 (?) < 99E988D1-2785-D355-81C7-6300A143A614 > / Applications/Adobe InDesign CS4/Plug-Ins/utility/Plugin Manager.InDesignPlugin/Plugin Manager

    0x21dfd000 - 0x21e0affd + com.adobe.InDesign.Metadata UI 6.0.0.352 (?) < 6AF3FED6-83AB-D0F4-4F4D-311FC7507E3A > / Applications/Adobe InDesign CS4/Plug-Ins/Workflow/Metadata UI. UI InDesignPlugin/metadata

    0x21e12000 - 0x21ee7fdd + FileInfo? (???) < F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo

    0x21f18000 - 0x21f1dffd + com.adobe.InDesign.Workgroup UI 6.0.0.352 (?) < F899079C-F1BB-142A-0C23-D9E6C0A73937 > / Applications/Adobe InDesign CS4/Plug-Ins/Workgroup/Workgroup UI. UI InDesignPlugin/working group

    0x21f22000 - 0x21f55fff + com.adobe.InDesign.Snippet 6.0.0.352 (?) < 7D920E48-DFF3-8E44-6EBD-488A7E42BBEA >/Applications/Adobe InDesign CS4/Plug-Ins/XMedia/Snippet.InDesignPlugin/Snippet

    0x21f64000 - 0x22054ff7 + com.adobe.InDesign.XMedia UI 6.0.0.352 (?) < 2909FBFB-95D5-F044-7F3E-E4A597374150 > / Applications/Adobe InDesign CS4/Plug-Ins/XMedia/XMedia UI. InDesignPlugin/XMedia UI

    0x220b7000 - 0x220fcfff + com.adobe.InDesign.Actions 6.0.0.352 (?) < 780D3F7E-9CD7-0D76-5CA3-C1C56D0F0243 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions

    0 x 22117000 - 0x2227dfef + com.adobe.InDesign.AppFramework 6.0.0.352 (?) < 5C703944-BD46-6FE8-045A-322F46EF10D2 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework

    0x222ef000 - 0x2254ffff + com.adobe.InDesign.Application UI 6.0.0.352 (?) < 1351FFD5-D065-FDD9-7F07-46261DA3F233 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Application UI. InDesignPlugin/Application UI

    0x2262e000 - 0x226fcfff + AdobeExtendScript 3.7.0 (3.7.0 compatibility) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript

    0x2273e000 - 0x227dffd7 + AdobeScCore 3.7.0 (3.7.0 compatibility) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore

    0x2281d000 - 0x2284cff7 + com.adobe.headlights.LogSessionFramework? (2.0.0.06112008) / applications/Adobe InDesign CS4 / Adobe InDesign CS4.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession

    0 x 22871000 - 0x22926fe7 libcrypto.0.9.7.dylib 0.9.7 (0.9.7 compatibility) < 0B69B1F5-3440-B0BF-957F-E0ADD49F13CB > /usr/lib/libcrypto.0.9.7.dylib

    0x2296c000 - 0x2297dffb + LogTransport2? (???) < 835B7B84-5A67-370B-AB39-8E448AA81FA0 >/Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/LogTransport2.framework/Versions/A/LogTransport2

    0 x 22987000 - 0x229e9fe7 + com.adobe.InDesign.Assignments 6.0.0.352 (?) < 18986D9E-9F7B-78FB-5866-ECAFE21B5F31 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments

    0x22a10000 - 0x22a4bfe8 + com.adobe.InDesign.AWS 6.0.0.352 (?) < CC3412D5-A824-15F5-9A96-F9E5BD845155 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/AWS. InDesignPlugin/AWS

    0x22a66000 - 0x22a96ff7 + com.adobe.InDesign.AWSUI 6.0.0.352 (?) < 700E5059-F44C-43C5-4BF0-07984627AA1E > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/AWSUI. InDesignPlugin/AWSUI

    0x22aae000 - 0x22ad5ff3 + com.adobe.InDesign.Basic tools 6.0.0.352 (?) < 1D4B7B59-1C25-7F2A-2BCA-074DA30529A2 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Basic Tools.InDesignPlugin/Basic tools

    0x22ae9000 - 0x22b17ff7 + com.adobe.InDesign.Behavior 6.0.0.352 (?) < EF719127-1CEF-6E9F-0310-678A8276C38E > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior

    0x22b2e000 - 0x22b98fe5 + com.adobe.InDesign.BNCore 6.0.0.352 (?) < 5C17098D-F6CE-4C0F-4425-6B4D6ABF917E > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore

    0x22bad000 - 0x22be9ff3 + com.adobe.InDesign.Book 6.0.0.352 (?) < 63A44ED9-7FBB-926F-C21D-01F51E6F125B > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Book.InDesignPlugin/Book

    0x22bf9000 - 0x22c1efff + com.adobe.InDesign.CellStyles.rpln 6.0.0.352 (?) < 0C8D126A-197C-A999-4F6A-F0045F25E746 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/CellStyles.rpln.InDesignPlugin/CellStyles.rpln

    0x22c2c000 - 0x22c91ffb + com.adobe.InDesign.CJK text attributes 6.0.0.352 (?) < D30AA8B0-0F5A-9C8D-5C9E-CF541ECA519A > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/CJK text Attributes.InDesignPlugin/CJK text attributes

    0x22cad000 - 0x22d04fff + com.adobe.InDesign.CJKGrid 6.0.0.352 (?) < 02C69FF0-3893-0B0C-2635-DE782B131B4F > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid

    0x22d1b000 - 0x22dc4ff3 + com.adobe.InDesign.Color Management 6.0.0.352 (?) < EC22EB23-A226-E5BD-20CB-EC92A928F017 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management

    0x22de9000 - 0x22e28fef + com.adobe.InDesign.CompFontMgr 6.0.0.352 (?) < AA398B4E-169E-8277-995C-CADFBFC9BB60 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr

    0x22e39000 - 0x22e6ffff + com.adobe.InDesign.Conditional text 6.0.0.352 (?) < 0FEB5D99-F80B-2815-8908-DA4DE445B43E > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Conditional Text.InDesignPlugin / Conditional text

    0x22e82000 - 0x22e9dfff + com.adobe.InDesign.Dialog in 6.0.0.352 (?) < 39F3B77C-3B80-809A-F696-35DBB2A4E6AE > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Dialog Layout.InDesignPlugin/Dialog Layout

    0x22eac000 - 0x22ec2ff9 + com.adobe.InDesign.Document shares 6.0.0.352 (?) < B4AFD031-8F27-E279-DFA2-A9877D7D654A > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions

    0x22ecc000 - 0x22feffff + com.adobe.InDesign.Document framework 6.0.0.352 (?) < 675F5F39-568A-395B-6C5F-8AE94039600A > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document framework

    0x2301b000 - 0x23021fff + com.adobe.InDesign.Document UI 6.0.0.352 (?) < 98E0E6A8-10FA-295F-AED8-7F97AFCFE9B6 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Document UI. InDesignPlugin/Document UI

    0 x 23028000 - 0x230d4fef + com.adobe.InDesign.EPS 6.0.0.352 point page (?) < B8D9D97C-6143-983F-AA87-34746D7F9417 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page item

    0x230f9000 - 0x231b1fff + com.adobe.InDesign.Font manager 6.0.0.352 (?) < B301C656-BAF5-4E67-BB87-3D5A6BCFDEFC > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Font Manager.InDesignPlugin / Font Manager

    0x231ca000 - 0x2322cfff + com.adobe.InDesign.FormField 6.0.0.352 (?) < BB3C8CE3-44E1-1B5D-3F1E-831E858AE378 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField

    0 x 23255000 - 0x2339dfff + com.adobe.InDesign.Galley 6.0.0.352 (?) < B9668A6B-8AF7-C167-6D9D-8F421B433676 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley

    0x233f2000 - 0x2351dfff + com.adobe.InDesign.Generic 6.0.0.352 point page (?) < 3E836EBE-A7A4-4C26-D9E8-B1C19C996A47 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page item

    0 x 23551000 - 0x23558fff + com.adobe.InDesign.GenericSettings 6.0.0.352 (?) < 389B0520-8D2D-D3B8-1660-2FDC963D5EFF > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericSettings

    0x2355f000 - Panel preferences + com.adobe.InDesign.Global 0x23560ff2 6.0.0.352 (?) < 6CBC6C7F-01EC-99BC-A502-933A65FEB980 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Global Panel.InDesignPlugin / Global preferences preferences panel

    0 x 23564000 - 0x235abffb + com.adobe.InDesign.Gradient fill 6.0.0.352 (?) < FDDBA359-C81C-1066-87AE-E47B492B955A > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill

    0x235c0000 - 0x23651ff7 + com.adobe.InDesign.Graphics 6.0.0.352 (?) < B2062238-4789-20ED-BFFF-1D40CC601D27 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics

    0x2366f000 - 0x23676ff7 + com.adobe.InDesign.Group 6.0.0.352 (?) < E66E6CE5-210C-81A6-99F6-164EC6FE99A5 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Group.InDesignPlugin/Group

    0x2367d000 - 0x2368efff + com.adobe.InDesign.Guides 6.0.0.352 (?) < E91E7A07-96B3-590C-C0AD-8BAC46F4564B > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Guides.InDesignPlugin/Guides

    0 x 23699000 - 0x23735fff + com.adobe.InDesign.Hyperlinks 6.0.0.352 (?) < C79BBD41-4D91-7A1C-3D72-048E43F24C91 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks

    0 x 23756000 - 0x237a4fff + com.adobe.InDesign.Image of the 6.0.0.352 (?) < B6A94058-7C84-CE2A-9A5B-BC64591489EB > filters/filters/Applications/Adobe InDesign CS4 / Adobe InDesign CS4.app/Contents/MacOS/Required/Image Filters.InDesignPlugin / Image

    0x237ac000 - 0x23893fe3 + com.adobe.InDesign.Image 6.0.0.352 (?) < F4E48110-2538-CFD6-F8C8-D444CC0DBB2A > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Image.InDesignPlugin/Image

    0x238d8000 - 0x238edff3 + com.adobe.InDesign.IME 6.0.0.352 (?) < F4A0C7F3-1047-53F1-3D7C-106A2D1960F7 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/IME. InDesignPlugin/EMI

    0x238f8000 - 0x23931ff7 + com.adobe.InDesign.Import export UI 6.0.0.352 (?) < D25D8731-A0B9-BF7C-4BF7-50DED02B5147 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Import Export UI. InDesignPlugin/Import Export UI

    0 x 23952000 - 0x23a14ffb + com.adobe.InDesign.InCopyShared 6.0.0.352 (?) < E61C74C5-37C5-946B-1F3D-56FFB2A10BE0 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/InCopyShared.InDesignPlugin/InCopyShared

    0x23a5a000 - 0x23a62ff3 + com.adobe.InDesign.InCopySharedUI 6.0.0.352 (?) < 98E08843-51DA-C02F-9AA6-4F5553B6A3FF > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/InCopySharedUI.InDesignPlugin/InCopySharedUI

    0x23a6c000 - 0x23ae0ffb + com.adobe.InDesign.InCopyWorkflow 6.0.0.352 (?) < B727EB7D-41DA-26F9-0D4E-8CB2A0B3899B > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/InCopyWorkflow.InDesignPlugin/InCopyWorkflow

    0x23b17000 - 0x23bd8ff5 + com.adobe.InDesign.Indexing 6.0.0.352 (?) < EB4B2105-7FDB-B182-DD20-F73AAB9721EA > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Indexing.InDesignPlugin/Indexing

    0x23c11000 - 0x23c8cfe3 + com.adobe.InDesign.INXCore 6.0.0.352 (?) < CF83280F-3BAD-3E2C-EB48-3B6FF9362213 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore

    0x23ca6000 - 0x23cbfff2 + com.adobe.InDesign.Layer 6.0.0.352 (?) < 2DD75A5D-09FA-D00C-91AE-8DF70967188E > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Layer.InDesignPlugin/Layer

    0x23ccc000 - 0x23e04ffb + com.adobe.InDesign.Layout UI 6.0.0.352 (?) < 605BCACC-351B-EAEF-01A9-2DEDCC3922C7 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Layout UI. InDesignPlugin/layout UI

    0x23e71000 - 0x23e8bff7 + com.adobe.InDesign.Layout 6.0.0.352 (?) < 31C35FC8-1348-DD9E-060C-82CD59FFC684 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout

    0x23e96000 - 0x23ed7ffb + com.adobe.InDesign.Linguistics 6.0.0.352 (?) < 32A28DD7-8A2D-1784-CE2C-C0BDD9CECB82 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics

    0x23ef5000 - 0x2401bff7 + com.adobe.InDesign.Links 6.0.0.352 (?) < 3D627857-8AE1-76ED-0F35-64DD172128B7 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Links.InDesignPlugin/Links

    0 x 24075000 - 0x240bfff7 + com.adobe.InDesign.Master page 6.0.0.352 (?) < 4F5F4CF3-6324-5E0D-88AB-9FD22D3F0B88 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page

    0x240d0000 - 0x240f1fff + com.adobe.InDesign.Media 6.0.0.352 (?) < 62FE974A-C615-E5A0-C652-EA4FBA2F82B4 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Media.InDesignPlugin/Media

    0x240fd000 - 0x240feff2 + com.adobe.InDesign.Metadata database of the 6.0.0.352 filter (?) < 3808EF94-1735-0426-1D30-7117F18BE4D4 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Metadata database Filter.InDesignPlugin/Metadata database filter

    0 x 24102000 - 0x24155fff + com.adobe.InDesign.Metadata 6.0.0.352 (?) < F15112EC-B551-DB7E-D864-164E36BC196B > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Metadata.InDesignPlugin/Metadata

    0 x 24179000 - 0x241fbfd7 + AdobeXMPFiles? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles

    0 x 24212000 - 0x24220fff + com.adobe.InDesign.Movie 6.0.0.352 (?) < B2D16DA2-A3A3-4D1F-80F0-5EBD3177AE22 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Movie.InDesignPlugin/Movie

    0x2422a000 - 0x24256fff + com.adobe.InDesign.Open place 6.0.0.352 (?) < C68CA4A0-F9E5-DB16-C683-76E6609A921E > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Open Place.InDesignPlugin/Open space

    0x2426a000 - 0x2431dff3 + com.adobe.InDesign.Paragraph composer 6.0.0.352 (?) < 967D2CA4-0700-81CF-03FE-36AF6CE48E96 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Paragraph Composer.InDesignPlugin/Paragraph composer

    0x2433b000 - 0x24366ffb + com.adobe.InDesign.Path 6.0.0.352 type (?) < FDB159DE-33B2-4298-03E8-56262819D213 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type

    0 x 24377000 - 0x2450bfff + com.adobe.InDesign.PDF 6.0.0.352 (?) < EE7885D2-9EC3-8783-4089-0FBCA473608D > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/PDF. InDesignPlugin/PDF

    0 x 24580000 - 0x2466dfdf + AdobePDFPort? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort

    0x246b0000 - 0x246cbff9 + AdobePDFSettings? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings

    0x246e5000 - import filter + com.adobe.InDesign.Photoshop 0x24716ff7 6.0.0.352 (?) < 1D9E0A02-5FE0-C13E-5658-93F9ABEA2868 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Photoshop Filter.InDesignPlugin/Photoshop import filter import

    0 x 24728000 - 0x2545afff + com.adobe.psl AdobePSL 11.0.0.1724 (11.0.0.1724) < 6BE27A60-E0F9-4483-8E57-2A7A5227D878 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL

    0x2578e000 - 0x2578fff7 com.apple.textencoding.unicode 2.3 (2.3) < 78A61FD5-70EE-19EA-48D4-3481C640B70D > system/library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode encodings

    0 x 25794000 - import filter + com.adobe.InDesign.PNG 0x257c6ff7 6.0.0.352 (?) < 7BBD9A6C-7B1B-C6E7-48DE-5BA3A7E4039C > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/PNG Filter.InDesignPlugin/PNG import filter import

    0x257cf000 - 0x25900fff + com.adobe.InDesign.Print 6.0.0.352 (?) < 988F56A5-6353-0373-D872-417C75A6C9FA > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Print.InDesignPlugin/Print

    0 x 25959000 - 0x2596efff + com.adobe.InDesign.Rulers 6.0.0.352 (?) < 5AA8026D-8609-6265-13F8-6E128FE516CB > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers

    0x2597a000 - 0x259ccfff + com.adobe.InDesign.Scripting 6.0.0.352 (?) < 0CB8C11F-DA05-5769-B097-29DD242370F9 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting

    0x259de000 - 0x259f1ff2 + com.adobe.InDesign.Sections 6.0.0.352 (?) < 04064EA6-1F81-0D4B-3F73-CB4933E0E13B > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Sections.InDesignPlugin/Sections

    0x259fc000 - 0x25a06fff + com.adobe.InDesign.Sound 6.0.0.352 (?) < 46F5EAFC-9970-8719-8337-DA9F321324AB > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound

    0x25a0f000 - 0x25a19ff3 + com.adobe.InDesign.Spelling service 6.0.0.352 (?) < EEB29375-FF86-7ED0-CE55-A3EF61EA3DCC > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Spelling Service.InDesignPlugin/Spelling Service

    0x25a22000 - 0x25a54fff + com.adobe.InDesign.Spline UI 6.0.0.352 (?) < 3E9F0A2C-76FC-E55D-8666-FD97922E01C5 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Spline UI. InDesignPlugin/Spline UI

    0x25a6e000 - 0x25aa6ff7 + com.adobe.InDesign.Spline 6.0.0.352 (?) < 493F9392-7598-942E-AB3C-6D75785FE8A5 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline

    0x25abf000 - 0x25aefffd + com.adobe.InDesign.Spread UI 6.0.0.352 (?) < 23A08DCF-3581-FB26-8456-912FFDE6405B > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Spread UI. InDesignPlugin/spread UI

    0x25afd000 - 0x25b9aff3 + com.adobe.InDesign.Spread 6.0.0.352 (?) < 23FA864B-2855-6373-1B48-A2985FB7FDA4 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread

    0x25bbd000 - 0x25bffff3 + com.adobe.InDesign.Stroke and Fill 6.0.0.352 (?) < 1AF83FEB-685B-5A30-101D-FCC3730CB097 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Stroke and Fill.InDesignPlugin/Stroke and fill

    0x25c13000 - 0x25c3aff7 + com.adobe.InDesign.Support for 6.0.0.352 AppleScript (?) < 24E46FD0-7C0C-20D5-4882-35C04696A2F6 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Support for AppleScript.InDesignPlugin/Support for AppleScript

    0x25c45000 - 0x25cc6ff3 + com.adobe.InDesign.Support for JavaScript 6.0.0.352 (?) < E971B3FA-EF64-6428-3551-7FFFC305C17D > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Support for JavaScript.InDesignPlugin/Support for JavaScript

    0x25cee000 - 0x25ebefff + com.adobe.InDesign.Table model 6.0.0.352 (?) < DAA560F3-3EFB-EAD7-60FD-07E7E8DBBF13 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table model

    0x25f3c000 - 0x25f6cfff + com.adobe.InDesign.TableStyles 6.0.0.352 (?) < E6CA66F5-F896-B0FC-730A-B5FE098ACA35 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/TableStyles.InDesignPlugin/TableStyles

    0x25f79000 - 0x25fadfff + com.adobe.InDesign.Text attributes 6.0.0.352 (?) < A5C54104-F622-B68F-4363-5DD736ABBE64 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Text Attributes.InDesignPlugin/Text attributes

    0x25fc7000 - 0x25fd2fff + com.adobe.InDesign.Text model editor 6.0.0.352 (?) < 47B046AD-0862-6207-A301-7D5FC254BA21 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Text Editor model Model.InDesignPlugin/Text Editor

    0x25fd9000 - editor of + 0x2605aff3 com.adobe.InDesign.Text 6.0.0.352 (?) < DD59576D-3474-5D8B-2A62-9E4F57E59019 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor

    0 x 26079000 - 0x261f8feb + com.adobe.InDesign.Text Walker 6.0.0.352 (?) < 7AA2A3C9-4B8C-F8FE-1066-C2A164AFE0BD > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Text Walker.InDesignPlugin/Text Walker

    0 x 26289000 - 0x262afff3 + com.adobe.InDesign.Text wrap 6.0.0.352 way (?) < ACE0EA57-CEC0-20B2-CDB9-D5E47116D935 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Text Wrap Path.InDesignPlugin/Text Wrap Path

    0x262b8000 - 0x26300ff7 + com.adobe.InDesign.Text wrap 6.0.0.352 (?) < 3417EFE2-9C7B-CB86-5BEB-D8CFD825C687 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap

    0 x 26312000 - 0x266ddfe7 + com.adobe.InDesign.Text 6.0.0.352 (?) < 6E6CF7E7-1650-0E99-D157-85DFFE0797C4 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Text.InDesignPlugin/Text

    0x2678e000 - 0x267c8ff5 + com.adobe.InDesign.TOC 6.0.0.352 (?) < 1723BD78-ACF3-EC9D-057E-2E0662A400E4 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/TOC. InDesignPlugin/table of contents

    0x267d5000 - 0x268c6fef + com.adobe.InDesign.Transparency 6.0.0.352 (?) < DA43615C-06C9-115B-DAD0-A133914167EA > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparency

    0x2690c000 - 0x2692ffef + com.adobe.InDesign.Utilities 6.0.0.352 (?) < AC7582EE-F11B-AC82-6CB1-1E2B2366DC64 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities

    0 x 26947000 - 0x26a0dffb + com.adobe.InDesign.Widgets 6.0.0.352 (?) < D5D34E1A-F3DB-5455-0C49-888FE7FD0E44 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Widgets.InDesignPlugin/Widgets

    0x26a5f000 - 0x26a66fff + com.adobe.InDesign.Workgroup client UI 6.0.0.352 (?) < E9703A57-BC6F-FADF-6D1D-340A913327ED > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Workgroup the Client user interface. Interface user customer InDesignPlugin/working group

    0x26a6b000 - 0x26a7ffff + com.adobe.InDesign.Workgroup customer 6.0.0.352 (?) < E4529A6E-52E2-93D8-133E-AFC016166A72 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client

    0x26a88000 - 0x26aaeff3 + com.adobe.InDesign.Workgroup 6.0.0.352 (?) < DD425E3F-2D3D-67B3-08C8-F721BD3E516F > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup

    0x26ab9000 - 0x26accff7 + com.adobe.InDesign.WorldReady 6.0.0.352 (?) < CD844EC0-1D20-DFAD-9C25-94710E190085 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/WorldReady.InDesignPlugin/WorldReady

    0x26ad6000 - 0x26c8cfff + com.adobe.InDesign.XML 6.0.0.352 (?) < 9D54952C-A8C0-3565-F067-CB65C8518B67 > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/XML. InDesignPlugin/XML

    0x26d19000 - 0x26d7efef + com.adobe.InDesign.XMLParser 6.0.0.352 (?) < E485DBF3-65F7-D1E4-A25B-F36D7E0FE4CB > / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser

    0x26da2000 - 0x26e5ffef + AdobeAXSLE? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE

    0x27d92000 - 0x27db3fef + com.adobe.SING (12.0.4) 12.0.4 < 440244FD-6A2F-4128-B9BF-F1C804B1CB6F > / Library/Application Support/Adobe/SING/Mark II/SING.bundle/Contents/MacOS/SING

    0 x 29800000 - 0x29874ff7 + com.extensis.FontManagement.plugin - 15.0.4 interface (508) < 222AFFD2-0859-7642-4D2D-C29ABD9AFB65 > Applications/Suitcase Fusion 4.app/Contents/Resources/ExtensisPluginInterface.framework/ExtensisPluginInterface

    0x2989c000 - 0x29ac0fff + com.extensis.cpp - core-framework? (1,0) < 5FAD13D1-15E7-1AE7-440C-7BAC0D14B54F >/Applications/Suitcase Fusion 4.app/Contents/Frameworks/cpp-core.framework/Versions/A/cpp-core

    0x29b45000 - 0x2a07bfeb + com.extensis.ExtensisFontManagement.sdk 15.0.4 (508) < 6617DF07-C8FC-842D-6F88-0F15BC98ACFA >/Applications/Suitcase Fusion 4.app/Contents/Frameworks/ExtensisFontManagement.framework/Versions/A/ExtensisFontManagem ent

    0x2a1d5000 - 0x2a230ffb + com.extensis.Mercury 15.0.4 (508) < 67296D12-AB24-14D0-3BE1-54AC1FD0FE52 > Applications/Suitcase Fusion 4.app/Contents/Frameworks/Mercury.framework/Mercury

    0x2a400000 - 0x2a500fcf + com.adobe.versioncue? (4.0.0.344) / Library/Application Support/Adobe/Adobe Version Cue CS4/Client/4.0.0/VersionCue.framework/VersionCue

    0x2a6f6000 - 0x2a717fef + com.adobe.SING (12.0.4) 12.0.4 < 440244FD-6A2F-4128-B9BF-F1C804B1CB6F > / Library/Application Support/Adobe/SING/Mark II/SING.bundle/Contents/MacOS/SING

    0x2a80d000 - 0x2a8d6ff1 + com.adobe.SINGCore (12.0.11) 12.0.11 < 87B1D0A5-E4F3-4239-A81E-BB5FA0B242D8 > / Library/Application Support/Adobe/SING/Mark II/SINGCore.bundle/Contents/MacOS/SINGCore

    0x2aaa5000 - 0x2ad6bfd3 + com.adobe.TIN TIN 2.0.17 (2.0.17) / Library/Application Support/Adobe/SING/Mark II/TIN.bundle/Contents/MacOS/TIN

    0x40000000 - 0x400ae030 + AdobeJP2K? (???) / Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K

    0x8fe00000 - 0x8fe4162b dyld 132.1 (?) < A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448 >/usr/lib/dyld

    0 x 90040000 - 0x90923ff7 com.apple.AppKit 6.6.8 (1038.36) < A353465E-CFC9-CB75-949D-786F6F7732F6 > /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit

    0 x 90924000 - 0x909d2ff3 com.apple.ink.framework 1.3.3 (107) < 57B54F6F-CE35-D546-C7EC-DBC5FDC79938 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A / ink jet

    0x909d3000 - 0x90b55fe7 libicucore. A.dylib 40.0.0 (compatibility 1.0.0) < 50A70082-F800-93D8-1A7C-C95AAB1F352C >/usr/lib/libicucore. A.dylib

    0x90c5d000 - 0x90d2efe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) < C618942F-BC01-0565-18CF-477B63C02181 > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib

    0x90f04000 - 0x910ddfff libType1Scaler.dylib? (???) < 04AF2B34-81D4-97E9-BD56-387D37C16F46 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib

    0 x 91200000 - 0x91471fef com.apple.Foundation 6.6.8 (751.63) < 69B3441C-B196-F2AD-07F8-D8DD24E4CD8C > /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

    0x9164f000 - 0x91682fff libTrueTypeScaler.dylib? (???) < 8ADB7D19-413E-4499-C874-13C383F97685 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib

    0 x 91683000 - 0x916abff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) < E761F29A-328B-29D9-3DF0-023F2C21E500 > /usr/lib/libxslt.1.dylib

    0x924e5000 - 0x92546fe7 com.apple.CoreText 151.13 (?) < 23F359DA-D845-5C50-4DF3-19E858CF2B2C > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f EPI/Versions/A/CoreText

    0 x 92547000 - 0x92567fe7 libresolv.9.dylib 41.1.0 (compatibility 1.0.0) < 8C2B5FA8-2469-21C7-D297-F95A0FFE5F19 > /usr/lib/libresolv.9.dylib

    0x925c3000 - 0x92606ff7 com.apple.NavigationServices 3.5.4 (182) < 753B8906-06C0-3AE0-3D6A-8FF5AC18ED12 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices

    0 x 92607000 - 0x9292bfef com.apple.HIToolbox 1.6.5 (?) < 21164164-41CE-61DE-C567-32E89755CB34 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox

    0x9298e000 - 0x929defe7 libTIFF.dylib? (???) < E8B31850-BFD4-48E6-B264-A4340CD19929 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib

    0x92a40000 - 0x92a47ff7 com.apple.agl 3.0.12 (AGL - 3.0.12) < 6877F0D8-0DCF-CB98-5304-913667FF50FA > /System/Library/Frameworks/AGL.framework/Versions/A/AGL

    0x92a48000 - 0x92af4fe7 com.apple.CFNetwork 454.12.4 (454.12.4) < DEDCD006-389F-967F-3405-EDF541F406D7 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk, Versions, A, CFNetwork

    0x92b03000 - 0x92f38ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) < 5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib

    0x92f5e000 - 0x92f99ffb libFontRegistry.dylib? (???) < 19ED5DE0-D3AF-B229-9193-35D58FE377E5 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib

    0x92f9a000 - 0x93014fff com.apple.audio.CoreAudio 3.2.6 (3.2.6) < 156A532C-0B60-55B0-EE27-D02B82AA6217 > /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

    0 x 93056000 - 0x9305cfff 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

    0x9305d000 - 0x93119fff com.apple.ColorSync 4.6.8 (4.6.8) < 920DD017-8B41-7334-E554-A85DB99EBD5A > System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync

    0x935d6000 - 0x935eeff7 com.apple.CFOpenDirectory 10.6 (10.6) < F9AFC571-3539-6B46-ABF9-46DA2B608819 > System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory

    0x935ef000 - 0x935f5fe7 com.apple.CommerceCore 1.0 (9.1) < 521D067B-3BDA-D04E-E1FA-CFA526C87EB5 > /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore

    0x935f6000 - 0x935f6ff7 com.apple.vecLib 3.6 (3.6 vecLib) < 7362077A-890F-3AEF-A8AB-22247B10E106 > /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib

    0x938da000 - 0x9391bff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) < 80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib

    0x9391c000 - 0x9393bff7 com.apple.CoreVideo 1.6.2 (45.6) < EB53CAA4-5EE2-C356-A954-5775F7DDD493 > /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

    0x9393c000 - 0x93941ff7 com.apple.OpenDirectory 10.6 (10.6) < C1B46982-7D3B-3CC4-3BC2-3E4B595F0231 > /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory

    0 x 93942000 - 0x93968ffb com.apple.DictionaryServices 1.1.2 (1.1.2) < 43E1D565-6E01-3681-F2E5-72AE4C3A097A > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices

    0x939b7000 - 0x939c1fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) < 5F494955-7290-2D91-DA94-44B590191771 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound

    0x939c2000 - 0x93a9cfff com.apple.DesktopServices 1.5.11 (1.5.11) < 800F2040-9211-81A7-B438-7712BF51DEE3 > /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv

    0x93a9d000 - 0x93aa1ff7 IOSurface? (???) < D849E1A5-6B0C-2A05-2765-850EC39BA2FF > /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface

    0x93aaa000 - 0x93aaaff7 liblangid.dylib? (???) < B99607FC-5646-32C8-2C16-AFB5EA9097C2 > /usr/lib/liblangid.dylib

    0x93b5c000 - 0x93ba2ff7 libauto.dylib? (???) < 29422A70-87CF-10E2-CE59-FEE1234CFAAE > /usr/lib/libauto.dylib

    0x93d55000 - 0x93e35fe7 com.apple.vImage 4.1 (4.1) < D029C515-08E1-93A6-3705-DD062A3A672C > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage

    0x93e36000 - 0x93e36ff7 com.apple.Cocoa 6.6 (?) < EA27B428-5904-B00B-397A-185588698BCC > /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa

    0x93e37000 - 0x93e39ff7 com.apple.securityhi 4.0 (36638) < 38D36D4D-C798-6ACE-5FA8-5C001993AD6B > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI

    0x93f76000 - 0x9411dff7 libSystem.B.dylib 125.2.11 (compatibility 1.0.0) < 2DCD13E3-1BD1-6F25-119A-3863A3848B90 > /usr/lib/libSystem.B.dylib

    0x9411e000 - 0x9416bfeb com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) < 136BFA48-D456-B677-3B5D-40A6946C3A09 > /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer

    0x9416c000 - 0x94177ff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) < 287DECA3-7821-32B6-724D-AE03A9A350F9 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib

    0 x 94178000 - 0x94182ffb com.apple.speech.recognition.framework provision 3.11.1 (3.11.1) < 45083DBA-5EA4-9B90-8BEB-A089E515180F > work/Versions/A/SpeechRecognition /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame

    0 x 94183000 - 0x941c5ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) < 3F0ED200-741B-4E27-B89F-634B131F5E9E > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib

    0x941e5000 - 0x94292fe7 libobjc. A.dylib 227.0.0 (compatibility 1.0.0) < 9F8413A6-736D-37D9-8EB3-7986D4699957 >/usr/lib/libobjc. A.dylib

    0 x 94293000 - 0x942d0ff7 com.apple.SystemConfiguration 1.10.8 (1.10.2) < 50E4D49B-4F61-446F-1C21-1B2BA814713D > /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration

    0x942d1000 - 0x942daff7 com.apple.DiskArbitration 2.3 (2.3) < E9C40767-DA6A-6CCB-8B00-2D5706753000 > /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration

    0x942db000 - 0x9430cff7 libGLImage.dylib? (???) < D18E2E76-DBF4-6930-039A-F66CA0D120B3 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib

    0x9430d000 - 0x94329fe3 com.apple.openscripting 1.3.1 (?) < DE20A1B9-F9B6-697C-B533-F5869BA43077 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting

    0 x 94399000 - 0x94431fe7 edu.mit.Kerberos 6.5.11 (6.5.11) < F36DB665-A88B-7F5B-6244-6A2E7FFFF668 > /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos

    0 94729000 - 0x9473dfe7 libbsm.0.dylib x? (???) < 821E415B-6C42-D359-78FF-E892792F8C52 > /usr/lib/libbsm.0.dylib

    0 x 94766000 - 0x947c3ff7 com.apple.framework.IOKit 2.0 (?) < 3DABAB9C-4949-F441-B077-0498F8E47A35 > /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit

    0x947c4000 - 0x947d8ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) < 0DBE17D5-17A2-8A0E-8572-5A78408B41C9 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis

    0x947d9000 - 0x94829ff7 com.apple.framework.familycontrols 2.0.2 (2020) < C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17 > /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls

    0x94a32000 - 0x94acffe3 com.apple.LaunchServices 362,3 (362,3) < 15B47388-16C8-97DA-EEBB-1709E136169E > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices

    0x94dca000 - 0x94dcbff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) < 93EC71F1-4D4E-F456-8EFE-32E7EFD7A064 > /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit

    0x94ecf000 - 0x94ecfff7 com.apple.Accelerate.vecLib 3.6 (3.6 vecLib) < 1DEC639C-173D-F808-DE0D-4070CC6F5BC7 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib

    0x94feb000 - 0x951aefeb com.apple.ImageIO.framework 3.0.6 (3.0.6) < 5BF202E9-730A-3675-4374-E5300BC8ED10 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO

    0x951af000 - 0x95241fe7 com.apple.print.framework.PrintCore 6.3 (312.7) < 7410D1B2-655D-68DA-D4B9-2C65747B6817 > System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore

    0 x 95372000 - 0x95372ff7 com.apple.ApplicationServices 38 (38) < 8012B504-3D83-BFBB-DA65-065E061CFE03 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices

    0 x 95373000 - 0x95373ff7 com.apple.CoreServices 44 (44) < 51CFA89A-33DB-90ED-26A8-67D461718A4A > /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices

    0 x 95376000 - 0x95383ff7 com.apple.NetFS 3.2.2 (3.2.2) < DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB > /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS

    0 95384000 - 0x95387ff7 libCoreVMClient.dylib x? (???) < 37F56237-4ABA-E5B5-968D-70FFE357E8E0 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib

    0x953a8000 - 0x953ecfe7 com.apple.Metadata 10.6.3 (507.15) < 74F05E64-2A68-BA10-CCD4-128D164E5A0F > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/metadata

    0x953ed000 - 0x953edff7 com.apple.Carbon 150 (152) < 9252D5F2-462D-2C15-80F3-109644D6F704 > /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon

    0x953fd000 - 0x9552bfe7 com.apple.CoreData 102.1 (251) < E6A457F0-A0A3-32CD-6C69-6286E7C0F063 > /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

    0 x 95595000 - 0x95597ff7 libRadiance.dylib? (???) < 5F803B4A-B294-BA94-FB68-E8756EE41B20 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib

    0 x 95608000 - 0x95973ff7 com.apple.QuartzCore 1.6.3 (227.37) < E323A5CC-499E-CA9E-9BC3-537231449CAA > /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore

    0 95974000 - 0x95a0ffe7 com.apple.ApplicationServices.ATS 275,19 (?) < 2E83B3E9-AF39-36FC-5D05-CC1E952098AB > x /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS

    0x95a10000 - 0x95b1cfe7 libGLProgrammability.dylib? (???) /System/Library/frameworks/OpenGL.Framework/versions/A/libraries/libGLProgrammability.dyl < 6167CEB0-D8D6-C4D9-DD74-49755ADB540F > ib

    0x95b44000 - 0x95bc6ffb SecurityFoundation? (???) < 3670AE8B-06DA-C447-EB14-79423DB9C474 > /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation

    0x95bc7000 - 0x95c31fe7 libstdc ++.6.dylib 7.9.0 (compatibility 7.0.0) < 411D87F4-B7E1-44EB-F201-F8B4F9227213 > /usr/lib/libstdc++.6.dylib

    0x95c32000 - 0x95c35fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) < 1622A54F-1A98-2CBE-B6A4-2122981A500E > /usr/lib/system/libmathCommon.A.dylib

    0x95c3b000 - 0x95db6fe7 com.apple.CoreFoundation 6.6.6 (550.44) < F88C95CD-1264-782D-A1F5-204739847E93 > /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

    0x95db7000 - 0x95e70fe7 libsqlite3.dylib 9.6.0 (compatibility version 9.0.0) < 52438E77-55D1-C231-1936-76F1369518E4 > /usr/lib/libsqlite3.dylib

    0x95e71000 - 0x95f65ff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) < 9EC28185-D26F-533F-90C4-FBAA13A15947 > /usr/lib/libiconv.2.dylib

    0x95f9e000 - 0x9609efe7 libxml2.2.dylib 10.3.0 (10.0.0 compatibility) < BE7FCD73-03B5-25A4-FCA4-D4980F1488D6 > /usr/lib/libxml2.2.dylib

    0x9611b000 - 0x96415fef com.apple.QuickTime 7.6.6 (1791) < 8E56F3DC-725B-0299-7E62-8599CA6EC4C0 > /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime

    0 96416000 - 0x96422ff7 libkxld.dylib x? (???) < 9A441C48-2D18-E716-5F38-CBEAE6A0BB3E > /usr/lib/system/libkxld.dylib

    0x9642c000 - 0x96437ff7 libGL.dylib? (???) < 3E34468F-E9A7-8EFB-FF66-5204BD5B4E21 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

    0 96479000 - 0x964bdff3 com.apple.coreui x 2 (114) < 29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F > /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

    0x965ba000 - 0x96662ffb com.apple.QD 3.36 (?) < FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD

    0x966a2000 - 0x966a5ffb com.apple.help 1.3.2 (41.1) < 8AC20B01-4A3B-94BA-D8AF-E39034B97D8C > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/aide

    0x96e24000 - 0x96e28ff7 libGFXShared.dylib? (???) < 09540618-2ED1-72C4-61CB-938B35927568 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib

    0x96e98000 - 0x96f18feb com.apple.SearchKit 1.3.0 (1.3.0) < 2F5DE102-A203-7905-7D12-FCBCF17BAEF8 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit

    0x970ad000 - 0x970d1ff7 libJPEG.dylib? (???) < C43FD809-08B6-629D-8980-D7B0ECEA20A9 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib

    0x970d2000 - 0x970f4fef com.apple.DirectoryService.Framework 3.6 (621.15) < F38894EA-2C13-7FC5-C084-94DA0B5B6B68 > /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService

    0x970f5000 - 0x97148ff7 com.apple.HIServices 1.8.3 (?) < 1D3C4587-6318-C339-BD0F-1988F246BE2E > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices

    0 x 97149000 - 0x9716afe7 com.apple.opencl 12.3.6 (12.3.6) < B4104B80-1CB3-191C-AFD3-697843C6BCFF > /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

    0x9716b000 - 0x97581ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) < C4FB303A-DB4D-F9E8-181C-129585E59603 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib

    0x975a4000 - 0x97613ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) < 2FC2178F-FEF9-6E3F-3289-A6307B1A154C > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib

    0 97614000 - 0x97618ff7 libGIF.dylib x? (???) < 9E51F8ED-83B4-DA41-1E2F-CFA726936A30 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib

    0 x 97619000 - 0x97620ff3 com.apple.print.framework.Print 6.1 (237.1) < F5AAE53D-5530-9004-A9E3-2C1690C5328E > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print

    0x978d1000 - 0x978effe7 libPng.dylib? (???) < 5B979A83-8CE7-6BD7-B84C-A2D1119B378D > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib

    0x978f0000 - 0x979a8feb libFontParser.dylib? (???) < D2D0C922-5ED1-3AE9-6F99-707C74DF3E62 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib

    0x97e66000 - 0x97fa3fe7 com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) < 423BDE4D-5082-B6CA-BB2C-E22A037235A4 > /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox

    0x97fdf000 - 0x987ce557 com.apple.CoreGraphics 1.545.0 (?) < 1D9DC7A5-228B-42CB-7018-66F42C3A9BB3 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics

    0x987cf000 - 0x98809ff7 libcups.2.dylib 2.8.0 (2.0.0 compatibility) < A6C207E3-7B42-926D-9C93-BE3F50B92496 > /usr/lib/libcups.2.dylib

    0x9880a000 - 0x9880bff7 com.apple.TrustEvaluationAgent 1.1 (1) < 8C570606-D77C-738E-7148-6B28846F0B3C > /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent

    0x98a9f000 - 0x98b03ffb 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

    0x98c05000 - 0x98c17ff7 com.apple.MultitouchSupport.framework 207.11 (207.11) < 6FF4F2D6-B8CD-AE13-56CB-17437EE5B741 > /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t

    0x98c96000 - 0x98ca4fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) < 3CE8AA79-F077-F1B0-A039-9103A4A02E92 > /usr/lib/libz.1.dylib

    0 x 99305000 - 0x99625ff3 com.apple.CoreServices.CarbonCore 861.39 (861.39) < 5C59805C-AF39-9010-B8B5-D673C9C38538 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore

    0 99626000 - 0x99626ff7 com.apple.Accelerate 1.6 x (speed up 1.6) < BC501C9F-7C20-961A-B135-0A457667D03C > /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

    0 x 99632000 - 0x99647fff 6.1 (6.1) com.apple.ImageCapture < B909459A-EAC9-A7C8-F2A9-CD757CDB59E8 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture

    0x9a628000 - 0x9a638ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) < C8744EA3-0AB7-CD03-E639-C4F2B910BE5D > /usr/lib/libsasl2.2.dylib

    0x9a639000 - 0x9a67cff7 libGLU.dylib? (???) < 6CC3CE6A-7024-C685-EADA-7F9DC27128E2 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

    0x9a67d000 - 0x9a68bff7 com.apple.opengl of 1.6.14 (1.6.14) < 82622F67-E032-0BF6-A78D-50B346E8D0FD > /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL

    0x9a6d8000 - 0x9a7a3fef com.apple.CoreServices.OSServices 359,2 (359,2) < 7C16D9C8-6F41-5754-17F7-2659D9DD9579 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices

    0x9a7a4000 - 0x9a7b5ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) < 97511CC7-FE23-5AC3-2EE2-B5479FAEB316 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis

    0x9a824000 - 0x9a857ff7 com.apple.AE 496,5 (496,5) < BF9673D5-2419-7120-26A3-83D264C75222 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE

    0x9a858000 - 0x9a85bff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) < 4D766435-EB76-C384-0127-1D20ACD74076 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib

    0x9a85c000 - 0x9a95efe7 libcrypto.0.9.8.dylib 0.9.8 (0.9.8 compatibility) < 015563C4-81E2-8C8A-82AC-31B38D904A42 > /usr/lib/libcrypto.0.9.8.dylib

    0x9a95f000 - 0x9abc5ff7 com.apple.security 6.1.2 (55002) < 3FA54D69-5476-78DD-0AFC-D6697263890E > /System/Library/Frameworks/Security.framework/Versions/A/Security

    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) < B339B85B-1B6D-81D8-1281-7B8C8A517329 > /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib

    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) < EF3E3210-927F-DB9F-4CD4-4039A2AE2F84 > /System/Library/CoreServices/Encodings/libKoreanConverter.dylib

    0xFFFF0000 - 0xffff1fff libSystem.B.dylib? (???) < 2DCD13E3-1BD1-6F25-119A-3863A3848B90 > /usr/lib/libSystem.B.dylib

    Model: iMac11, 1, IM111.0034.B02 BootROM, 4 processors, Intel Core i5, clocked at 2.66 GHz, 8 GB, MSC 1.54f36

    Graphics card: ATI Radeon HD 4850, ATI Radeon HD 4850, PCIe 512 MB

    Memory module: global_name

    Airport: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.6

    Bluetooth: Version 2.4.5f3, service 2, 19 aircraft, 1 incoming serial ports

    Service network: Ethernet, Ethernet, en0

    Network service: Airport, AirPort, en1

    Serial ATA Device: ST31000528ASQ, 931,51 GB

    Serial ATA Device: OPTIARC DVD RW AD - 5680H

    USB device: Hub, 0 x 0424 (SMSC), 0 x 2514, 0xfa100000 / 2

    USB Device: Hub BRCM2046, 0x0a5c (Broadcom Corp.), 0 x 4500, 0xfa110000 / 4

    USB device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0 x 8215, 0xfa111000 / 5

    USB device: Internal memory card reader, 0x05ac (Apple Inc.), 0 x 8403, 0xfa120000 / 3

    USB device: Hub, 0 x 0424 (SMSC), 0 x 2514, 0xfd100000 / 2

    USB device: Built-in ISight, 0x05ac (Apple Inc.), 0 x 8502, 0xfd110000 / 4

    USB device: Receiver IR, 0x05ac (Apple Inc.), 0 x 8242, 0xfd120000 / 3

    Just for good measure, trash the preferences (see replace your preferences) and delete all the files that you find in the list of John to the Forums Adobe: InDesign crashes at startup because I do not know if the cleaning tool takes care of them. It is possible that none of these files exist if ID ever launched, but take a look. They will be hidden, so see user hidden access library files. Mac OS 10.7 Lion if you don't already know how to find them.

  • What are the best options for the composition of math in InDesign CS4?

    What are the best options for the composition of math in InDesign CS4?

    I tried a few versions of the composition of mathematics test. All have their advantages and disadvantages, but I can't decide on which the plugin/script will be the best in the long run (in taking account of the ePub and MathML).


    So far the two best seems to be InMath (if it becomes compatible CS4) or Math + Magic Pro.


    The biggest pro of InMath is editable on the screen, but it seems to have some risk: http://InDesignSecrets.com/InMath-update-with-new-reader-functionality.php


    Math + Magic Pro works well with CS4, but need of equations to modify in the window of their plugin, and because they are EPS format. The file size and the ability to work with a digital player disappeared.

    And MathType seems pretty useless...

    Someone at - it had positive experiences?

    Not exactly the kerning, but you can move blocks wherever you want with the arrow keys. And you can change the spacing between the elements by changing the spacer between them. There are also defects of spacing.

    Batch edit can be something again. I use 6.0, and I see that the most recent version is 6.5.

    I had problems with files EPS of Mathtype, which may include a preview, but do not include fonts. So, I opened each equation of the word with my default settings (they automatically change the default fonts, spacing, size, etc.), copy, paste in Illustrator and save as have. So when I'm finished, my equations are always vector (if that's what you mean by text).

    Microsoft has chosen to implement a version of Mathtype dumbed-down as the editor of Word equations for many years. So for me at least, long term has already been decided. There are several things wrong with Mathtype, but given the choice between the use of Mathtype to * convert * equations and using InMath or mathemagiques to * recreate * equations, I'll take Mathtype, warts and all.

    Ken Benson

  • help by hyperlinks in applescript indesign cs4

    Hi there I'm hoping someone can help:

    I wrote an applescript script to search for a document, when files in an external folder list matches the search text string, a hyper link is created for this external file. See below:

    the value of the_folder to choose a folder

    Tell application "Finder".

    files_list value all files in the the_folder folder with the extension "pdf".

    tell the end

    Tell application "Adobe InDesign CS4"

    repeat with FileRef in files_list

    value FileName name of FileRef

    game find the preferences of text for nothing

    -Look in the document.

    game to find what to find preferences text file name

    -Set search options.

    case-sensitive to find game change the text false options

    game includes notes from the change text true search options

    game includes hidden layers, text search change false options

    game includes locked layers to find text search change false options

    game includes stories locked to find text search change false options

    game includes master, text search change false options pages

    set options of text of whole word search replace false

    say active document

    myFoundItems (find text) value as string

    If FileName = myFoundItems then

    FileNewName FileRef name value as string

    value name of FileRef TxtName

    value TheURL "files: files /" & FileNewName

    try

    set the destination URL of the hyperlink with properties {name: TxtName, destination URL: TheURL}

    error

    the target value hyperlink URL TxtName

    end try

    set TheHSName to 'HS' & TxtName

    TheHS to hyperlink text source with properties the value {name: myFoundItems, text source: myFoundItems, hidden: false} < < error on this line

    do the new hyperlink with properties {destination: the, source: TheHS, visible: false}

    end if

    end tell

    end repeat

    tell the end

    However, I get an error: "Adobe InDesign CS4 has been an error: can not get the text of the hyperlink text source expected, but had \"applescript.pdf\ '.»»

    I can't understand the source text is a string...

    Thank you

    Keith

    In fact, even if this resolve your hyperlink stuff, you have problems earlier with your names and files of the URL - you cannot create URLS like that. Try something like this:

    the value of the_folder to choose a folder

    Tell application "Finder".

    Set files_list name of each file in the folder the_folder with the extension "pdf".

    the value url_list URL of all the files in the folder the_folder which the extension is "pdf".

    tell the end

    Tell application "Adobe InDesign CS4"

    set preferences for text search for nothing

    -Set the search options.

    game of the text change false search options

    game includes notes from the change text true search options

    game includes hidden layers, text search change false options

    game includes locked layers to find text search change false options

    game includes stories locked to find text search change false options

    game includes master, text search change false options pages

    set options of text of whole word search replace false

    Repeat with j from 1 to the number of files_list

    the value of FileName point j of the files_list

    the value of point j of the url_list TheURL

    game find what to search file name text preferences

    tell the active document

    the value of myFoundItems to find text -search; returns a list of object references

    If myFoundItems is not {}, then

    -make this a unique destination

    If not (exists URL of the hyperlink destination FileName) then

    the value of the do destination URL of the hyperlink with the properties (name: FileName, destination URL: TheURL)

    on the other

    The value target of hyperlink URL FileName

    end if

    Repeat with i from 1 to the number of myFoundItems

    Set TheHSName to "HS" & FileName & "-" & I -If you don't want the default name, you will need to make unique

    do source text of hyperlink with properties worth TheHS {name: TheHSName, text source: (point i of myFoundItems), hidden: false}

    do new hyperlink with properties {destination: the, source: TheHS, visible: false}

    end repeat

    end if

    tell the end

    end repeat

    tell the end

  • Use of the spell checker crashes InDesign CS4

    Hello

    Have installed InDesign CS4 and updated to 6.0.3

    But whenever I try to check the spelling in any document or access the dictionary in file > Prefs, InDesign crashes.

    Have done all the usual checks, repair disk permissions, set cell former InDesign Prefs file, then recreated fresh file, not identified any conflict in the Console, run as an Application only on Mac InDesign. I have no third-party plug-in in the plug in folder, set up the default printer in the Print Center, logged on as another user who has administrator privileges, troubleshooted all my fonts, defragged the hard drive and checked all hardware.

    Still InDesign crashes when you try to access the dictionary in file > Prefs, or simply to check spelling Edit > check spelling in all - new or previously created document.

    In fact the first time check I'm using spelling (Edit > check spelling) in a document, the spelling will appear, but with a US instead of a British spellcheck, I can't change that in file > because InDesign Prefs, it blocks.

    Then if I try to check spelling Edition > check spelling a second wheel rotation, the time appears and bang - crash repeatedly.

    InDesign CS4 6.0.3 Mac OS 10.5.7 running on a Mac Pro 2.8 GHz Quad Core Intel Xeon with 2 GB of RAM, ATI Radeon HD 2600XT.

    The CS3 clean script would be a mistake, I think. There is a version of CS4, but which would remove the other CS4 applications as well.

    Being a Windows user, I'm not well versed in all potential problems in OS X, but this kind of accident is sometimes related to fonts. You have any kind of font utility, you can run to check for damaged fonts? You use a font manager?

    What about the other third-party plugins? You must disable ALL the non Adobe plugins and test again. Alternatively, you can rename the folder to SING, even if problems that have generally crash at startup, I think.

    Have you tried to create a new account clean and stable in this? What permission repair, Disk Warrior and other typical functions of Mac maintenance?

    Peter

  • No font Futura in InDesign CS4... help!

    Why are there no Futura on my InDesign CS4 font options and how can I get that back on there? My company uses for everything, and they're not going to stop using it because there many changes in design of society. Is there anyway that I can come back this font in my InDesign software with out having to pay for it? If so, how?

    Thank you! Any help is much appreciated!

    Ask your senior command are to buy the license.

  • Gradient of disappearing from InDesign CS4 when you export to PDF

    My first question ever on this forum, so I'll try to follow the proper protocol.

    I use Indesign CS4 in a windows environment.  Have a simple file I am trying to export to PDF and have done so many times before without problem.

    But now I get the gradient of the image itself endangered since the exported PDF file.  I don't know what settings I would have changed to cause the problem and it never arose before.  Here's what I see in ID prior to shipping and the result exported.  Using the base for a 1.8 PDF export settings.  Original image is in CMYK mode and has a blue rectangle CMYK sitting on the bottom with a gradient of 90 degrees from the top base.

    gradient1.jpggradient2.jpg

    The strange part is that the original image has no gradient or a feather in it, just a solid color image.  So it exports the gradient of the blue rectangle to create a fade, there simply is not blue.

    So confused.

    Peter, thanks for the suggestions, while they do not resolve the problem, it leads me to THE problem.

    Export, it was never actually produce a problem with gradients or anything else besides.  The problem was inside MY acrobat.  I have on a previous project, has enabled the internal option to replace the colors in the document with the contrast color highand didn't realize that I didn't stop him.

    AY dios mio.

    Thanks to all that you guys, stellar community!  You are in the State of Washington to the Southwest, swing, Starbucks is on me. =)

  • Is there a way to make a character lowercase style in indesign CS4?

    Is there a way to make a character lowercase style in indesign CS4 - i.e. a script?

    Cannot find a way to do this in GREP.

    I would like to have as a style of character - or a script that modifies a certain style to lowercase characters.

    Try this,

    app.findGrepPreferences = app.changeGrepPreferences = null;
    app.findGrepPreferences.appliedCharacterStyle = "lowercase";//replace your character style name here
    myFinds = app.activeDocument.findGrep();
    for(var i=0;i		   
  • InDesign CS4 using on iMac. EU to restore the backup computer. Licensing has stopped working. 150:30 error code. How can I restore my license?

    InDesign CS4 using on iMac. EU to restore the backup computer. Licensing has stopped working. 150:30 error code. How can I restore my license?

    You must install the Adobe programs since the original installation programs. Never migrate from a backup.

    Activation Adobe should detect a computer when the material has not been changed.

    If this isn't the case, you must contact Adobe support.

  • InDesign CS4 crash when printing... "' Macromedia ' apparent culprit...

    (Sorry if this has found its way to the bad advice Forum: I can't seem to find a way to the appropriate InDesign CS4 'Community' to publish it in!)

    My Mac of InDesign CS4 version 6.0.6 version started crashing when you try to print.

    The Crash log shows that the individual has crashed the thread in order to always include the line:

    com.macromedia.Flash Player.authplaylib 0x1c5ac2dd ExternalPlayer_Initialize + 1864739

    .. which is repeated twice, with different similar numbers just before and after "ExternalPlayer_Initialize".

    I guess that there is a problem with InDesign calling "macromedia. '" Flash Player"instead of Adobe Flash Player, but I don't know where or how to change the words 'macromedia '. Flash Player"to encourage the program runs correctly.

    Note: The program has been installed on a Mac that had disappeared and was found and returned, but in the meantime we would have bought a Mac replacement. InDesign has been uninstalled and then some Mac initially lost, and a previous full backup of this Mac was then restored on the new Mac, so that was a complete copy of the original (.. so respect for restrictions on use..)

    After that the program was restored on the new Mac, it prints more.

    Any help or suggestions, please?

    This solved my problem:

    http://helpx.Adobe.com/x-productkb/multi/crash-printing-Illustrator-InDesign-CS3.html

  • RMAN duplicate failed with the error of file block change track: ORA-19755

    I met following error when duplicate a source to target both 11 GR 2 on linux:

    RMAN-03015: an error has occurred in the script stored memory Script
    RMAN-06136: the auxiliary database ORACLE error: ORA-01507: database not mounted
    ORA-06512: at "SYS." "X$ DBMS_RCVMAN ', line 13466
    ORA-06512: at line 1
    RMAN-03015: an error has occurred in the script stored memory Script
    RMAN-10032: unhandled exception when executing job step 4:
    ORA-00283: cool cancelled due to errors
    RMAN-11003: failure in parsing / execution of the SQL statement: alter database recover logfile '+ HR_FRA/HRtst/archivelog/2012_11_27/thread_1_seq_5824.2541.800419437 '.
    RMAN-11001: Oracle error:
    ORA-00283: cool cancelled due to errors
    ORA-19755: could not open file change tracking
    ORA-19750: change the trace file: "+ HR_DAT/HRprds/changetracking/ctf.906.799250971".
    ORA-17503: ksfdopn:2 could not open the file +HR_DAT/HRprds/changetracking/ctf.906.799250971
    ORA-15012: ASM '+ HR_DAT/HRprds/changetracking/ctf.906.799250971' file does not exist
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Db in dual at 11/27/2012 02:48:10
    RMAN-05501: abandonment of duplicate target database

    RMAN >

    Complete recovery manager.


    I created a file in the dummy directory of track changes but the name is different since it is OMF on target, still does not work.

    Please help here. Thank you.

    Hello;

    Expected error.

    Try:

    alter database open resetlogs;
    

    You probably have a good copy and RMAN might want a newspaper that does not exist.

    Check here as in step 8, I get the same thing:

    http://www.Visi.com/~mseberg/RMAN/restore_database_without_catalog.html

    Best regards

    mseberg

  • Indesign CS4 upgrade

    Hello

    I can't find the indesign CS4 upgrade to the CS6. He has just updated level CS5 to CS6.

    Thank you for your help.

    Since the beginning of this year, Adobe no longer provides updates for that many versions back like they did.  CS6 products, now they allow only upgrade pricing for from CS5.  You missed the opportunity to upgrade from versions CS4 the end of the year.

    http://prodesigntools.com/Adobe-CS6-new-upgrade-policy-changes-postponed-CS3-CS4.html

  • InDesign CS4 crashes when converting 1-column text box with a drop shadow to the col-2 (or more)

    I use InDesign CS4 in Windows XP Pro 64-bit, 6 GB of RAM. If I create a column 1 text box, fill it with a color, add a drop shadow, and then add text, everything is fine. If I try to change it to 2-columns (or), InDesign freezes/crashes. I thought at first that it is perhaps because the case was shot, but it happens even if the case is not turned. If I remove the shadow and try to change it, it works.

    Anyone know why this is happening or if there is a known bug or fix?

    Thank you

    Lloyd Lathrop

    XP 64 is totally supported. No troubleshooting should begin there.

    Bob

Maybe you are looking for