11g DBAdatper returns 1st row multiple times

We have a db adapter that was built using the adapters-db-102-select pdf as a guideline. When we test the query being executed by the adapter in the database it returns ten rows. When we test the BPEL process from the soa-infra console with debugging turned on and view the audit trail we see the following discrepancy. After the invoke operation I view the payload and see that the returned collection does in fact contain ten elements. The issue is that instead of returning the same ten rows as when we execute the query in the database it returns only the first row ten times. Can anyone suggest a possible resolution?
Thank you.

Ryan -
I've always had to work to get a row repeated ten times, e.g. iterating through with a while loop and not putting the loop variable as a subscript in the assignment. You may have found a labor-saving new feature! :-( Being suspicious of new releases, I would try interating through the output variable, to see if maybe the person who coded the console display made that "not putting the loop variable as a subscript" error. If you confirm that you really do have the first row ten times, then you have two possibilities: (1) even though you think it's the same, the SQL you defined in the BPEL DB adapter wizard is not exactly the same as what you ran in the database, OR (2) the SQL in BPEL is right but returns repeated rows ("undocumented feature").
If you aren't positive the DB adapter SQL is perfect, you might post the SQL you ran in the DEB and the SQL from the Toplink mappings (assuming 11G still has those). In 10.1.3 it would be in the JDeveloper BPEL project directory {JDevProjectName}/toplink/{DbAdapterPartnerlinkName}/descriptor, in the file named {DbAdapterPartnerlinkName}.{TableName}.ClassDescriptor.xml, in the XML element (tag) called query. It may be in a different place in 11G, but you get the idea. Compare what you think you coded with what the BPEL designer actually coded.
If you're sure the SQL is right, you may want to open an SR. They'll probably ask for the SQL anyway, so posting it first won't hurt unless you're in a hurry.
Good luck, Andy

Similar Messages

  • Problem returning same rows multiple times

    Hi there. I have three tables called GP_T, LDMK_T, and FP_T.
    GP_T is a spatial table and has the following attributes:
    Location | Land - where location is of type sdo_geometry
    LDMK_T has the following attributes:
    Land | CFCC
    FP_T has the following attributes:
    Land | CFCC | Score
    Each land is assoicated with only one location. As can be seen the attribute "Land" is common to all three tables and uniquely identifies the objects that I am trying to access. "CFCC" is common to LDMK_T and FP_T and each unique object has an associated "CFCC" where more than one object can have the same "CFCC". Essentially what I am trying to do is return all distinct "lands" based on a "CFCC" value and where the objects' score > 20.
    My select statement looks as follows:
    select a1.land, a1.location from GP_T a1, LDMK_T a2, FP_T a3
    where a1.land = a2.land and a1.land = a3.land and a2.cfcc = a3.cfcc
    and a2.cfcc = 'D43' and a3.feature_score > 20;
    However, this query returns certain objects multiple (2 or more) times. When I run this second query it appears to return the correct number of values but without the "Location" attribute:
    select distinct (a1.land) from GP_T a1, LDMK_T a2, FP_T a3
    where a1.land = a2.land and a1.land = a3.land and a2.cfcc = a3.cfcc
    and a2.cfcc = 'D43' and a3.feature_score > 20;
    I cannot use "select distinct a1.land, a1.location...." as it throws up the following error:
    ORA-22901: cannot compare nested table or VARRAY or LOB attributes of an object type
    Is it a question of using GROUP_BY or can anybody else see anything wrong with the way I set up the initial query. Any help would be greatly appreciated. Joe

    Hi there. Thanks a lot for your response. I tried removing the second table completely from the query as you suggested, seeming as it appears redundant, but the query still retrieves certain rows multiple times. In fact the query that you suggested actually returns the exact same results as my initial query so at least some progress has been made. However, I really have no idea how to remove duplicates without using the "DISTINCT" option. Has anybody else got any further suggestions? Any help would be great. Thanks, Joe

  • Insert same row multiple times

    Hi,
    I've this table TAB1:
    COD.........TYPE........DESCRIP
    1..............RED..............MY COLOR
    I'd like to insert into table TAB2 this record 10000 times
    How can I write my insert or procedure to insert this row multiple times?
    Thanks in advance!

    Hi,
    Assuming tab1.col is unique:
    INSERT INTO tab2 (col_a, col_b, col_c)
    SELECT            cod,   type,  descrip
    FROM    tab1
    START WITH  cod = 1
    CONNECT BY  cod = 1
           AND  LEVEL <= 10000;If tab1.cod is not unique, use whatever is unique in the START WITH and CONNECT BY clauses. You do not have to SELECT the unique key.
    This does not assume that tab1 contains only the row you want to copy.
    As shown, this only works for making multiple copies of a single row.
    The multi-row version isn't much more complicated.

  • Returning a sting multiple times

    Can anyone tell me how I can make a method print a string multiple times based on user input? e.g. string TEST and Keyboard.readInt(10)
    result
    test
    test....test 10 times
    Thanks

    use a loop.

  • SQL Update a Single Row Multiple Times Using 2 Data Sets

    I'm working in tsql and have an issue where I need to do multiple updates to a single row based on multiple conditions. 
    By Rank_
    If the column is NULL I need it to update no matter what the Rank is.
    If the Ranks are the same I need it to update in order of T2_ID.
    And I need it to use the last updated output.
    I've tried using the update statement below but it only does the first update and the rest are ignored. Here is an example of the data sets i'm working w/ and the Desired results. Thanks in advance!
    update a
    set Middle = case when a.Rank_> b.Rank_ OR a.Middle IS NULL then ISNULL(b.Middle,a.Middle) end,
    LName = case when a.Rank_> b.Rank_ OR a.Lname IS NULL then ISNULL(b.LName,a.LName) end,
    Rank_ = case when a.Rank_> b.Rank_ then b.Rank_ end
    from #temp1 a
    inner join #temp2 b on a.fname = b.fname
    where b.T2_ID in (select top 100% T2_ID from #temp2 order by T2_ID asc)

    The Merge clause actually errors because it attempt to update the same record.  I think this CTE statement is the closest I've come but I'm still working through it as I'm not too familiar w/ them.  It returns multiple rows which I will have to
    insert into a temp table to update since the resulting row I need is the last in the table.
    ;WITH cteRowNumber
    AS(
    Select DISTINCT
    Row_Number() OVER(PARTITION BY a.LName ORDER BY a.LName ASC, a.Rank_ DESC,b.T2ID ASC) AS RowNumber
    ,a.FName
    ,a.LName
    ,b.LName as xLname
    ,a.MName
    ,b.MName AS xMName
    ,a.Rank_
    ,b.Rank_ AS xRank
    ,b.T2ID
    FROM #temp1 a
    inner join #temp2 b
    ON a.fname = b.fname
    ), cteCursor
    AS(
    Select a.RowNumber,
    a.Fname
    ,a.LName
    ,a.xLname
    ,a.MName
    ,a.xMName
    ,a.xRank
    ,a.T2ID
    ,CASE WHEN a.Rank_ >= a.xRank THEN ISNULL(a.xRank,a.Rank_) else ISNULL(a.Rank_,a.xRank) end AS Alt_Rank_
    ,CASE WHEN a.Rank_ >= a.xRank THEN ISNULL(a.xMName,a.MName) else ISNULL(a.MName,a.xMName) end AS Alt_MName
    ,CASE WHEN a.Rank_ >= a.xRank THEN ISNULL(a.xLName,a.lname) else ISNULL(a.LName,a.xlname) end as Alt_Lname
    FROM cteRowNumber a
    where a.RowNumber = 1
    UNION ALL
    Select crt.RowNumber
    ,crt.FName
    ,crt.LName
    ,crt.xLname
    ,crt.MName
    ,crt.xMName
    ,crt.xRank
    ,crt.T2ID
    ,CASE WHEN Prev.Alt_Rank_ >= crt.xRank THEN ISNULL(crt.xRank,Prev.Alt_Rank_) else ISNULL(Prev.Alt_Rank_,crt.xRank) end AS Alt_Rank
    ,CASE WHEN Prev.Alt_Rank_ >= crt.xRank THEN ISNULL(crt.xMName,Prev.Alt_MName) else ISNULL(Prev.Alt_MName,crt.xMName) end AS Alt_MName
    ,CASE WHEN Prev.Alt_Rank_ >= crt.xRank THEN ISNULL(crt.xLName,Prev.Alt_Lname) else ISNULL(Prev.Alt_Lname,crt.xLName) end as Alt_Lname
    FROM cteCursor prev
    inner join cteRowNumber crt
    on prev.fname = crt.fname and prev.RowNumber + 1 = crt.RowNumber
    SELECT cte.*
    FROM cteCursor cte

  • Showing Rows multiple times in Sales Order PLDltipe rows

    Hi Experts,
    I had design 1 PLD for SALES ORDER that is working fine for some business partner but for some business partner showing number of rows more then 3-4 times then the original rows of items for example there are 2 items entered  in PLD it gets repeated 3-4 times.
    What may be the reason ?
    Regards
    Kamlesh

    Hi,
    Check that none of the database type fields are pointing to tables other than Sales Order/Admin/BP/Item. Usually lines get repeated when there is a db field of another marketing document table.
    I hope this helps.
    Regards,
    Nat

  • Display specific row to display multiple time in jsf table 11.1.1.2.0 with

    HI ALL,
    I'm using jdeveloper 11.1.1.2.0 with ADF 11g.
    I have to display the values in jsf frm table where i'm using DislayCertDetailVO . In dis VO i'm having a column no.of certificaties .taking dis column value when i navigate to other page jsf by selecting a specific row. here i have to display the selected row in multiple times based on the no.of.certificates column value.
    I want to display specific row to display multiple time to repeat same row in a table in jsf based on the value from bean or table in database.
    Edited by: user9010551 on Apr 28, 2010 6:14 AM
    Edited by: user9010551 on Apr 28, 2010 10:33 PM

    Hi, Trying it once more to give more clarity of my scenario.
    I have to navigate from 1 screen to the other by picking a given table record/row from the 1st screen. While displaying the record on the 2nd screen the catch is that, I have to display it as many times as the value in a cell of the selected record.
    eg.
    screen 1
    col1   col2     col3
    2 order1 item1
    [next]
    On clicking next it should look like
    screen2
    col1           col2            col3           col4
    order1 item1
    order1 item1
    where col3 and col4 will be editable by the user and col1 is the value depends how many times i have repeat the row/record
    Hope this give more clarity.

  • DB Adapter: Polling For New Records returns the First record multiple Times

    I Polling for New or Chnaged Records against DB2 on iSeries. The DB Adapter returns the first record from the Table multiple Times. If the Table has 5 records it displays the first record 5 times. I am using BPEL 10.1.3.1 Can anyone help me with this.

    Hi there,
    please check out the DBAdapter trouble-shooting guide:
    http://download-east.oracle.com/docs/cd/B31017_01/integrate.1013/b28994/app_trblshoot.htm#CIHFEHFA
    I am copying an entry from there into here:
    A.1.21 Some Queried Rows Appear Twice or Not at All in the Query Result
    Problem
    When you execute a query, you may get the correct number of rows, but some rows appear multiple times and others do not appear at all.
    This behavior is typically because the primary key is configured incorrectly. If the database adapter reads two different rows that it thinks are the same (for example, the same primary key), then it writes both rows into the same instance and the first row's values are overwritten by the second row's values.
    Solution
    Open Application Sources > TopLink > TopLink Mappings. In the Structure window, double-click PHONES. On the first page, you should see Primary Keys. Make sure that the correct columns are selected to make a unique constraint.
    Save and then edit the database partner link.
    Click Next to the end, and then click Finish and Close.
    Open your toplink_mappings.xml file. For the PHONES descriptor, you should see something like this:
    <primary-key-fields>
    <field>PHONES.ID1</field>
    <field>PHONES.ID2</field>
    </primary-key-fields>
    Thanks
    Steve

  • Please:How to repeat the return values multiple times in sapscript

    Currently my subroutine is returning a value called TOQBSSHB single time and i am working with standard layout called RFFOUS_C.Please can anybody tell me if i want to show multiple times TOQBSSHB for different values of VBLNR .Is it possible if it is what are changes i should make on layout and subroutine.
    PERFORM EXTRACT IN PROGRAM Y_MIT_TEST2
    USING &REGUH-VBLNR&
    USING &REGUH-NAME1&
    CHANGING&TOTQBSHB&
    ENDPERFORM
    FORM EXTRACT TABLES IN_PAR STRUCTURE ITCSY OUT_PAR STRUCTURE ITCSY.
    TABLES : REGUP,BSEG,REGUH,REGUD.
      DATA : BILL_NO LIKE REGUH-VBLNR.
      DATA : ITAB LIKE REGUP OCCURS 0 WITH HEADER LINE.
      DATA : JTAB LIKE REGUP OCCURS 0 WITH HEADER LINE.
      DATA : BELNR1 LIKE ITAB-BELNR.
      DATA : QBSHB1 LIKE REGUD-SWNES.
      DATA : QBSHB2 LIKE REGUD-SWNES.
      DATA : TOTOQBSHB LIKE REGUD-SWNES.
      READ TABLE IN_PAR WITH KEY NAME = 'REGUH-VBLNR'.
      IF SY-SUBRC = 0.
       BILL_NO = IN_PAR-VALUE.
      ENDIF.
    SELECT * FROM REGUP INTO CORRESPONDING FIELDS OF TABLE ITAB WHERE VBLNR
    = BILL_NO.
      READ TABLE ITAB INDEX 1.
      IF SY-SUBRC = 0.
      MOVE ITAB-QBSHB TO QBSHB1.
      MOVE ITAB-BELNR TO BELNR1.
      ENDIF.
    SELECT * FROM BSEG INTO CORRESPONDING FIELDS OF TABLE JTAB WHERE BELNR
    = BELNR1.
      LOOP AT JTAB.
      READ TABLE JTAB INDEX SY-TABIX.
      IF SY-SUBRC = 0.
      QBSHB2 = QBSHB2 + JTAB-QBSHB.
      ENDIF.
      ENDLOOP.
      TOTOQBSHB = QBSHB1 + QBSHB2.
      READ TABLE OUT_PAR WITH KEY NAME = 'TOTQBSHB'.
      IF SY-SUBRC = 0.
      MOVE TOTOQBSHB TO OUT_PAR-VALUE.
      MODIFY OUT_PAR INDEX SY-TABIX.
      ENDIF.
    ENDFORM.

    I said :
    - A) you should copy the main program without to copy
         includes, so when the systems ask you which objects
         you want to copy: check all excluding INCLUDES.
    So you'll have a new program which uses the same includes of the standard program.
    - B) in your z-program you find the point where you should insert your code: you'll have two cases:
    - you should insert code in a point that is writen in z-program;
    - you should insert code in a point (for example a form) that isn't write in z-program, but in a standard include your z-program use.
    In first case you only write your code, in second one before you should copy the include, than insert it in your z-program and so insert your code in the include.
    For example:
    - A) Copy RFFOUS_C in ZRFFOUS_C
    - B) I should change the code of routine  
         SCHECKDATEN_EINGABE, it's defined in RFFORI01, so I copy it in ZRFFORI01, insert my code in it.
    - C) found where my z-program call include RFFORI01:
    subroutines for check print and prenumbered checks                  *
      INCLUDE RFFORI01.
    now replace this with the call to my new include:
      INCLUDE RFFORI01.
      INCLUDE ZRFFORI01.
    If you do in this way you copy only includes where you should change the code.
    Message was edited by: max bianchi
    Message was edited by: max bianchi

  • I have a fairly new iPod touch and the touch screen has stopes working in certain places like the bottom row of apps and things on keyboard I have updated it and restored it multiple times it makes no difference please help!?

    I have a fairly new iPod touch and the touch screen has suddenly stopped working..... Like the bottom row of apps has stopped working and certain buttons on the keypad are not working at all what so ever I have taken it to the apple store once before they told me to update it I did so and it didn't get better I have also restored it multiple times still nothing I really would like a working I pod please help!!!

    If you restored to factory settings/new iPod and still have the problem that indicates a hardware problem.
    Make an appointment at the Genius Bar of an Apple store..
    Apple Retail Store - Genius Bar

  • IPhone keeps sending the same text message multiple times in a row.

    My iphone (4s) keeps sending people the same text message multiple times (2-4) a few seconds inbetween.  Sometimes it will tell me that there the message failed, but they still recieve it multiple times.  I've already tried deleting the message tread and reset network settings.  Nobody who has an iphone has said anything to me about it yet, only people with android.  

    It's a carrier issue. I have AT&T and had this issue with my friend (who had an Android) and my mother (who had a feature phone). Both of them have Verizon for service and I'm thinking the issue was on Verizon's end. They both just dealt with it as we tried all sorts of things to get this sorted out (other than contacting Verizon directly) and had no luck.
    They've both switched to iPhones so it's a moot point for us now, at least.
    ~Lyssa

  • OBIEE 11g How to Exclude/Include Multiple columns on BI Report at Run Time

    OBIEE 11g How to Exclude/Include Multiple columns on BI Report at Run Time

    Exclude:
    you Can exclude columns in either Table view or pivot table view by placing those columns in Excluded section but you will notice that it will appear in bi server parsed sql query.
    Not sure you were asking about runtime??
    would you please explain your question!!
    Thanks
    NK
    Edited by: DNK on May 8, 2013 9:48 PM

  • Same error message getting added multiple times on clicking of row.

    I have an application table where I can add an employee. At EO level, I have kept the unique key validator so that user cannot add the same employee again in the table.
    So, now if user try to add the same employee which is already added in the table, then when I click on some other row (i.e on row change), an error message comes (which we have set at the EO level).
    Now if you keep on clicking this row, the same error messages will keep on adding in the error box which is displayed. So, its like if you click the same row 5 times, the same error message will be shown 5 times in the error dialog box.
    But the moment you click on some other row, it works fine i.e it shows you the error message only once which is what I want. So, is there any way to solve this issue?

    my jdev version is 11.1.1.6.0
    And sorry but I didnt get your 2nd question regarding af:message tag! The message is coming from some bundle and we have set the message at EO level.

  • Safari keeps randomly crashing, multiple times in a row

    I'm running Safari 7.0.4 and OS X 10.9.3. I recently wiped this Mac clean and did a clean install of Mavericks. Resetted the PRAM today and still no luck. Safari seems to crash randomly and multiple times. As in it'll not load the page, then it'll open the error report" and cycle like that until it decides to load the page. Here's the most recent error report:
    Process:         com.apple.WebKit.WebContent [1378]
    Path:            /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCService s/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Identifier:      com.apple.WebKit.WebContent
    Version:         9537 (9537.76.4)
    Build Info:      WebKit2-7537076004000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    Responsible:     Safari [896]
    User ID:         503
    Date/Time:       2014-06-19 14:41:53.988 -0400
    OS Version:      Mac OS X 10.9.3 (13D65)
    Report Version:  11
    Anonymous UUID:  5B59A045-3BDA-85F7-C7F6-62A8272B95EB
    Sleep/Wake UUID: 1681113A-4B7E-44DB-B1BA-FDD64060EBFE
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000009151d27a0
    VM Regions Near 0x9151d27a0:
        CG shared images       00000001c871f000-00000001c8727000 [   32K] r--/r-- SM=SHM 
    -->
        JS JIT generated code  000055dbeda00000-000055dbeda01000 [    4K] ---/rwx SM=NUL 
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Process Model:
    Multiple Web Processes
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.JavaScriptCore       0x000000010dddafcf ***::equal(***::StringImpl const*, unsigned short const*, unsigned int) + 47
    1   com.apple.JavaScriptCore       0x000000010de5d939 ***::HashTableAddResult<***::HashTableIterator<***::StringImpl*, ***::StringImpl*, ***::IdentityExtractor, ***::StringHash, ***::HashTraits<***::StringImpl*>, ***::HashTraits<***::StringImpl*> > > ***::HashTable<***::StringImpl*, ***::StringImpl*, ***::IdentityExtractor, ***::StringHash, ***::HashTraits<***::StringImpl*>, ***::HashTraits<***::StringImpl*> >::addPassingHashCode<***::HashSetTranslatorAdapter<***::UCharBufferTranslator> , ***::HashTranslatorCharBuffer<unsigned short>, ***::HashTranslatorCharBuffer<unsigned short> >(***::HashTranslatorCharBuffer<unsigned short> const&, ***::HashTranslatorCharBuffer<unsigned short> const&) + 233
    2   com.apple.JavaScriptCore       0x000000010dddaeab ***::PassRefPtr<***::StringImpl> ***::addToStringTable<***::HashTranslatorCharBuffer<unsigned short>, ***::UCharBufferTranslator>(***::HashTranslatorCharBuffer<unsigned short> const&) + 171
    3   com.apple.JavaScriptCore       0x000000010dddadd8 ***::AtomicString::add(unsigned short const*, unsigned int) + 40
    4   com.apple.WebCore             0x000000010e2c4345 cssyyparse(WebCore::CSSParser*) + 5877
    5   com.apple.WebCore             0x000000010e5831a1 WebCore::CSSParser::parseRule(WebCore::StyleSheetContents*, ***::String const&) + 65
    6   com.apple.WebCore             0x000000010e582fc0 WebCore::CSSStyleSheet::insertRule(***::String const&, unsigned int, int&) + 128
    7   com.apple.WebCore             0x000000010e582ed6 WebCore::jsCSSStyleSheetPrototypeFunctionInsertRule(JSC::ExecState*) + 454
    8   ???                           0x000055dbeda01045 0 + 94403072888901
    9   com.apple.JavaScriptCore       0x000000010de49423 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    10  com.apple.JavaScriptCore       0x000000010de491c5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    11  com.apple.JavaScriptCore       0x000000010de490e5 JSObjectCallAsFunction + 661
    12  com.apple.Safari.framework     0x0000000113313cd3 Safari::EventTarget::handleEvent(Safari::Event*, Safari::RegisteredEventListener const&) + 119
    13  com.apple.Safari.framework     0x0000000113313bcf Safari::EventTarget::fireEventListeners(Safari::Event*, Safari::EventTargetTracker*) + 415
    14  com.apple.Safari.framework     0x00000001133137a7 Safari::EventTarget::fireEventListeners(Safari::Event*) + 183
    15  com.apple.Safari.framework     0x00000001133135fe Safari::EventTarget::dispatchEvent(Safari::Event*) + 312
    16  com.apple.Safari.framework     0x000000011311b13b Safari::ContentExtension::dispatchMessageToPage(Safari::WK::String const&, Safari::WK::SerializedScriptValue const&, Safari::WK::BundlePage const&) + 105
    17  com.apple.Safari.framework     0x000000011311f48c Safari::ContentExtension::handleMessageToPage(Safari::WK::BundlePage const&, Safari::WK::String const&, Safari::WK::Type const&) + 184
    18  com.apple.Safari.framework     0x000000011307550c Safari::BrowserBundleController::dispatchMessageToPage(Safari::WK::BundlePage const&, Safari::WK::String const&, Safari::WK::Type const&) + 46
    19  com.apple.Safari.framework     0x00000001130fc007 Safari::WK::didReceiveMessageToPage(OpaqueWKBundle const*, OpaqueWKBundlePage const*, OpaqueWKString const*, void const*, void const*) + 126
    20  com.apple.WebKit2             0x000000010da38890 WebKit::InjectedBundleClient::didReceiveMessageToPage(WebKit::InjectedBundle*, WebKit::WebPage*, ***::String const&, WebKit::APIObject*) + 124
    21  com.apple.WebKit2             0x000000010da387bf WebKit::WebPage::postInjectedBundleMessage(***::String const&, CoreIPC::MessageDecoder&) + 91
    22  com.apple.WebKit2             0x000000010da3873d void CoreIPC::handleMessageVariadic<Messages::WebPage::PostInjectedBundleMessage, WebKit::WebPage, void (WebKit::WebPage::*)(***::String const&, CoreIPC::MessageDecoder&)>(CoreIPC::MessageDecoder&, WebKit::WebPage*, void (WebKit::WebPage::*)(***::String const&, CoreIPC::MessageDecoder&)) + 78
    23  com.apple.WebKit2             0x000000010da36b4a WebKit::WebPage::didReceiveWebPageMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 5746
    24  com.apple.WebKit2             0x000000010da1f5ab CoreIPC::MessageReceiverMap::dispatchMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 125
    25  com.apple.WebKit2             0x000000010da1f490 WebKit::WebProcess::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 28
    26  com.apple.WebKit2             0x000000010da1f3f9 CoreIPC::Connection::dispatchMessage(***::PassOwnPtr<CoreIPC::MessageDecoder>) + 101
    27  com.apple.WebKit2             0x000000010da1f322 CoreIPC::Connection::dispatchOneMessage() + 106
    28  com.apple.WebCore             0x000000010e26db3d WebCore::RunLoop::performWork() + 557
    29  com.apple.WebCore             0x000000010e26d8f2 WebCore::RunLoop::performWork(void*) + 34
    30  com.apple.CoreFoundation       0x00007fff89d26661 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    31  com.apple.CoreFoundation       0x00007fff89d17d12 __CFRunLoopDoSources0 + 242
    32  com.apple.CoreFoundation       0x00007fff89d1749f __CFRunLoopRun + 831
    33  com.apple.CoreFoundation       0x00007fff89d16f25 CFRunLoopRunSpecific + 309
    34  com.apple.HIToolbox           0x00007fff93e42a0d RunCurrentEventLoopInMode + 226
    35  com.apple.HIToolbox           0x00007fff93e427b7 ReceiveNextEventCommon + 479
    36  com.apple.HIToolbox           0x00007fff93e425bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    37  com.apple.AppKit               0x00007fff8ffc926e _DPSNextEvent + 1434
    38  com.apple.AppKit               0x00007fff8ffc88bb -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    39  com.apple.AppKit               0x00007fff8ffbc9bc -[NSApplication run] + 553
    40  com.apple.AppKit               0x00007fff8ffa77a3 NSApplicationMain + 940
    41  com.apple.XPCService           0x00007fff8e772c0f _xpc_main + 385
    42  libxpc.dylib                   0x00007fff8ae3fbde xpc_main + 399
    43  com.apple.WebKit.WebContent   0x000000010d9e5ba0 0x10d9e5000 + 2976
    44  libdyld.dylib                 0x00007fff8ca625fd start + 1
    Thread 1:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib         0x00007fff8bcde64a kevent + 10
    1   libsystem_info.dylib           0x00007fff91329d3b _mdns_search + 1184
    2   libsystem_info.dylib           0x00007fff9133075c mdns_addrinfo + 513
    3   libsystem_info.dylib           0x00007fff9133052b search_addrinfo + 183
    4   libsystem_info.dylib           0x00007fff913302c0 si_addrinfo + 1468
    5   libsystem_info.dylib           0x00007fff9133f1f1 si_list_call + 257
    6   libsystem_info.dylib           0x00007fff9133f600 __si_async_call_block_invoke + 98
    7   libdispatch.dylib             0x00007fff8d7281bb _dispatch_call_block_and_release + 12
    8   libdispatch.dylib             0x00007fff8d72528d _dispatch_client_callout + 8
    9   libdispatch.dylib             0x00007fff8d727082 _dispatch_root_queue_drain + 326
    10  libdispatch.dylib             0x00007fff8d728177 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib       0x00007fff8cc83ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib       0x00007fff8cc86fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8bcde662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8d727421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff8d727136 _dispatch_mgr_thread + 52
    Thread 3:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib         0x00007fff8bcde64a kevent + 10
    1   libsystem_info.dylib           0x00007fff91329d3b _mdns_search + 1184
    2   libsystem_info.dylib           0x00007fff9133075c mdns_addrinfo + 513
    3   libsystem_info.dylib           0x00007fff9133052b search_addrinfo + 183
    4   libsystem_info.dylib           0x00007fff913302c0 si_addrinfo + 1468
    5   libsystem_info.dylib           0x00007fff9133f1f1 si_list_call + 257
    6   libsystem_info.dylib           0x00007fff9133f600 __si_async_call_block_invoke + 98
    7   libdispatch.dylib             0x00007fff8d7281bb _dispatch_call_block_and_release + 12
    8   libdispatch.dylib             0x00007fff8d72528d _dispatch_client_callout + 8
    9   libdispatch.dylib             0x00007fff8d727082 _dispatch_root_queue_drain + 326
    10  libdispatch.dylib             0x00007fff8d728177 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib       0x00007fff8cc83ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib       0x00007fff8cc86fb9 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib         0x00007fff8bcde64a kevent + 10
    1   libsystem_info.dylib           0x00007fff91329d3b _mdns_search + 1184
    2   libsystem_info.dylib           0x00007fff9133075c mdns_addrinfo + 513
    3   libsystem_info.dylib           0x00007fff9133052b search_addrinfo + 183
    4   libsystem_info.dylib           0x00007fff913302c0 si_addrinfo + 1468
    5   libsystem_info.dylib           0x00007fff9133f1f1 si_list_call + 257
    6   libsystem_info.dylib           0x00007fff9133f600 __si_async_call_block_invoke + 98
    7   libdispatch.dylib             0x00007fff8d7281bb _dispatch_call_block_and_release + 12
    8   libdispatch.dylib             0x00007fff8d72528d _dispatch_client_callout + 8
    9   libdispatch.dylib             0x00007fff8d727082 _dispatch_root_queue_drain + 326
    10  libdispatch.dylib             0x00007fff8d728177 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib       0x00007fff8cc83ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib       0x00007fff8cc86fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff8bcd9a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8bcd8d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff89d17fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff89d175e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff89d16f25 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x00007fff9016905e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff8cc82899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8cc8272a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff8cc86fc9 thread_start + 13
    Thread 6:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff8bcdd716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8cc84c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x000000010dde40f6 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore       0x000000010dde3c15 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore       0x000000010ddd8f3f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8cc82899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8cc8272a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8cc86fc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8bcdd716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8cc84c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x000000010dde4717 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x000000010dde45a8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x000000010ddd8f3f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8cc82899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8cc8272a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8cc86fc9 thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8bcdd716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8cc84c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x000000010dde4717 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x000000010dde45a8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x000000010ddd8f3f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8cc82899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8cc8272a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8cc86fc9 thread_start + 13
    Thread 9:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8bcdd716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8cc84c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x000000010dde4717 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x000000010dde45a8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x000000010ddd8f3f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8cc82899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8cc8272a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8cc86fc9 thread_start + 13
    Thread 10:: WebCore: Scrolling
    0   libsystem_kernel.dylib         0x00007fff8bcd9a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8bcd8d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff89d17fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff89d175e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff89d16f25 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff89dcc811 CFRunLoopRun + 97
    6   com.apple.WebCore             0x000000010e31a674 WebCore::ScrollingThread::initializeRunLoop() + 244
    7   com.apple.JavaScriptCore       0x000000010ddd8f3f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_pthread.dylib       0x00007fff8cc82899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8cc8272a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff8cc86fc9 thread_start + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff8bcd9a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8bcd8d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff89d17fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff89d175e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff89d16f25 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff914a8967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation           0x00007fff914a876b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff8cc82899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8cc8272a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8cc86fc9 thread_start + 13
    Thread 12:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib         0x00007fff8bcde64a kevent + 10
    1   libsystem_info.dylib           0x00007fff91329d3b _mdns_search + 1184
    2   libsystem_info.dylib           0x00007fff9133075c mdns_addrinfo + 513
    3   libsystem_info.dylib           0x00007fff9133052b search_addrinfo + 183
    4   libsystem_info.dylib           0x00007fff913302c0 si_addrinfo + 1468
    5   libsystem_info.dylib           0x00007fff9133f1f1 si_list_call + 257
    6   libsystem_info.dylib           0x00007fff9133f600 __si_async_call_block_invoke + 98
    7   libdispatch.dylib             0x00007fff8d7281bb _dispatch_call_block_and_release + 12
    8   libdispatch.dylib             0x00007fff8d72528d _dispatch_client_callout + 8
    9   libdispatch.dylib             0x00007fff8d727082 _dispatch_root_queue_drain + 326
    10  libdispatch.dylib             0x00007fff8d728177 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib       0x00007fff8cc83ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib       0x00007fff8cc86fb9 start_wqthread + 13
    Thread 13:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib         0x00007fff8bcde64a kevent + 10
    1   libsystem_info.dylib           0x00007fff91329d3b _mdns_search + 1184
    2   libsystem_info.dylib           0x00007fff9133075c mdns_addrinfo + 513
    3   libsystem_info.dylib           0x00007fff9133052b search_addrinfo + 183
    4   libsystem_info.dylib           0x00007fff913302c0 si_addrinfo + 1468
    5   libsystem_info.dylib           0x00007fff9133f1f1 si_list_call + 257
    6   libsystem_info.dylib           0x00007fff9133f600 __si_async_call_block_invoke + 98
    7   libdispatch.dylib             0x00007fff8d7281bb _dispatch_call_block_and_release + 12
    8   libdispatch.dylib             0x00007fff8d72528d _dispatch_client_callout + 8
    9   libdispatch.dylib             0x00007fff8d727082 _dispatch_root_queue_drain + 326
    10  libdispatch.dylib             0x00007fff8d728177 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib       0x00007fff8cc83ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib       0x00007fff8cc86fb9 start_wqthread + 13
    Thread 14:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib         0x00007fff8bcde64a kevent + 10
    1   libsystem_info.dylib           0x00007fff91329d3b _mdns_search + 1184
    2   libsystem_info.dylib           0x00007fff9133075c mdns_addrinfo + 513
    3   libsystem_info.dylib           0x00007fff9133052b search_addrinfo + 183
    4   libsystem_info.dylib           0x00007fff913302c0 si_addrinfo + 1468
    5   libsystem_info.dylib           0x00007fff9133f1f1 si_list_call + 257
    6   libsystem_info.dylib           0x00007fff9133f600 __si_async_call_block_invoke + 98
    7   libdispatch.dylib             0x00007fff8d7281bb _dispatch_call_block_and_release + 12
    8   libdispatch.dylib             0x00007fff8d72528d _dispatch_client_callout + 8
    9   libdispatch.dylib             0x00007fff8d727082 _dispatch_root_queue_drain + 326
    10  libdispatch.dylib             0x00007fff8d728177 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib       0x00007fff8cc83ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib       0x00007fff8cc86fb9 start_wqthread + 13
    Thread 15:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib         0x00007fff8bcde64a kevent + 10
    1   libsystem_info.dylib           0x00007fff91329d3b _mdns_search + 1184
    2   libsystem_info.dylib           0x00007fff9133075c mdns_addrinfo + 513
    3   libsystem_info.dylib           0x00007fff9133052b search_addrinfo + 183
    4   libsystem_info.dylib           0x00007fff913302c0 si_addrinfo + 1468
    5   libsystem_info.dylib           0x00007fff9133f1f1 si_list_call + 257
    6   libsystem_info.dylib           0x00007fff9133f600 __si_async_call_block_invoke + 98
    7   libdispatch.dylib             0x00007fff8d7281bb _dispatch_call_block_and_release + 12
    8   libdispatch.dylib             0x00007fff8d72528d _dispatch_client_callout + 8
    9   libdispatch.dylib             0x00007fff8d727082 _dispatch_root_queue_drain + 326
    10  libdispatch.dylib             0x00007fff8d728177 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib       0x00007fff8cc83ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib       0x00007fff8cc86fb9 start_wqthread + 13
    Thread 16:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib         0x00007fff8bcde64a kevent + 10
    1   libsystem_info.dylib           0x00007fff91329d3b _mdns_search + 1184
    2   libsystem_info.dylib           0x00007fff9133075c mdns_addrinfo + 513
    3   libsystem_info.dylib           0x00007fff9133052b search_addrinfo + 183
    4   libsystem_info.dylib           0x00007fff913302c0 si_addrinfo + 1468
    5   libsystem_info.dylib           0x00007fff9133f1f1 si_list_call + 257
    6   libsystem_info.dylib           0x00007fff9133f600 __si_async_call_block_invoke + 98
    7   libdispatch.dylib             0x00007fff8d7281bb _dispatch_call_block_and_release + 12
    8   libdispatch.dylib             0x00007fff8d72528d _dispatch_client_callout + 8
    9   libdispatch.dylib             0x00007fff8d727082 _dispatch_root_queue_drain + 326
    10  libdispatch.dylib             0x00007fff8d728177 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib       0x00007fff8cc83ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib       0x00007fff8cc86fb9 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff8bcdde6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8cc83f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8cc86fb9 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff8bcdde6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8cc83f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8cc86fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000077  rbx: 0x00007fff52215798  rcx: 0x00000009151d27a0  rdx: 0x000000000000001a
      rdi: 0x00000001151d2780  rsi: 0x0000000117bce7fc  rbp: 0x00007fff522156b0  rsp: 0x00007fff522156b0
       r8: 0x0000000000000001   r9: 0x0000000117bce82e  r10: 0x0000000116a26480  r11: 0x00007fff522174d4
      r12: 0x00000000febe1dcd  r13: 0x0000000000005da6  r14: 0x0000000000000000  r15: 0x0000000115218d30
      rip: 0x000000010dddafcf  rfl: 0x0000000000010206  cr2: 0x00000009151d27a0
    Logical CPU:     2
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10d9e5000 -        0x10d9e5ff4  com.apple.WebKit.WebContent (9537 - 9537.76.4) <7775C40B-52F2-3370-A8D8-F73842997CF5> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCService s/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
           0x10d9ea000 -        0x10d9eafff  WebProcessShim.dylib (7537.76.4) <6C09F35D-1142-3EE9-BB9D-6F0CADB6CD3E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebProcess.app/Conten ts/MacOS/WebProcessShim.dylib
           0x10d9f3000 -        0x10dbe4ff3  com.apple.WebKit2 (9537 - 9537.76.4) <7753BA2C-1279-396D-8044-AE1D001A5A57> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
           0x10ddd0000 -        0x10e147ff6  com.apple.JavaScriptCore (9537 - 9537.76.1) <EB1F11D7-80BA-366C-8807-159575F41CE7> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
           0x10e242000 -        0x10f096ff3  com.apple.WebCore (9537 - 9537.76.4) <4DC363A5-28FB-343B-9E56-D261D321D97B> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
           0x113016000 -        0x11351cffb  com.apple.Safari.framework (9537 - 9537.76.4) <28E2BB7D-87E5-357C-B22E-D4091B5AF7EE> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
           0x113906000 -        0x113a3cffc  com.apple.WebKit (9537 - 9537.76.4) <D3F786EA-9E87-3BFA-9B39-C938C0EC1F5A> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
           0x1179d3000 -        0x1179e5ff7  com.apple.webcontentfilter.framework (5.1 - 5.1) <D5F0EA10-02A1-39DC-AD3D-E4B4E9C550AC> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
        0x7fff6a62c000 -     0x7fff6a65f817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
        0x7fff86658000 -     0x7fff86660ff3  libCGCMS.A.dylib (599.23.13) <59F7AEED-90EB-35C2-85A6-5BC44CC9B3FA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff86661000 -     0x7fff867b5ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff867b6000 -     0x7fff86815fff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <7F86A7C3-7B7D-3CD7-9758-CA74FB4DE2CC> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff86816000 -     0x7fff86862ffe  com.apple.CoreMediaIO (407.0 - 4561) <040A98E4-F480-315B-BCEE-C18AF686492C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff86880000 -     0x7fff86882fff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff86912000 -     0x7fff86922ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff86951000 -     0x7fff86980fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff86a96000 -     0x7fff86a97fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff86a98000 -     0x7fff86aa7ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff86af7000 -     0x7fff86afffff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff86b06000 -     0x7fff86b07fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff86c6f000 -     0x7fff86c99ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff86c9a000 -     0x7fff86ca5ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <B62B1994-1874-3F8D-B62E-589E6F6534C9> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff86ca6000 -     0x7fff86ccbff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff86cd3000 -     0x7fff86cd5fff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff86cf5000 -     0x7fff86d68fff  com.apple.securityfoundation (6.0 - 55122.1) <D5AA4461-7406-3054-875D-0EDA3A6030EA> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff86d69000 -     0x7fff86d72ffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff86d73000 -     0x7fff86d77fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff86fb6000 -     0x7fff86fbdfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff86fbe000 -     0x7fff86fbfff7  libSystem.B.dylib (1197.1.1) <E303F2F8-A8CF-3DF3-84B3-F2D0EE41CCF6> /usr/lib/libSystem.B.dylib
        0x7fff87014000 -     0x7fff87136fff  com.apple.avfoundation (2.0 - 651.12.1) <FF001F98-E198-3B1D-A7EB-A8C48E6E34A3> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff87137000 -     0x7fff87154ff7  com.apple.framework.Apple80211 (9.3.2 - 932.59) <DA61BF63-978E-342D-8F7F-83D0169A7F48> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff87158000 -     0x7fff87223fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff87224000 -     0x7fff87246fff  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <C2687C2C-239A-3EB4-857C-BA107F34A5E8> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff8725b000 -     0x7fff8725fff7  libGIF.dylib (1043) <AF0FE71A-27AB-31E0-8CEA-BC0BF2091FA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff875c1000 -     0x7fff875c4fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff875c5000 -     0x7fff875ceff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8761e000 -     0x7fff876a9fff  libCoreStorage.dylib (380) <DE9B3F8C-045C-3010-9A25-C8CD72F1066B> /usr/lib/libCoreStorage.dylib
        0x7fff876aa000 -     0x7fff876b1ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff876b2000 -     0x7fff876cbff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff876cc000 -     0x7fff8771dff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8773f000 -     0x7fff8774cfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8774d000 -     0x7fff8775dfff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff8775e000 -     0x7fff87760fff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff87761000 -     0x7fff8778bff7  libsandbox.1.dylib (278.11) <BD3D8652-8871-36DB-A27D-3BE4F18428B4> /usr/lib/libsandbox.1.dylib
        0x7fff877ae000 -     0x7fff878ddfef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff878de000 -     0x7fff87bb2fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff87c0b000 -     0x7fff87c0cfff  libquit.dylib (161.2) <7B9C07B6-8993-32C8-89C2-23D2E7FA85BA> /usr/lib/libquit.dylib
        0x7fff87c0d000 -     0x7fff87c14fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff87c80000 -     0x7fff87cafff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff87cb0000 -     0x7fff87cf2ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff87cf3000 -     0x7fff87d0ffff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff87d10000 -     0x7fff87d41ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff87d5c000 -     0x7fff87d8dfff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff88590000 -     0x7fff885ddff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff885e8000 -     0x7fff88614fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff88b53000 -     0x7fff88ba6fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff88ba7000 -     0x7fff88c28fff  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <20E484C4-9F0E-3DF6-BB27-D509859FF57A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff88c7b000 -     0x7fff890c9fef  com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff890ca000 -     0x7fff890d4ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff890d5000 -     0x7fff890defff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff890ec000 -     0x7fff89287ff8  com.apple.CFNetwork (673.3 - 673.3) <4375B7CB-34B6-3A26-99AC-2D2404AD9C9B> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff89288000 -     0x7fff892a0ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff898a2000 -     0x7fff89907ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8992b000 -     0x7fff8992bffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8992c000 -     0x7fff89a1bfff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff89c9c000 -     0x7fff89ca6ff7  libcsfde.dylib (380) <A5CF6F85-0537-399F-968B-1536B1235E65> /usr/lib/libcsfde.dylib
        0x7fff89ca7000 -     0x7fff89e8cfff  com.apple.CoreFoundation (6.9 - 855.16) <A63E680E-E4B2-368B-8564-9DBE0D8DDB91> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff89e8d000 -     0x7fff89f28ff7  com.apple.PDFKit (2.9.2 - 2.9.2) <0CDC6467-9227-3D98-B4D4-660796AE9F6B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff89f8d000 -     0x7fff89f9fff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <E51DE5CA-9859-3C13-A24F-37EF4385C1D6> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff89fa0000 -     0x7fff89fe5fff  libcurl.4.dylib (78.92.2) <FE790105-B56B-3972-96F4-E133764FF735> /usr/lib/libcurl.4.dylib
        0x7fff89ff3000 -     0x7fff8a032fff  libGLU.dylib (9.6.1) <AE032555-3E2F-3DBF-A26D-EA4576061605> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8a194000 -     0x7fff8a1a1ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8a1a2000 -     0x7fff8a1ceff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8a1cf000 -     0x7fff8a1e6ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <EBC0A1F2-9054-3D39-99AE-A3F655E55D6A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8a1e7000 -     0x7fff8a1f5fff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8a263000 -     0x7fff8a31bff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8a31c000 -     0x7fff8a377ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8a378000 -     0x7fff8a3b9fff  com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8a4bd000 -     0x7fff8a4bfff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8a4c2000 -     0x7fff8a4fdfff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8a501000 -     0x7fff8a505ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8a58c000 -     0x7fff8a614ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8a915000 -     0x7fff8a915fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8a916000 -     0x7fff8a94fff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8a950000 -     0x7fff8a955fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8aaf7000 -     0x7fff8ab5affb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8ab5b000 -     0x7fff8ae2bffc  com.apple.CoreImage (9.2.8) <1509987F-5671-3AE3-91C7-18E952ED90C7> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8ae2c000 -     0x7fff8ae50fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff8ae51000 -     0x7fff8ae5bfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8ae5c000 -     0x7fff8ae5cfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8ae79000 -     0x7fff8af05ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8af06000 -     0x7fff8b14eff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8b14f000 -     0x7fff8b14ffff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8b150000 -     0x7fff8b214ff7  com.apple.backup.framework (1.5.3 - 1.5.3) <088FEDED-BF5C-33F4-A51A-646C8149BDAA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8b2d3000 -     0x7fff8b3b7fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8b3b8000 -     0x7fff8b3edffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8b3ee000 -     0x7fff8b6d8fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8b6d9000 -     0x7fff8b6dcfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8b6dd000 -     0x7fff8b6f8ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8b6f9000 -     0x7fff8b703ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8b704000 -     0x7fff8b77bfff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8b793000 -     0x7fff8b797ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
        0x7fff8b798000 -     0x7fff8b7a5ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8b826000 -     0x7fff8b994ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8ba48000 -     0x7fff8ba5afff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8bb92000 -     0x7fff8bb93ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8bb94000 -     0x7fff8bb98ff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
        0x7fff8bb99000 -     0x7fff8bb9affb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8bbc1000 -     0x7fff8bc0fff7  com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8bc32000 -     0x7fff8bc57ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8bc58000 -     0x7fff8bcc7ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8bcc8000 -     0x7fff8bce4ff7  libsystem_kernel.dylib (2422.100.13) <498AEBD7-4194-3CF2-AA16-D5D03FFBD8C0> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8bce5000 -     0x7fff8bce6ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8bd39000 -     0x7fff8bde9ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8bdea000 -     0x7fff8bdeafff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8bdeb000 -     0x7fff8bfa9fff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8bfaa000 -     0x7fff8bfacff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8bfad000 -     0x7fff8bfc8ff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8bfc9000 -     0x7fff8bfccfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8bfcd000 -     0x7fff8bff6ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff8bff7000 -     0x7fff8c045fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff8c046000 -     0x7fff8c07afff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff8c07b000 -     0x7fff8c093ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8c094000 -     0x7fff8c0f2ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8c0f3000 -     0x7fff8c0f4ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff8c0f5000 -     0x7fff8c10cffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8c10d000 -     0x7fff8c123fff  com.apple.CoreMediaAuthoring (2.2 - 947) <F1886A05-1C29-3F88-88C0-4A1013530AD1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8c124000 -     0x7fff8c126fff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8c127000 -     0x7fff8ca46f43  com.apple.CoreGraphics (1.600.0 - 599.23.13) <3A1952C7-1D67-3DEC-A5AB-5399FF4F2A92> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8ca5f000 -     0x7fff8ca62ff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
        0x7fff8ca63000 -     0x7fff8cb4aff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff8cbeb000 -     0x7fff8cc51fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8cc52000 -     0x7fff8cc79ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff8cc7a000 -     0x7fff8cc80fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8cc81000 -     0x7fff8cc88ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8cc8b000 -     0x7fff8cc8dff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8ccb2000 -     0x7fff8ccb6fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff8cdd9000 -     0x7fff8cf09ff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8cf16000 -     0x7fff8cf6ffff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8cf70000 -     0x7fff8cfb7fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8cfb8000 -     0x7fff8cfd3ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8cfd4000 -     0x7fff8d019ff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8d065000 -     0x7fff8d066fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8d335000 -     0x7fff8d363ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8d42f000 -     0x7fff8d45efff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8d45f000 -     0x7fff8d462ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8d463000 -     0x7fff8d46bff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8d479000 -     0x7fff8d4cbfff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff8d4cc000 -     0x7fff8d679f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8d724000 -     0x7fff8d73efff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
        0x7fff8d73f000 -     0x7fff8d73ffff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8d740000 -     0x7fff8d768ffb  libRIP.A.dylib (599.23.13) <FFE421E6-CB15-3F9D-ADF4-679E26B09892> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff8d769000 -     0x7fff8d773ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8da16000 -     0x7fff8da27ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff8e6ca000 -     0x7fff8e6cffff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8e6d0000 -     0x7fff8e708ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8e709000 -     0x7fff8e770ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8e771000 -     0x7fff8e777ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8e778000 -     0x7fff8e77fff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff8e780000 -     0x7fff8ea13fff  com.apple.RawCamera.bundle (5.05 - 743) <ACFD986B-59D0-313C-941A-5F239CDF9AA7> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8ea62000 -     0x7fff8ea63ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8ea66000 -     0x7fff8ea6bff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8ea6c000 -     0x7fff8ea6efff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8ea6f000 -     0x7fff8eaffff7  com.apple.Metadata (10.7.0 - 800.28) <E85AEB1B-CB17-38BC-B5C6-AAB50B47AF05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8eb00000 -     0x7fff8eb03ffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1

    Hi ..
    The AdBlock  extension has been causing Safari to crash for many Safari users.
    If Safari crashes before you uninstall that extension in Safari > Preferences > Extensions.
    You can uninstall that extension in Safe Mode.
    Startup your Mac in Safe Mode
    A Safe Mode boot takes longer than a normal boot so be patient.
    Once you're in Safe Mode launch Safari then go to Safari > Preferences > Extensions
    Uninstall the Adblock extension then click Restart from the Apple () menu.

  • Repeating the same region multiple times

    Hi,
    We have requirement where the same region gets repeated multiple times depending on the data.
    Functionally: QA -- Question Area , it has couple of questions
    Supplier1 has 1 QA assigned . Then in the page it gets displayed as
    - QA { ShowdetailHeader }
    -- Questions { tree table}
    Now that if Supplier1 is assigned with 3 QA's then
    - QA1
    -- Questions of QA1
    - QA2
    -- Questions of QA2
    - QA3
    -- Questions of QA3
    i.e the regions to be displayed will depend on the data.
    ================================
    To explain the same tech...
    We have the following requirement { Consider 2 VO's and a VL between them }. In the page we display it in this manner
    <showdetialHeader VO1>
    < Tree table VO2 >
    This region will be repeated depending on the result of VO1. That is say VO1 returns 3 rows then it should be displayed as
    <showdetialHeader VO1.row1>
    < Tree table VO2 [VO1.row1] >
    <showdetialHeader VO1.row2>
    < Tree table VO2 [VO1.row2]>
    <showdetialHeader VO1.row3>
    < Tree table VO2 [VO1.row3]>
    =========================================================
    Please guide me in I building this page.
    Thanks,
    Suresh.
    Edited by: user758041 on Dec 27, 2010 3:11 AM

    Hi,
    JDeveloper 11g does not yet support dynamical creation of ADF Region instances. So any attempt to create a region in an af:forEach or af:iterator loop wont work.
    Frank

Maybe you are looking for

  • Opening an idml file in indesign cs5

    I'm trying to open an idml file in cs5 on a mac.  I can't upgrade to cs5.5 without upgrading everything else. When I open the file, I'm not able to see the "high res display" images or the preview images.  Am I missing plugins? or what? Can anyone te

  • Subcontracting Error at GRN

    Dear Expert, I am doing a Subcontracting scenario. At the time of GRN an error throws " Account xxxxxxx requires an assignment to a CO object" The GL is subcontracting expense GL. I have searched every where all are saying to maintain the GL in OKB9

  • Urgent Assistance needed on this

    Hi, I am fairly new to Java and this assignment is way over my knowledge, if anyone able to assist me on the whole coding, that would be great. Thanks all. I am thinking on using array and the file heading on hardware.dat can be omitted. Task- Imagin

  • Stalonetray no longer stays behind maximized windows after update

    I only use a systray app like stalonetray to use the Network Manager applet and it stayed behind maximized windows until I updated my Arch and stalonetray to 0.8.2.1 and now stalonetray occupies window space even when applications are maximized. I ha

  • Freezes as I type

    I Too have issues with this update.  I have to type very carefully, as it freezes if I mis-type and it tries to correct me.  This is the second attempt at this message, as I had to reboot, and then I had to login again, with what I had typed gone!  T