Check for same parent and child combination

hi all i am using oracle 10g. can you please help me in this issue.
how do i know if the same combination of parent and child present in the table
key value and value are the values given by user.
if the user try to create a same profile with same set of key_value and value then that should be avoided
so how to achieve that.
example profile already in the table
-- PROFILE_ID,DETAIL_ID,PARENT_DETAIL_ID,KEY_VALUE, VALUE, LAST_IND
100,               1,               NULL,                      1,              CDE,     N
100,               2,              1,                            2,              XXX,     N
100,               3,              1,                            2,              YYY,    N
100,               4,              1,                            4,              NEW,    Ynew profile by user -- it should throw an error saying that same profile already present
-- PROFILE_ID,DETAIL_ID,PARENT_DETAIL_ID,KEY_VALUE,VALUE,LAST_IND
101,               5,               NULL,                      1,              CDE,    N
101,               6,              5,                            2,              XXX,    N
101,               7,              5,                            2,              YYY,    N
101,               8,              5,                            4,              NEW,    YEdited by: DeepakDevarapalli on Dec 9, 2009 9:48 AM
Edited by: DeepakDevarapalli on Dec 9, 2009 9:59 AM

sir i have used your logic, each query works fine and displays the correct results below are the results.
SELECT   SUBSTR (t.ptxt, 2, LENGTH (ptxt)) profile_values
    FROM (SELECT     SYS_CONNECT_BY_PATH (rtxt, ',') AS ptxt
                FROM (SELECT key_value || '/' || VALUE AS rtxt,
                             ROW_NUMBER () OVER (PARTITION BY profile_id ORDER BY key_value,
                              VALUE) AS rnum
                        FROM sp_profile_detail
                       WHERE profile_id IN (100, 101))
               WHERE CONNECT_BY_ISLEAF = 1
          START WITH rnum = 1
          CONNECT BY rnum = PRIOR rnum + 1) t
GROUP BY ptxtresults from query 1
profile_values
1/CDE,2/XXX,2/YYY,4/111
1/CDE,2/XXX,2/YYY,4/222
SELECT   SUBSTR (s.ptxt, 2, LENGTH (ptxt)) profile_values
    FROM (SELECT     SYS_CONNECT_BY_PATH (rtxt, ',') AS ptxt
                FROM (SELECT key_value || '/' || VALUE AS rtxt,
                             ROW_NUMBER () OVER (ORDER BY key_value,
                              VALUE) AS rnum
                        FROM sp_profile_detail1)
               WHERE CONNECT_BY_ISLEAF = 1
          START WITH rnum = 1
          CONNECT BY rnum = PRIOR rnum + 1) s
GROUP BY ptxtresults from query 2
profile_values
1/CDE,2/XXX,2/YYY,4/111
but when i tried to combine both and do a minus it throws me an error .
ORA-00600: internal error code, arguments: [expcmo_strdef1], [27], [27], [], [], [], [], []
-- target
SELECT   SUBSTR (t.ptxt, 2, LENGTH (ptxt)) profile_values
    FROM (SELECT     SYS_CONNECT_BY_PATH (rtxt, ',') AS ptxt
                FROM (SELECT key_value || '/' || VALUE AS rtxt,
                             ROW_NUMBER () OVER (PARTITION BY profile_id ORDER BY key_value,
                              VALUE) AS rnum
                        FROM sp_profile_detail
                       WHERE profile_id IN (100, 101))
               WHERE CONNECT_BY_ISLEAF = 1
          START WITH rnum = 1
          CONNECT BY rnum = PRIOR rnum + 1) t
GROUP BY ptxt
MINUS
-- staging
SELECT   SUBSTR (s.ptxt, 2, LENGTH (ptxt)) profile_values
    FROM (SELECT     SYS_CONNECT_BY_PATH (rtxt, ',') AS ptxt
                FROM (SELECT key_value || '/' || VALUE AS rtxt,
                             ROW_NUMBER () OVER (ORDER BY key_value,
                              VALUE) AS rnum
                        FROM sp_profile_detail1)
               WHERE CONNECT_BY_ISLEAF = 1
          START WITH rnum = 1
          CONNECT BY rnum = PRIOR rnum + 1) s
GROUP BY ptxt

Similar Messages

  • How to list selected parent and child rows with values from ADF TreeTable

    I created one tree table having three levels using DepartmentsVO, EmployeesVO and
    JobHistoryVO where these tables contains parent and child relationship on database.
    Then i added one more column to the tree table which displays selectBooleanCheckBox. This
    check box is available for parent and child rows in that column.
    My first concern is i
    want to list out all the parentids and its child ids from three levels where the check
    box is selected.
    second concern is
    if i select the check box for a parent row, then the remaining check boxes for child rows also select automatically which are comes under the parent row.
    Thanks in advance.
    jk

    hi Frank,
    Thanks for the quick reply...
    As I mentioned before I am able to get the children using JUCtrlHierNodeBinding. but wanted to change the value of child row which have specific data.
    Is it possible through JUCtrlHierNodeBinding to update data of child and parent?? If so then can you please post the code snippet for the same???
    Viral

  • Session expiration issue with parent and child window

    Hi,
    We have two applications (App1 - Implemented using JSF, Spring and Hibernate and App2 -Implemented using Spring MVC, Spring JDBC).
    I have implemented 'Test Access Content' functionality in App1.
    First admin user (Role- Manager) needs to login to App1
    As part of 'Test Access Content' functionality, he enters URL with encrypted key and click 'Test Access' button.
    It opens new window (implemented using java script - window.open) and hits spring controller of App2.
    In spring controller of App2, I am decrypting the key to get user details. After that i am setting user details in session, constructing final URL to display actual content.
    Problem is parent window maintains session till child window renders response. Once child window renders response, parent window loosing session.
    So, if i click any button in parent window after child window renders response, it displays login page as there is no session for parent window.
    Please note that App1 and App2 are sharing same domain. only context paths are different for both apps (app1 and app2).
    Any suggestions on this issue are much appreciated. Please let us know if you have any questions.

    Hi,
    When you open a child window from parent window then you can access child data in the parent window through javascript.
    We have a main web page. There are quite many links on it from which >user can open new web pages but the data is saved when the submit >button on the main page is clicked. Also data that user entered on the >other sub pages is not displayed in the main window.
    1 is this a case of parent and child window.case 1 When you are submitting the main page you need to run javascript function and get data from child windows and save that to database or session. next time when you are displaying the main window you need to query session or database to display the child window data in the main window.
    Case 2> closing child window and you need data in the parent. This can be done in two ways.
    1> When you are closing the child window populate some variables of the main window using javasript.
    2> Save the values in the database or session and refresh the main window and extract data from database or session
    Where should the data be saved that user enetered on the sub pages as the data is not shown in the main page - should it be stored in the session?It is design decision. You can store data in either session or database when you are closing the child window. But ifyou are saving the data on the main page then you can populate main page with child windows data using javascript. Save the data t database when main window data is saved. Depends on business requirements.
    In short if you are saving child windows data in session or database then you need to refresh main screen to pull that data otherwise populate main screen using javascript.
    I hope i answered your questions :) best of luck

  • Insert data Flatfile table to Parent and child tables

    Hi All,
        I have Flatfile table which is we getting from daily txt files and i want to populate flatfile data to parent as well as child tables. parent table has primary key as ID. This ID is foreign key of child tables. 
    Here i have mentioned our process.
    1. Flatfile duplicates has to remove with condition of daily date.
    2. Before Insert parent table have to check duplicate(we have Unique key of 4 columns in parent) if duplicate is there we have to delete duplicate then Insert into parent table unique records(Primary key is ID).(here why we are delete duplicate record meaning
    we getting daily files so if any records updated in future that record should be insert to parent and child table so only we delete old records and insert new records).
    3.After insert parent we have to populate child tables from Flatfile table as well as we have to insert parent table primary key as foreign key of child tables.
    4. if any truncation error occurs that errors should go to error log table.
    Right now we are using cursor for this concept and cursor has performance issue. so we are trying to optimize other way to populate parent and child table to increase performance to populate.
    Please help us to which way to do this process increase of performance .
    Please  can any one reply.

    Hi RajVasu,
    Since this issue is related to Transact-SQL, I will move this thread to Transact-SQL forum. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Thank you for your understanding and support.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to differentiate between Parent and Child in IBASE?

    Hi. I am working on enhancing a BAPI :BAPI_GOODSMVT_CREATE by calling the following function module IBPP_CREATE_IBASE at its exit.
    The BAPI is being called from an SAP ME system and will be passing MATNR and Serial Number of Parent and Child materials to create the IBASE in ECC system. I am confused as to how to differentiate between whether a object is Parent or a Child when the BAPI: BAPI_GOODSMVT_CREATE is called.

    if you have NULL valued fields. If
    you do a compare and one or both are NULL, then the result is always NULL,
    never true or false. Even comparing two fields which are both NULL will
    give NULL as result, not true! Or if you have something like "select
    sum(field) from ..." and one or more are NULL, then the result will be
    NULL. Use always "if field is NULL ..." for NULL checking and for safety
    maybe something like "select sum( IsNull(field,0) ) from ...". Check the
    function ISNULL() in the manual.

  • How to update parent and child tables while updating parent table

    I have a parent table EMPLOYEE which includes columns (sysid, serviceno,employeename...) sysid is Primary key, serviceno is Unique key and I have child table DEPENDENT includes columns (sysid,employee_sysid,name,dob...) here again SYSID is primary key for DEPENDENTS table, employee_sysid is Foreign key of EMPLOYEE table.
    Now I want to change SYSID (using sequence) in EMPLOYEE table which need to be update in DEPENDENTS table as well
    Note: I have 10000 records in EMPLOYEE table as well as I have 5 more child tables which need to update new SYSID.
    please help me

    first disable the FOREIGN KEY Constraints.
    you can update Parent as well as Child record also with help of trigger.
    here i am giving you one examlpe..it may help u.
    create table parent(id number primary key,name varchar2(100))
    create table child_1(id number primary key,p_id number,dob date,
    CONSTRAINT FK_id FOREIGN KEY (p_id) REFERENCES parent (ID))
    create table child_2(id number primary key,p_id2 number,addr varchar2(1000),
    CONSTRAINT FK_id2 FOREIGN KEY (p_id2) REFERENCES parent (ID))
    insert some test data to parent and child tables.
    alter table child_2 disable constraint FK_id2
    alter table child_1 disable constraint FK_id2
    CREATE OR REPLACE TRIGGER delete_child
    BEFORE UPDATE ON parent
    FOR EACH ROW
    BEGIN
    UPDATE CHILD_1
    SET P_ID=:NEW.ID
    WHERE P_ID=:OLD.ID;
    UPDATE CHILD_2
    SET P_ID2 =:NEW.ID
    WHERE P_ID2=:OLD.ID;
    END;
    then Upadte parent table primary key col and check the child tables.
    then enable the constraints...

  • Create Individual Idocs Based on Parent and Child Segment type

    Hi Experts,
    I have a scenario IDOC to FILE ,  Split Single IDOC into Multiple IDOC's based on parent and child Segment Type
    For example If 3 child segments are same and 1 segment is different under parent segment then 3 same child segments are clubbed and create single idoc under parent segments and 1 different child should create in individual idoc under parent segment.
    Note : Same logic should work for N number of Parent Segments and Child Segments.
    Outbound:
    ZIdocName
    Control Record
    Data Record
    Parent Segment A
       Child Segment 1
       Child Segment 1
       Child Segment 1
       Child Segment 2
    Parent segment  B
       Child Segment 3
    Status Record
    I should get output like below
    Inbound:
    ZIdocName
    Control Record
    Data Record
    Parent segment A
      Child Segment 1
      Child Segment 1
      Child Segment 1
    Status Record
    ZIdocName
    Control Record
    Data Record
    Parent segment A
      Child Segment 2
    Status Record
    ZIdocName
    Control Record
    Data Record
    Parent Segment B
      Child Segment 3
    Status Record
    Please suggest me step by step process to achieve this task.
    Thanks.
    Ram

    Hello,
    Segment won't hold any value, so filter criteria should be there on some field wich exist in Parent node and chile node?
    Paste ur XML?
    Try this(Assuming u have some fields in parent/child segment on which u want to define filter criteria):
    Parent Field--UseOneAsMany----RC----
                                      ------------------Concat ----splitbyvalue(value change)--collapse context --- ZIdoc
    Child field-- RC----------
    Child field--RC--splitbyvalue(valuechange)--CC -Splitbyvalue(each value) -- ParentSegment
    Child field--RC--splitbyvalue(valuechange)--- ChildSegment
    RC -> Remove Context
    CC - Collapse Context
    Note - i haven't tested ur mapping, so make sure to adjust context in mapping
    Thanks
    Amit Srivastava
    Message was edited by: Amit Srivastava

  • How to use Opendoc to link parent and child

    I have parent and child reports, I want to link them. When I click parent id then it should display child report.
    How to use Opendoc for this?
    Thanks,
    Charita

    You can use openDoc selection variable method for link the reports.
    Refer this link
    http://book.soundonair.ru/sams/ch31lev1sec2.html#PLID2

  • Help Displaying Parent and child relationship on one page

    Hello,
    I have 2 tables, lets say Parent and Child, that I want to display both tables on the same page. Basically I'm looking at trying to split the page in half, the top being the Parent table and the bottom being the Child table. When the user selects a parent, I want the Child table to display that parent's child/children. I don't know if this is possible though JDeveloper but I would appreciate all the help I can get
    Thanks,
    Matt

    This is a trivial master detail task for ADF.
    Basically, in the data control palette - stand on the child node that is inside the parent node - drag it over to your page and drop it as a master detail - this will get you what you want.
    More information is in the ADF Tutorial:
    http://www.oracle.com/technology/obe/ADFBC_tutorial_1013/10131/index.htm

  • Need query to link parent and child discrete job planned through ascp

    Could you help me create a query that will show both the parent and child discrete jobs created through ascp run? I do not need entire query. I need to know the names of tables and understand the links or joins between tables. Then, I shall be able to write the sql on my own.
    Thanks

    Hi;
    Please check below thread which could be helpful for your issue:
    http://forums.oracle.com/forums/thread.jspa?messageID=9155702
    Regard
    Helios

  • Delivery document how to print the BOM Parent and Child items

    Hi,
    I have a production BOM. In Delivery document how to print the Parent and Child items Item Code and Qty.At the time
    of add a delivery document Inventory stock redused only in Parent Item not child item because child item stock already reduced in issue for production.

    If you need to print both the BOM Parent and Child items, you have to create your own report. BOM is only for production if it is not Sales type.
    Thanks,
    Gordon

  • Installed the Mac update, checked for faulty fonts, and ran the Font Test Script. PS still crashes

    Hi guys,
    Ive done everything suggested and my PS is still crashing. I will attatch my crash report to see if it helps with anything. I used Font Doctor and Font Book to check for bad fonts and removed the two that came up. Tried again and still nothing. What should I do now? I really need to use the type tool for a project Im working on. I can edit pictures and use the program just fine up until the point I hit the type tool. I try to run the font test script I found here on the website and the program crashes before the scrip starts running. Its getting a little frustrating.
    Here's the crash report:
    Process:         Adobe Photoshop CS5 [10566]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.1 (12.0.1)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2010-07-02 13:21:42.534 -0400
    OS Version:      Mac OS X 10.6.4 (10F569)
    Report Version:  6
    Interval Since Last Report:          131251 sec
    Crashes Since Last Report:           58
    Per-App Interval Since Last Report:  22425 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      F5622891-F7B9-4617-818C-E916FBC834FB
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    *** error for object 0x127111400: incorrect checksum for freed object - object was probably modified after being freed.
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                 0x00007fff83fa83d6 __kill + 10
    1   libSystem.B.dylib                 0x00007fff84048972 abort + 83
    2   libSystem.B.dylib                 0x00007fff84037625 szone_error + 519
    3   libSystem.B.dylib                 0x00007fff83f64b4b small_free_list_remove_ptr + 246
    4   libSystem.B.dylib                 0x00007fff83f615ef szone_free_definite_size + 3254
    5   libFontParser.dylib               0x00007fff86220314 FPFontCreateFontsWithPath + 1358
    6   libCGXType.A.dylib                0x00007fff81349e52 create_private_data_with_path + 22
    7   com.apple.CoreGraphics            0x00007fff84b56da3 CGFontCreateFontsWithPath + 51
    8   com.apple.CoreGraphics            0x00007fff84b56a04 CGFontCreateFontsWithURL + 433
    9   com.apple.CoreText                0x00007fff856b3073 TCGFont::TCGFont(__CFURL const*, bool) + 73
    10  com.apple.CoreText                0x00007fff856b2e00 TCGFontCache::CopyFont(__CFURL const*) const + 92
    11  com.apple.CoreText                0x00007fff856b2c5a TBaseFont::CopyNativeFont() const + 50
    12  com.apple.CoreText                0x00007fff856b4517 TBaseFont::CopyAvailableTables(unsigned int) const + 25
    13  AdobeCoolType                     0x000000010430360e CTCleanup + 1011924
    14  AdobeCoolType                     0x00000001043065a4 CTCleanup + 1024106
    15  AdobeCoolType                     0x00000001043079a4 CTCleanup + 1029226
    16  AdobeCoolType                     0x000000010430a1d3 CTCleanup + 1039513
    17  AdobeCoolType                     0x000000010425bc45 CTCleanup + 325387
    18  AdobeCoolType                     0x00000001041be85d 0x1041b7000 + 30813
    19  AdobeCoolType                     0x00000001042b9cf1 CTCleanup + 710583
    20  AdobeCoolType                     0x000000010426748c CTCleanup + 372562
    21  AdobeCoolType                     0x00000001042660e6 CTCleanup + 367532
    22  AdobeCoolType                     0x00000001042b84e8 CTCleanup + 704430
    23  AdobeCoolType                     0x0000000104206353 0x1041b7000 + 324435
    24  com.adobe.Photoshop               0x000000010090a119 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6476937
    25  com.adobe.Photoshop               0x000000010090a145 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6476981
    26  com.adobe.Photoshop               0x0000000100904cef AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6455391
    27  com.adobe.Photoshop               0x0000000100905d08 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6459512
    28  com.adobe.Photoshop               0x0000000100905e78 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6459880
    29  com.adobe.Photoshop               0x0000000100905f57 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6460103
    30  com.adobe.Photoshop               0x0000000100908e5c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6472140
    31  com.adobe.Photoshop               0x00000001002cfd7e 0x100000000 + 2948478
    32  com.adobe.Photoshop               0x00000001002d0934 0x100000000 + 2951476
    33  com.adobe.Photoshop               0x0000000100267557 0x100000000 + 2520407
    34  com.adobe.Photoshop               0x00000001002683df 0x100000000 + 2524127
    35  com.adobe.Photoshop               0x000000010007b4eb 0x100000000 + 505067
    36  com.adobe.Photoshop               0x000000010024f209 0x100000000 + 2421257
    37  com.adobe.Photoshop               0x0000000100278c95 0x100000000 + 2591893
    38  com.adobe.PSAutomate              0x000000011e08659f CPsTextFonts::GetFontDescriptor(bool) + 145
    39  com.adobe.PSAutomate              0x000000011e086603 CPsTextFonts::GetPostScriptNamesList(CPsWActionList&) const + 51
    40  com.adobe.PSAutomate              0x000000011e086806 CPsTextFonts::HostGetLength() const + 36
    41  com.adobe.PSAutomate              0x000000011e0a5f64 MultiScript::LiveCollectionBase::get(int, ScCore::Variant&, ScCore::Error*) const + 66
    42  com.adobe.AdobeExtendScript       0x000000011e4c4a6d ScScript::LiveObjectProperty::get(ScScript::Object&, int) + 941
    43  com.adobe.AdobeExtendScript       0x000000011e485bd4 jsOpVariable::get(jsRunner&, ScScript::PropRef&, ScScript::ESVariant&, bool) + 68
    44  com.adobe.AdobeExtendScript       0x000000011e480470 jsOpProperty::run(jsRunner&, ScScript::ESVariant&) const + 176
    45  com.adobe.AdobeExtendScript       0x000000011e47e918 jsOpLocalAssign::run(jsRunner&, ScScript::ESVariant&) const + 312
    46  com.adobe.AdobeExtendScript       0x000000011e482390 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 208
    47  com.adobe.AdobeExtendScript       0x000000011e484474 jsOpTry::run(jsRunner&, ScScript::ESVariant&) const + 276
    48  com.adobe.AdobeExtendScript       0x000000011e482390 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 208
    49  com.adobe.AdobeExtendScript       0x000000011e47be27 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 215
    50  com.adobe.AdobeExtendScript       0x000000011e4a5741 jsRunner::run(ScScript::ESVariant&) + 113
    51  com.adobe.AdobeExtendScript       0x000000011e492cb8 jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 152
    52  com.adobe.AdobeExtendScript       0x000000011e4c9504 ScScript::RealEngine::exec(int, ScScript::Object&, ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&, int) + 1652
    53  com.adobe.AdobeExtendScript       0x000000011e4cd40d ScScript::RealEngine::eval(ScScript::Script&, ScCore::Variant*, int, int, ScCore::Variant const*) + 685
    54  com.adobe.AdobeExtendScript       0x000000011e4c8dc1 ScScript::RealEngine::eval(ScCore::String const&, ScCore::Variant*, int, int, ScCore::Variant const*, ScCore::String const*, int) + 225
    55  com.adobe.PSAutomate              0x000000011e0a30be MultiScript::ExtendScript::RunScript(ScScript::Engine*, ScCore::String const&, ScCore::Array const&, MultiScript::ExtendScript::ExecutionModeType, ScCore::String const*, ScCore::String&) const + 538
    56  com.adobe.PSAutomate              0x000000011e0045c3 CScriptPs::ExecuteGlobalJavaScript(ScCore::String const&, ScCore::String const&, ScCore::Array const*, MultiScript::ExtendScript::ExecutionModeType, ScCore::String const*, ScCore::String&) + 335
    57  com.adobe.PSAutomate              0x000000011e004a40 CScriptPs::DoExecute(PIActionParameters*) + 338
    58  com.adobe.PSAutomate              0x000000011e005042 PluginMain + 110
    59  com.adobe.Photoshop               0x00000001006fe083 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4330483
    60  com.adobe.Photoshop               0x00000001002778ec 0x100000000 + 2586860
    61  com.adobe.Photoshop               0x0000000100277a69 0x100000000 + 2587241
    62  com.adobe.Photoshop               0x0000000100071796 0x100000000 + 464790
    63  com.adobe.Photoshop               0x0000000100066baf 0x100000000 + 420783
    64  com.adobe.Photoshop               0x0000000100066c72 0x100000000 + 420978
    65  com.adobe.Photoshop               0x00000001012dd6cd AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16779837
    66  com.apple.Foundation              0x00007fff87aa3a2d __NSFireTimer + 114
    67  com.apple.CoreFoundation          0x00007fff88336678 __CFRunLoopRun + 6488
    68  com.apple.CoreFoundation          0x00007fff8833484f CFRunLoopRunSpecific + 575
    69  com.apple.HIToolbox               0x00007fff8891591a RunCurrentEventLoopInMode + 333
    70  com.apple.HIToolbox               0x00007fff8891567d ReceiveNextEventCommon + 148
    71  com.apple.HIToolbox               0x00007fff889155d8 BlockUntilNextEventMatchingListInMode + 59
    72  com.apple.AppKit                  0x00007fff8415e29e _DPSNextEvent + 708
    73  com.apple.AppKit                  0x00007fff8415dbed -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    74  com.apple.AppKit                  0x00007fff841238d3 -[NSApplication run] + 395
    75  com.adobe.Photoshop               0x00000001012dd5ee AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16779614
    76  com.adobe.Photoshop               0x00000001012de819 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16784265
    77  com.adobe.Photoshop               0x00000001000688c2 0x100000000 + 428226
    78  com.adobe.Photoshop               0x0000000100237c01 0x100000000 + 2325505
    79  com.adobe.Photoshop               0x0000000100237c91 0x100000000 + 2325649
    80  com.adobe.Photoshop               0x00000001000028e4 0x100000000 + 10468
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff83f7308a kevent + 10
    1   libSystem.B.dylib                 0x00007fff83f74f5d _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff83f74c34 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff83f7475e _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff83f74088 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff83f73f25 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f98cd1 _pthread_cond_wait + 1286
    2   com.adobe.amt.services            0x0000000108423c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services            0x000000010841ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services            0x0000000108423cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                 0x00007fff83f5a34e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff85bb388e MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011b655bd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff85b1eea1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f98cd1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff85bdd4c3 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff85b4ccc4 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff85b46bcf MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010591eccd 0x1058e4000 + 240845
    6   AdobeACE                          0x000000010591e67a 0x1058e4000 + 239226
    7   ...ple.CoreServices.CarbonCore    0x00007fff85b1eea1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f94d45 nanosleep + 148
    2   com.adobe.PSAutomate              0x000000011e18209b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate              0x000000011e163fd3 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate              0x000000011e182196 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f98cd1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl               0x000000011f67f04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl               0x000000011f440a39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl               0x000000011f67f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000011f67f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000011f67f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f98cd1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl               0x000000011f67f04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl               0x000000011f440a39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl               0x000000011f67f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000011f67f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000011f67f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                 0x00007fff83f5a2fa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff83f5a96d mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff883353c2 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff8833484f CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices     0x00007fff8322363f MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices     0x00007fff8322520a CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                 0x00007fff83f5a35a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff83f98bc2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl               0x000000011f67f019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl               0x000000011f814943 APXGetHostAPI + 4091683
    4   com.adobe.adobeswfl               0x000000011f67f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000011f67f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000011f67f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                 0x00007fff83f5a35a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff83f98bc2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl               0x000000011f67f019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl               0x000000011f69b95c APXGetHostAPI + 2547516
    4   com.adobe.adobeswfl               0x000000011f67f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000011f67f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000011f67f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                 0x00007fff83f9ddf2 recvfrom + 10
    1   ServiceManager-Launcher.dylib     0x000000012230f982 Invoke + 54020
    2   ServiceManager-Launcher.dylib     0x000000012230eadf Invoke + 50273
    3   ServiceManager-Launcher.dylib     0x000000012230db26 Invoke + 46248
    4   ServiceManager-Launcher.dylib     0x000000012230db81 Invoke + 46339
    5   ServiceManager-Launcher.dylib     0x000000012230dc02 Invoke + 46468
    6   ServiceManager-Launcher.dylib     0x000000012230830d Invoke + 23695
    7   ServiceManager-Launcher.dylib     0x00000001223084a6 Invoke + 24104
    8   ServiceManager-Launcher.dylib     0x0000000122308f2f Invoke + 26801
    9   ServiceManager-Launcher.dylib     0x000000012230901d Invoke + 27039
    10  ServiceManager-Launcher.dylib     0x000000012230c31f Invoke + 40097
    11  ServiceManager-Launcher.dylib     0x000000012230c5c5 Invoke + 40775
    12  ServiceManager-Launcher.dylib     0x000000012230cb84 Invoke + 42246
    13  ServiceManager-Launcher.dylib     0x000000012230cd71 Invoke + 42739
    14  ServiceManager-Launcher.dylib     0x00000001222fedaf Login + 1773
    15  ServiceManager-Launcher.dylib     0x0000000122300295 Login + 7123
    16  ServiceManager-Launcher.dylib     0x000000012230d2a8 Invoke + 44074
    17  ServiceManager-Launcher.dylib     0x000000012230f6c1 Invoke + 53315
    18  libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    19  libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                 0x00007fff83f9ddce select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x00007fff88356e92 __CFSocketManager + 818
    2   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    3   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                 0x00007fff83f5a35a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff83f98bc2 _pthread_cond_wait + 1015
    2   ...ple.CoreServices.CarbonCore    0x00007fff85b4cce4 TSWaitOnConditionTimedRelative + 209
    3   ...ple.CoreServices.CarbonCore    0x00007fff85b4ca92 TSWaitOnSemaphoreCommon + 416
    4   ...ple.CoreServices.CarbonCore    0x00007fff85b4c790 AsyncFileThread(void*) + 61
    5   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f94d45 nanosleep + 148
    2   libSystem.B.dylib                 0x00007fff83f94caf usleep + 57
    3   com.apple.AppKit                  0x00007fff842a9619 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation              0x00007fff87a4de8d __NSThread__main__ + 1429
    5   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00000001279f8000  rcx: 0x00007fff5fbf9978  rdx: 0x0000000000000000
      rdi: 0x0000000000002946  rsi: 0x0000000000000006  rbp: 0x00007fff5fbf9990  rsp: 0x00007fff5fbf9978
       r8: 0x0000000000000e03   r9: 0x0000000000000000  r10: 0x00007fff83fa4412  r11: 0x0000000000000202
      r12: 0x0000000000000000  r13: 0x0000000127111400  r14: 0x0000000106bd1000  r15: 0x00000001279f80c0
      rip: 0x00007fff83fa83d6  rfl: 0x0000000000000202  cr2: 0x0000000127a2c000
    Binary Images:
           0x100000000 -        0x1026a7fff +com.adobe.Photoshop 12.0.1 (12.0.1) <CFDED939-0A8A-EBC4-215B-94A4A224A1D1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x103287000 -        0x1032fffef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4A355686-1451-B19A-0C55-DFE49FD2539E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x103315000 -        0x10331cfff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103324000 -        0x103334ff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5D6FFC4E-7B81-3E8C-F0D4-66A3FA94A837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10333f000 -        0x103345ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <1AB34F57-2E8D-42FB-A484-5CCB928CA456> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10334c000 -        0x103552fef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x1035e5000 -        0x103793fef +com.adobe.owl AdobeOwl version 3.0.93 (3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103835000 -        0x103c65fef +AdobeMPS ??? (???) <FA334142-5343-8808-7760-4318EB62AD51> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103dbf000 -        0x1040eaff7 +AdobeAGM ??? (???) <52E17D56-6E7A-A635-82ED-5DE1F3E5045D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1041b7000 -        0x1044dffe7 +AdobeCoolType ??? (???) <7EF54CD5-3426-A1E5-7961-FA34CCC2018D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104577000 -        0x104598ff7 +AdobeBIBUtils ??? (???) <F7150688-2C15-0F0C-AF24-93ED82FC321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1045a5000 -        0x1045d0ff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x1045e2000 -        0x104726fef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10476d000 -        0x1047d2fff +aif_core ??? (???) <12FA670E-05A8-1FCB-A7A2-AAE68728EA30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x1047ee000 -        0x104804fff +data_flow ??? (???) <9C5D39A6-D2A2-9B6A-8B64-D1B59396C112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x10481c000 -        0x1048b2fff +image_flow ??? (???) <B72AA922-0D68-D57E-96B1-2E009B0AD4AE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104929000 -        0x104947fff +image_runtime ??? (???) <32786637-C9BF-4CB6-2DF9-5D99220E00BE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x104964000 -        0x104b93fff +aif_ogl ??? (???) <615E7DF6-09B1-857A-74AC-E224A636BEE1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104c72000 -        0x104d05fff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d25000 -        0x10506efef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x1051fe000 -        0x105380fe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x105422000 -        0x10579afff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x1058e4000 -        0x1059f9fff +AdobeACE ??? (???) <5BFBC4A1-1704-06A7-B656-D28BF592307A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a1e000 -        0x105a3afff +AdobeBIB ??? (???) <7A792F27-42CC-2DCA-D5DF-88A2CE6C2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105a44000 -        0x105aaeff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6B2F73C2-10AB-08B3-4AB0-A31C83D1E5E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105ae1000 -        0x105bb4ffb +AdobeJP2K ??? (???) <465D1693-BE79-590E-E1AA-BAA8061B4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105bd4000 -        0x105bd8ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0C380604-C686-C2E4-0535-C1FAB230187E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105bdc000 -        0x105c53fff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105c74000 -        0x105cd2ffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105ce0000 -        0x10617bfff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x106701000 -        0x106757feb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x10679c000 -        0x1067c1ffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x1067fb000 -        0x106800ffd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <DFFB9A08-8369-D65F-161F-7C61D562E307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106805000 -        0x1069a1fff +com.adobe.PlugPlug 2.0.0.109 (2.0.0.109) <83092855-E671-F64A-EE0D-1110CF669634> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106a49000 -        0x106a62feb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106a73000 -        0x106a79feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106a80000 -        0x106a80ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106a83000 -        0x106a8bff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106a92000 -        0x106b78fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <26FC56A6-EFD6-22FA-E1F1-4E1BA61C85BB> /usr/lib/libcrypto.0.9.7.dylib
           0x106fc4000 -        0x106fc6fef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x108100000 -        0x10811cff7 +MeasurementCore ??? (???) <0E3BE9B3-FF3D-78A6-38EC-5CB0828B80EB> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x108147000 -        0x108167ffb +com.adobe.ape adbeapecore version 3.1.65.7508 (3.1.65.7508) <284C86BE-ACD8-31DD-E58D-544F581BC93B> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x1081e7000 -        0x1081f6fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <0628B99F-F193-89BF-6332-B8C50D301F29> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x1081fa000 -        0x1081fbfff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <5EB939D1-53CF-EDD2-36DF-3E8A3FB13179> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x108400000 -        0x108470ff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52FF1F9B-9991-ECE2-C7E3-09DA1B368CBE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x1199e2000 -        0x1199f9fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <1B9D1076-CC7C-521A-676C-F7BE51F65271> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x1199fd000 -        0x119a1efef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <FA6280BD-A73C-3A3D-6494-81EB80FE1C24> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x119a22000 -        0x119a34fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <A77665EF-B6FB-00B4-2F3D-90D7845814C9> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x119a3a000 -        0x119a42fff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x119ad5000 -        0x119adcfff +Enable Async IO ??? (???) <9C98DC9E-5974-FE5D-75C3-16BC4738DCC8> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x119ae5000 -        0x119aeefff +FastCore ??? (???) <F1D1C94D-4FE1-F969-6FC2-8D81837CA5E1> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11b231000 -        0x11b235fff  com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <F6E20DCA-3C00-8990-1F60-E5517F7D0C77> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x11b23a000 -        0x11b240fff  com.apple.audio.AppleHDAHALPlugIn 1.8.7 (1.8.7f1) <97D7045E-CFD7-AD5C-6954-3B7C3F367C63> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
           0x11b537000 -        0x11b59aff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11b620000 -        0x11b68bff0 +MultiProcessor Support ??? (???) <8A0A7B32-67A5-4CD5-80DC-F9BEDA271F2C> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x11e000000 -        0x11e25cfef +com.adobe.PSAutomate 12.0.1 (12.0.1) <6A522366-AB0A-E14E-D695-CDC7F5211991> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x11e472000 -        0x11e516ffb +com.adobe.AdobeExtendScript ExtendScript 4.1.25 (4.1.25.8769) <144F37AB-BE20-D159-C326-A34154FE04B3> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x11e578000 -        0x11e618fef +com.adobe.AdobeScCore ScCore 4.1.25 (4.1.25.8769) <28F9410F-A5B5-BB59-FB7E-F5DB8FA70A0C> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x11eb00000 -        0x11eb3eff7  com.apple.DP.ScreenInputDevice 13.0 (13.0) <22174597-D163-7A20-C82A-C00C2CA19640> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/AppleScreenInpu tDevice.plugin/Contents/MacOS/AppleScreenInputDevice
           0x11eb4a000 -        0x11eb74fef  com.apple.mio.DAL.VDC_4 130.0 (1035) <605498BB-69D1-09C2-2720-FC7FBE9C289E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.plugin/Cont ents/MacOS/VDC
           0x11f400000 -        0x120247fcf +com.adobe.adobeswfl ??? (2.0.0.7489) <DBD38111-48D6-C031-EF50-D034C94ED38B> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL
           0x122279000 -        0x1222b6feb +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 1.0.0.64 (1.0.0.64) <CD8BD7C7-0F66-29B6-C158-A6EF8DF69996> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotification s
           0x1222fc000 -        0x122324fef +ServiceManager-Launcher.dylib ??? (???) <4608E5E7-7F22-A4FF-527C-E97EA339FCCC> /Library/Application Support/Adobe/CS5ServiceManager/lib/ServiceManager-Launcher.dylib
           0x1224a8000 -        0x1224cefff  GLRendererFloat ??? (???) <10AFC7E0-A5CE-8F0E-7084-439BE59F7E95> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x122900000 -        0x122a8dfe7  GLEngine ??? (???) <57D733C2-F7CB-2B8F-CD34-C85A193145DE> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x122abe000 -        0x122ee1fef  libclh.dylib 3.1.1 C  (3.1.1) <83F3C7DB-D2E2-07B0-E433-386C9428AD72> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x200000000 -        0x2006fbff7  com.apple.GeForceGLDriver 1.6.16 (6.1.6) <4F3D3917-641B-AA12-04DE-D3A1995C3B18> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff800b2fff  edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff800d9000 -     0x7fff80156fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff80268000 -     0x7fff8028dfe7  com.apple.CoreVideo 1.6.1 (45.4) <B1516554-88BC-CF1E-5409-BFF27A73D1AF> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8028e000 -     0x7fff8029bfe7  libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <7B891D4C-1F19-4DB0-FD12-7A7D5E8F47AE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8029c000 -     0x7fff803a6ff7  com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.frame work/Versions/A/MeshKitIO
        0x7fff803f7000 -     0x7fff80430ff7  com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff80431000 -     0x7fff804c1fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff804c2000 -     0x7fff804c6ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff80644000 -     0x7fff8067cfef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <31A78904-A500-0DA9-0609-F1EB81383326> /usr/lib/libcups.2.dylib
        0x7fff806b3000 -     0x7fff808eefef  com.apple.imageKit 2.0.3 (1.0) <8DA80BC9-C671-BD89-EA2E-3C632D6ECE30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
        0x7fff808f1000 -     0x7fff808f1ff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff808f2000 -     0x7fff80adcfe7  com.apple.JavaScriptCore 6533 (6533.13) <C2D33B72-06F1-B789-6FD3-FB09EEB6C907> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff80add000 -     0x7fff80b2cff7  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
        0x7fff80b57000 -     0x7fff80b5cfff  libGFXShared.dylib ??? (???) <1265FAEF-1C97-B339-28A4-4510589B067B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff80b5d000 -     0x7fff80bc5fff  com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitRuntime. framework/Versions/A/MeshKitRuntime
        0x7fff80bc6000 -     0x7fff80bc7ff7  com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <D4183AC4-8A65-8368-A9AF-E2A13D18519C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff80bc8000 -     0x7fff80c7dfe7  com.apple.ColorSync 4.6.3 (4.6.3) <AA93AD96-6974-9104-BF55-AF7A813C8A1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff80c7e000 -     0x7fff80ceaff7  com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff80ceb000 -     0x7fff80cfdfe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff80cfe000 -     0x7fff80ebcfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0E53A4A6-AC06-1B61-2285-248F534EE356> /usr/lib/libicucore.A.dylib
        0x7fff80ebd000 -     0x7fff80ec2ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff80ec3000 -     0x7fff80ec5fff  libRadiance.dylib ??? (???) <D67C08B6-4D4A-916D-E936-528E145A56E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
        0x7fff80ec6000 -     0x7fff80f1bfef  com.apple.framework.familycontrols 2.0.1 (2010) <239940AC-2427-44C6-9E29-998D0ABECDF3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff80f1c000 -     0x7fff80fabfff  com.apple.PDFKit 2.5.1 (2.5.1) <7B8A187A-F0BB-44E7-FBD4-9E1C5F9D5E85> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
        0x7fff80fac000 -     0x7fff80facff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff80fad000 -     0x7fff80fadff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff80fae000 -     0x7fff81033fff  com.apple.print.framework.PrintCore 6.2 (312.5) <E736F6DC-2E69-A14D-6BCF-69D14232F8B8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff81034000 -     0x7fff81037ff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff81038000 -     0x7fff812a1ff7  com.apple.QuartzComposer 4.1 (156.16) <0BAE3C90-CF60-C0C7-C29E-BF9922074095> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
        0x7fff812a2000 -     0x7fff812c0fff  libPng.dylib ??? (???) <F6932C8D-E6B1-0871-B698-15180AA948F7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff812fd000 -     0x7fff812feff7  com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff812ff000 -     0x7fff81348ff7  com.apple.securityinterface 4.0.1 (37214) <F8F2D8F4-861F-6694-58F6-3DC55C9DBF50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
        0x7fff81349000 -     0x7fff8134dff7  libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <E666EBC7-2D87-A3C6-9461-A596B4E53593> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8134e000 -     0x7fff8134eff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8135b000 -     0x7fff81410fe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff81411000 -     0x7fff81420ff7  com.apple.opengl 1.6.8 (1.6.8) <0CDC4F98-7981-A114-1778-AF171075138E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff81421000 -     0x7fff814bbfff  com.apple.ApplicationServices.ATS 4.3 (???) <A7CD9E1F-C563-E940-130D-AA7E08C5A29F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff815d8000 -     0x7fff81a1bfef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff81a1c000 -     0x7fff81a1cff7  com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff826e2000 -     0x7fff82968ff7  com.apple.security 6.1.1 (37594) <5EDDC08C-C95B-2D24-E1D2-D30D233AB065> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82969000 -     0x7fff82a82fef  libGLProgrammability.dylib ??? (???) <B057FC52-6A97-F450-48D8-325A70423A53> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
        0x7fff82cc6000 -     0x7fff82d91fe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <3C223A94-EF14-28C5-844B-C25DFC87FB42> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff82d92000 -     0x7fff82dbafff  com.apple.DictionaryServices 1.1.1 (1.1.1) <9FD709FC-23F0-F270-EAC1-C590CD516A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff82dbb000 -     0x7fff82df8ff7  libFontRegistry.dylib ??? (???) <B63FCC3A-F49E-B42E-6D57-5F59E3A8D8B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff82df9000 -     0x7fff82e3cff7  libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <DF457CB3-CE61-0FD4-1403-BB68BC2CC998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff82f9e000 -     0x7fff830c6ff7  com.apple.MediaToolbox 0.484.11 (484.11) <F50B5552-8527-C75D-873F-66A61D04E32A> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff830c7000 -     0x7fff83113fff  libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
        0x7fff831b9000 -     0x7fff831fafff  com.apple.SystemConfiguration 1.10.2 (1.10.2) <BC27BDD4-9CC8-9AF0-B4C2-DD50FD751CBF> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff831fb000 -     0x7fff83214fff  com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff83215000 -     0x7fff8325afff  com.apple.CoreMediaIOServices 130.0 (1035) <567D7949-3115-4E78-8F27-B28968CC25F7> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices
        0x7fff832f6000 -     0x7fff833c6ff7  com.apple.CFNetwork 454.9.7 (454.9.7) <AA6EB690-6CCF-603D-AAC2-35B9E05D1593> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
        0x7fff833c7000 -     0x7fff83418fe7  com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff8341e000 -     0x7fff8344ffff  libGLImage.dylib ??? (???) <2F18DB77-CF77-1311-9E20-FE460090C166> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff83450000 -     0x7fff83452fff  com.apple.print.framework.Print 6.1 (237.1) <4513DB2F-737C-B43C-2D0E-23CD6E838014> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff83453000 -     0x7fff83496fff  libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
        0x7fff83497000 -     0x7fff834f5ff7  com.apple.framework.IOKit 2.0 (???) <010C3398-7363-8F4B-719C-263867F15F63> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff834f6000 -     0x7fff8350cff7  com.apple.MultitouchSupport.framework 204.13 (204.13) <BFFEC259-F103-B25A-BB52-1AA79116DDBA> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff83529000 -     0x7fff83529ff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8352a000 -     0x7fff8356efe7  com.apple.ImageCaptureCore 1.0.2 (1.0.2) <075198A5-4C6B-D945-D3EF-D13960C9F738> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
        0x7fff83593000 -     0x7fff835a9fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff835aa000 -     0x7fff835bbff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff835bc000 -     0x7fff835bfff7  libCoreVMClient.dylib ??? (???) <DBB2C09F-4BF4-326C-B775-B7A128C501E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff835c0000 -     0x7fff835f1fef  libTrueTypeScaler.dylib ??? (???) <0A30CA68-46AF-3E74-AE9E-693DB5A680CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff83739000 -     0x7fff83744ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff83790000 -     0x7fff83b05fe7  com.apple.RawCamera.bundle 3.0.3 (529) <2E6B251A-C5A5-A3F9-832B-BB1958F938E9> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff83b06000 -     0x7fff83b4dff7  com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff83bca000 -     0x7fff83d08fff  com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff83d09000 -     0x7fff83d38ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
        0x7fff83df7000 -     0x7fff83eefff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <7E4ADB5A-CC77-DCFD-3E54-2F35A2C8D95A> /usr/lib/libiconv.2.dylib
        0x7fff83ef0000 -     0x7fff83f31fef  com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff83f32000 -     0x7fff83f58fe7  libJPEG.dylib ??? (???) <4060F3E2-BAD3-244F-D777-51BA16569DA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff83f59000 -     0x7fff84119fef  libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
        0x7fff8411a000 -     0x7fff84b10fff  com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff84b41000 -     0x7fff8523e067  com.apple.CoreGraphics 1.543.50 (???) <46A7D60C-0500-B96C-ECAD-1D658487D213> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff8523f000 -     0x7fff85319ff7  com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff8531a000 -     0x7fff8531bfff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
        0x7fff854bc000 -     0x7fff85506ff7  com.apple.Metadata 10.6.3 (507.10) <641395B7-FF2C-B94C-965A-CE6A0830645F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff85507000 -     0x7fff8550dff7  IOSurface ??? (???) <EB2019F6-7C5C-3D59-E11F-6119466C12A9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8559b000 -     0x7fff856aafe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <36DA89A6-3AF5-86F2-BDD5-B94C7C0844D4> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff856ab000 -     0x7fff85729fff  com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
        0x7fff8572a000 -     0x7fff8584ffef  com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4DCCD01F-7516-4240-09DC-EE553317D345> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff85932000 -     0x7fff85937fff  libGIF.dylib ??? (???) <21FC6B02-6AC3-C4DB-0B50-98144802274C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
        0x7fff85938000 -     0x7fff8593ffff  com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff85940000 -     0x7fff8597bfff  com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff8597c000 -     0x7fff859bdff7  com.apple.CoreMedia 0.484.11 (484.11) <AEE7E9C9-9604-B0A7-053B-28954659CFE3> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff859be000 -     0x7fff85a4afef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff85a4b000 -     0x7fff85a51ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85a52000 -     0x7fff85ad4fff  com.apple.QuickLookUIFramework 2.2 (327.4) <C35D9F62-73D0-262C-B0CE-BFF64E230588> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
        0x7fff85ad5000 -     0x7fff85b00ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff85b01000 -     0x7fff85b17fff  com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff85b18000 -     0x7fff85e4bfe7  com.apple.CoreServices.CarbonCore 861.13 (861.13) <BC2F9B4E-D305-D717-D97E-EC78C7DE9EE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff85e4c000 -     0x7fff85e6cff7  com.apple.DirectoryService.Framework 3.6 (621.3) <EDCAF7ED-36E1-121F-D294-5CEBC1C34C5A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff86120000 -     0x7fff8613bff7  com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff8617d000 -     0x7fff8617dff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8617e000 -     0x7fff8621efff  com.apple.LaunchServices 362.1 (362.1) <2740103A-6C71-D99F-8C6F-FA264546AD8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff8621f000 -     0x7fff862dffff  libFontParser.dylib ??? (???) <A4F8189D-1D5B-2F8D-E78E-6D934A8E8407> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff866b4000 -     0x7fff866c3fff  com.apple.NetFS 3.2.1 (3.2.1) <FF21DB1E-F425-1005-FB70-BC19CAF4006E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff866c4000 -     0x7fff866ccfff  com.apple.DisplayServicesFW 2.2.2 (251) <A8AA237B-26DA-455D-4133-69B1D1E45DF4> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
        0x7fff866d5000 -     0x7fff86737fe7  com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff86738000 -     0x7fff868a7fe7  com.apple.QTKit 7.6.6 (174

    Try them again.  The bug you are seeing should crash on bad fonts in FontBook, or at least the fonts should fail to validate.
    Also, sometimes you need to restart the machine after removing bad fonts because apps can hang onto the fonts while they are open.
    There is nothing more we can do on the Photoshop side - this is an aknowledged Apple bug, that we cannot avoid (it even happens sometimes when we aren't touching type code directly, because other OS code touches the type code).

  • Configuration for consolidated check for same vendor from different company

    Hi All,
    My company is trying to print a single check for same vendor with same vendor number in multiple company code.
    The Automatic payment parameters has all company codes where the vendor is having open items.
    But when payment run is carried out and the check is printed, there are more than 1 check printed for the same vendor corresponding to the cleared invoices.
    One company is paying for all other companies and still multiple checks are printed.
    Can someone help with some lead to resolve this issue.
    Points will be assigned for helpful tips and answers.
    Thanks alot in advance

    Hi,
    i understood ur problem so dont worry.... solution is there in sap
    while confiqure automatic payment program in FBZP give paying company code payment transaction give company code what check through you want to pay that ....ofter that payment will go through this company code check only
    may be this information is useful to you

  • Can i give multiple versions in purchase inforecord for same vendor and mat

    can i give multiple versions in purchase info record for same vendor and mat code..is is possible??? plz help me
    thanks and regards
    Ramesh Reddy(VALLUR)

    HI,
    No .where you are getting version in purchasing info record ? why you want version ? suppose we put version then where you used that version ?
    to get clear picture regarding purchasing info record
    check following link
    [http://help.sap.com/saphelp_46c/helpdata/en/75/ee102f55c811d189900000e8322d00/content.htm]
    Regards
    Kailas Ugale

  • Merge of parent and child content of a heirarchy

    Can anyone say the procedure to of merging the parent and child link of heirarchy into one string and been displayed in a seperate feild

    Lakshmi Kanth,
    I am <b>assuming</b> that you are refering to "Merge Records" option in MDM Data Manager. If this is the scenario that you are looking for then here are the details:
    When it comes to Hierarchy tables, merging records is different than Merging Main table records. This option in Hierarchy tables also has lot of constraints - One of them is "Destination and source node cannot have children". Because of this, currently it is not possible to merge Parent- child records. However, for more information, please refer to this <a href="http://help.sap.com/saphelp_mdmgds55/helpdata/EN/43/9967ab46ec60b7e10000000a11466f/content.htm">link</a> for more information on Merging in Hierarchy tables.
    If "Merge Records" in Data Manager is not the option that you are looking for, let us know more details.
    Regards,
    Rajani Kumar

Maybe you are looking for

  • The Characters panel hotkey is not working - help!

    hi, Before Mavericks, I was able to use the Characters Panel by pressing cmd-opt-t hockey. After upgrading to Mavericks, this hotkey seems not working anymore. Is it just me or is there a bug in it? Any help appreciated. -Jason

  • Search Engine in Java

    Hi All, I just wonder anyone can lend me a hand please. I am using Java to develop a search engine at the moment, I need to store all the words from a single html page, and I have done this, but the thing is how can I get all pages from a certain int

  • My MacBook Pro would take AGES to load

    My MacBook Pro takes absolutely ages to load and after an hour. The  logo disappears and the loading icon disappeared and came back. I have no idea why but I am frustrated with my MacBook. I think I need a refund.

  • AppleScript Event Handler Error

    While running iChat, I wanted to have notifications show up when some of my buddies log on so I don't have to guess who it was that logged on. I set for an AppleScript to run when buddies are available to Auto Accept.applescript and I get error -1708

  • How do you style a sparks TitleWindow?

    I'm having a hard time getting my head around the new Sparks css. To pick an example, I have a custom TitleWindow called HelpWindow.  How do I set the font and color for the TitleBar? Also, is there a reference for what properties are available for s