File with 3 types of  record

I've a entry file with 3 types of record. The first field of each record tell the type. When XI receive this file it must be validate some fields. It's possible management this file in XI? how?
very thanks

Validating the field write some UDF.
If valid then map & if not valid you can raise some exception in Mapping
in case PI 7.1 this feature is provided using the XML Validation which compares with the XSD.
You need to create the FCC structure that will generate the XML before sending to XI.  You create the Mapping and define the UDF which will do the validation and call the SAP using Lookup (search the sdn for RFC Lookup or DB Lookup ).

Similar Messages

  • How to load a flat file with lot of records

    Hi,
    I am trying to load a flat file with hundreds of records into an apps table. when i create the process and deploy it onto the console it asks for an input in an html form. why does it ask for an input when i have specified the input file directory in my process? is there any way around tis where in it just reads all the records from the flat file directly??is custom queues anyway related to what I am about to do?any documents on this process will be greatly appreciated.If any one can help me on this it will be great. thank you guys....

    After deploying it, do you see if it is active and the status is on from the BPEL console BPEL Process tab? It should not come up to ask for input unless you are clicking it from the Dashboard tab. Do not click it from the Dashboard. Instead you should put some files into the input driectory. Wait few seconds you should see the instances of the BPEL process is created and start to process the files asynchrously.

  • Photoshop CS6 (Mac) crashes when opening files with type or using the type tool

    Hi,
    Photoshop CS6 keeps crashing when using the type tool or when opening files with type on it. I've quit suitcase, disabled the suitcase plug-in, reset the preferences in Photoshop there's no crash report coming up either the application just dies! I am currently trying a system restore from time machine to see if that works!. Any other suggestions would be greatly appreciated.
    Many thanks
    Olly

    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    http://helpx.adobe.com/photoshop/kb/troubleshoot-fonts-photoshop-cs5.html

  • PS CS5 stalls when opening file with type layers

    Macbook Pro / 10.6.7 / 4GB RAM / 2GHz i7 / CS5 12.0.4.x64. No extra plugins or anything. New system, clean install from last week.
    When I open a file (any size/color/dimensions) that has type layers PS with hang for about 25 seconds, then come back just fine. If I clear the font cache (I use FontExplorer X 3) the problem will go away for a brief time (minutes?), then come back. Close and reopen a file, same hang. Close PS, reopen PS, reopen file, same hang.
    Files with no font layers are not affected — no hang, no delay, snappy... unless a file with type layers is already open, then there is the same delay.
    If a file with type layers is open in PS and hung on open, and I open/double-click it again from the finder I get another hang.
    Turing off font preview makes no difference, turning off OpenGL makes no difference.
    But, turning a font on or off in FontExporer does clear the problem for a while.
    Any thoughts?

    It looks like the plug in was the culprit. I have it turned off and haven't had the problem in a while (though I haven't used PS in a bit on text-heavy projects either).
    Thanks for the help.
    c27

  • Processing delimited file with multiple format records

    Hi All,
    I have got file containing following records to be processed by ODI:
    1000022,0236,E,APHDQR,,264, 32.83,13-08-2010,13-08-2010,W,33,
    1000022,0236,D,APHDQR,,Z01, 47.05,13-08-2010,13-08-2010,W,33,
    1000022,0236,M,APHDQR,,159, 3.00,13-08-2010,13-08-2010,W,33,
    1000022,0236,A,APHDQR,B120,7140,026,7140, 338.80,106,33,5018676E,
    1000022,0236,B, 35.19,1,503,W,13-08-2010,13-08-2010,6 ,COR ,
    As you can see there are 5 types of records (Record type 'E','D','M - same format) and ( Record Type 'A' and 'B').
    I need to be able to process records with Record Type 'E','D','M' and IGNORE records with record type 'A','B'
    I tried placing filter at staging level (CL_RECORD IN ('D','E','M')) in the Interface definition. But it doesn't work and still tries to process records with record type 'A' and 'B'....:(
    Any ideas? and any other way I can process records ??
    Thanks.
    KS

    OK,
    then you don't have too much options...
    the problem is that before apply the filter ODI tries to upload the data into the C$ table and, as there are multiples formats, some columns is getting "wrong datatype" (or some error of this kind).
    My question about the initial character was because if they were always the same, you could use a feature from JDBC Driver to file but only works to initial characters.
    In your case, it will be necessary to create a temp table with 3 columns like:
    Filler1 - Before the record type column
    Rec_Type - the record type
    Fille2 - the other columns
    Filler1 and Filler2 columns should has the necessary lenght to get all data from record.
    Now you can filter the record type but will need a "substring" function to separate the embedded into filler1 and filler2.
    Make any sense?
    Cezar Santos
    http://odiexperts.com

  • How to create flat file with fixed lenght records

    I need help to export an Oracle table to a flat file with fixed lenght and without columns separator.
    the fixed length is the more important demand.
    My table have 50 columns with varchar, date and number .
    Date and number columns may be empty, null o with values.
    Thanks a lot for any help.
    [email protected]

    Hi,
    You can use this trick:
    SQL>desc t
    Name                                      Null?    Type
    NAME                                               VARCHAR2(20)
    SEX                                                VARCHAR2(1)
    SQL>SELECT LENGTH(LPAD(NAME,20,' ')||LPAD(SEX,1,' ')), LPAD(NAME,20,' ')||LPAD(SEX,1,' ') FROM T;
    LENGTH(LPAD(NAME,20,'')||LPAD(SEX,1,'')) LPAD(NAME,20,'')||LPA
                                          21                    aF
                                          21                    BM
                                          21                    CF
                                          21                    DM
    4 rows selected.
    SQL>SELECT *  FROM t;
    NAME                 S
    a                    F
    B                    M
    C                    F
    D                    M
    4 rows selected.Regards

  • Schema for File with Multiple Fixed Records using Native Schema builder

    Hi All:
    The below is the sample file format which i need to read through file adapter
    HeaderReacord
    FailureOrderRecord
    ChildFailureRecord
    ChildFailureRecord
    SuccessOrderRecord
    SuccessOrderRecord
    HeaderReacord
    FailureOrderRecord
    ChildFailureRecord
    In the above file, totally three records are repeatedly present with fixed length eg. HeaderReacord length is 50, SuccessOrderRecord and FailureOrderRecord length is 100, ChildFailureRecord length is 25. The file may have more than one header group i.e. A single header group contain one HeaderReacord, more than one SuccessOrderRecord, more than one FailureOrderRecord and more than one ChildFailureRecord after each FailureOrderRecord.
    I have created the below xsd for this scenario and get the below output. Kindly tell how to do this in Native builder using fixed length type for different fixed records options
    <xsd:element name="BatchOrder">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="OrderGroupCollection" type="OrderGroup" minOccurs="1" maxOccurs="unbounded"
    nillable="false"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:complexType name="OrderGroup">
    <xsd:sequence>
    <xsd:element name="HeaderRecord" type="xsd:string" minOccurs="1" maxOccurs="1"
    nillable="false"/>
    <xsd:element name="RecordList" type="RecordList" minOccurs="1" maxOccurs="unbounded"
    nillable="false"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="RecordList">
    <xsd:sequence>
    <xsd:element name="OrderRecord" type="xsd:string" minOccurs="1" maxOccurs="1"
    nillable="false"/>
    <xsd:element name="ChildErrorRecord" type="xsd:string" minOccurs="0"
    maxOccurs="unbounded" nillable="true"/>
    </xsd:sequence>
    </xsd:complexType>
    Output:
    =======
    <BatchOrder>
    <OrderGroupCollection>
    <OrderGroup>
    <HeaderRecord>HeaderReacord</HeaderRecord>
    <RecordList>
    <OrderRecord>FailureOrderRecord</OrderRecord>
    <ChildErrorRecord>ChildFailureRecord</ChildErrorRecord>
    <ChildErrorRecord>ChildFailureRecord</ChildErrorRecord>
    <ChildErrorRecord>SuccessOrderRecord</ChildErrorRecord>
    <ChildErrorRecord>SuccessOrderRecord</ChildErrorRecord>
    <ChildErrorRecord></ChildErrorRecord>
    <ChildErrorRecord>HeaderReacord</ChildErrorRecord>
    <ChildErrorRecord>FailureOrderRecord</ChildErrorRecord>
    <ChildErrorRecord>ChildFailureRecord</ChildErrorRecord>
    </RecordList>
    </OrderGroup>
    </OrderGroupCollection>
    </BatchOrder>

    you cant acheive this heirarchy using the file adapters cont. conv, cos it supports only to a single level.
    Maybe you can have a module or use the conversion agent !!
    Some good reads on the Conv. agent!!!
    /people/william.li/blog/2006/03/17/how-to-get-started-using-conversion-agent-from-itemfield
    /people/paul.medaille/blog/2005/11/18/conversion-agent-a-free-lunch
    /people/alexander.bundschuh/blog/2006/03/14/integrate-sap-conversion-agent-by-itemfield-with-sap-xi
    /people/paul.medaille/blog/2005/11/17/more-on-the-sap-conversion-agent-by-itemfield

  • How to create sqlplus output spool to a flat file  with a header record

    Hi all,
    I've requirement to spool data from a table to a flat file along with column headings in the first row.I'm getting data but I need header record in the first row also?
    Thanks,
    Mahender.

    Hi, Mahender,
    If you give this SQL*Plus command before you start SPOOLing
    SET   PAGESIZE  50000then you can get the usual SQL*Plus column headings, and they won't repeat unless you have more than 50,000 rows of output.
    When I can't do that, I use PROMPT
    {spool}
    SPOOL foo.txt
    PROMPT empno ename job mgr ...
    SELECT empno, ename, job, mgr ...
    PROMPT will trim leading whitespace (unless you enclose it in quotes), but it will leave spacing between the columns alone.
    You could also do a separate query, where you select some literals from dual:SPOOL foo.txt
    SELECT ' empno ename job mgr ...'
    FROM dual;
    SELECT empno, ename, job, mgr ...

  • Adapter file receiver - file with fix length record

    Hi everybody,
    In the file adapter receiver, I want to create a fixed length record file .
    Each record need to have the same size.
    How is it possible, because I have a file which contains variable legnth depending of the lenght of message?
    exemple:
    <mess>
       <row>1234567</row>
       <row>123456789A</row>
    </mess>
    give the file
    1234567<CR>
    123456789A<CR>
    <CR> means carriage return
    and I want a file like
    1234567   <CR>
    123456789A<CR>
    with the same lenth of record (10 in the example).
    Can anyone help me, ,please?
    Kind regards.
    E. Koralewski

    Hi Eric,
    Create a value user defined function with one input argument a and name it is inputpad. Then add the following code:
    Imports:  java.*;
    while (a.length()<Integer.parseInt("10"))
         a= a +" " ;
    return String;
    Here I am assuming your fixed length for the field is 10. If it is more or less then change the number. Now in your mapping do all your logic and then in the final add this like:
    input ---> your logic --> inputpad udf --> target.
    Regards,
    ---Satish

  • Specifying byte stream type for Read File with Type Descriptor

    Hi.
    I'm trying to write a VI that reads an image file format that can have
    different datatypes. What I have so far is that I open the file, read
    the header, and get the width, height, number of frames, and datatype.
    I calculate number of pixels by nrows*ncols*nframes with no problem,
    but I'm not sure how to tell Read File the correct datatype to read
    the data into.
    I tried using a Case structure where I have a Read File in each case
    with the correct type constant as input for that case. The problem is
    that the tunnel graduates the datatype to the highest representation.
    I found in Application Note 154 the discussion about Type Descriptors.
    Is there a way to generate a Type Descriptor and output it from a C
    ase
    structure? I tried just returning the value (e.g. 0x0402 for a Word),
    but Read File will just see that the byte stream type is a uint32.
    Is there any other way to do this?
    Thanks for any help.

    I converted the code to LabVIEW 6.1 for you and attached it below.
    Don't worry about being a newbie. We all start there. Keep asking this type of question and you won't stay there long.
    As you are discovering, being strictly typed means that you must rewrite code even for a simple data type change, or convert everything to the same data type first. For image data, conversion can result in a lot of extra space being wasted. Use a modified version of the GLV_WaveformBuffer.vi to hold your data. Use the array functions, which operate inline, to add to and delete the data wires in the buffer. This allows you to save several different data types. You will need several different inputs and outputs to handle these data types. I ha
    ve also attached a similar file created for exactly the problem you have - storing arrays of different data types (data from NI-SCOPE devices, in this case - can be float, I8, I16, or I32).
    Routines that take any type work in one of two ways. LabVIEW primitives, such as plus and minus operators, work by figuring out the type and doing the right thing in the C code layer of the LabVIEW environment. Users of LabVIEW can't do this. Users can make polymorphic VIs. Polymorphic VIs are actually a single VI for every data type that are referenced by a "wrapper", the polymorphic VI. Users still need to write a different VI for every data type they need.
    Take home message - if you need to work with different data types, you will need to rewrite your code for every data type or convert your data to a common data type. Polymorphic VIs and case statements are your friend.
    Let me know if you need more help.
    This account is no longer active. Contact ShadesOfGray for current posts and information.
    Attachments:
    GigaLabVIEW61.zip ‏362 KB
    sfpScpChan_Waveform_Buffer.zip ‏74 KB

  • XML file, with multiple customer records - post DEBMAS over Integr.Process

    Hi all,
    is it possible to map a single XML file message that contains multiple records for customer master to multiple messages ?
    I know that it is possible to do a "multi IDOC " mapping but then the splitting of the messages is done by the IDOC adapter, not earlier.
    I have to process every single customer master record by an integration process to check if its creation or change (and get the customer number).
    When I try in the interface mapping to set the receiver to "0 to unbound" then also the message format of the sender requires two additional hierarchie levels "...message, message1" . My orginal file does not contain these tags.
    Is XI not able to handle this easy requirement without making a university study out of it?
    Thank you very much for your help
    best regards
    Hans

    You need not worry about those tags to be in your file. Those are added while mapping is being executed. All that you need to do is use file content conversion in sender adapter and put your lookup logic in Integration Process and mapping..!!
    You do not need a university degree, if you understadn the concepts..!!
    VJ

  • Photoshop CS6 crashes when files with type are opened

    I installed a bunch of fonts and ever since then Photoshop has been crashing. So I deleted all fonts except for the required system fonts I believe. Here is the most recent crash log:
    Process:         Adobe Photoshop CS6 [539]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.0.0 (20120315.r.428)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [196]
    Date/Time:       2012-10-15 10:28:27.486 -0400
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          199514 sec
    Crashes Since Last Report:           20
    Per-App Interval Since Last Report:  17693 sec
    Per-App Crashes Since Last Report:   20
    Anonymous UUID:                      5CCA74FD-E2B1-43CF-8F03-002D2A88A3BC
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x0000000103a5f44f __CFTypeCollectionRetain + 191
    1   com.apple.CoreFoundation                0x0000000103a67ccf _CFArrayReplaceValues + 1039
    2   com.apple.CoreFoundation                0x0000000103a678a0 CFArrayAppendValue + 144
    3   libFontRegistry.dylib                   0x0000000110b24de0 CreateAbsolutePathURLArray(__CFArray const*) + 230
    4   libFontRegistry.dylib                   0x0000000110b256b2 XTRegisterFonts + 69
    5   libFontRegistry.dylib                   0x0000000110b0b482 TAutoActivationManager::CopyAutoActivatedFonts(unsigned int) const + 2426
    6   libFontRegistry.dylib                   0x0000000110b0aaa2 TAutoActivationManager::CopyAutoActivatedFont(unsigned int) const + 12
    7   libFontRegistry.dylib                   0x0000000110b049c5 XTCopyFontWithName + 387
    8   com.apple.CoreText                      0x000000010a4f0534 TDescriptorSource::CopyFontDescriptorPerPostscriptName(__CFString const*, unsigned long) const + 280
    9   com.apple.CoreText                      0x000000010a506b9b TFont::InitDescriptor(__CFString const*, unsigned long) + 219
    10  com.apple.CoreText                      0x000000010a506a31 TFont::TFont(__CFString const*, double, CGAffineTransform const*, unsigned long) + 33
    11  com.apple.CoreText                      0x000000010a5069f4 CTFontCreateWithName + 92
    12  com.winsoft.wrservices                  0x0000000106483ed2 OptycaFontUC::FillAATAllograph(WRFontDict*, unsigned short, unsigned int) + 178
    13  com.winsoft.wrservices                  0x00000001064847ca OptycaFontUC::FillAllographs(CodeInfo*) + 330
    14  com.winsoft.wrservices                  0x000000010647ef8b OptycaFontOT::FillAllographs(CodeInfo*) + 1851
    15  com.winsoft.wrservices                  0x000000010647a0e9 OptycaFont::FillCodeInfo(CodeInfo*, unsigned int) + 121
    16  com.winsoft.wrservices                  0x0000000106478862 OptycaFont::GetCodeInfo(unsigned int) + 258
    17  com.winsoft.wrservices                  0x0000000106479aa8 OptycaFont::PostInit() + 120
    18  com.winsoft.wrservices                  0x0000000106483910 OptycaFontUC::Init(WRFontDict*) + 288
    19  com.winsoft.wrservices                  0x000000010647d5b8 OptycaFontOT::Init(WRFontDict*) + 24
    20  com.winsoft.wrservices                  0x00000001064a8c78 WRFontCacheImpl::GetFont(WRFontDict*) + 424
    21  com.winsoft.wrservices                  0x0000000106486bd9 OptycaImpl::GetGlyphID(WRFontDict*, unsigned int, int*, int) + 57
    22  com.adobe.Photoshop                     0x000000010254fdc6 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 30383206
    23  com.adobe.Photoshop                     0x000000010253800f AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 30285487
    24  com.adobe.Photoshop                     0x000000010253840a AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 30286506
    25  com.adobe.Photoshop                     0x00000001004aebab 0x100000000 + 4909995
    26  com.adobe.Photoshop                     0x0000000100457c1a 0x100000000 + 4553754
    27  com.adobe.Photoshop                     0x000000010046f3e1 0x100000000 + 4649953
    28  com.adobe.Photoshop                     0x0000000100470f8a 0x100000000 + 4657034
    29  com.adobe.Photoshop                     0x000000010047297e 0x100000000 + 4663678
    30  com.adobe.Photoshop                     0x0000000100472e44 0x100000000 + 4664900
    31  com.adobe.Photoshop                     0x00000001004314eb 0x100000000 + 4396267
    32  com.adobe.Photoshop                     0x0000000100431c34 0x100000000 + 4398132
    33  com.adobe.Photoshop                     0x000000010249f342 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 29659618
    34  com.adobe.Photoshop                     0x0000000100eec19a AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6905914
    35  com.adobe.Photoshop                     0x0000000100eefbcc AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6920812
    36  com.adobe.Photoshop                     0x0000000100ef2989 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6932521
    37  com.adobe.Photoshop                     0x0000000100ef3532 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6935506
    38  com.adobe.Photoshop                     0x0000000100f69b81 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 7420449
    39  com.adobe.Photoshop                     0x0000000100f6a246 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 7422182
    40  com.adobe.Photoshop                     0x0000000100f5bd0b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 7363499
    41  com.adobe.Photoshop                     0x0000000100f67759 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 7411193
    42  com.adobe.Photoshop                     0x00000001005bf9ce 0x100000000 + 6027726
    43  com.adobe.Photoshop                     0x00000001005b125f 0x100000000 + 5968479
    44  com.adobe.Photoshop                     0x00000001005ad467 0x100000000 + 5952615
    45  com.adobe.Photoshop                     0x00000001019286f1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17638801
    46  com.apple.Foundation                    0x0000000103d4fbc5 __NSFireTimer + 114
    47  com.apple.CoreFoundation                0x0000000103aa6bb8 __CFRunLoopRun + 6488
    48  com.apple.CoreFoundation                0x0000000103aa4d8f CFRunLoopRunSpecific + 575
    49  com.apple.HIToolbox                     0x000000010957074e RunCurrentEventLoopInMode + 333
    50  com.apple.HIToolbox                     0x0000000109570553 ReceiveNextEventCommon + 310
    51  com.apple.HIToolbox                     0x00000001095babcc IsUserStillTracking(MenuSelectData*, unsigned char*) + 175
    52  com.apple.HIToolbox                     0x00000001095a789c TrackMenuCommon(MenuSelectData&, unsigned char*) + 3355
    53  com.apple.HIToolbox                     0x00000001096cb9fd PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, Rect const*, unsigned short, unsigned int, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1702
    54  com.apple.HIToolbox                     0x00000001096cbd02 _HandlePopUpMenuSelection7 + 665
    55  com.apple.AppKit                        0x000000010484799b _NSSLMPopUpCarbonMenu3 + 3720
    56  com.apple.AppKit                        0x00000001049f757e -[NSPopUpButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 554
    57  com.adobe.Photoshop                     0x0000000101929c4e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17644270
    58  com.adobe.Photoshop                     0x000000010060ecac boost::system::system_error::what() const + 288428
    59  com.adobe.Photoshop                     0x0000000100618557 boost::system::system_error::what() const + 327511
    60  com.adobe.Photoshop                     0x000000010061bcc3 boost::system::system_error::what() const + 341699
    61  com.adobe.Photoshop                     0x0000000100cb64c6 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4588390
    62  com.adobe.Photoshop                     0x00000001006044e5 boost::system::system_error::what() const + 245477
    63  com.adobe.Photoshop                     0x00000001006043ba boost::system::system_error::what() const + 245178
    64  com.adobe.Photoshop                     0x00000001006043ba boost::system::system_error::what() const + 245178
    65  com.adobe.Photoshop                     0x00000001006043ba boost::system::system_error::what() const + 245178
    66  com.adobe.Photoshop                     0x00000001006043ba boost::system::system_error::what() const + 245178
    67  com.adobe.Photoshop                     0x00000001006043ba boost::system::system_error::what() const + 245178
    68  com.adobe.Photoshop                     0x00000001006043ba boost::system::system_error::what() const + 245178
    69  com.adobe.Photoshop                     0x00000001006043ba boost::system::system_error::what() const + 245178
    70  com.adobe.Photoshop                     0x00000001006043ba boost::system::system_error::what() const + 245178
    71  com.adobe.Photoshop                     0x00000001006043ba boost::system::system_error::what() const + 245178
    72  com.adobe.Photoshop                     0x00000001006086a0 boost::system::system_error::what() const + 262304
    73  com.adobe.Photoshop                     0x0000000101331f09 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 11386281
    74  com.adobe.Photoshop                     0x00000001005b1737 0x100000000 + 5969719
    75  com.adobe.Photoshop                     0x0000000100c4effb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4165275
    76  com.adobe.Photoshop                     0x00000001005ace42 0x100000000 + 5951042
    77  com.adobe.Photoshop                     0x00000001005acedd 0x100000000 + 5951197
    78  com.adobe.Photoshop                     0x00000001019adbb4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 18184788
    79  com.adobe.Photoshop                     0x00000001019ad87c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 18183964
    80  com.apple.AppKit                        0x00000001046933a7 -[NSWindow sendEvent:] + 5409
    81  com.adobe.owl                           0x0000000105585558 OWLRemoveObjCExceptionCallback + 1100
    82  com.adobe.owl                           0x0000000105587674 OWLRemoveObjCExceptionCallback + 9576
    83  com.apple.AppKit                        0x00000001045c8afa -[NSApplication sendEvent:] + 4719
    84  com.adobe.Photoshop                     0x00000001019217fd AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17610397
    85  com.adobe.Photoshop                     0x0000000101920b7f AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17607199
    86  com.apple.AppKit                        0x000000010455f6de -[NSApplication run] + 474
    87  com.adobe.Photoshop                     0x0000000101920402 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17605282
    88  com.adobe.Photoshop                     0x000000010192266e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17614094
    89  com.adobe.Photoshop                     0x00000001005ae27c 0x100000000 + 5956220
    90  com.adobe.Photoshop                     0x00000001007b074f boost::system::system_error::what() const + 1999183
    91  com.adobe.Photoshop                     0x00000001007b0999 boost::system::system_error::what() const + 1999769
    92  com.adobe.Photoshop                     0x000000010054b24c 0x100000000 + 5550668
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x0000000109218c0a kevent + 10
    1   libSystem.B.dylib                       0x000000010921aadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x000000010921a7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x000000010921a2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x0000000109219c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x0000000109219aa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001272870f3 main + 8403
    3   MultiProcessor Support                  0x00000001272871b0 main + 8592
    4   MultiProcessor Support                  0x00000001272a3f50 main + 126768
    5   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001272870f3 main + 8403
    3   MultiProcessor Support                  0x00000001272871b0 main + 8592
    4   MultiProcessor Support                  0x00000001272a3f50 main + 126768
    5   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001272870f3 main + 8403
    3   MultiProcessor Support                  0x00000001272871b0 main + 8592
    4   MultiProcessor Support                  0x00000001272a3f50 main + 126768
    5   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x000000010acd8d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x000000010ac47ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x000000010ac41efb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x0000000106c2d2c9 0x106bf4000 + 234185
    6   com.adobe.ACE                           0x0000000106c2c5da 0x106bf4000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x000000010ac1a0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x000000010acd8d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x000000010ac47ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x000000010ac41efb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x0000000106c2d2c9 0x106bf4000 + 234185
    6   com.adobe.ACE                           0x0000000106c2c5da 0x106bf4000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x000000010ac1a0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x000000010acd8d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x000000010ac47ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x000000010ac41efb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x0000000106c2d2c9 0x106bf4000 + 234185
    6   com.adobe.ACE                           0x0000000106c2c5da 0x106bf4000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x000000010ac1a0d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923a8f9 nanosleep + 148
    2   com.adobe.PSAutomate                    0x000000013e2089cb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate                    0x000000013e1ee7c9 ScObjects::BridgeTalkThread::run() + 169
    4   com.adobe.PSAutomate                    0x000000013e208d36 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013fa9ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013f848ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013fa9acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013fa9ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013fa9ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013fa9ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013f848ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013fa9acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013fa9ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013fa9ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013fa9ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013f848ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013fa9acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013fa9ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013fa9ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013fa9ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013f848ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013fa9acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013fa9ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013fa9ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00000001091ffd7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00000001092003ed mach_msg + 59
    2   com.apple.CoreFoundation                0x0000000103aa5902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x0000000103aa4d8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices           0x000000010ebe25f7 MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices           0x000000010ebe41c2 CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00000001091ffdda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x000000010923e772 _pthread_cond_wait + 1015
    2   com.adobe.ape.engine                    0x000000013fa9abd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine                    0x000000013fab2ddb APXGetHostAPI + 2614859
    4   com.adobe.ape.engine                    0x000000013fa9acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013fa9ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013fa9ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                       0x00000001091ffdda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x000000010923e772 _pthread_cond_wait + 1015
    2   com.adobe.ape.engine                    0x000000013fa9abd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine                    0x000000013fc2d233 APXGetHostAPI + 4164259
    4   com.adobe.ape.engine                    0x000000013fa9acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013fa9ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013fa9ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x0000000109243956 recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x000000014398b5ec Invoke + 45721
    2   ServiceManager-Launcher.dylib           0x000000014398a813 Invoke + 42176
    3   ServiceManager-Launcher.dylib           0x0000000143989be0 Invoke + 39053
    4   ServiceManager-Launcher.dylib           0x0000000143989c66 Invoke + 39187
    5   ServiceManager-Launcher.dylib           0x000000014398530f Invoke + 20412
    6   ServiceManager-Launcher.dylib           0x0000000143985616 Invoke + 21187
    7   ServiceManager-Launcher.dylib           0x0000000143985cd7 Invoke + 22916
    8   ServiceManager-Launcher.dylib           0x0000000143985f41 Invoke + 23534
    9   ServiceManager-Launcher.dylib           0x000000014398861d Invoke + 33482
    10  ServiceManager-Launcher.dylib           0x0000000143988775 Invoke + 33826
    11  ServiceManager-Launcher.dylib           0x0000000143988fb2 Invoke + 35935
    12  ServiceManager-Launcher.dylib           0x00000001439890ad Invoke + 36186
    13  ServiceManager-Launcher.dylib           0x000000014397bd6b Login + 480
    14  ServiceManager-Launcher.dylib           0x000000014397f7ad Login + 15394
    15  ServiceManager-Launcher.dylib           0x0000000143989412 Invoke + 37055
    16  ServiceManager-Launcher.dylib           0x000000014398b253 Invoke + 44800
    17  libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    18  libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   libtbb.dylib                            0x00000001039ce010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   libtbb.dylib                            0x00000001039ce010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   libtbb.dylib                            0x00000001039ce010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                       0x000000010923aa6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x000000010923e881 _pthread_cond_wait + 1286
    2   libtbb.dylib                            0x00000001039ce010 tbb::internal::rml::private_worker::thread_routine(void*) + 416
    3   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib                       0x00000001091ffdda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x000000010923e772 _pthread_cond_wait + 1015
    2   ...ple.CoreServices.CarbonCore          0x000000010ac48018 TSWaitOnConditionTimedRelative + 209
    3   ...ple.CoreServices.CarbonCore          0x000000010ac47dc6 TSWaitOnSemaphoreCommon + 416
    4   ...ple.CoreServices.CarbonCore          0x000000010ac47ac4 AsyncFileThread(void*) + 61
    5   libSystem.B.dylib                       0x0000000109238fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x0000000109238e89 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib                       0x0000000109219a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x0000000109219e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x0000000109219aa5 start_wqthread + 13
    Thread 23:
    0   libSystem.B.dylib                       0x0000000109219a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x0000000109219e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x0000000109219aa5 start_wqthread + 13
    Thread 24:
    0   libSystem.B.dylib                       0x0000000109219a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x0000000109219e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x0000000109219aa5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000103c03ee0  rbx: 0x0000000000000000  rcx: 0x00007fff5fbebf80  rdx: 0x0000000000000000
      rdi: 0x0000000103c03ee0  rsi: 0x0000000000000000  rbp: 0x00007fff5fbebee0  rsp: 0x00007fff5fbebed0
       r8: 0x0000000000000001   r9: 0x0000000000000000  r10: 0x000000000000001f  r11: 0x00000001487713c0
      r12: 0x0000000103c03ee0  r13: 0x0000000103bd20e0  r14: 0x00000001487713c0  r15: 0x0000000000000000
      rip: 0x0000000103a5f44f  rfl: 0x0000000000000246  cr2: 0x000000010b3de000
    Binary Images:
           0x100000000 -        0x10333cfff +com.adobe.Photoshop 13.0.0 (20120315.r.428) <6A87A703-3170-CA73-8C77-35C282C4E264> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
           0x1039bf000 -        0x1039ebff7 +libtbb.dylib ??? (???) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbb.dylib
           0x103a02000 -        0x103a10ff3 +libtbbmalloc.dylib ??? (???) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbbmalloc.dylib
           0x103a24000 -        0x103a24ff7  com.apple.Carbon 150 (152) <BD59781B-CDD9-9E53-7918-5566FB25D304> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x103a27000 -        0x103a2efff  org.twain.dsm 1.9.4 (1.9.4) <82EBD05C-E2FB-ADC0-4040-F8855F97D73B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103a36000 -        0x103a50ff7 +com.adobe.ahclientframework 1.7.0.56 (1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x103a59000 -        0x103bd0fe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x103ce9000 -        0x103f6bfff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x1040e3000 -        0x10436cff7  com.apple.security 6.1.2 (55002) <772E1B13-8271-02F8-B1FE-023592A7AED7> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x104464000 -        0x1044c4fe7  com.apple.framework.IOKit 2.0 (???) <2D2A51AA-4021-0F64-BE58-B0ED5388D899> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x1044e8000 -        0x1044eeff7  com.apple.agl 3.0.12 (AGL-3.0.12) <5400D498-D56B-A2C3-EDAA-D267D6BBD77A> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x1044f5000 -        0x104504fef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10450d000 -        0x104547fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <4F2A4397-89BD-DEAC-4971-EE838FFA0964> /usr/lib/libcups.2.dylib
           0x104556000 -        0x104f50ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x105548000 -        0x105756fff +com.adobe.owl AdobeOwl version 4.0.93 (4.0.93) <CB035C4D-044D-4004-C887-814F944E62ED> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x105797000 -        0x105bddff7 +com.adobe.MPS AdobeMPS 5.8.0.19463 (5.8.0.19463) <8A4BA3B2-6F6A-3958-ABDE-C3E8F21373B0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x105c59000 -        0x105fb2ff7 +com.adobe.AGM AdobeAGM 4.26.17.19243 (4.26.17.19243) <E96C804B-158B-D4A2-9A64-482F9ADC29D0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x10601b000 -        0x10637cfef +com.adobe.CoolType AdobeCoolType 5.10.31.19243 (5.10.31.19243) <8BFF14FB-AA14-1CBF-C2A3-715363B5A841> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1063c9000 -        0x1063f1ff7 +com.adobe.BIBUtils AdobeBIBUtils 1.1.01 (1.1.01) <9BDD08A8-2DD8-A570-7A7B-EDAA7097D61B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1063f8000 -        0x106424fff +com.adobe.AXE8SharedExpat AdobeAXE8SharedExpat 3.7.101.18636 (3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x106447000 -        0x106594ff7 +com.winsoft.wrservices WRServices 5.0.0 (5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x106608000 -        0x106677fef +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <924155A9-D00E-B862-C490-5099BA70B978> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x10669e000 -        0x1066f7fff +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <BC353D4E-1AE2-3FB5-D3EE-81A09C0C4328> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x106797000 -        0x10681eff7 +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <5FCA15B4-F721-09C3-B412-1F86D9D7DE9E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x106883000 -        0x10689eff7 +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <BB7B342A-8CBC-4B73-58A2-9B062F590EBC> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x1068b8000 -        0x106af5fff +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <6839CFB1-74EE-B205-7D82-ABC5428E0810> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x106bf4000 -        0x106d6dfff +com.adobe.ACE AdobeACE 2.19.18.19243 (2.19.18.19243) <7F28B188-1D1B-20C9-BBB9-B74FCC12ECAD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x106d80000 -        0x106d9ffff +com.adobe.BIB AdobeBIB 1.2.02.19243 (1.2.02.19243) <B7D7EE28-D604-2989-B099-62AEF4885C21> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x106da6000 -        0x106e8afe7 +com.adobe.amtlib amtlib 6.0.0.75 (6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x106e9b000 -        0x106f60fff +com.adobe.JP2K 2.0.0 (2.0.0.18562) <B14B096C-AA23-BA8F-E3AE-8DB102F9D161> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x106fad000 -        0x106fb1ff7 +com.adobe.ape.shim 3.3.8.19346 (3.3.8.19346) <13D5CEF7-6090-CD66-8DA0-190771950F76> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x106fb7000 -        0x107035fff +com.adobe.FileInfo.framework Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 (66.145433) <5C63613F-6BDE-1C29-D3FD-9D292F9ADB12> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x107046000 -        0x1070a6ff7 +com.adobe.AdobeXMPCore Adobe XMP Core 5.3 -c 11 (66.145661) <B475CD07-1024-560D-5BFE-2A6FCE63925C> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x1070b0000 -        0x107608fef +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/Cg.framework/Cg
           0x107c65000 -        0x107cd3fef +com.adobe.headlights.LogSessionFramework ??? (2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x107d27000 -        0x108531fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
           0x10857a000 -        0x1086affff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x108729000 -        0x10874effe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x108789000 -        0x10878dff7 +com.adobe.AdobeCrashReporter 6.0 (6.0.20120201) <A6B1F3BD-5DB0-FEE5-708A-B54E5CA80481> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x108793000 -        0x108943fef +com.adobe.PlugPlug 3.0.0.383 (3.0.0.383) <908DBB12-D2AC-1844-BD2A-F1C483424917> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x1089fa000 -        0x108a00ff7  IOSurface ??? (???) <12FB0DFC-8A3E-B349-2A3C-28A4D3BA4DD8> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x108a09000 -        0x108a54fef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
           0x108a88000 -        0x108a88ff7  com.apple.quartzframework 1.5 (1.5) <FA660AAC-70CD-7EA2-5DF1-A8724D8F4B1B> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x108a8b000 -        0x108aabfff +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <DC3301F2-FC6E-70C7-3927-B0DD024210D6> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_ocl.framework/Versions/A/aif_ocl
           0x108ac5000 -        0x108b82fff +com.adobe.AdobeExtendScript ExtendScript 4.2.12 (4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x108bcc000 -        0x108c7afef +com.adobe.AdobeScCore ScCore 4.2.12 (4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x108cb7000 -        0x108db1fe7 +com.adobe.AXEDOMCore AdobeAXEDOMCore 3.7.101.18636 (3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x108e55000 -        0x10909efe7 +com.adobe.linguistic.LinguisticManager 6.0.0 (17206) <301AAE8E-BA78-230E-9500-FCCA204B49CB> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x109121000 -        0x10919efef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
           0x1091ff000 -        0x1093c0fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
           0x109452000 -        0x109508ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
           0x10951c000 -        0x10951cff7  com.apple.CoreServices 44 (44) <616722B1-5E79-DCCF-BF5E-0DD5802CCBD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10951f000 -        0x10951fff7  com.apple.ApplicationServices 38 (38) <0E2FC75E-2BE2-D04D-CA78-76E38A89DD30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
           0x109522000 -        0x109522ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <424E55F7-B6DA-0F5C-E56B-9ECB4A2E6BA8> /usr/lib/libmx.A.dylib
           0x109525000 -        0x109529ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
           0x10952c000 -        0x109531ff7  com.apple.CommonPanels 1.2.4 (91) <8B088D78-E508-6622-E477-E34C22CF2F67> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
           0x109539000 -        0x10953cfff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
           0x109542000 -        0x109840fff  com.apple.HIToolbox 1.6.5 (???) <98FCEA0D-FA33-E859-B39C-2C1F59F9E22D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
           0x10996c000 -        0x109983fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
           0x10999d000 -        0x109a52fe7  com.apple.ink.framework 1.3.3 (107) <A68339AA-909D-E46C-35C0-72808EE3D043> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
           0x109a85000 -        0x109aa0ff7  com.apple.openscripting 1.3.1 (???) <DC329CD4-1159-A40A-A769-70CAA70F601A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
           0x109ab1000 -        0x109ab3fff  com.apple.print.framework.Print 6.1 (237.1) <87A5BEEC-2D37-5CB7-8B13-7B605397573F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
           0x109ab8000 -        0x109abbff7  com.apple.securityhi 4.0 (36638) <2C522D50-1BBF-F38B-F9DB-502FEF49F94D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
           0x109ac0000 -        0x109acbff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <C359B93B-CC9B-FC0B-959E-FB10674103A7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
           0x109ad5000 -        0x10a1d1ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
           0x10a2c3000 -        0x10a482fff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <2C39859A-043D-0EB0-D412-EC2B5714B869> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
           0x10a4ee000 -        0x10a56cff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
           0x10a5aa000 -        0x10a644fff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
           0x10a66d000 -        0x10a72efef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
           0x10a76b000 -        0x10a7beff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
           0x10a7ea000 -        0x10a7ffff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <59D9E83D-3131-91F4-E3E2-02047F55917F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
           0x10a80d000 -        0x10a892ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <F00C561F-D38B-8785-5218-1A0C3BA61177> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
           0x10a8c8000 -        0x10a909fef  com.apple.QD 3.36 (???) <04F03722-91CA-6858-55A4-54D7F29789A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
           0x10a921000 -        0x10a935ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <574C1BE0-5E5E-CCAF-06F8-92A69CB2892D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
           0x10a946000 -        0x10a957ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <5BAFAE5C-2307-C27B-464D-582A10A6990B> /usr/lib/libz.1.dylib
           0x10a95c000 -        0x10a972fef  libbsm.0.dylib ??? (???) <0321D32C-9FE1-3919-E03E-2530A0C1191B> /usr/lib/libbsm.0.dylib
           0x10a97b000 -        0x10ab39fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0B4ABA92-C1F0-4548-A157-0CFD65561DA5> /usr/lib/libicucore.A.dylib
           0x10aba8000 -        0x10abb6ff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
           0x10abba000 -        0x10ac06fff  libauto.dylib ??? (???) <328CCF97-091D-C529-E576-C78583445711> /usr/lib/libauto.dylib
           0x10ac13000 -        0x10af47fef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
           0x10afc1000 -        0x10b095fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
           0x10b109000 -        0x10b153ff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
           0x10b17d000 -        0x10b23afff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
           0x10b294000 -        0x10b324fff  com.apple.SearchKit 1.3.0 (1.3.0) <45BA1053-9196-3C2F-2421-AFF5E09627CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
           0x10b362000 -        0x10b39dfff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
           0x10b3b7000 -        0x10b457fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
           0x10b49d000 -        0x10b4c5fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <6B8C5FB6-FE6F-3345-0441-BED51E815379> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
           0x10b4df000 -        0x10b4e5ff7  com.apple.DiskArbitration 2.3.1 (2.3.1) <FD5CF2E6-E5FF-1E2A-37E0-304722DA15E1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10b4ee000 -        0x10b4fdfff  com.apple.NetFS 3.2.2 (3.2.2) <0A19AF05-F331-2762-A03C-CA78E86C7810> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10b506000 -        0x10b5bffff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <E8FFCEA1-3BE3-F0C9-07EA-C37678C4D2F5> /usr/lib/libsqlite3.dylib
           0x10b5cf000 -        0x10b610ff7  com.apple.SystemConfiguration 1.10.9 (1.10.2) <642854D8-F4EF-4685-42A6-E48A1904D885> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
           0x10b634000 -        0x10b65fff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
           0x10b66a000 -        0x10b780ff7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
           0x10b7a9000 -        0x10b7a9ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x10b7ac000 -        0x10b802fe7  libTIFF.dylib ??? (???) <9BC0CAD5-47F2-9B4F-0C10-D50A7A27F461> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
           0x10b810000 -        0x10b815fff  libGIF.dylib ??? (???) <5B2AF093-1E28-F0CF-2C13-BA9AB4E2E177> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
           0x10b81a000 -        0x10b83bfe7  libPng.dylib ??? (???) <14F055F9-D7B2-27B2-E2CF-F0A222BFF14D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
           0x10b844000 -        0x10b846fff  libRadiance.dylib ??? (???) <61631C08-60CC-D122-4832-EA59824E0025> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.f

    Not well versed in reading Apple crash reports but this seems to say you have font problems.
    12  com.winsoft.wrservices                  0x0000000106483ed2 OptycaFontUC::FillAATAllograph(WRFontDict*, unsigned short, unsigned int) + 178
    13  com.winsoft.wrservices                  0x00000001064847ca OptycaFontUC::FillAllographs(CodeInfo*) + 330
    14  com.winsoft.wrservices                  0x000000010647ef8b OptycaFontOT::FillAllographs(CodeInfo*) + 1851
    15  com.winsoft.wrservices                  0x000000010647a0e9 OptycaFont::FillCodeInfo(CodeInfo*, unsigned int) + 121
    16  com.winsoft.wrservices                  0x0000000106478862 OptycaFont::GetCodeInfo(unsigned int) + 258
    17  com.winsoft.wrservices                  0x0000000106479aa8 OptycaFont::PostInit() + 120
    18  com.winsoft.wrservices                  0x0000000106483910 OptycaFontUC::Init(WRFontDict*) + 288
    19  com.winsoft.wrservices                  0x000000010647d5b8 OptycaFontOT::Init(WRFontDict*) + 24

  • Parsing a Text file with nulls in records

    Hello All,
    I am relatively new to Java programming and I have been given a task that requires me to parse a CSV text file. I have to group the records based on a particular column and then do some math (add columns that have same keys). My problem is that the input file can have nulls and non numeric chars. I am confused how I can proceed in this situation, since I have to add these records, when I do a parseDouble it might fail. OK. I can get around it by assigning a zero in case there is a NumberFormatException but the result of my task is to render an output text file that from the input file. Here comes the catch, the requirement has it, that if the input file had a null or a non numeric char then while rendering the output, I have to populate a code as a place holder for that location where a null or non numeric char was found. I'd like to know if there is any trivial way of getting around this problem without using a Map to remember the location where the null was found. Any help is greatly appreciated. Thanks all in advance.

    maybemedic wrote:
    Mogalr,
    The non numeric chars could be any random chars like aabb,null strings etc.In the past I've made small methods that would just check to see if the string was all characters and decimal point... and check formatting... check that it doesn't have 2 decimal points and after it's trimmed that there aren't any spaces and the length is >0.
    The checking is slower than using like Double.doubleValue(), unless you hit a format exception. So you have to decide what quality of data you have before committing to you're game plan.

  • Extract of Data from Oracle in a Flat File with Column and Record seperator

    I have a case where I have to extract whole data froma Oracle Table where the Columns should be seperated by |@|
    and Records by ^*^.
    The reason for this is My data has Space and New line in it. So My Program to recoganize each column and record I want them to be seperated by special chars.
    Itried this but of no much help.
    set echo off newpage 0 space 0 pagesize 0 feed off head off trimspool on;
    spool on;
    set colsep '|@|';
    set recsepchar '^*^';
    spool "T_COMPLAINT.dat";
    select * from T_COMPLAINT where ROWNUM < '100' order by cptoid;
    spool off;

    Having '@' and '*' characters in the data will not make any difference if you are using a combined column separator of '|@|' - provided any process you use subsequently can handle it.
    However, the recsepchar parameter appears to be restricted to a single character which is repeated right across the page, so I don't think you could have a single iteration of '|*|' using this method:
    SQL> set  newpage 0 space 0 pagesize 0 feed off head off trimspool on
    SQL> set recsep EACH
    SQL> set recsepchar '*'
    SQL> set colsep '|@|'
    SQL> select * from testa;
    A         |@|1@        |@|22-JUN-2010
    B         |@|2*        |@|22-JUN-2010
    B         |@|2*        |@|22-JUN-2010
    ********************************************************************************Edited by: LindaA on 23-Jun-2010 08:33

  • Load data from a file with multiple record types to a single table-sqlldr

    We are using two datastores which refer to the same file. The file has 2 types of records header and detail.
    h011234tyre
    d01rey5679jkj5679
    h011235tyrr
    d01rel5678jul5688
    d01reh5698jll5638
    Can someone help in loading these lines from one file with only two data stores(not 2 separate files) using File to Oracle(SQLLDR) Knowledge Module.

    Hi,
    Unfortunately the IKM SQLDR doesn't have the "when" condition to be wrote at ctl file.
    If you wish a simple solution, just add an option (drop me a email if you want a LKM with this)
    The point is:
    With a single option, you will control the when ctl clause and, for instance, can define:
    1) create 2 datastores (1 for each file)
    2) the first position will be a column at each datastore
    3) write the when condition to this first column at the LKM in the interface.
    Does it help you?

  • Reading fixed length file with different record types

    Hi,
    I need to read a fixed-length file with different record types, but the record identifier is in 31st position and not in 1st position.
    But if I give 31 as position in File adpater wizard, BPEL takes whole 1-31 as identifier.
    How we need to read such files.
    Thanks
    Ravdeep

    hi ,
    u cannot use the default wzard for this
    use some thing like this nxsd:lookAhead="30" nxsd:lookFor="S"have a look at the below link it has some examples
    http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28994/nfb.htm

Maybe you are looking for