UI5 Deep Insert is triggering the Create_Deep_Entity

Dear All,
Here is my following code to post records to two tables.
var testObject = [ ];
  testObject.push(
         Mandt: "100",
         SignReqNo: "00100003",
         ServCode:"00100001",
         ImoNumber:"00900001",
         SignInDate:new Date("2014-10-01T00:00:00"),
         SignInRemarks:"Testin from UI5_2",
         SignStatus:"01"
  var child = [];
  child.push(
      Mandt:"100",
      SignReqINo:"00000001",
      SignReqNo:"00100003",
      CrewID:"00100002",
      ExpSignOut:new Date("2014-10-01T00:00:00")
  child.push(
      Mandt:"100",
      SignReqINo:"00000002",
      SignReqNo:"00100003",
      CrewID:"00100003",
      ExpSignOut:new Date("2014-10-01T00:00:00")
testObject[0].ZmaCrewSignItSet = child;
And attached is my data model.
Parent Entity Type -> ZmaCrewSign
Parent Entity Set -> ZmaCrewSignSet
Child Entity Type ->ZmaCrewSignIt
Child Entity Set -> ZmaCrewSignItSet
Parent Navigation Property -> ZmaCrewSignItSet
With this setup i am able to read the records in above mentioned structure.
But when i try to post records from UI5 using the above JS code, the method CREATE_DEEP_ENTITY is not getting triggered, instead the parent create_entity method its getting triggered while debugging.
PLEASE HELP ME TO RESOLVE THIS ISSUE.
Regards,
Rumeshbabu S

Many Thanks Saurabh.
It was working after when i changed the type declaration in the create deep entity set method to get child values.
Incorrect:
  types:begin of ty_sign_set.
      include type ZMA_CREW_SIGN.
      types: ZmaSignReqIt TYPE ty_sign_req_it,
  end of ty_sign_set.
Correct One.
  types:begin of ty_sign_set.
      include type ZMA_CREW_SIGN.
      types: ZmaSignReqItSet TYPE ty_sign_req_it,
  end of ty_sign_set.

Similar Messages

  • Making an exception abort the insert it triggered

    I have a trigger that runs off of an insert statement. The trigger checks the fields inserted and, if necessary, throw a user-defined exception.
    The exception is thrown correctly, but the insert statement is still added to the database. How can I prevent this particular statement from being inserted?

    Here's an example of raising a user-defined exception in the trigger and then handling that exception in the calling program and continuing:
    sql>create table t (c integer);
    Table created.
    sql>create or replace trigger t_trg
      2    before insert on t
      3    for each row
      4  declare
      5    e_myexception  exception;
      6    pragma exception_init(e_myexception, -20000);
      7  begin
      8    if :new.c = 2 then
      9      raise e_myexception;
    10    end if;
    11  end;
    12  /
    Trigger created.
    sql>declare
      2    e_trigger_not_happy  exception;
      3    pragma exception_init(e_trigger_not_happy, -20000);
      4  begin
      5    for i in 1..3 loop
      6      begin
      7        insert into t values (i);
      8      exception
      9        when e_trigger_not_happy then
    10          null;  -- continue with the loop
    11      end; 
    12    end loop;
    13  end;
    14  /
    PL/SQL procedure successfully completed.
    sql>select * from t;
            C
            1
            3

  • JSON deep insert returns atom/xml

    Dear,
    When I test a json deep insert (For eaxmple:a POST on /sap/opu/odata/sap/<Gateway_service>/<GW_Data>Set in the GW Client then it returns the result in atom/xml....
    If i add ?$format=json to the call i receive following error:
    The Data Services Request contains SystemQueryOptions that are not allowed for this Request Type
    Is there a way to get the response in json for a POST deep insert/create?
    Thanks in advance!
    Kind Regards,
    Robin

    Hi Robin,
    This error is coming from method PROCESS_ENTITY_SET (/IWCOR/CL_DS_PROC_DISPATCHER)
    Below system query options are not allowed for POST.
    " system query option are not allowed
             IF io_uri->expand IS NOT INITIAL OR
                io_uri->select IS NOT INITIAL OR
                io_uri->filter IS BOUND OR
                io_uri->orderby IS BOUND OR
                io_uri->skip IS NOT INITIAL OR
                io_uri->top IS NOT INITIAL OR
                io_uri->skiptoken IS NOT INITIAL OR
                io_uri->inlinecount IS NOT INITIAL OR
                io_uri->format IS NOT INITIAL.
               RAISE EXCEPTION TYPE /IWCOR/cx_DS_proc_error
                 EXPORTING
                   textid = /IWCOR/cx_DS_proc_error=>invalid_system_query_option.
    ENDIF.
    May be using batch call you can get response in JSON format. I mean using batch method, 1st give call to POST and then to GET which allows $format.
    again on client side (may be ui5), you can easily convert response in json format with available APIs.
    Regards,
    Chandra

  • Deep Insert in Json Format

    Hi Team,
    I am facing  issue in JSON format which i can achieve using XML format for Create Deep Insert.Can you please have a look and provide your inputs.
    SP is 740 SP4
    Here for below, Navigation name is Nav2ReqProducts.
    I am getting error while passing XML stream, I already referred below link, not able to trace out, and also please give sample JSON data which has multiple inputs as deep insert
    http://scn.sap.com/message/14659195#14659195
    "d":{
    "__metadata":{
    "uri" : "http://XXXXXXX.XXXX.com:8000/sap/opu/odata/sap/ZGW_TIRES_CASE_DETAIL_SRV/CaseHeaderSet('')",
      "type" : "ZGW_TIRES_CASE_DETAIL_SRV.CaseHeader"},
    "PhoneNumber":"405-595-9130",
    "DeviceId":"TEST",
    "IvCaseNumber":"8000000519",
    "CallDate":"/Date(1407110400000)/",
    "CallTime":"PT11H55M00S",
    "ServiceNeeded":"Tire Replacement",
    "Location":"N bound on i-235 East of ball park",
    "Latitude":"0.000000000000",
    "Longitude":"0.000000000000",
    "VehType":"01",
    "VehYear":"2010",
    "VehMake":"MACK",
    "VehColor":"GREEN",
    "VehLicplate":"KJI900",
    "VehUnitnum":"54",
    "TrailerNumber":"35",
    "MaddencoInvoice":"",
    "PaymentMethod":"01",
    "AccountNo":"23234",
    "ReferenceNo":"",
    "Technician":"FRED SMITH",
    "LoyaltyCard":"",
    "StoreDate":"/Date(1407110400000)/",
    "StoreTime":"PT12H00M00S",
    "ArrivDate":"/Date(1407110400000)/",
    "ArrivTime":"PT14H02M15S",
    "RollDate":null,
    "RollTime":"PT00H00M00S",
    "DepDate":null,
    "DepTime":"PT00H00M00S",
    "EtaDate":"/Date(1407110400000)/",
    "EtaTime":"PT13H30M00S",
    "ReturnDate":null,
    "ReturnTime":"PT00H00M00S",
    "AuthPhone":"",
    "MobileSentDate":"/Date(1407283200000)/",
    "MobileSentTime":"PT14H21M51S",
    "Nav2ReqProducts":
    "__metadata":{
    "uri":"http://tcmod.XX.com/sap/opu/odata/sap/ZGW_TIRES_CASE_DETAIL_SRV/CaseReqProductsSet('0000000010')",
    "type":"ZGW_TIRES_CASE_DETAIL_SRV.CaseReqProducts"},
    "ItemNo":"0000000010",
    "ProductId":"G27373",
    "Description":"275/80R24.5 TR144 LRG TL",
    "WheelPos":"02",
    "TirePos":"02"}]}}
    Thanks,
    Vijay V

    Hello Vijay,
    I think error is because of date field.
    Please do the following with some changes to payload and check :
    1. Change ABAP type to DATE in ABAP Type Editor in service builder.
    2. Regenerate objects.
    3. Clear /n/iwfnd/cache_cleanup, /n/iwbep/cache_cleanup & smicm cache to be on safer side.
    4. In a new session fire the service with the below payload.
             "PhoneNumber" : "405-595-9130",
             "DeviceId" : "TEST",
             "IvCaseNumber" : "8000000519",
             "CallDate" : "\/Date(1405382400000)\/",    
             "CallTime" : "PT08H00M00S",
             "ServiceNeeded" : "",
             "Location" : "loc1",
             "Latitude" : "293.320000000000",
             "Longitude" : "923.420000000000",
             "VehType" : "01",
             "VehYear" : "2004",
             "VehMake" : "TOYOTA",
             "VehColor" : "PINK",
             "VehLicplate" : "9B2127",
             "VehUnitnum" : "10923823",
             "TrailerNumber" : "",
             "MaddencoInvoice" : "AB1829APD",
             "PaymentMethod" : "04",
             "AccountNo" : "192AB39E23",
             "ReferenceNo" : "",
             "Technician" : "JEFF",
             "LoyaltyCard" : "",
             "StoreDate" : "\/Date(1405382400000)\/",
             "StoreTime" : "PT08H10M00S",
             "ArrivDate" : "\/Date(1405382400000)\/",
             "ArrivTime" : "PT08H28M00S",
             "RollDate" : "\/Date(1405382400000)\/",
             "RollTime" : "PT08H44M00S",
             "DepDate" : "\/Date(1405382400000)\/",
             "DepTime" : "PT08H17M00S",
             "EtaDate" : "\/Date(1405382400000)\/",
             "EtaTime" : "PT08H35M00S",
             "ReturnDate" : "\/Date(1405382400000)\/",
             "ReturnTime" : "PT08H59M00S",
             "AuthPhone" : "",
             "MobileSentDate" : "null",
             "MobileSentTime" : "PT00H00M00S",
             "Nav2ReqProducts":
                   "ItemNo" : "0000000010",
                   "ProductId" : "M00692",
                   "Description" : "225/70R19.5 G XST4",
                   "WheelPos" : "01",
                   "TirePos" : "06"
             "Nav2RemProducts":
                   "SvcItem" : "00",
                   "FailureCause" : "",
                   "RemovalTread" : "",
                   "DeleteInd" : ""
    Or
    "PhoneNumber":"405-595-9130",
    "DeviceId":"TEST",
    "IvCaseNumber":"8000000519",
    "CallDate":"2013-10-23T10:10:10",
    "CallTime":"PT11H55M00S",
    "ServiceNeeded":"Tire Replacement",
    "Location":"N bound on i-235 East of ball park",
    "Latitude":"0.000000000000",
    "Longitude":"0.000000000000",
    "VehType":"01",
    "VehYear":"2010",
    "VehMake":"MACK",
    "VehColor":"GREEN",
    "VehLicplate":"KJI900",
    "VehUnitnum":"54",
    "TrailerNumber":"35",
    "MaddencoInvoice":"",
    "PaymentMethod":"01",
    "AccountNo":"23234",
    "ReferenceNo":"",
    "Technician":"FRED SMITH",
    "LoyaltyCard":"",
    "StoreDate":"2013-10-23T10:10:10",
    "StoreTime":"PT12H00M00S",
    "ArrivDate":"2013-10-23T10:10:10",
    "ArrivTime":"PT14H02M15S",
    "RollDate":"null",
    "RollTime":"PT00H00M00S",
    "DepDate":"null",
    "DepTime":"PT00H00M00S",
    "EtaDate":"2013-10-23T10:10:10",
    "EtaTime":"PT13H30M00S",
    "ReturnDate":"null",
    "ReturnTime":"PT00H00M00S",
    "AuthPhone":"",
    "MobileSentDate":"2013-10-23T10:10:10",
    "MobileSentTime":"PT14H21M51S",
    "Nav2ReqProducts":
    "ItemNo":"0000000010",
    "ProductId":"G27373",
    "Description":"275/80R24.5 TR144 LRG TL",
    "WheelPos":"02",
    "TirePos":"02"
    both should work.
    revert if any issues. we can check.
    Regards,
    Ashwin

  • I am making a calendar in iPhoto, picking photos from a folder, let's call it "2011 Pics," in iPhoto. After arranging all the photos and captions I decided I wanted to insert a new photo -- one that was not in "2011 Pics." So I inserted it into the folder

    Add new photo to existing calendar folder in iPhoto
    I am making a calendar in iPhoto, picking photos from a folder, let's call it "2011 Pics," in iPhoto. After arranging all the photos and captions I decided I wanted to insert a new photo -- one that was not in "2011 Pics." So I inserted it into the folder, but the picture does not show up on the scrolling menu of pictures at the left of the calendar-making page. This happened last year and in frustration I started all over again. But surely there is a way to add a new picture to a calendar that is already laid out.

    Yes, the Old Master file has a folder for each year where I find all photos from that specific year. I am attaching a screen shot of the file.
    In the meantime i have managed to download all photos (it did not download any video files though in mpg, avi, 3gp, m4v,mp4 and mov format) to a new iphoto library. Unfortunately the photos are quite mixed and often doubled up. I ma considering to purchase iphoto library which checks all duplicates in iphoto. this will save me a lot of time. What do you think?

  • I am unable to insert frames in the Director timeline via the menu pulldown.

    I have been using Director in my career since 1990 and have taught it at the college level. But in my newly purchased version 12, I am unable to insert frames in the Director timeline via the menu pulldown. Unfortunately this was after I couldn't get it to open up in the first place, giving me the error message Ive pasted in below. Creating a new user login on the same Mac Pro (10.8.2), it will now open - but I can't insert frames in the timeline. Everything else works great though!
    Not to bore you, but this is the long-time interactive project I began decades ago that I work on daily now that I am retired as a 100% disabled veteran:
    http://www.madblood.net/tbi/
    Having used the greatest multimedia application on earth for so many years, I want to thank Adobe for so kindly keeping Director alive after too many years of not knowing if 11.5 was going to be the last version. Thank you, thank you, thank you
    Error message in my original user login:
    Process:         Director [43376]
    Path:            /Applications/Adobe Director 12/Director.app/Contents/MacOS/Director
    Identifier:      com.adobe.director_12_0.application
    Version:         12.0.0r111 (12.0.0r111)
    Code Type:       X86 (Native)
    Parent Process:  launchd [15590]
    User ID:         501
    Date/Time:       2013-03-27 10:32:32.984 -0400
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          1853328 sec
    Crashes Since Last Report:           1558
    Per-App Interval Since Last Report:  3658 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      C1706384-C52D-D59B-9B70-7023EE048A23
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000060000020
    VM Regions Near 0x60000020:
        CoreServices           000000001ba6a000-000000001be92000 [ 4256K] rw-/rwx SM=COW 
    -->
        __TEXT                 000000008fe64000-000000008fe97000 [  204K] r-x/rwx SM=COW  /usr/lib/dyld
    Application Specific Information:
    objc_msgSend() selector name: _getCString:maxLength:encoding:
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x919a6a87 objc_msgSend + 23
    1   com.apple.CoreFoundation                0x97877513 CFStringGetCString + 115
    2   com.adobe.director_12_0.textxtra          0x10f4ae55 0x10f00000 + 306773
    3   com.adobe.director_12_0.textxtra          0x10f48b1c 0x10f00000 + 297756
    4   com.adobe.director_12_0.textxtra          0x10f47928 0x10f00000 + 293160
    5   com.adobe.director_12_0.textxtra          0x10f0da48 0x10f00000 + 55880
    6   com.adobe.director_12_0.IMLLib.framework          0x008209de 0x798000 + 559582
    7   com.adobe.director_12_0.IMLLib.framework          0x0081ef65 0x798000 + 552805
    8   com.adobe.director_12_0.IMLLib.framework          0x0081f03a MoaCreateInstance + 107
    9   com.adobe.director_12_0.DPLib.framework          0x0063502a 0x5a4000 + 593962
    10  com.adobe.director_12_0.DPLib.framework          0x0060a5b1 MoaSrv_GetIMoaTextManager + 104
    11  com.adobe.director_12_0.application          0x0017922d 0x1000 + 1540653
    12  com.adobe.director_12_0.application          0x00176409 0x1000 + 1528841
    13  com.adobe.director_12_0.application          0x001792d1 0x1000 + 1540817
    14  com.adobe.director_12_0.application          0x001df0bd 0x1000 + 1958077
    15  com.adobe.director_12_0.application          0x0031c518 0x1000 + 3257624
    16  com.adobe.director_12_0.application          0x0031c722 0x1000 + 3258146
    17  com.adobe.director_12_0.application          0x0031ad61 0x1000 + 3251553
    18  com.adobe.director_12_0.application          0x00101312 0x1000 + 1049362
    19  com.adobe.director_12_0.application          0x0010163d 0x1000 + 1050173
    20  com.adobe.director_12_0.application          0x00171b9f 0x1000 + 1510303
    21  com.adobe.director_12_0.application          0x00171df4 0x1000 + 1510900
    22  com.adobe.director_12_0.application          0x00171ede 0x1000 + 1511134
    23  com.adobe.director_12_0.application          0x00172d32 0x1000 + 1514802
    24  com.adobe.director_12_0.application          0x001a49c4 0x1000 + 1718724
    25  com.adobe.director_12_0.application          0x0031b0f6 0x1000 + 3252470
    26  com.adobe.director_12_0.application          0x00091183 0x1000 + 590211
    27  com.adobe.director_12_0.application          0x000e7173 0x1000 + 942451
    28  com.adobe.director_12_0.application          0x00002c29 0x1000 + 7209
    29  com.adobe.director_12_0.application          0x00002b58 0x1000 + 7000
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x92f9e9ae kevent + 10
    1   libdispatch.dylib                       0x9001ec71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x9001e7a9 _dispatch_mgr_thread + 53
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x01aebc90  ebx: 0x01aebc90  ecx: 0x9103905b  edx: 0x60000000
      edi: 0x978774ae  esi: 0xbfffee0c  ebp: 0xbfffeb18  esp: 0xbfffeac8
       ss: 0x00000023  efl: 0x00010206  eip: 0x919a6a87   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x60000020
    Logical CPU: 8
    Binary Images:
        0x1000 -   0x533ff3 +com.adobe.director_12_0.application (12.0.0r111 - 12.0.0r111) <3DE93BB6-90B9-357D-B8D2-7CAA4C46F658> /Applications/Adobe Director 12/Director.app/Contents/MacOS/Director
      0x5a4000 -   0x761ff7 +com.adobe.director_12_0.DPLib.framework (12.0.0r111 - 12.0.0r111) <943A7E95-F61B-3BA5-957E-F73EE3089650> /Applications/Adobe Director 12/Director.app/Contents/FrameWorks/DPLib.framework/Versions/A/DPLib
      0x798000 -   0x846ffb +com.adobe.director_12_0.IMLLib.framework (12.0.0r111 - 12.0.0r111) <E5E485FB-F840-3BBC-9993-663960BB1027> /Applications/Adobe Director 12/Director.app/Contents/FrameWorks/IMLLib.framework/Versions/A/IMLLib
      0x87f000 -   0x964ff7 +com.adobe.amtlib (amtlib 6.2.0.45 - 6.2.0.45) <7446627B-5FDD-8E54-8400-C8BB6C0BC434> /Applications/Adobe Director 12/Director.app/Contents/FrameWorks/amtlib.framework/Versions/A/amtlib
      0x971000 -   0x9a0ff7 +com.adobe.headlights.LogSessionFramework (2.0.0.1008) <D370B9DC-033A-2AA4-51CF-7F15025B621C> /Applications/Adobe Director 12/Director.app/Contents/FrameWorks/LogSession.framework/Versions/A/LogSession
      0x9c9000 -   0x9daffb +LogTransport2 (1) <835B7B84-5A67-370B-AB39-8E448AA81FA0> /Applications/Adobe Director 12/Director.app/Contents/FrameWorks/LogTransport2.framework/Versions/A/LogTransport2
      0x9e4000 -   0xa8ffff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x1fde000 -  0x1fecfff  libSimplifiedChineseConverter.dylib (61) <60899F9C-A79F-3BC2-855E-DC5C78B98FEB> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x4738000 -  0x474affd  libTraditionalChineseConverter.dylib (61) <519CAA3F-715E-3CAE-B158-57EC95D916B1> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x47b2000 -  0x47b3ff8  ATSHI.dylib (341.1) <7FD74F4D-E42A-30CB-8863-1832BFADFE5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x47b8000 -  0x47bcffb  libFontRegistryUI.dylib (100) <10CAC446-A500-3291-A144-7FAFA57D6720> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistryUI.dylib
    0x47c4000 -  0x47c5ffd  com.apple.ironwoodcore (1.1.1 - 1.1.1) <098CE576-3239-3B41-9141-A5BE6E476C84> /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/Dictation ServicesCore.framework/DictationServicesCore
    0x47f4000 -  0x47f6ff3  com.apple.LiveType.component (2.1.4 - 2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x573f000 -  0x5753fff +com.adobe.director_12_0.actorcontrol (12.0.0r111 - 12.0.0r111) <29253385-1074-326D-BE7A-3AD4DF00E0DD> /Applications/Adobe Director 12/*/Actor Control
    0x575a000 -  0x5767fff +com.adobe.director_12_0.firecaster (12.0.0r111 - 12.0.0r111) <CA1AC9E1-85B0-3550-AC25-D6F7EA2A2A0A> /Applications/Adobe Director 12/*/Fireworks Import PPC
    0x576b000 -  0x576eff3 +com.adobe.director_12_0.lz77cmpr (12.0.0r111 - 12.0.0r111) <860CA841-3532-371C-B8EC-9F9C73935864> /Applications/Adobe Director 12/*/LZ77 Compression PPC Xtra
    0x5786000 -  0x5789ffb +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x578e000 -  0x5796ff7 +com.ecamm.vdig.iGlasses3Driver (3.3.3 - 3.3.3) <406CFFD6-24A1-3719-BC66-E747E0118757> /Library/Components/*/iGlasses3
    0x579e000 -  0x57acfff +info.v002.Syphon (1.0 - 1) <A192CC34-59CA-337B-A8E3-CBD1041682E2> /Library/Components/*/Syphon.framework/Versions/A/Syphon
    0x57ec000 -  0x57f3ffb +com.adobe.director_12_0.mixlrg (12.0.0r111 - 12.0.0r111) <4035C6AC-54AB-32C6-BE91-7AB16175AD74> /Applications/Adobe Director 12/*/LRG Import Export
    0x57f7000 -  0x57f9ffb +com.adobe.director_12_0.mixbitd (12.0.0r111 - 12.0.0r111) <886705FD-8033-3E5E-BAC1-72F18631A9EB> /Applications/Adobe Director 12/*/BitdReader
    0x8bb6000 -  0x8bc7fff +com.adobe.director_12_0.qtexportxtra (12.0.0r111 - 12.0.0r111) <3B1FEFB2-D718-32B8-A19A-7C1C7EE9B5AE> /Applications/Adobe Director 12/*/QTExportXtra
    0x8bce000 -  0x8bd8ff7 +com.adobe.director_12_0.burner (12.0.0r111 - 12.0.0r111) <0E0D13E7-D62E-34EA-BB81-AECA08C025C1> /Applications/Adobe Director 12/*/Squish Files PPC Xtra
    0x8bdb000 -  0x8bddfff +com.adobe.director_12_0.mixbmp (12.0.0r111 - 12.0.0r111) <DACD35F8-3157-3046-A415-10351630FA5E> /Applications/Adobe Director 12/*/BMP Agent
    0x8be0000 -  0x8be2fff +com.adobe.director_12_0.mixflash (12.0.0r111 - 12.0.0r111) <48A94379-BFC2-3381-8201-F5A6D7C97FBA> /Applications/Adobe Director 12/*/Flash Agent
    0x8be5000 -  0x8be7fff +com.adobe.director_12_0.mixgif (12.0.0r111 - 12.0.0r111) <D46CFBBB-A36F-3445-8984-CD48CC982DD4> /Applications/Adobe Director 12/*/GIF Agent
    0x8bea000 -  0x8bf4ff3 +com.adobe.director_12_0.miximagehelp (12.0.0r111 - 12.0.0r111) <DCB52E65-B3E2-3A6C-970D-063D7B026A4D> /Applications/Adobe Director 12/*/Image Translator Helper
    0x8bf8000 -  0x8bfafff +com.adobe.director_12_0.mixjpeg (12.0.0r111 - 12.0.0r111) <6BE5F628-626E-3DC7-A11D-F29F71CB3CB1> /Applications/Adobe Director 12/*/JPEG Agent
    0x8e00000 -  0x8e64fe2  com.apple.LiveType.framework (2.1.4 - 2.1.4) <7AABA687-4323-E5B9-BA04-8F61C217E6FD> /Library/Application Support/ProApps/*/LiveType.framework/Versions/A/LiveType
    0x8e84000 -  0x8edcfff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0xf100000 -  0xf1cafff +net.sourceforge.webcam-osx.common (0.9.2[+4][+3] - 0.9.2[+4][+3]) /Library/QuickTime/macam.component/Contents/MacOS/macam
    0xf356000 -  0xf36fff7 +com.adobe.director_12_0.mixjpegexpt (12.0.0r111 - 12.0.0r111) <CFCE5AD1-33A9-35A9-8410-C3A5FAA6E0A5> /Applications/Adobe Director 12/*/JPEG Export
    0xf373000 -  0xf391ffb +com.adobe.director_12_0.mixservices (12.0.0r111 - 12.0.0r111) <870F8430-DDA6-357A-967B-E43811A24575> /Applications/Adobe Director 12/*/Mix Services
    0xf399000 -  0xf39fff3 +com.adobe.director_12_0.mixpshop3 (12.0.0r111 - 12.0.0r111) <DE7123F5-8514-3CFC-83C5-71659B5245B8> /Applications/Adobe Director 12/*/Photoshop 3.0 Import
    0xf3a2000 -  0xf3a4fff +com.adobe.director_12_0.mixpict (12.0.0r111 - 12.0.0r111) <0BE3A495-140E-369F-821A-19441080EC85> /Applications/Adobe Director 12/*/Pict Agent
    0x101a9000 - 0x101bcfff +com.adobe.director_12_0.mixmpeg3 (12.0.0r111 - 12.0.0r111) <16F480D1-53FE-35E8-9301-C73B800F5262> /Applications/Adobe Director 12/*/MPEG 3 Import Export
    0x101c0000 - 0x101ebff7 +com.adobe.director_12_0.mixpng (12.0.0r111 - 12.0.0r111) <048DFDDE-C687-3733-A905-6A242FC37C7E> /Applications/Adobe Director 12/*/PNG Import Export
    0x101ef000 - 0x101f1fff +com.adobe.director_12_0.mixqt (12.0.0r111 - 12.0.0r111) <0242D124-EBEE-3F20-9CDD-5779CE741077> /Applications/Adobe Director 12/*/QuickTime Agent
    0x101f4000 - 0x101f6ff7 +com.adobe.director_12_0.mixscript (12.0.0r111 - 12.0.0r111) <5F180E8A-3993-30D4-B9E6-ABD675FD81AF> /Applications/Adobe Director 12/*/Script Agent
    0x10e26000 - 0x10e6affb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 6.2.0.1 - 6.2.0.1) <6989AFA6-1F49-462F-2EBF-A41B162B8B67> /Applications/Adobe Director 12/Director.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNoti fications
    0x10e83000 - 0x10eadfff +com.adobe.director_12_0.swacmpr (12.0.0r111 - 12.0.0r111) <11318431-F589-3988-8943-275A7A4B34C1> /Applications/Adobe Director 12/*/SWA Compression Xtra
    0x10f00000 - 0x1100efff +com.adobe.director_12_0.textxtra (12.0.0r111 - 12.0.0r111) <142CC03D-7903-372D-B420-8B13D058F3E4> /Applications/Adobe Director 12/*/TextXtra PPC
    0x11048000 - 0x11068ff7 +com.adobe.director_12_0.mixsound (12.0.0r111 - 12.0.0r111) <D5CF882F-708E-366D-98C4-3358F05EC439> /Applications/Adobe Director 12/*/Sound Import Export
    0x1106e000 - 0x11076ffb +com.adobe.director_12_0.mixau (12.0.0r111 - 12.0.0r111) <4AFEF010-C43F-38B2-B81B-0E0256D2C321> /Applications/Adobe Director 12/*/Sun AU Import Export
    0x1107a000 - 0x11084ff3 +com.adobe.director_12_0.mixswa (12.0.0r111 - 12.0.0r111) <0610D25E-96D0-33F6-BBA1-A0A855AFA867> /Applications/Adobe Director 12/*/SWA Import Export
    0x11088000 - 0x1108effb +com.adobe.director_12_0.mixtarga (12.0.0r111 - 12.0.0r111) <EED90E83-2745-317E-BD4E-BE5CA8A77A2D> /Applications/Adobe Director 12/*/Targa Import Export
    0x11092000 - 0x110ddff7 +com.adobe.director_12_0.mixtiff (12.0.0r111 - 12.0.0r111) <EE14F916-CF44-3D7B-B358-999D5B217AF4> /Applications/Adobe Director 12/*/TIFF Import Export
    0x110e3000 - 0x110e7fff +libgif.4.dylib (6.6) /Applications/Adobe Director 12/*/libgif.4.dylib
    0x110ec000 - 0x110f7fff +com.adobe.director_12_0.ineturl (12.0.0r111 - 12.0.0r111) <227E7742-892D-35F7-9161-91B9FCED8950> /Applications/Adobe Director 12/*/InetUrl PPC Xtra
    0x11200000 - 0x1136aff3 +com.adobe.director_12_0.mixcollada (12.0.0r111 - 12.0.0r111) <89653AF9-87FF-3813-9D52-C78C7C234C47> /Applications/Adobe Director 12/*/MixCollada
    0x11383000 - 0x11529ffb +com.adobe.director_12_0.w3dexportsdk (12.0.0r111 - 12.0.0r111) <F9D6B9DB-31E7-3359-9BD2-3FA22526F74B> /Applications/Adobe Director 12/*/W3DExportSDK.framework/Versions/A/W3DExportSDK
    0x115d9000 - 0x1161aff3 +com.adobe.director_12_0.mixskp (12.0.0r111 - 12.0.0r111) <B92AA723-EB6D-3CE6-8B81-9A242FC69C7D> /Applications/Adobe Director 12/*/MixSkp
    0x11626000 - 0x117ccffb +com.adobe.director_12_0.w3dexportsdk (12.0.0r111 - 12.0.0r111) <F9D6B9DB-31E7-3359-9BD2-3FA22526F74B> /Applications/Adobe Director 12/*/W3DExportSDK.framework/Versions/A/W3DExportSDK
    0x1187c000 - 0x11a94fc7 +Xerces (1) /Applications/Adobe Director 12/*/Xerces.framework/Versions/A/Xerces
    0x11cdc000 - 0x11cedfd2 +com.yourcompany.yourcocoaframework (1.0) /Applications/Adobe Director 12/*/ALUtils.framework/Versions/A/ALUtils
    0x11d07000 - 0x11e56ff3 +SketchUpReader (1) <14731269-16ED-43B2-AE81-CB163F161B13> /Applications/Adobe Director 12/*/SketchUpReader.framework/Versions/A/SketchUpReader
    0x1204b000 - 0x12064feb +libjpeg.62.dylib (63) /Applications/Adobe Director 12/*/libjpeg.62.dylib
    0x1206b000 - 0x12290ff7 +libModel.dylib (1) <E200684A-9FF9-44EC-9B72-0E798EC95720> /Applications/Adobe Director 12/*/libModel.dylib
    0x12492000 - 0x124c8fff +libpaintlib.1.dylib (2) <B1DEB760-6104-0065-A6B3-8BBF48F7A2A2> /Applications/Adobe Director 12/*/libpaintlib.1.dylib
    0x124ee000 - 0x1250bfe7 +libpng12.0.dylib (29) /Applications/Adobe Director 12/*/libpng12.0.dylib
    0x12513000 - 0x1255e02f +libtiff.3.dylib (12.2) /Applications/Adobe Director 12/*/libtiff.3.dylib
    0x1256b000 - 0x125a1fff +com.adobe.director_12_0.netfile (12.0.0r111 - 12.0.0r111) <F29F222C-00F5-39CC-A20A-96C7C05C60B8> /Applications/Adobe Director 12/*/NetFile PPC Xtra
    0x125a8000 - 0x125c6ffb +com.adobe.director_12_0.bitmapfilters (12.0.0r111 - 12.0.0r111) <EE0FB3AF-D581-3B34-9407-775B36E0CDD8> /Applications/Adobe Director 12/*/BitmapFilters
    0x125ca000 - 0x125e1ff7 +com.adobe.director_12_0.3dauth (12.0.0r111 - 12.0.0r111) <2E31AD89-7A80-3C6C-A7A5-C801840BB272> /Applications/Adobe Director 12/*/3D Auth Xtra
    0x125e8000 - 0x125f1ff3 +com.adobe.director_12_0.agifasset (12.0.0r111 - 12.0.0r111) <E35C8763-CFC9-3F23-A53C-CA2893AA70B2> /Applications/Adobe Director 12/*/Animated GIF Asset
    0x125f5000 - 0x12617ff7 +com.adobe.director_12_0.agifauth (12.0.0r111 - 12.0.0r111) <57DAC4E3-74CB-351A-99B1-6101741213A0> /Applications/Adobe Director 12/*/Animated GIF Options
    0x12620000 - 0x12645ffb +com.adobe.director_12_0.audiofilters (12.0.0r111 - 12.0.0r111) <6E237092-369E-3932-ABB7-A2F76BD09AC4> /Applications/Adobe Director 12/*/AudioFilters
    0x1264c000 - 0x1268fff3 +com.adobe.director_12_0.audiomixer (12.0.0r111 - 12.0.0r111) <8546E185-2868-3E8E-A078-A2E7E0D9D428> /Applications/Adobe Director 12/*/AudioMixer
    0x1416f000 - 0x14174ff3 +com.adobe.director_12_0.coreaudiomix (12.0.0r111 - 12.0.0r111) <108F935E-0C88-384F-80CE-703742638805> /Applications/Adobe Director 12/*/CoreAudioMix
    0x14177000 - 0x1418bff3 +com.adobe.director_12_0.cursorasset (12.0.0r111 - 12.0.0r111) <DBD5CAEB-8223-33D8-8AE5-10CCF74E7AC2> /Applications/Adobe Director 12/*/Cursor Asset
    0x14192000 - 0x141b9ff3 +com.adobe.director_12_0.cursorauth (12.0.0r111 - 12.0.0r111) <EBA850E5-6F00-3782-8454-CEA3A87FF747> /Applications/Adobe Director 12/*/Cursor Options
    0x141c1000 - 0x141d9ffb +com.adobe.director_12_0.dvdasset (12.0.0r111 - 12.0.0r111) <5B9B3052-FC48-3B57-BC07-084371A1633E> /Applications/Adobe Director 12/*/DVD Asset
    0x141e1000 - 0x141f1ff7 +com.adobe.director_12_0.dvdauth (12.0.0r111 - 12.0.0r111) <BD90AF2E-58FD-34D3-ABD6-84DDE33D5206> /Applications/Adobe Director 12/*/DVD Authoring
    0x141f8000 - 0x14505ffb +com.adobe.director_12_0.dynamiks (12.0.0r111 - 12.0.0r111) <6357B6FE-7ACC-3A42-94E4-2CA271D4CBFF> /Applications/Adobe Director 12/*/Dynamiks
    0x1453b000 - 0x14861ff7 +com.adobe.director_12_0.dynamiks_320 (12.0.0r111 - 12.0.0r111) <FC0D8C60-D426-35FA-8FC4-5B6F05A67AF5> /Applications/Adobe Director 12/*/Dynamiks_320
    0x1488c000 - 0x149d6fe7 +com.adobe.director_12_0.f4vasset (12.0.0r111 - 12.0.0r111) <2D4FEED8-657A-36BD-B5E9-1323ECABB6F3> /Applications/Adobe Director 12/*/F4VAsset
    0x1657b000 - 0x165d4ff3 +com.adobe.director_12_0.flvasset (12.0.0r111 - 12.0.0r111) <82306C0E-7833-3E19-9824-A9DEC2657A8A> /Applications/Adobe Director 12/*/FLVAsset
    0x18176000 - 0x1819eff7 +com.adobe.director_12_0.fontauth (12.0.0r111 - 12.0.0r111) <9F9B00E6-D499-3921-B4A2-D2D329FA35C5> /Applications/Adobe Director 12/*/Font Asset Dialog
    0x181a8000 - 0x181c5fff +com.adobe.director_12_0.fontasset (12.0.0r111 - 12.0.0r111) <50E2F2A5-35EF-3921-8EA6-C03C01EEEF3E> /Applications/Adobe Director 12/*/Font Asset PPC
    0x181cb000 - 0x18238ffb +com.adobe.director_12_0.fontxtra (12.0.0r111 - 12.0.0r111) <A741EA26-95EA-3BBE-8718-43A328F7BBF8> /Applications/Adobe Director 12/*/Font Xtra PPC
    0x18241000 - 0x1838bfe7 +com.adobe.director_12_0.mp4asset (12.0.0r111 - 12.0.0r111) <08BE83E6-126E-3EBF-B497-17DDE1A72F8F> /Applications/Adobe Director 12/*/MP4Asset
    0x19f30000 - 0x19f49fff +com.adobe.director_12_0.mp4auth (12.0.0r111 - 12.0.0r111) <543074D5-DEFB-36E4-9218-1BF6E61BE92C> /Applications/Adobe Director 12/*/MP4Auth
    0x19f51000 - 0x19f59ffb +com.adobe.director_12_0.mp4export (12.0.0r111 - 12.0.0r111) <BFDF4739-4552-30C9-A90C-E4842FCF06FD> /Applications/Adobe Director 12/*/MP4Export
    0x19f5d000 - 0x1a01909c +com.mainconcept.mcmp4mux (7.4 - 7.4.0.33133) /Applications/Adobe Director 12/*/mcmp4mux.framework/Versions/7.4/mcmp4mux
    0x1a042000 - 0x1a079647 +com.mainconcept.mcaacaenc (7.6 - 7.6.0.33133) /Applications/Adobe Director 12/*/mcaacaenc.framework/Versions/7.6/mcaacaenc
    0x1a07d000 - 0x1a092ff7 +com.adobe.director_12_0.realasset (12.0.0r111 - 12.0.0r111) <A8482C8B-5449-364C-93E8-ECC37C4C03C1> /Applications/Adobe Director 12/*/RealMedia Asset
    0x1a098000 - 0x1a0a8fff +com.adobe.director_12_0.realauth (12.0.0r111 - 12.0.0r111) <D8D29381-DA5E-39D2-AFD1-E2F4D7EB07FC> /Applications/Adobe Director 12/*/RealMedia Authoring
    0x1a0af000 - 0x1a31eff7 +com.adobe.director_12_0.3dasset (12.0.0r111 - 12.0.0r111) <18BE6FE1-12F3-3836-AAE5-2C56CF6A58B8> /Applications/Adobe Director 12/*/Shockwave 3D Asset Xtra
    0x1a372000 - 0x1a382ff3 +com.adobe.director_12_0.soundcontrol (12.0.0r111 - 12.0.0r111) <DE37418D-11BD-3D49-ABE5-0C16E8AA993A> /Applications/Adobe Director 12/*/Sound Control
    0x1a385000 - 0x1a397fff +com.adobe.director_12_0.swadcmpr (12.0.0r111 - 12.0.0r111) <1B145307-6121-361A-916E-CC0FA59186E6> /Applications/Adobe Director 12/*/SWA Decompression PPC Xtra
    0x1a39a000 - 0x1a3bbfff +com.adobe.director_12_0.swaopt (12.0.0r111 - 12.0.0r111) <F376087C-D1C1-3B11-A42A-9C248A636C8D> /Applications/Adobe Director 12/*/SWA Options Xtra
    0x1a3c3000 - 0x1a3d1ff3 +com.adobe.director_12_0.swastrm (12.0.0r111 - 12.0.0r111) <3B76A6EF-57D2-3415-A5CE-25D56402E2A0> /Applications/Adobe Director 12/*/SWA Streaming PPC Xtra
    0x1a3d5000 - 0x1a3f7ff3 +com.adobe.director_12_0.textauth (12.0.0r111 - 12.0.0r111) <5B247C75-3C4C-3A7C-A8DF-BF9DCDA430C4> /Applications/Adobe Director 12/*/Text Asset Options
    0x1a400000 - 0x1a421ffb +com.adobe.director_12_0.textasset (12.0.0r111 - 12.0.0r111) <82A049D4-6014-3ACC-8D81-C6DBACFE84FA> /Applications/Adobe Director 12/*/TextAsset PPC
    0x1a427000 - 0x1a487ff7 +com.adobe.director_12_0.shapeauth (12.0.0r111 - 12.0.0r111) <04BFE3B1-50AD-3AAA-B51B-C0451ED2568B> /Applications/Adobe Director 12/*/Vector Editor Xtra
    0x1a4ad000 - 0x1a4e0fff +com.adobe.director_12_0.flashauth (12.0.0r111 - 12.0.0r111) <AB0490F7-FDDA-3F2A-A046-98F324F03304> /Applications/Adobe Director 12/*/Flash Asset Options PPC
    0x1a4ea000 - 0x1ae5efc7 +com.adobe.director_12_0.flashasset (12.0.0r111 - 12.0.0r111) <B92945E8-D463-344A-B221-A92A17CA53FD> /Applications/Adobe Director 12/*/Flash Asset PPC
    0x1b03f000 - 0x1b06cff3  com.apple.audio.CoreAudioKit (1.6.4 - 1.6.4) <5F0E55AF-BDA6-36B3-86F2-8A84A8F5D089> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1b07f000 - 0x1b0aefff +com.adobe.director_12_0.qtauth (12.0.0r111 - 12.0.0r111) <58E29769-B2CB-3AF2-BE5A-5A95D7D248AB> /Applications/Adobe Director 12/*/QuickTime Asset Options
    0x1b0b8000 - 0x1b0d5fff +com.adobe.director_12_0.qtasset (12.0.0r111 - 12.0.0r111) <7F91C6D0-62C7-3DEC-AD15-A7F7ACBC0566> /Applications/Adobe Director 12/*/QuickTime6 Asset
    0x1b0dd000 - 0x1b0e8ffe +com.adobe.director_12_0.fileio (12.0.0r111 - 12.0.0r111) <7357E45E-5E75-3753-9563-B0DE18926DF3> /Applications/Adobe Director 12/*/FileIO PPC Xtra
    0x1b0ec000 - 0x1b13bff7 +com.adobe.director_12_0.muidialog (12.0.0r111 - 12.0.0r111) <E4B38C17-CAF8-3D49-AAE2-A6F5184FC2B1> /Applications/Adobe Director 12/*/Mui Dialog
    0x1b14c000 - 0x1b17afc3 +com.adobe.director.multiusr (11.5.0r593 - 11.5.0r593) /Applications/Adobe Director 12/*/Multiusr
    0x1b188000 - 0x1b194ff1 +com.adobe.director_12_0.netlingo (12.0.0r111 - 12.0.0r111) <D6ACDC60-D875-3B2C-83B3-9AAFD68A71E6> /Applications/Adobe Director 12/*/NetLingo PPC Xtra
    0x1b197000 - 0x1b19cff3 +com.adobe.director_12_0.speechxtra (12.0.0r111 - 12.0.0r111) <27AF5FCA-423E-3A0B-8704-FC7D2BA3BC68> /Applications/Adobe Director 12/*/Speech
    0x1b1a2000 - 0x1b1aaffb +com.adobe.director_12_0.uihelper (12.0.0r111 - 12.0.0r111) <5384CD56-4F39-3EF2-93FC-91382C4C10BA> /Applications/Adobe Director 12/*/UIHelper PPC Xtra
    0x1b1b0000 - 0x1b1cffff +com.adobe.director_12_0.unzipxtra (12.0.0r111 - 12.0.0r111) <28AAF9BD-A83C-3137-A631-870B1F8C3B4D> /Applications/Adobe Director 12/*/UnzipXtra
    0x1b1d4000 - 0x1b1f0ff3 +com.adobe.director_12_0.xmlparser (12.0.0r111 - 12.0.0r111) <287131AE-7E44-3DAB-883D-B45271201419> /Applications/Adobe Director 12/*/XmlParser PPC Xtra
    0x1b1f5000 - 0x1b201ff3 +com.adobe.director_12_0.zipxtra (12.0.0r111 - 12.0.0r111) <E506F2B8-9F71-325C-B915-9DE9199B0A41> /Applications/Adobe Director 12/*/ZipXtra
    0x8fe64000 - 0x8fe96e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x90019fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x9001a000 - 0x9002cff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x9002d000 - 0x90043fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x90044000 - 0x90071ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x90072000 - 0x90089fff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x9008a000 - 0x901a2ff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x901a3000 - 0x901a5ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x901a6000 - 0x901cbff7  com.apple.CoreVideo (1.8 - 99.3) <5B872AC0-E82D-3475-A3F9-FD95F380560D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x901cc000 - 0x901cfffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x901d0000 - 0x903e7fff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x903e8000 - 0x90560ff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90561000 - 0x906beffb  com.apple.QTKit (7.7.1 - 2599.13) <2DC9E2BB-9895-3D02-A318-88431052E70B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x906bf000 - 0x90793fff  com.apple.backup.framework (1.4.1 - 1.4.1) <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90794000 - 0x90798ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x907ca000 - 0x90be7fff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x90be8000 - 0x90c1dfff  libTrueTypeScaler.dylib (84.5) <2598F930-5E6B-37D7-B1E6-18181A972C6E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x90c75000 - 0x90d69ff3  com.apple.QuickLookUIFramework (4.0 - 555.4) <D66F61A6-2C4C-359F-A2E3-7D023C33CB5A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x90d6a000 - 0x90d7ffff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x90d80000 - 0x90d90ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x90d91000 - 0x90d99fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90d9a000 - 0x90d9dfff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x90d9e000 - 0x90daaff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x90dab000 - 0x910c8ff3  com.apple.Foundation (6.8 - 945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91401000 - 0x9140eff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x9140f000 - 0x91411fff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x91412000 - 0x91476fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x91477000 - 0x9182fffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x91830000 - 0x91833ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x91834000 - 0x9185eff9  com.apple.framework.Apple80211 (8.0.1 - 801.17) <8A8BBBFD-496B-35A6-A26E-ADF8D672D908> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x9185f000 - 0x91860fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x91861000 - 0x91886ffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x918bd000 - 0x918eefff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x91947000 - 0x919a0fff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x919a1000 - 0x91aae057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x91aaf000 - 0x91ba7ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x922b0000 - 0x922b0fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x922b1000 - 0x9232bff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9232c000 - 0x923dbff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x923dc000 - 0x923e0fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x923e1000 - 0x923edffa  com.apple.CrashReporterSupport (10.8.2 - 415) <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x923ee000 - 0x92498fff  com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x92499000 - 0x924f6fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x924fe000 - 0x9264bffb  com.apple.CFNetwork (596.2.3 - 596.2.3) <1221EF86-659B-3136-AB57-0CC6B130CDA2> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x9264c000 - 0x926d1ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x926d2000 - 0x926d2fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x926d3000 - 0x926d3fff  com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x926d4000 - 0x9271dff7  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <ABA6A926-34C2-3C09-AD9F-A87A8A35536A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9271e000 - 0x92727ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x92728000 - 0x92782fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x92783000 - 0x927a7fff  libJPEG.dylib (845) <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x927a8000 - 0x92899ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x9289a000 - 0x9289afff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9289d000 - 0x928bcff3  com.apple.Ubiquity (1.2 - 243.10) <D2C9F356-1681-31D2-B292-5227E2DDEB0B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x928bd000 - 0x928cbfff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x928cc000 - 0x92934ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <9A80E97E-544F-3A45-916D-6DB7ED217E33> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92935000 - 0x929f3ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x929f4000 - 0x92a1dff7  libRIP.A.dylib (324.6) <7976E6A2-A489-33F5-A727-7634DDE3B761> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x92a1e000 - 0x92b1cff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x92b1d000 - 0x92c3bff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
    0x92c3c000 - 0x92c3dfff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
    0x92c3e000 - 0x92c79fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x92c85000 - 0x92ca5ffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x92ca6000 - 0x92ed6fff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x92ed7000 - 0x92f46ffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x92f47000 - 0x92f51ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x92f81000 - 0x92f88ffe  com.apple.agl (3.2.1 - AGL-3.2.1) <8E0411D3-19F7-30E1-92A2-337F7F0EBCDA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x92f89000 - 0x92fa3ffc  libsystem_kernel.dylib (2050.18.24) <C17D49D0-7961-3B67-B443-C788C6E5AA76> /usr/lib/system/libsystem_kernel.dylib
    0x92fa4000 - 0x93160ffd  libicucore.A.dylib (491.11.1) <B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
    0x93500000 - 0x9354eff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x9354f000 - 0x93932ff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x93933000 - 0x9395cfff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x9395d000 - 0x93989ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x93a42000 - 0x940cefeb  com.apple.CoreAUC (6.16.00 - 6.16.00) <654A0AB8-F24F-3489-8F70-F0A22414FE08> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x940cf000 - 0x940d2ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x940d3000 - 0x940d6ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x940d7000 - 0x941b8fff  libcrypto.0.9.8.dylib (47) <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
    0x941b9000 - 0x941b9ffd  libOpenScriptingUtil.dylib (148.2) <907E25B1-4F50-3461-B8D5-733C687EB534> /usr/lib/libOpenScriptingUtil.dylib
    0x941ba000 - 0x941beffc  libGIF.dylib (845) <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94a4a000 - 0x94a51ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x94b09000 - 0x94b13fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x94b14000 - 0x94b41ffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x94b42000 - 0x94b44fff  libCVMSPluginSupport.dylib (8.6.1) <8A174BD9-992E-351D-8F9A-DF6991723ABE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x94e34000 - 0x95230feb  com.apple.VideoToolbox (1.0 - 926.62) <B09EEF06-CB3C-3EAA-8B0E-22A1801F3CAE> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x95231000 - 0x9523ffff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x95240000 - 0x954adfff  com.apple.imageKit (2.2 - 667) <3F5F92DB-C0C0-3C5F-98C6-B84AB9E28B55> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x954ae000 - 0x954b0fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x954b1000 - 0x961e9ff7  com.apple.QuickTimeComponents.component (7.7.1 - 2599.13) <85C70D1B-D074-3891-BF8D-9BA81D2C224B> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponent s
    0x961ea000 - 0x961f2fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x96236000 - 0x964f6fff  com.apple.security (7.0 - 55179.1) <CB470E48-621B-34D9-9E78-8B773358CB6B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x964f7000 - 0x964fbff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x964fc000 - 0x96502fff  libGFXShared.dylib (8.6.1) <E32A7266-FCDD-352C-9C2A-8939265974AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x96503000 - 0x96545ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x96546000 - 0x965aefe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x965af000 - 0x965bcfff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x965bd000 - 0x96639ffb  libType1Scaler.dylib (101.1) <0D94D786-29F7-33DB-B64B-B264FA5EACD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x9663a000 - 0x96641fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x96642000 - 0x96650ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x96660000 - 0x96661ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x96662000 - 0x96695ff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x96696000 - 0x966dbff5  com.apple.opencl (2.1.20 - 2.1.20) <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x966dc000 - 0x967e7ff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x967ed000 - 0x967fbff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x967ff000 - 0x9681bff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9681c000 - 0x96868fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x96869000 - 0x968b7ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x96904000 - 0x9693bffa  com.apple.LDAPFramework (2.4.28 - 194.5) <8368FAE7-2B89-3A7D-B6EE-7184B522CB66> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9693c000 - 0x969b1ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x969b2000 - 0x96a6ffeb  libsystem_c.dylib (825.25) <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
    0x96a70000 - 0x96ad2fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x96ad3000 - 0x96adafff  libsystem_dnssd.dylib (379.32.1) <6A505284-2382-3F27-B96F-15FFDACF004E> /usr/lib/system/libsystem_dnssd.dylib
    0x96adf000 - 0x96d82ffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x96d83000 - 0x96d89fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x96d8a000 - 0x96d8afff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96d8b000 - 0x96d9bff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x96d9c000 - 0x96d9dfff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x96d9e000 - 0x96dd1ff5  libssl.0.9.8.dylib (47) <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
    0x96dd2000 - 0x96e19ff3  com.apple.CoreMedia (1.0 - 926.62) <69B3835E-C02F-3935-AD39-83F8E81FB780> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x96e1a000 - 0x96e38ff3  com.apple.openscripting (1.3.6 - 148.2) <55738D66-CC15-3F43-9265-00C3322D39C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x96e39000 - 0x96e3afff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x96e3b000 - 0x96e80ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x96e81000 - 0x96e84ff3  com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x96e8c000 - 0x96eceffb  com.apple.RemoteViewServices (2.0 - 80.5) <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x96ecf000 - 0x96febff7  com.apple.desktopservices (1.7.2 - 1.7.2) <8E74D101-8398-34F1-A463-B4950680A597> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x96fec000 - 0x970f9ff3  com.apple.ImageIO.framework (3.2.0 - 845) <BF959BCB-C30A-3680-B7C2-91B327B2B63B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x970fa000 - 0x970fafff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x970fb000 - 0x97156fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x97157000 - 0x97157fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x97158000 - 0x97159ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x9715a000 - 0x9745fff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x97460000 - 0x976dcff7  com.apple.QuickTime (7.7.1 - 2599.13) <FE609160-E1EF-341D-9B6A-205D3E03A4D2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9771d000 - 0x977b7fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x977b8000 - 0x977c0fff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x977c1000 - 0x977deff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x977e1000 - 0x9783afff  com.apple.QuickLookFramework (4.0 - 555.4) <96911441-FDD4-3B68-9E0C-51BA11A97C2E> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9783b000 - 0x97a23ff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x97a24000 - 0x97a25fff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
    0x97a26000 - 0x97a3ffff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x97a40000 - 0x97b50ff3  com.apple.QuickTimeImporters.component (7.7.1 - 2599.13) <410311C4-34FF-38F0-8EE0-3093AEEC1A82> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTimeImporters
    0x97b51000 - 0x97b5bfff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x97b5c000 - 0x97bb5ff7  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <541529F7-063E-370B-9EB2-DF5BE39073E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x97bb6000 - 0x97f49ffb  com.apple.MediaToolbox (1.0 - 926.62) <7290B07B-4D03-3B46-809C-64C8FB97B40C> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x97f4a000 - 0x97fe2fff  com.apple.CoreServices.OSServices (557.4 - 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x9800f000 - 0x980a1ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x980be000 - 0x9815eff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9815f000 - 0x98213fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98214000 - 0x9828dff0  com.apple.CorePDF (2.0 - 2) <6B5BF755-F336-359C-9A99-F006F61442CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9828e000 - 0x9828efff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9828f000 - 0x9830bff3  com.apple.Metadata (10.7.0 - 707.3) <6B6A6216-23D0-34CE-8099-BEE9BA42501E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x9830c000 - 0x9834bff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9834c000 - 0x98355ff3  com.apple.DisplayServicesFW (2.6.1 - 353) <50D0BBF0-F911-380F-B470-E59B5E48E520> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x98356000 - 0x983adff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x983ae000 - 0x987f0fff  com.apple.CoreGraphics (1.600.0 - 324.6) <66556166-F9A7-3EEC-A562-46061C7A79E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x987f1000 - 0x98841ff7  com.apple.CoreMediaIO (301.0 - 4147) <F13FA9D4-BD1D-3297-BDD5-5858B231D738> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x98842000 - 0x988a8fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x98998000 - 0x989a4ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x989a5000 - 0x989a5fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x989a6000 - 0x98a8fff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x98a90000 - 0x98a97ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x98a98000 - 0x98a9bff9  libCGXType.A.dylib (324.6) <3004616B-51F6-3B9D-8B85-DCCA3DF9BC10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x98aa0000 - 0x98aa4fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x98aa5000 - 0x98b3cff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x98b3d000 - 0x98b50ff9  com.apple.MultitouchSupport.framework (235.28 - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x98b51000 - 0x98b51fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x98b54000 - 0x98c8fff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x98c90000 - 0x98cd4fff  libGLU.dylib (8.6.1) <06BAFDCA-800C-35E3-B1A3-F05E105B86AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x98cd5000 - 0x98cf7fff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x98cf8000 - 0x98f50ff1  com.apple.JavaScriptCore (8536 - 8536.26.7) <75629E05-65FE-3699-8CDC-80C95015CF42> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x98f8e000 - 0x98f8effd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x98f8f000 - 0x98fe6ff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x98fe7000 - 0x99004fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x99291000 - 0x99319fff  com.apple.PDFKit (2.7.2 - 2.7.2) <7AE7BAE9-4C21-3BFB-919E-5C6EEBBDFF75> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x993c2000 - 0x99f7effb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x99f7f000 - 0x99fc0ff7  com.apple.framework.CoreWiFi (1.0 - 100.10) <944B3FAE-F901-3276-A676-9D52295DA817> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x99fc1000 - 0x9a025ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x9a026000 - 0x9a027fff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x9a028000 - 0x9a069ff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x9a06a000 - 0x9a06efff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9a06f000 - 0x9a1f8ff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x9a1f9000 - 0x9a22fffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9a230000 - 0x9a247ff4  com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x9a279000 - 0x9a2bbfff  libcurl.4.dylib (69.2) <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x9a3ba000 - 0x9a3c3ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x9a3c4000 - 0x9a3d9fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9a3da000 - 0x9a532ffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9a533000 - 0x9a533fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x9a534000 - 0x9a583ff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9a584000 - 0x9a5a8fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x9a5a9000 - 0x9a604ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <4BA2AAEA-4936-375C-B4D8-4BBE2EDC7FF5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9a605000 - 0x9a610fff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x9a611000 - 0x9a636ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x9a637000 - 0x9a641fff  libCSync.A.dylib (324.6) <D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x9a642000 - 0x9a65ffff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
    0x9a660000 - 0x9a66cffe  libkxld.dylib (2050.18.24) <48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
    0xb0000000 - 0xb001afe3 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <928D8FAD-DEE7-F1D0-FE17-FA7F4E4C1E48> /Applications/Adobe Director 12/Director.app/Contents/FrameWorks/ahclient.framework/Versions/A/ahclient
    0xba100000 - 0xba101fff  libArabicConverter.dylib (61) <B9510526-1C60-34ED-AE6C-310DC30FD04E> /System/Library/CoreServices/Encodings/libArabicConverter.dylib
    0xba300000 - 0xba301fff  libCyrillicConverter.dylib (61) <76630B89-A9CE-376B-B836-B55D8543717B> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0xba500000 - 0xba501ffd  libGreekConverter.dylib (61) <8420F227-2783-36D9-997E-39110328F77C> /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0xba700000 - 0xba700fff  libHebrewConverter.dylib (61) <3E708D3C-2332-3B4F-A79B-D7DF7B0F7C85> /System/Library/CoreServices/Encodings/libHebrewConverter.dylib
    0xba900000 - 0xba91cffd  libJapaneseConverter.dylib (61) <A3F2F55D-E491-3532-A8F6-8D3F2455704F> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21ffc  libKoreanConverter.dylib (61) <39F6BEE7-AE54-3423-B920-2A3573BC9A1A> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xbad00000 - 0xbad01fff  libLatin2Converter.dylib (61) <5893A6EA-B555-3635-8D03-66FA478CD304> /System/Library/CoreServices/Encodings/libLatin2Converter.dylib
    0xbaf00000 - 0xbaf01fff  libLatin5Converter.dylib (61) <E9E8057A-2240-3721-A8A5-7258096B00E8> /System/Library/CoreServices/Encodings/libLatin5Converter.dylib
    0xbb100000 - 0xbb103ffd  libLatinSuppConverter.dylib (61) <A1318F1F-8E3E-3A9B-92A1-4749F4CBCE1B> /System/Library/CoreServ

    Hi Milky_au!
    I appreciate your response. I believe I've discovered what the problem is with not being able to insert multiple frames from the pulldown menu - and it appears to be a limitation in Director's score that'll actually be easy to avoid as I continue building my project.
    My background sprite channel and ten other channels I was using for navigation buttons had stretched well over six thousand frames (undoubtedly from a lot of copy and paste between DIR files of reused sprite channels over the past eighteen years that I've been working on this personal project that's been as much fun as using Director) while the sprites for the rest of the project had only reached just under three thousand frames.
    On the phone with Rajeev Saini at Adobe for a good half hour with him in control of my screen to test what I had done, he had discovered that a new DIR file had no problem inserting frames via the pulldown. Although the Command+] shortcut would still add one frame at a time in my working DIR, I wasn't seeing that as a viable solution to my wanting to add, say, a hundred frames in one shot so I could build an animation in that area of the score.
    I deleted three thousand frames that were being used by the background and those ten navigation buttons - and now inserting frames via the pulldown menu works exactly the way its supposed to now!
    I can now see that I have to keep an eye on that background and those button channels so they don't grow so far beyond where I'm actually building my project.
    I will pass this on to Adobe because it does seem like there's a definite limitation in the score. Luckily, that's easy to work around.
    Thanks again Milky_au for your kind response!
    Gary

  • Using variables to insert data in the table

    I want to insert datas in the table. I use constants,
    all the constants are stored properly in the table. But,
    when I use variables I get the error message
    "Too few parameters. expected 6".
    (I declared all the fields of the table as text only.)
    My program is "newt.jsp"
    <%@ page language="java" import="java.sql.*" %>
    <html>
    <head>
    <title>storing customer information in the database</title>
    </head>
    <body>
    <%
    String cno1 = request.getParameter("cno");
    String n1 = request.getParameter("n");
    String add11 = request.getParameter("add1");
    String add21 = request.getParameter("add2");
    String phone1 = request.getParameter("phone");
    String email1 = request.getParameter("email");
    Connection con = null;
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con = DriverManager.getConnection("jdbc:odbc:customer"," "," ");
    Statement statement1 = con.createStatement();
    Statement statement2 = con.createStatement();
    statement2.executeUpdate("create table cust1 (cno varchar(20),n varchar(20),add1 varchar(20),add2 varchar(20),phone varchar(20),email varchar(20))");
    statement1.executeUpdate("insert into cust1 (cno,n,add1,add2,phone,email) values(cno1,n1,add11,add21,phone1,email1)");
    catch(SQLException sqle) {
    System.err.println(sqle.getMessage());
    catch(ClassNotFoundException cnfe) {
    System.err.println(cnfe.getMessage());
    catch(Exception e) {
    System.err.println(e.getMessage());
    finally {
         try {
         if(con!=null) {
              con.close();
    catch(SQLException sqle) {
    System.err.println(sqle.getMessage());
    %>
    <br><br>
    Mr./Ms. <%=n1 %> <br>
    Your datas have been stored.<br>
    </body>
    </html>
    Those who know answer please reply.
    My thanks in advance.

    I would expect your insert statement to be this:
    statement1.executeUpdate("insert into cust1 (cno,n,add1,add2,phone,email) values('"+cno1+"','"+n1+"','"+add11+"','"+add21+"','"+phone1+"','"+email1+"')");
    If you just create a string, it's not going to fill in variables into the string by magic.

  • HELP...   Since last week, I can not awake from sleep. After reading a review I downloaded Deep Sleep, but after the first deep sleep, my MBP (late 2011 with Mountain Lion), developed a problem restarting from sleep.

    HELP...   Since last week, I can not awake from sleep. After reading a review I downloaded Deep Sleep, but after the first deep sleep, my MBP (late 2011 with Mountain Lion), developed a problem restarting from sleep. I straight away uninstalled Deep Sleep, but the problem has increased.
    Now when I try to awake from sleep, a grey screen with the apple logo appears with a progress bar underneath it, which slowly moves to the forelast indicator, then it stops and a audio signal starts.  Three bleeps and pause.
    Then when I press the on/off botton and restart the system, the underneath error reports appears with the heading  RAPPORTD unexpectedly failed.
    Can any one help?
    Process:         rapportd [235]
    Path:            /Library/Rapport/*/rapportd
    Identifier:      rapportd
    Version:         ???
    Code Type:       X86 (Native)
    Parent Process:  launchd [196]
    User ID:         501
    Date/Time:       2012-08-27 11:38:13.723 +0200
    OS Version:      Mac OS X 10.8.1 (12B19)
    Report Version:  10
    Interval Since Last Report:          8281 sec
    Crashes Since Last Report:           5
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      F7A70155-2067-4184-A500-CECB394A71B3
    Crashed Thread:  5
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000920
    VM Regions Near 0x920:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Library/Rapport/*
        __TEXT                 0000000000001000-0000000000065000 [  400K] r-x/rwx SM=COW  /Library/Rapport/*
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x991479c9 szone_free_definite_size + 3565
    1   libsystem_c.dylib                       0x99141cdc free + 217
    2   rapportd                                0x00022a80 refree + 43
    3   rapportd                                0x0001dc09 dictionary_free + 97
    4   RapportUtil1.dylib                      0x001893ea CLocalSection::~CLocalSection() + 40
    5   RapportUtil1.dylib                      0x0018e17b CSimplePersistentSection::~CSimplePersistentSection() + 97
    6   RapportUtil1.dylib                      0x00186e07 counted_ptr<IConfigurationSection>::release() + 57
    7   RapportUtil1.dylib                      0x00186512 SectionSynchronizer::~SectionSynchronizer() + 54
    8   RapportUtil1.dylib                      0x00186e07 counted_ptr<IConfigurationSection>::release() + 57
    9   RapportUtil1.dylib                      0x001885d8 std::pair<std::string const, counted_ptr<IConfigurationSection> >::~pair() + 26
    10  RapportUtil1.dylib                      0x00188628 __gnu_cxx::hashtable<std::pair<std::string const, counted_ptr<IConfigurationSection> >, std::string, __gnu_cxx::hash<std::string>, std::_Select1st<std::pair<std::string const, counted_ptr<IConfigurationSection> > >, std::equal_to<std::string>, std::allocator<counted_ptr<IConfigurationSection> > >::_M_delete_node(__gnu_cxx::_Hashtable_node<std::pair<std::string const, counted_ptr<IConfigurationSection> > >*) + 44
    11  RapportUtil1.dylib                      0x00188994 __gnu_cxx::hashtable<std::pair<std::string const, counted_ptr<IConfigurationSection> >, std::string, __gnu_cxx::hash<std::string>, std::_Select1st<std::pair<std::string const, counted_ptr<IConfigurationSection> > >, std::equal_to<std::string>, std::allocator<counted_ptr<IConfigurationSection> > >::clear() + 62
    12  RapportUtil1.dylib                      0x001889eb __gnu_cxx::hashtable<std::pair<std::string const, counted_ptr<IConfigurationSection> >, std::string, __gnu_cxx::hash<std::string>, std::_Select1st<std::pair<std::string const, counted_ptr<IConfigurationSection> > >, std::equal_to<std::string>, std::allocator<counted_ptr<IConfigurationSection> > >::~hashtable() + 23
    13  RapportUtil1.dylib                      0x00186791 CConfigurationManager::~CConfigurationManager() + 77
    14  RapportUtil1.dylib                      0x0019a8e3 counted_ptr<CConfigurationManager>::release() + 57
    15  RapportUtil1.dylib                      0x0019b348 configuration::~configuration() + 54
    16  RapportUtil1.dylib                      0x0019a113 counted_ptr<configuration>::release() + 57
    17  libsystem_c.dylib                       0x99161edb __cxa_finalize + 184
    18  libsystem_c.dylib                       0x99164dd5 exit + 23
    19  rapportd                                0x00002317 start + 63
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x98a8b9ae kevent + 10
    1   libdispatch.dylib                       0x99223cc5 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x992237fd _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x98a8b0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9912a04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99129e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99111cca start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x98a8b0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9912a04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99129e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99111cca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x98a8b0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9912a04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99129e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99111cca start_wqthread + 30
    Thread 5 Crashed:
    0   rapportd                                0x0002c66c threaded_service::main(void*) + 208
    1   libsystem_c.dylib                       0x99127557 _pthread_start + 344
    2   libsystem_c.dylib                       0x99111cee thread_start + 34
    Thread 5 crashed with X86 Thread State (32-bit):
      eax: 0x00000900  ebx: 0x0002c5a7  ecx: 0xbffff894  edx: 0xbffff88c
      edi: 0xbffff898  esi: 0x00012868  ebp: 0xb030af98  esp: 0xb030af40
       ss: 0x00000023  efl: 0x00010202  eip: 0x0002c66c   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000920
    Logical CPU: 0
    Binary Images:
        0x1000 -    0x64fef +rapportd (???) <322EF040-125E-3D79-4A2F-01BB8B1415E9> /Library/Rapport/*/rapportd
       0xaf000 -   0x147ff7 +RapportWR.dylib (1) <A50472EA-F9E8-3C45-E173-216263532AEC> /Library/Rapport/*/RapportWR.dylib
      0x16e000 -   0x2faffb +RapportUtil1.dylib (1) <087D94DE-7376-A5E6-C000-2895F7D0AA60> /Library/Rapport/*/RapportUtil1.dylib
      0x3f8000 -   0x420fef +librooksbas.dylib (1) <75079BEF-ED76-12F6-5973-3B4584AFA1E4> /Library/Rapport/*/librooksbas.dylib
      0x718000 -   0x725ffb  com.apple.Librarian (1.1 - 1) <C8D82AA3-AE5E-3B6D-A8D1-847856057186> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
      0x732000 -   0x733fff +com.ecamm.pluginloader (Ecamm Plugin Loader v1.0.5 - 1.0.5) /Library/InputManagers/*/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x8fe77000 - 0x8fea9e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x9000e000 - 0x9001bff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x90135000 - 0x90135fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x90294000 - 0x90294fff  libSystem.B.dylib (169.3) <4F99C03B-BBFF-3BF8-8CC2-2DA764447446> /usr/lib/libSystem.B.dylib
    0x90295000 - 0x90295fff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90296000 - 0x90296fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90297000 - 0x90679ff7  com.apple.HIToolbox (2.0 - 624) <04C20B6A-FE3D-396E-BCAF-AC4DBAB3747E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90acc000 - 0x90b30ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x90b3f000 - 0x90db9ff3  com.apple.RawCamera.bundle (3.14.2 - 644) <3A5383AC-F30A-3674-88F4-DF82ADE8D73E> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x90dba000 - 0x90dc7fff  libGL.dylib (8.5) <B411046C-3068-3A22-B3F1-9E78C5888232> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90dc8000 - 0x90e5affb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90e5b000 - 0x90f05ff7  com.apple.LaunchServices (539 - 539) <4C026504-5420-35D7-912E-A584C6F9FFC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90f06000 - 0x90f4bff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9114e000 - 0x91158fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91159000 - 0x911b6fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x911c3000 - 0x911cafff  liblaunch.dylib (442.21) <349330F8-1BBF-3B78-AFB2-4F32413CE971> /usr/lib/system/liblaunch.dylib
    0x911cb000 - 0x91219ffb  com.apple.SystemConfiguration (1.12 - 1.12) <5859B368-4118-3755-A197-0A8172514ADA> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9121a000 - 0x9121effe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x9121f000 - 0x91220fff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
    0x91223000 - 0x91279ff3  com.apple.HIServices (1.20 - 416) <C52A00FD-76D6-34F3-95D1-7EDB857EC5E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x912b7000 - 0x913afff2  libsqlite3.dylib (138) <AA00F27E-B72D-31DE-8EE4-985227CC9912> /usr/lib/libsqlite3.dylib
    0x913b0000 - 0x913b2ffb  libRadiance.dylib (843) <6C2B92DB-A537-3618-9E68-F006DF427D2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x913b3000 - 0x913f7fff  libGLU.dylib (8.5) <DC69992A-2547-38FF-ABD1-BDE19EA75C08> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91428000 - 0x9144aff3  libc++abi.dylib (24.2) <4C064BFE-B8B4-35CA-AB3C-F6A47D47A0F2> /usr/lib/libc++abi.dylib
    0x91571000 - 0x91571ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <B688A998-93B5-3D9B-BAE4-E49947AA82B4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91572000 - 0x915b3ff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x915b4000 - 0x915c2fff  com.apple.opengl (1.8.5 - 1.8.5) <8EB6DEE7-7248-3644-B840-35174755C356> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x915c3000 - 0x91625fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x91651000 - 0x91a09ffa  libLAPACK.dylib (1073.3) <0F813868-D84F-365D-8A7B-67FDA169F19C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91a0d000 - 0x91e2aff3  FaceCoreLight (2.0.1) <3EF03B25-C361-31A6-8704-3FBFFBD0E10B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x91e30000 - 0x91e54fff  libJPEG.dylib (843) <04383F74-067F-3E98-882F-21F5B9578984> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91f89000 - 0x92087ff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x92088000 - 0x9208cffc  libGIF.dylib (843) <355B672B-D07D-36FE-B6B9-142406ACFBA2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9219e000 - 0x9245bff3  com.apple.security (7.0 - 55178.0.1) <EB90D52E-27EC-3874-BA15-C69976F1067A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9249f000 - 0x924fafff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x924fb000 - 0x9253aff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9253b000 - 0x92589ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9258a000 - 0x925bbff7  com.apple.DictionaryServices (1.2 - 184) <9199E88F-2477-3596-9F56-B8E317A7164D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x925bc000 - 0x92745ff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92746000 - 0x92750fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x92751000 - 0x92771ff7  com.apple.ChunkingLibrary (2.0 - 132) <172C3F7F-CB49-323F-932F-35340999979E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x92772000 - 0x92a77fff  com.apple.CoreServices.CarbonCore (1037 - 1037) <92494ADA-2ED1-3141-81B9-23F2C27E779C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92fbb000 - 0x92fbffff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x93003000 - 0x930c1ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x930c2000 - 0x93162ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93163000 - 0x931affff  libcorecrypto.dylib (106) <FAAD1A30-0D84-3A17-AC40-288EF0F529AA> /usr/lib/system/libcorecrypto.dylib
    0x93208000 - 0x93dc1fff  com.apple.AppKit (6.8 - 1187) <5E13B150-4096-3B61-9DC0-6ABA48F6515B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93dc2000 - 0x93e04ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x94492000 - 0x94501ffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x94502000 - 0x9461dff7  com.apple.desktopservices (1.7.1 - 1.7.1) <0039FBAA-BB0B-36B7-962F-BDAC8E3D1C58> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94994000 - 0x94994fff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x949cb000 - 0x949ceffb  com.apple.TCC (1.0 - 1) <C1B2A1EB-9EA2-3340-8611-F788C87A951F> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9524c000 - 0x952b2fff  com.apple.print.framework.PrintCore (8.0 - 387) <84DFC4F0-3186-3C59-9EBD-9EF2C3561A43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x952b3000 - 0x952b3fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x952b4000 - 0x952f9ff5  com.apple.opencl (2.1.17 - 2.1.17) <921C1549-637A-33D7-A891-834FB9F582C7> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x952fa000 - 0x9531efff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9531f000 - 0x95497ff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95498000 - 0x9549bffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95516000 - 0x95958ff3  com.apple.CoreGraphics (1.600.0 - 322) <2E04AAAD-8403-3819-BD6C-9836D42F58B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95959000 - 0x9595bfff  com.apple.securityhi (4.0 - 55002) <15E9B9BC-108F-3416-A0A7-A321A85081F7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95d59000 - 0x95d5cfff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95d5d000 - 0x95d6bfff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x95d6c000 - 0x95d6dffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x95d78000 - 0x95dedff7  com.apple.ApplicationServices.ATS (332 - 341) <EC79D064-1399-3F33-BACC-6D93A5BE04E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95e03000 - 0x95e5aff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x95e5b000 - 0x95e5bfff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x95eb3000 - 0x95f66ff7  com.apple.coreui (2.0 - 181) <4F071012-F857-367D-B0B8-EAD088A05740> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95faf000 - 0x95fbdff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x95fbe000 - 0x962dbfff  com.apple.Foundation (6.8 - 945) <B6F00754-C3F7-3E33-B708-CCEA2AA3E969> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x962dc000 - 0x962e4fff  com.apple.DiskArbitration (2.5 - 2.5) <E49427B0-5317-3DFD-B12E-117402BB19CB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x962e5000 - 0x962f3ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x969fc000 - 0x96bb8ffd  libicucore.A.dylib (491.11.1) <DB04A8FD-9BBE-3CBC-869F-8FA855FB43D2> /usr/lib/libicucore.A.dylib
    0x96bb9000 - 0x96bc9ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96bca000 - 0x96bd3ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96eeb000 - 0x96f01fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x96f02000 - 0x96f02fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96f34000 - 0x96f35fff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x96f36000 - 0x9708dff7  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <6856CA9B-BF08-341B-AEE9-91CC258D4534> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x970b4000 - 0x970b8fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x970b9000 - 0x970bbfff  libCVMSPluginSupport.dylib (8.5) <A91DC66E-5A16-31AC-9B6A-605292573281> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x97107000 - 0x97113ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x97114000 - 0x97199ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9719a000 - 0x9719affd  libOpenScriptingUtil.dylib (148) <6B34E8E4-EE31-3E2B-AEB3-8714C3102AED> /usr/lib/libOpenScriptingUtil.dylib
    0x9719b000 - 0x97249ff3  com.apple.CoreText (260.0 - 275.14) <3CC31B7F-5560-364A-ADFC-31861C3C2328> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x97264000 - 0x9729affb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9729b000 - 0x972eaff6  libTIFF.dylib (843) <AA81BA16-8026-35DA-8193-2C8715ACD435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x972ef000 - 0x972f0fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x972f1000 - 0x97388fff  com.apple.ink.framework (1.4 - 110) <C01F2572-E7E4-3A6C-B4F2-2F97B4AD43D5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9738d000 - 0x9738effd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x9738f000 - 0x97393fff  com.apple.IOSurface (86.0.2 - 86.0.2) <BDF93CE4-9F14-3747-9CD5-FFE71D488BDA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x97394000 - 0x973c1ffb  com.apple.CoreServicesInternal (153 - 153) <DB105788-CCF5-3678-88C5-65A7267DC581> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x973ce000 - 0x973d1ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x973d2000 - 0x973d2fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97435000 - 0x97635ffb  com.apple.CoreData (106 - 407.5) <B4386286-5C67-3134-A5BD-852447DA696E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97636000 - 0x9763dff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x97680000 - 0x976a4ff2  com.apple.framework.familycontrols (4.0 - 400) <A313D83E-5A03-3174-A213-1F7D379040D1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x976a5000 - 0x976a6fff  libdnsinfo.dylib (453.16) <6441AEC9-3916-3BF6-BE54-9C25E2BE61E1> /usr/lib/system/libdnsinfo.dylib
    0x976a7000 - 0x97938ffb  com.apple.CoreImage (8.0.17 - 1.0.1) <CE54EC11-1C41-3857-B82D-F8B7D1798F42> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x97939000 - 0x9794bfff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x97996000 - 0x97aa315f  libobjc.A.dylib (532) <9663A040-F232-3E2A-8318-AA40B940AF6F> /usr/lib/libobjc.A.dylib
    0x97aa4000 - 0x97b95ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x97b9d000 - 0x97ca8ff7  libJP2.dylib (843) <D8FE1E1C-D4DC-3465-95C4-AEADD6C2611C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x97d41000 - 0x97d58fff  com.apple.GenerationalStorage (1.1 - 132.1) <4E0F0C47-7796-3152-A77D-F6456287498A> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x97d59000 - 0x97d65ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x97da9000 - 0x97e03fff  com.apple.Symbolication (1.3 - 93) <D327EEFF-F2F5-39C4-B1EC-32E259DC04F1> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x97e04000 - 0x97e10ffd  com.apple.CrashReporterSupport (10.8.1 - 412) <9BBEBED1-DEDD-3258-A8CC-F46EC5CDD4F7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x97e14000 - 0x97e27ff9  com.apple.MultitouchSupport.framework (235.27 - 235.27) <75D9C0FD-6A40-3A9E-8861-C74DBE137CF3> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x97e82000 - 0x97e9ffff  com.apple.openscripting (1.3.5 - 148) <3460338D-B686-3C33-B322-DC8391668F8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x97ea0000 - 0x97eacffc  libkxld.dylib (2050.9.2) <301804CB-55F1-3A9B-BC45-DEB020C22C6F> /usr/lib/system/libkxld.dylib
    0x97eb7000 - 0x97ec1ffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <D3112172-D3A7-3C9A-825D-5630D47327D1> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x97ef4000 - 0x97f11fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x97f8f000 - 0x97fabff7  libPng.dylib (843) <43C3DD20-4BB2-3429-A40A-7FF9BC50E5FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97fac000 - 0x98095ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x98096000 - 0x9809aff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x9809b000 - 0x980a4ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x980f1000 - 0x9810efff  libxpc.dylib (140.37) <F61095FA-B2CF-3CD8-9088-9D9FC18B38BC> /usr/lib/system/libxpc.dylib
    0x9810f000 - 0x9824aff7  libBLAS.dylib (1073.3) <804B5AF7-2646-31D1-8875-FCCF158476D4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9824b000 - 0x982e3ff7  com.apple.CoreServices.OSServices (557 - 557) <F7CDD65A-3D2E-3AAE-BD55-4C604C9D1709> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x982e4000 - 0x982e5fff  libDiagnosticMessagesClient.dylib (7) <B2BC685E-C129-3F6B-9222-AF3CF4F186AC> /usr/lib/libDiagnosticMessagesClient.dylib
    0x982e6000 - 0x98313ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x98314000 - 0x98315fff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x985a8000 - 0x985cdff7  com.apple.CoreVideo (1.8 - 99.0) <7A90C337-4493-3393-9C56-75EB52112D75> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x985fd000 - 0x98665fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x98784000 - 0x9879dfff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9879e000 - 0x988eaff3  com.apple.CFNetwork (596.1 - 596.1) <DE5FA267-6E01-388E-9ADA-8764BE469C35> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x988ec000 - 0x98909ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x9890a000 - 0x98911fff  libsystem_dnssd.dylib (379.27.1) <B5CD3F39-7039-30CF-877D-FDF38A659E46> /usr/lib/system/libsystem_dnssd.dylib
    0x98912000 - 0x98912fff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x98913000 - 0x98946ff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x98947000 - 0x989a0ff7  com.apple.AE (645 - 645) <D4919967-EF16-36BA-9E8A-DA110DE8BB4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x989a1000 - 0x98a1dffb  com.apple.Metadata (10.7.0 - 707.1) <E18350AD-CAA9-3323-BDE9-63A688792C6C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x98a1e000 - 0x98a26fff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x98a27000 - 0x98a62fe7  libGLImage.dylib (8.5) <D2589E82-41ED-383D-9254-6D12A3A20644> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x98a63000 - 0x98a6efff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x98a6f000 - 0x98a75fff  libGFXShared.dylib (8.5) <7022CE54-70E9-33D3-B679-9A9BB6B2AABF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x98a76000 - 0x98a90ffc  libsystem_kernel.dylib (2050.9.2) <C6BA5A9F-08BB-3544-9A36-070DEDE92279> /usr/lib/system/libsystem_kernel.dylib
    0x98a91000 - 0x98b0bff7  com.apple.securityfoundation (6.0 - 55115.4) <7F614418-F853-3FED-B265-0EA47F309A49> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x98b0c000 - 0x98b21fff  com.apple.speech.synthesis.framework (4.1.10 - 4.1.10) <20E394D6-D9BA-3C1D-993A-533B60EF3B63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x98b22000 - 0x98bbcfff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x98bd5000 - 0x98ce2ffb  com.apple.ImageIO.framework (3.2.0 - 843) <4BFEFB05-3EE3-36A7-891D-CE03D1DF8125> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x98dc7000 - 0x98e9bff7  com.apple.backup.framework (1.4 - 1.4) <12123FB8-B42D-38B0-8463-6BA375C3C643> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x98e9c000 - 0x98ea4fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x98ea5000 - 0x98eacffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x98ead000 - 0x98f11fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x98f12000 - 0x98f15ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x98f16000 - 0x990fdffb  com.apple.CoreFoundation (6.8 - 744) <A2BB4949-264A-302B-897E-713860894FE6> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x99111000 - 0x991ceffb  libsystem_c.dylib (825.24) <7D90CAC5-EC98-35F8-A52E-81B54F0C7DCC> /usr/lib/system/libsystem_c.dylib
    0x991cf000 - 0x991d1fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x991d2000 - 0x99214ff7  com.apple.RemoteViewServices (2.0 - 80.3) <EE36AF6C-E574-3F48-9AC3-E8C8295739FF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x99215000 - 0x9921bfff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9921f000 - 0x99231ff7  libdispatch.dylib (228.18) <833C83BE-278C-353E-AC6D-9B85FAC50A1D> /usr/lib/system/libdispatch.dylib
    0x99232000 - 0x99247fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x994c5000 - 0x994eefff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x995e7000 - 0x9964eff7  com.apple.framework.IOKit (2.0 - 755.9.7) <CB976A7C-2601-3054-BC41-C3AD6896327C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9964f000 - 0x9967bff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x9a61f000 - 0x9a63dffb  com.apple.Ubiquity (1.2 - 234.2) <BEFF43DE-CF72-3E66-90C8-CAECAFD5F3ED> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 318
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=120.4M resident=73.0M(61%) swapped_out_or_unallocated=47.4M(39%)
    Writable regions: Total=92.1M written=1476K(2%) resident=1836K(2%) swapped_out=0K(0%) unallocated=90.3M(98%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                     96K
    CoreServices                       1472K
    MALLOC                             81.3M
    MALLOC guard page                    48K
    Memory tag=35                      7256K
    Stack                              66.5M
    VM_ALLOCATE                          56K
    __DATA                             5584K
    __DATA/__OBJC                       160K
    __IMAGE                             528K
    __IMPORT                              8K
    __LINKEDIT                         32.4M
    __OBJC                             1492K
    __PAGEZERO                            4K
    __TEXT                             88.0M
    __UNICODE                           544K
    mapped file                        99.4M
    shared memory                       308K
    ===========                      =======
    TOTAL                             384.8M
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.4 GHz, 16 GB, SMC 1.69f3
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1333 MHz, 0x859B, 0x43543130323436344246313333392E4D3136
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1333 MHz, 0x859B, 0x43543130323436344246313333392E4D3136
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.81.21)
    Bluetooth: Version 4.0.9f8 10405, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS31N
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0253, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

    For anybody whomay stumble across this post- it is an addendum to the originalpost
    Just to be sure  it is an APPLE SOFTWARE ISSUE - ProbablySafari---I used my mac mini ( with mountain lion ) and-- it too drops wifi-- and the end  result is
    SAFARI CANNOT CONNECT TO SERVER lol
    the app store hangs and hangs and hangs
    as it does my macbook pro -- they  BOTH have to be restarted-- then it is okay for a little while
    THIS IS SO ANNOYING  ha ha-- in this instance caps does mean I am yelling lol

  • How to insert data into the mysql table by giving as a text file

    Hi,
    Any one know's how to insert data into the mysql table by giving as a text file as the input in JSP.Please respond ASAP.
    Thanks:)

    At least you can try StringTokenizer to parse your text files. Or download a text JDBC driver to parse your files, for instance, HXTT Text(www.hxtt.net) or StelsCSV(www.csv-jdbc.com).

  • Everything is updated!!  iPhone, iPad, iTunes and MacBook Pro...  All I am trying to do is drag content from my iTunes Library to the devices.  iTunes gets stuck EVERY single time!  What usually triggers the Non-Sense is when I am adding a 2nd file!

    Everything is updated!!  iPhone, iPad, iTunes and MacBook Pro...  All I am trying to do is drag content from my iTunes Library to the devices.  iTunes gets stuck EVERY single time!  What usually triggers the Non-Sense is when I am adding a 2nd file!
    Why does iTunes SUCK??
    1) Many items greyed out in the menu bar, for well over 2 years, maybe more!
    2) I Can't drag more than one piece of content from your iTunes library to any device (iPhone, iPad)
    If you do it gets stuck for HOURS and HOURS in "Preparing To Update" and the little activity circle never completes, ever!!
    I used to be able to drag over 1000 tunes, movies, etc. go have breakfast come back and it would all be on my device!!
    Can't do it anymore, one song at a time, maybe an album at a time, or one movie, and that is it!!
    If you do a 2nd item the other items stop loading and never continue!!
    This is so BAD, I don't understand how they don't have this fixed yet!!
    Please tell me I am not the only one!!
    ...and If I am tell me how to fix it!
    Very appreciated,
    Joe

    Everything is updated!!  iPhone, iPad, iTunes and MacBook Pro...  All I am trying to do is drag content from my iTunes Library to the devices.  iTunes gets stuck EVERY single time!  What usually triggers the Non-Sense is when I am adding a 2nd file!
    Why does iTunes SUCK??
    1) Many items greyed out in the menu bar, for well over 2 years, maybe more!
    2) I Can't drag more than one piece of content from your iTunes library to any device (iPhone, iPad)
    If you do it gets stuck for HOURS and HOURS in "Preparing To Update" and the little activity circle never completes, ever!!
    I used to be able to drag over 1000 tunes, movies, etc. go have breakfast come back and it would all be on my device!!
    Can't do it anymore, one song at a time, maybe an album at a time, or one movie, and that is it!!
    If you do a 2nd item the other items stop loading and never continue!!
    This is so BAD, I don't understand how they don't have this fixed yet!!
    Please tell me I am not the only one!!
    ...and If I am tell me how to fix it!
    Very appreciated,
    Joe

  • Insert data into the xml schema-based xmltype table problem!

    Hello, there,
    I got problem in inserting data into the xmltype table after registered XML schema and created table. details see below:
    1) xml schema:
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- edited with XMLSpy v2007 sp2 (http://www.altova.com) by Constantin Ilea (EMERGIS INC) -->
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.emergis.com/eHealth/EHIP/data/meta/profile:v1" targetNamespace="http://www.emergis.com/eHealth/EHIP/data/meta/profile:v1" elementFormDefault="qualified">
         <!-- ************** PART I: BEGIN SIMPLE OBJECT TYPE DEFINITIONS ********************************** -->
         <xs:simpleType name="RoutingType">
              <xs:restriction base="xs:string">
                   <xs:enumeration value="Synch"/>
                   <xs:enumeration value="Asynch"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:simpleType name="StatusType">
              <xs:restriction base="xs:string">
                   <xs:enumeration value="ACTIVE"/>
                   <xs:enumeration value="VOID"/>
                   <xs:enumeration value="PENDING"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:simpleType name="SenderApplicationType">
              <xs:restriction base="xs:string">
                   <xs:enumeration value="PR"/>
                   <xs:enumeration value="CR"/>
                   <xs:enumeration value="POS"/>
                   <xs:enumeration value="CPP"/>
                   <xs:enumeration value="Other"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:simpleType name="ServiceTypeType">
              <xs:restriction base="xs:string">
                   <xs:enumeration value="IS"/>
                   <xs:enumeration value="WS"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:simpleType name="RouteDirect">
              <xs:restriction base="xs:string">
                   <xs:enumeration value="Request"/>
                   <xs:enumeration value="Reply"/>
                   <xs:enumeration value="None"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:simpleType name="Indicator">
              <xs:annotation>
                   <xs:documentation>can we also change the value to "ON" and "OFF" instead? in this way this cn be shared by all type of switch indicator</xs:documentation>
              </xs:annotation>
              <xs:restriction base="xs:string">
                   <xs:enumeration value="YES"/>
                   <xs:enumeration value="NO"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:simpleType name="RuleType">
              <xs:restriction base="xs:string">
                   <xs:enumeration value="ControlAct"/>
                   <xs:enumeration value="WSPolicy"/>
                   <xs:enumeration value="AccessControl"/>
                   <xs:enumeration value="Certification"/>
                   <xs:enumeration value="MessageConformance"/>
                   <xs:enumeration value="Variant"/>
                   <xs:enumeration value="Routing"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:simpleType name="HL7Result">
              <xs:restriction base="xs:string">
                   <xs:enumeration value="ACCEPT"/>
                   <xs:enumeration value="REFUSE"/>
                   <xs:enumeration value="REJECT"/>
                   <xs:enumeration value="ACK"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:simpleType name="IIPType">
              <xs:restriction base="xs:string">
                   <xs:enumeration value="PUT"/>
                   <xs:enumeration value="GET/LIST"/>
                   <xs:enumeration value="NOTIF"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:simpleType name="ProfileTypeType">
              <xs:restriction base="xs:string">
                   <xs:enumeration value="IIPProfile"/>
                   <xs:enumeration value="BizOperationProfile"/>
                   <xs:enumeration value="OrchestrationProfile"/>
                   <xs:enumeration value="DomainObjectProfile"/>
                   <xs:enumeration value="ServiceProfile"/>
                   <xs:enumeration value="ExceptionProfile"/>
                   <xs:enumeration value="CustomizedProfile"/>
                   <xs:enumeration value="SystemProfile"/>
                   <xs:enumeration value="HL7XMLSchemaProfile"/>
                   <xs:enumeration value="EnricherParametersProfile"/>
              </xs:restriction>
         </xs:simpleType>
         <xs:simpleType name="ParameterType">
              <xs:restriction base="xs:string">
                   <xs:enumeration value="String"/>
                   <xs:enumeration value="Object"/>
                   <xs:enumeration value="Number"/>
                   <xs:enumeration value="Document"/>
              </xs:restriction>
         </xs:simpleType>
         <!-- ************** PART I: END SIMPLE OBJECT TYPE DEFINITIONS ********************************** -->
         <!-- ************** PART II: BEGIN COMPLEX OBJECT TYPE DEFINITIONS ********************************** -->
         <!-- *********************** begin new added objects, by rshan *************************************** -->
         <xs:complexType name="ProfileType">
              <xs:annotation>
                   <xs:documentation>
              1.Profile IS USED TO BE AN WRAPPER ELEMENT FOR ALL KIND OF PROFILES NO MATTER WHAT KIND OF PROFILE IT IS
              2.ProfileID used to uniquely identify the current profile
              3.ProfileData used to hold all the necessary profile related data
              </xs:documentation>
              </xs:annotation>
              <xs:sequence>
                   <xs:element name="ProfileID" type="ProfileIDType">
                        <xs:annotation>
                             <xs:documentation>this will hold all the common attributes, espically the global unique identifier to the profile, no matter what type of profile is</xs:documentation>
                        </xs:annotation>
                   </xs:element>
                   <xs:element name="ProfileData" type="ProfileDataType">
                        <xs:annotation>
                             <xs:documentation>all the non-common profile meta data that attached to each specific profile type such as IIPProfile, OrchestrationProfile, and BizOperationProfile will be placed here</xs:documentation>
                        </xs:annotation>
                   </xs:element>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="ProfileIDType">
              <xs:annotation>
                   <xs:documentation>global unique identifier and all the common attributes across all different profiles, the @ID and @Type together will be used as the primary key to identify the profile data</xs:documentation>
              </xs:annotation>
              <xs:attribute name="ID" type="xs:ID" use="required">
                   <xs:annotation>
                        <xs:documentation>ID is the global unique identifier to the profile, no matter what type of profile it is</xs:documentation>
                   </xs:annotation>
              </xs:attribute>
              <xs:attribute name="Name"/>
              <xs:attribute name="Description"/>
              <xs:attribute name="Version">
                   <xs:annotation>
                        <xs:documentation>version of the profile data</xs:documentation>
                   </xs:annotation>
              </xs:attribute>
              <xs:attribute name="Type" type="ProfileTypeType" use="required">
                   <xs:annotation>
                        <xs:documentation>value to identify the ProfileType type within
                        IIPProfile,BizOperationProfile,OrchestrationProfile,DomainObjectProfile
                        ServiceProfile,ExceptionProfile,SystemProfile,HL7XMLSchemaProfile,
                        EnricherParametersProfile,CustomizedProfile
                        </xs:documentation>
                   </xs:annotation>
              </xs:attribute>
              <xs:attribute name="Status" type="StatusType" default="ACTIVE">
                   <xs:annotation>
                        <xs:documentation>used to show the related profile data status like "ACTIVE","PENDING","VOID"...</xs:documentation>
                   </xs:annotation>
              </xs:attribute>
              <!--
              <xs:sequence>
                   <xs:element name="ProfileReference" type="ProfileIDType" minOccurs="0" maxOccurs="unbounded">
                        <xs:annotation>
                             <xs:documentation>this will be the place to hold the integrity relationship with other profiles like foreign key if existed and necessary to show up</xs:documentation>
                        </xs:annotation>
                   </xs:element>
              </xs:sequence>
              -->
         </xs:complexType>
         <xs:complexType name="ProfileDataType">
              <xs:annotation>
                   <xs:documentation>meta data associated tightly to each specific type of profile</xs:documentation>
              </xs:annotation>
              <xs:choice>
                   <xs:element name="EnricherParametersProfileData" type="EnricherParametersDataType">
                        <xs:annotation>
                             <xs:documentation>Enricher Parameters related profile data
                   1. one instance of this type may contains all the related System metadata.
                   2. idType part may use to identify different version/release/status
                   </xs:documentation>
                        </xs:annotation>
                   </xs:element>
                   <xs:element name="ExtendProfileData" type="ExtendProfileDataType">
                        <xs:annotation>
                             <xs:documentation>If needed, any profile data not defined within the current release scope can be added here </xs:documentation>
                        </xs:annotation>
                   </xs:element>
              </xs:choice>
         </xs:complexType>
         <xs:complexType name="ExtendProfileDataType">
              <xs:sequence>
                   <xs:element name="ExtendProfile" type="xs:anyType" minOccurs="0"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="EnricherParametersDataType">
              <xs:sequence>
                   <xs:element name="EnricherParameter" type="EnricherParameter" maxOccurs="unbounded"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="EnricherParameter">
              <xs:sequence>
                   <xs:element ref="Enricher"/>
              </xs:sequence>
              <xs:attribute name="serviceName" type="xs:string" use="required"/>
              <xs:attribute name="interactionID" type="xs:string"/>
         </xs:complexType>
         <xs:element name="Enricher">
              <xs:annotation>
                   <xs:documentation>Comment describing your root element</xs:documentation>
              </xs:annotation>
              <xs:complexType>
                   <xs:sequence>
                        <xs:element name="Parameters" type="Parameters"/>
                        <xs:element ref="Section" maxOccurs="unbounded"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:complexType name="ValueType">
              <xs:attribute name="field" use="required"/>
              <xs:attribute name="value"/>
              <xs:attribute name="action"/>
         </xs:complexType>
         <xs:element name="Section">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element name="Value" type="ValueType" minOccurs="0" maxOccurs="unbounded"/>
                        <xs:element ref="Section" minOccurs="0" maxOccurs="unbounded"/>
                   </xs:sequence>
                   <xs:attribute name="path" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:complexType name="Parameters">
              <xs:sequence>
                   <xs:element name="Parameter" minOccurs="0" maxOccurs="unbounded">
                        <xs:complexType>
                             <xs:attribute name="name" use="required"/>
                             <xs:attribute name="reference"/>
                        </xs:complexType>
                   </xs:element>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="RuleList">
              <xs:annotation>
                   <xs:documentation>an array of rules</xs:documentation>
              </xs:annotation>
              <xs:sequence>
                   <xs:element name="Rule" type="RuleProfile" minOccurs="0" maxOccurs="unbounded"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="RuleProfile">
              <xs:attribute name="RName" use="required"/>
              <xs:attribute name="RType" type="RuleType" use="required"/>
              <xs:attribute name="Status" default="ON">
                   <xs:annotation>
                        <xs:documentation>By default is ON (or if is missing)</xs:documentation>
                   </xs:annotation>
              </xs:attribute>
              <xs:attribute name="Order"/>
              <xs:attribute name="Direction" type="RouteDirect">
                   <xs:annotation>
                        <xs:documentation>Request / Reply</xs:documentation>
                   </xs:annotation>
              </xs:attribute>
         </xs:complexType>
         <!-- ************** PART II: END COMPLEX OBJECT TYPE DEFINITIONS *********************************** -->
         <!-- ************** PART III: BEGIN ROOT ELEMENTS DEFINITIONS ********************************* -->
         <!-- 0) Profile wrapper root element
    Profile IS USED TO BE AN WRAPPER ELEMENT FOR ALL KIND OF PROFILES NO MATTER WHAT KIND OF PROFILE IT IS
    -->
         <xs:element name="Profile" type="ProfileType">
              <xs:annotation>
                   <xs:documentation>Profile IS USED TO BE AN WRAPPER ELEMENT FOR ALL KIND OF PROFILES NO MATTER WHAT KIND OF PROFILE IT IS</xs:documentation>
              </xs:annotation>
         </xs:element>
    </xs:schema>
    2)register xml schema:
    SQL> begin
    2 dbms_xmlschema.registerSchema
    3 (
    4 schemaurl=>'http://rac3-1-vip:8080/home/'||USER||'/xsd/EHIPProfile_v00.xsd',
    5 schemadoc=>xdbURIType('/home/'||USER||'/xsd/EHIPProfile_v00.xsd').getClob(),
    6 local=>True,
    7 gentypes=>True,
    8 genbean=>False,
    9 gentables=>False
    10 );
    11 End;
    12 /
    PL/SQL procedure successfully completed.
    SQL>
    SQL>
    3) xml data:
    <?xml version="1.0" encoding="UTF-8"?>
    <!--Sample XML file generated by XMLSpy v2007 sp2 (http://www.altova.com)-->
    <Profile xmlns="http://www.emergis.com/eHealth/EHIP/data/meta/profile:v1">
         <ProfileID Type="EnricherParametersProfile" Status="ACTIVE" ID="EnricherPP.ID.0001" Name="EnricherPP.ID.0001" Description="EnricherPP.ID.0001" Version="01"/>
         <ProfileData>
              <EnricherParametersProfileData>
                   <EnricherParameter serviceName="LRS_BusinessDomainObject.lrs.businessDomainObject.domainObjectBuilder.concrete.ExceptionCreators:createExceptionV50CategoryCanonicalPart" interactionID="">
                   <Enricher>
                        <Parameters>
                             <Parameter name="MESSAGE_ID" reference="test"/>
                        </Parameters>
                        <Section path="HEADER">
                             <Section path="RESPONSE_TYPE">
                                  <Value field="value" value="I"/>
                             </Section>
                             <Section path="HL7_STANDARD_VERSION">
                                  <Value field="value" value="HL7V3"/>
                             </Section>
                             <Section path="DESIRED_ACKNOWLEDGMENT_TYPE">
                                  <Value field="value" value="NE"/>
                             </Section>
                             <Section path="SENDING_NETWORK_ADDRESS">
                                  <Value field="value" value=""/>
                             </Section>
                             <Section path="SENDING_APPLICATION_IDENTIFIER">
                                  <Value field="root" value="2.16.840.1.113883.3.133.1.3"/>
                                  <Value field="extension" value=""/>
                             </Section>
                             <Section path="SENDING_APPLICATION_NAME">
                                  <Value field="value" value="NL HIAL"/>
                             </Section>
                        </Section>
                   </Enricher>
         </EnricherParameter>
              <EnricherParameter serviceName="LRS_BusinessDomainObject.lrs.businessDomainObject.domainObjectBuilder.concrete.DomainObjectCreators:createFindClientsAssociatedIdentifersRequestObject" interactionID="PRPA_IN101105CA">
                   <Enricher>
                        <Parameters>
                             <Parameter name="MESSAGE_ID" reference="test"/>
                        </Parameters>
                        <Section path="HEADER">
                             <Section path="RESPONSE_TYPE">
                                  <Value field="value" value="I"/>
                             </Section>
                             <Section path="HL7_STANDARD_VERSION">
                                  <Value field="value" value="HL7V3"/>
                             </Section>
                             <Section path="PROCESSING_CODE">
                                  <Value field="value" value="T"/>
                             </Section>
                             <!--
                             <Section path="PROCESSING_MODE_CODE">
                                  <Value field="value" value="T"/>
                             </Section>
                             -->                         
                             <Section path="DESIRED_ACKNOWLEDGMENT_TYPE">
                                  <Value field="value" value="NE"/>
                             </Section>
                             <Section path="RECEIVER_NETWORK_ADDRESS">
                                  <Value field="value" value="prsunew.moh.hnet.bc.ca"/>
                             </Section>
                             <Section path="RECEIVER_APPLICATION_IDENTIFIER">
                                  <Value field="root" value="2.16.840.1.113883.3.40.5.1"/>
                                  <Value field="extension" value=""/>
                             </Section>
                             <Section path="SENDING_NETWORK_ADDRESS">
                                  <Value field="value" value=""/>
                             </Section>
                             <Section path="SENDING_APPLICATION_IDENTIFIER">
                                  <Value field="root" value="2.16.840.1.113883.3.133.1.3"/>
                                  <Value field="extension" value=""/>
                             </Section>
                             <Section path="SENDING_APPLICATION_NAME">
                                  <Value field="value" value="NL HIAL"/>
                             </Section>
                        </Section>
                   </Enricher>
         </EnricherParameter>
              <EnricherParameter serviceName="LRS_BusinessDomainObject.lrs.businessDomainObject.domainObjectBuilder.concrete.DomainObjectContentEnrichers:enrichPRRequest" interactionID="">
    <!--Sample XML file generated by XMLSpy v2007 sp2 (http://www.altova.com)-->
    <Enricher>
         <Parameters>
              <Parameter name="MESSAGE_IDENTIFIER" reference="test"/>
         </Parameters>
         <Section path="HEADER">
              <Section path="HL7_STANDARD_VERSION">
                   <Value field="value" value="V3PR2"/>
              </Section>
              <!--POS/CPP populated ?-->
              <!--Not sure if this should be set as a variance within EHIP or if we expect the POS/CPP to provide this value-->
              <Section path="PROCESSING_CODE">
                   <Value field="value" value="T"/>
              </Section>
              <!--POS/CPP populated ?-->
              <Section path="PROCESSING_MODE_CODE">
                   <Value field="value" value="T"/>
              </Section>
              <!--POS/CPP populated ?-->
              <Section path="DESIRED_ACKNOWLEDGMENT_TYPE">
                   <Value field="value" value="NE"/>
              </Section>
              <!-- note:We Expect PRS to give us a web service address -->                    
              <!--<Section path="RECEIVER_NETWORK_ADDRESS">
                   <Value field="value" value="_http://PRSServer/svcName"/>
              </Section>
              -->
              <Section path="RECEIVER_APPLICATION_IDENTIFIER[0]">
                   <Value field="root" value="2.16.840.1.113883.3.40.1.14"/>
                   <Value field="extension" value="SIT1"/>
              </Section>
              <!-- note: values of the fields to be provided by PRS -->
              <Section path="RECEIVER_APPLICATION_NAME[0]">
                   <Value field="value" value="receiverAppName"/>
              </Section>
              <!-- note: RECEIVER_ORGANIZATION has an extra trailing space, as in the Excel mapping spreadsheet -->
              <!-- note: values of the fields to be specified by PRS later -->
              <Section path="RECEIVER_AGENT/RECEIVER_ORGANIZATION/RECEIVER_ORGANIZATION_IDENTIFIER[0]">
                   <Value field="root" value="2.16.840.1.113883.3.40.4.1"/>
                   <Value field="extension" value="receiverOrgId"/>
              </Section>
              <Section path="SENDING_APPLICATION_NAME[0]">
                   <Value field="value" value="NLPRSCLNT"/>
              </Section>
              <!-- note: SENDING_ORGANIZATION has an extra trailing space, as in the Excel mapping spreadsheet -->
              <!-- note: values of the fields to be specified by PRS later -->
              <Section path="SENDING_AGENT/SENDING_ORGANIZATION/SENDING_ORGANIZATION_IDENTIFIER[0]">
                   <Value field="root" value="2.16.840.1.113883.4.3.57"/>
                   <Value field="extension" value="3001"/>
              </Section>
              <Section path="PERFORMER/HEALTHCARE_WORKER_IDENTIFIER[0]">
                   <Value field="root" value="2.16.840.1.113883.4.3.57"/>
                   <Value field="extension" value="HIAL_USR"/>
              </Section>          
         </Section>
         <Section path="PAYLOAD">
              <!--<Section path="QUERY_STATUS_CODE">
                   <Value field="value" value="New"/>
              </Section>-->
              <!-- note: AUDIT has an extra trailing space, as in the Excel mapping spreadsheet -->
              <Section path="AUDIT[0]/AUDIT_INFORMATION">
                   <Value field="code" value="LATEST"/>
                   <Value field="codeSystem" value="PRSAuditParameters"/>
              </Section>
              <!-- note: CONFIDENCE has an extra trailing space, as in the Excel mapping spreadsheet -->
              <Section path="CONFIDENCE/CONFIDENCE_VALUE">
                   <Value field="value" value="100"/>
              </Section>
              <!-- note: HISTORY has an extra trailing space, as in the Excel mapping spreadsheet -->
              <Section path="HISTORY/INCLUDE_HISTORY_INDICATOR">
                   <Value field="value" value="false"/>
              </Section>
              <!-- note: JURISDICTION has an extra trailing space, as in the Excel mapping spreadsheet -->
              <Section path="JURISDICTION/JURISDICTION_TYPE">
                   <Value field="value" value="NL"/>
              </Section>
              <!-- note: RESPONSE_OBJECT has an extra trailing space, as in the Excel mapping spreadsheet -->
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[0]">
                   <Value field="code" value="GRS_ADDRESS"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[1]">
                   <Value field="code" value="GRS_ELECTRONIC_ADDRESS"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[2]">
                   <Value field="code" value="GRS_IDENTIFIER"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[3]">
                   <Value field="code" value="GRS_ORGANIZATION_NAME"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[4]">
                   <Value field="code" value="GRS_PERSONAL_NAME"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[5]">
                   <Value field="code" value="GRS_REGISTRY_IDENTIFIER"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[6]">
                   <Value field="code" value="GRS_TELEPHONE"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[7]">
                   <Value field="code" value="PRS_CONDITION"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[8]">
                   <Value field="code" value="PRS_CONFIDENTIALITY_INDICATOR"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[9]">
                   <Value field="code" value="PRS_DEMOGRAPHIC_DETAIL"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[10]">
                   <Value field="code" value="PRS_DISCIPLINARY_ACTION"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[11]">
                   <Value field="code" value="PRS_INFORMATION_ROUTE"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[12]">
                   <Value field="code" value="PRS_NOTE"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[13]">
                   <Value field="code" value="PRS_PROVIDER_CREDENTIAL"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[14]">
                   <Value field="code" value="PRS_PROVIDER_EXPERTISE"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[15]">
                   <Value field="code" value="PRS_PROVIDER_RELATIONSHIP"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[16]">
                   <Value field="code" value="PRS_STATUS"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[17]">
                   <Value field="code" value="PRS_WORK_LOCATION"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[18]">
                   <Value field="code" value="PRS_WORK_LOCATION_ADDRESS"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[19]">
                   <Value field="code" value="PRS_WORK_LOCATION_DETAIL"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[20]">
                   <Value field="code" value="PRS_WORK_LOCATION_ELECTRONIC_ADDRESS"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[21]">
                   <Value field="code" value="PRS_WORK_LOCATION_INFORMATION_ROUTE"/>
              </Section>
              <Section path="RESPONSE_OBJECT[0]/PROVIDER_QUERY_RESPONSE_OBJECT[22]">
                   <Value field="code" value="PRS_WORK_LOCATION_TELEPHONE"/>
              </Section>
              <!-- note: ROLE_CLASS has an extra trailing space, as in the Excel mapping spreadsheet -->
              <Section path="ROLE_CLASS /ROLE_CLASS_VALUE">
                   <Value field="value" value="LIC"/>
              </Section>
              <Section path="SORT_CONTROL[0]/SORT_CONTROL_ELEMENT_NAME">
                   <Value field="code" value="PrincipalPerson.name.value.family"/>
              </Section>
              <Section path="SORT_CONTROL[0]/SORT_CONTROL_DIRECTION_CODE">
                   <Value field="value" value="A"/>
              </Section>
         </Section>
    </Enricher>
         </EnricherParameter>
              </EnricherParametersProfileData>
         </ProfileData>
    </Profile>
    the data is valid against the schema through XML Spy tool... and loaded into the XDB repository...
    4) create table and insert data:
    SQL> CREATE TABLE EHIP_PROFILE OF SYS.XMLTYPE
    2 XMLSCHEMA "http://rac3-1-vip:8080/home/EHIPSBUSER1/xsd/EHIPProfile_v00.xsd" ELEMENT "Profile"
    3 ;
    Table created.
    SQL>
    SQL> alter table EHIP_PROFILE
    2 add CONSTRAINT EHIP_PROF_PK PRIMARY KEY(XMLDATA."ProfileID"."ID",XMLDATA."ProfileID"."Type");
    Table altered.
    SQL>
    SQL>
    SQL>
    SQL>
    SQL> select xdbURIType('/home/'||USER||'/ProfileData/EnricherPP.ID.0001.xml').getClob() from dual;
    XDBURITYPE('/HOME/'||USER||'/PROFILEDATA/ENRICHERPP.ID.0001.XML').GETCLOB()
    <?xml version="1.0" encoding="UTF-8"?>
    <!--Sample XML file generated by XMLSpy
    SQL>
    SQL>
    SQL> insert into ehip_profile values(xmltype.createXML(xdbURIType('/home/'||USER||'/ProfileData/EnricherPP.ID.0001.xml').getClob()));
    insert into ehip_profile values(xmltype.createXML(xdbURIType('/home/'||USER||'/ProfileData/EnricherPP.ID.0001.xml').getClob()))
    ERROR at line 1:
    ORA-21700: object does not exist or is marked for delete
    what's the problem caused the "ORA-21700: object does not exist or is marked for delete" error?
    Thanks in advance for your help?

    Thanks Marco,
    Here're my environment:
    SQL> select INSTANCE_NUMBER, INSTANCE_NAME,HOST_NAME,VERSION from v$instance;
    INSTANCE_NUMBER INSTANCE_NAME HOST_NAME VERSION
    2 rac32 RAC3-2 10.2.0.3.0
    I followed your suggested in the above, and always purge recyclebin, but still got the same problem. because in 10gr2, there's no dbms_xmlschema.purge_schema available,
    and I did checked the recyclebin after force the delete of schema, nothing inside. any other recommendation?

  • ITunes could not copy "insert song" to the iphone "insert name of iphone" because the file could not be read

    It's about time i posted something about my problem because i've searched everywhere and I did not get the answer i wanted.
    When i try to put a song (Drag and Drop) from my Library to my Iphone, the message "iTunes could not copy "insert song" to the iphone "insert name of iphone" because the file could not be read" shows up. I have no idea how to fix this, I haven't seen apple answer to a single one of these threads either.
    I've only seen users try to answer this question.
    Anyways, when i put the songs on my Iphone, it is also grayed out. There is also a dotted circle (symbol) beside the checkmark of the song.
    I've tried creating a AAC version of all the songs already. No luck
    Please help
    meetobin

    Two possibilities come to mind.
    Check your source hard drive for errors, right-click on the drive holding the library, click Properties, tools, check for errors, scan for and attempt recovery of bad sectors...
    Or...
    Repair Security Permissions
    Right-click on your main iTunes folder and click Properties, then go to the Security tab and click Advanced. If necessary grant your account and SYSTEM full control of this folder, subfolders and files, then tick the option to replace permissions on child objects which will repair permissions throughout the library. This is the XP dialog but Windows 7 shouldn't be too different.
    If it won't let you change the permissions use the Owner tab to take ownership from an account with administrator privileges.
    tt2

  • Error during loading of transaction data: An RFC call-up triggered the ...

    Dear Sirs,
    during loading of master data from a 4.6C SAP system to BI 7.0 SP9 I get the following error during processing (data packet).
    <i>"An RFC call-up triggered the exception (ID: RSAR NO: 503) "</i>
    The strange thing with this error is that it emerged today, after successfully loading master data and a subset of transaction data yesterday from same source system.
    Has anyone else come across this error, and can tell us where we should look for a possible solution? (or a better error explaination).
    The RFC connections works fine when testing in SM59, and was functioning yesterday. No relevant dumps in either system.

    Hi folks,
    I am also interested in this error.
    Thanks.

  • Inserting records in the table

    Hi All,
    I am working on a report where we are inserting huge numbers of records from an internal table to the ztable, I have been advised that rather than inserting all the records at one time we should divide the recods into small blocks may be let's say 100,000 of each block and try inserting the blocks in the ztable. So I was just wondering if anyone of you can help me with this how can I get this?
    my internal table is it_data_table and my ztable is z_data_table.
    Thanks,
    Rajeev

    Hi,
    Rather than inserting records from the workarea it is better if you use the inetrnal table for insertion. If youu have say 50025 records than it will hit the database that many times which definitely is a performance issue.If you have an internal table say 'it' and another internal table 'it_temp' with a similiar structure, you can try something like as follows
    loop at it.
      count = count + 1.
      it_temp = it.
      append it_temp.
      if count = 10000.
        insert ztable from table it_temp accepting duplicate keys.  "to avoid a dump if there are duplicates count = 0.
        refresh it_temp.
      endif.
    endloop.
    if it_temp is not initial.
      insert ztable from table it_temp accepting duplicate keys.
    endif.
    In the above code the loop will run the number of record times but, the insert statement will run only 50025/10000 times (i.e, 5 times). After the completion of the loop we need to add the remaining 25 records (because insert will work last inside the loop when 50000 records are reached), for that we will issue the insert statement after completion of the loop, after checking the it_temp table. So the total of 50025 records would be entered in a batch of 6 inserts rather than that many inserts if using just the workarea.
    I hope this does help you in your issue.
    Thanks and Regards,
    Sachin.

  • How to insert text in the middle of an existing textfile using java

    Hi,
    How to insert text in the middle of an existing textfile using java i/o streams??

    Mickie wrote:
    I shudn't delete the file...Then you will have the old file and the new file - do you want that?
    and I have to insert text not only at a single place ....got to do at many places in the text file!!then extrapolate on the procedure outlined in reply #1 .

Maybe you are looking for

  • Can you run Edirol / Focusrite firewire interfaces at the same time?

    Hey Guys, I have an Edirol FA-101 but i'm just about to get a Focusrite Saffire (or maybe a Motu 8pre...haven't decided yet) and was wondering if I can run the 2 interfaces at the same time for more inputs...i know i can chain 2 of the edirol ones bu

  • I can see the songs on my computer, but I can't play them!

    Rather than being in "bold" typeface, the songs are not bolded, and I cannot click on any of them. They are on my iPod, but I cannot do anything with them on my computer (and thus cannot create playlists). Any thoughts?

  • IWeb bugs

    I designed my website on IWeb06. I published my website and it was perfect. I decided to upgrade to IWeb08 for the added features.... What a mistake!!! The following problems arose: 1. All my fonts suddenly had conflicts (apostrophes and accents were

  • Linking does not work (queries)

    Hello, I have this query: (it is not a real one, but a simplified one). Select cardcode, cardname from ocrd SAP shows the list of BP and it is possible to navigate to the BPs (because the link arrows appear in the result). But, now I have this query:

  • Automatically open in Preview script wont work on 10.6

    Trying to take pictures with an Eye-Fi card and have them automatically open full size in Preview upon uploading. The script I have works just fine for my iMac running 10.5, but not at all on my iMac running 10.6. The script works fine if I physicall