Native sequencing - What happened to getSequenceNumberNamed() ?

Hi,
The TL FAQ is stating that:
"If you want the sequence number assigned at the creation time:
1. Create your new object and assign it its identifier by using the following protocol:
Number nextID = session.getPlatform().getSequenceNumberNamed ("SEQ_NAME", session, "SESSION_NAME");"
Okay but I didn't find any "getSequenceNumberNamed" having this signature. What happened to it ?
The FAQ is also saying: "Note that this is not a public API protocol, although it is publicly accessible". How ?
Many thanks in advance,
Nicolas

I just checked through the source code (did you know that TopLink has always shipped source code?) See source.zip in the lib directories... I looked at the DatabasePlatform class, and you're right -- in 903 that method is there, but it was removed in 904. I'll check with Engineering to see if they have alternate suggestions.
- Can you post the link to the FAQ you saw with this suggestion? I want to make sure it's not accidentally in a 904+ FAQ.
- Note that we try extremely hard not to deprecate API to make migration easier. Some methods we flag in the Javadoc as "internal", yet they are still public. They don't show up in the Java doc. That means that advanced users could potentially use these API in a pickle (with help from code-completion tools/consulting/FAQ's/etc), but that we reserve the right to change the API without deprecating it since it's practically internal API...
- Don

Similar Messages

  • What happens to previews in nested sequences?

    For the sake of keeping this simple, If I were to have a
    main/master sequence comprised of
    2 nested sequences
    When I render (preview) out one of my nested sequences (not just effects, but the entire work area), why don't I see my timline turn green on my main/master sequence?  It seems to stay yellow or red.
    I have all the sequences set to render the same (Cineform High-HD).
    I want to save time on final renders by using the preview files, but are they even available if I haven't previewed on my main/master sequence?  If I did preview rendering on any sequence deeper inside the master, do those even get used or does Premiere ignore them?
    I rarely would preview out an entire master sequence.  Most likely, as the projects are never as simple as my above scenario, I have some nests that go 10 deep.  Sometimes the best place to do the render preview is 5 nested sequences deep. 
    What happens to the preview files on nested comps?  When you turn on "use render previews" when exporting, does Premiere dig deep through all the nested sequences to utilize that info?

    Bummer.  So they are essentially useless unless you can build a complicated 30-minute TV show on only one single sequence (which would be a total mess).

  • Oracle native sequencing: nextVal executed two times.

    We are migrating from Weblogic 6.1 sp 5 & TopLink 3.6.3 to Weblogic 8.1 sp 2 & TopLink 9.0.4 and we are having this issue:
    It seems that when assigning the sequence to new objets TopLink execs the nextVal for the sequence twice. In fact we probably wouldn't notticed it if it was just that, the problem is that TopLink seems to register the object into the cache with an oid and assigning the next one to the object stored in the database so we are getting NoSuchObjectException each time we try to access them.
    Here is a dump of TopLink's log showing the problem:
    [TopLink]: ServerSession(22807116)--Connection(0)--client acquired
    [TopLink]: ClientSession(25858791)--Connection(0)--acquire unit of work: 10772417
    [TopLink]: UnitOfWork(10772417)--Connection(0)--JTS register
    [TopLink]: ServerSession(22807116)--Connection(17740413)--SELECT SEQ_BOOK.NEXTVAL FROM DUAL
    [TopLink]: ServerSession(22807116)--Connection(17558511)--SELECT SEQ_PAGE.NEXTVAL FROM DUAL
    [TopLink]: UnitOfWork(10772417)--Connection(0)--Before JTS Completion
    [TopLink]: UnitOfWork(10772417)--Connection(25919386)--Begin batch statements
    [TopLink]: UnitOfWork(10772417)--Connection(25919386)--INSERT INTO AUTHOR (NAME, OCA, OID) VALUES (?, ?, ?)
    [TopLink]: UnitOfWork(10772417)--Connection(0)-- bind => [Roger Penrose, 2004-05-11 18:54:01.917, 442803]
    [TopLink]: UnitOfWork(10772417)--Connection(25919386)--End Batch Statements
    [TopLink]: ClientSession(25858791)--Connection(25919386)--Begin batch statements
    [TopLink]: ClientSession(25858791)--Connection(25919386)--INSERT INTO BOOK (NAME, OCA, OID, OID_AUTHOR) VALUES (?, ?, ?, ?)
    [TopLink]: ClientSession(25858791)--Connection(0)-- bind => [The Emperor's New Mind, 2004-05-11 18:54:01.92, 347404, 442803]
    [TopLink]: ClientSession(25858791)--Connection(0)-- bind => [Shadows of the Mind, 2004-05-11 18:54:01.943, 347405, 442803]
    [TopLink]: ClientSession(25858791)--Connection(25919386)--End Batch Statements
    [TopLink]: UnitOfWork(10772417)--Connection(0)--After JTS Completion
    [TopLink]: UnitOfWork(10772417)--Connection(0)--release unit of work
    [TopLink]: ClientSession(25858791)--Connection(0)--client released
    [TopLink]: ServerSession(22807116)--Connection(0)--client acquired
    [TopLink]: ClientSession(116689)--Connection(0)--acquire unit of work: 32580168
    [TopLink]: UnitOfWork(32580168)--Connection(0)--JTS register
    [TopLink]: UnitOfWork(32580168)--Connection(0)--Before JTS Completion
    [TopLink]: UnitOfWork(32580168)--Connection(17129104)--Begin batch statements
    [TopLink]: UnitOfWork(32580168)--Connection(17129104)--INSERT INTO AUTHOR (NAME, OCA, OID) VALUES (?, ?, ?)
    [TopLink]: UnitOfWork(32580168)--Connection(0)-- bind => [Benoit Mandelbrot, 2004-05-11 18:54:49.264, 442805]
    [TopLink]: UnitOfWork(32580168)--Connection(17129104)--End Batch Statements
    [TopLink]: ClientSession(116689)--Connection(17129104)--Begin batch statements
    [TopLink]: ClientSession(116689)--Connection(17129104)--INSERT INTO BOOK (NAME, OCA, OID, OID_AUTHOR) VALUES (?, ?, ?, ?)
    [TopLink]: ClientSession(116689)--Connection(0)-- bind => [Les objets fractals, forme, hasard et dimension, 2004-05-11 18:54:49.266, 347409, 442805]
    [TopLink]: ClientSession(116689)--Connection(0)-- bind => [The Fractal Geometry of Nature, 2004-05-11 18:54:49.282, 347408, 442805]
    [TopLink]: ClientSession(116689)--Connection(17129104)--End Batch Statements
    [TopLink]: UnitOfWork(32580168)--Connection(0)--After JTS Completion
    [TopLink]: UnitOfWork(32580168)--Connection(0)--release unit of work
    [TopLink]: ClientSession(116689)--Connection(0)--client released
    the test is about creating two objects (well, we are actually creating 6 objects in this sample as we are creating two "master" objects and adding two related (in a one to many relationship) objects to each one.)
    The thing I would like you to notice is this:
    The first AUTHOR object gets assigned the OID 442803 wether the next AUTHOR object gets the OID 442805 although we expected it to be 442804.
    The same occurs with the objects in the "many" side of the relation. They get sibiling OIDs but with a gap of two OIDs when creating the last two.
    I have been searching for simmilar problems in this forums and I found two posts:
    Both where related to a bug of an older version of TopLink (9.0.3 I think) when using something different than a number for the sequence field of an object. I expect it to be fixed in 9.0.4 version as it seemed to be fixed even for the 9.0.3 version. May it be a regression bug?
    Anyway, we are using BigDecimal on entity bean's sequence number and IIRC NUMBER(18) in Oracle tables.
    Currently our TopLink version is: 9.0.4 (031126)
    Our native sequence has an allocation size of 200 and it matches with SEQUENCEs defined in Oracle.
    As we are migratting from TopLink 3.6.3 and we have not changed the sequence prealocation size (we have not touched the database at all) we don't expect the problem to be on sequence prealocation.
    I must say we have changed the "default" JDBC driver that TopLink uses when doing the issuing the loging phase (which I think is a SUN driver) to an oracle.jdbc.driver.OracleDriver as we were having problems with timestamp locking.
    Any idea?
    Thanks in advance.
    Ignacio.

    Solved!
    It was my fault. I was doing a really nasty thing to the entity beans.
    I must publicly thank my work mate (which is a pretty smart girl, I must say) in tracking down this issue.
    Here is what (we think) was happening:
    As I told in previous post in this post we are in the process of moving from TopLink 3.6.3 (EJB 1.1) to TopLink 9.0.4 (EJB 2.0). We do have a "super class" in our application where we had some common things of our entity beans, i.e. entityContext, oid and oca attributes. We have also some methods that retrieve and set values from and to the entity beans via value objects (in order to avoid the heavy RMI operations when doing it through "standard" getters and setters) well, it happened that the current implementation of the "batch setting" method used the getDeclaringMethods to update in both UPDATE and INSERT opperations entity attributes with the data of the value object.
    When switching to EJB 2.0 we had to push down both the oid and oca attributes (in order of being able do deploy them) to each final entity bean and now they where being included in the setting process!
    You can imagine an scenario like this:
    1. ejbCreate() // TopLink issues the SELECT SEQ_XXX NEXT VAL FROM DUAL and sets the oid of the EJB
    2. setAttributes() // transfer info from the value object to the newly created EJB: including a setOid(null)!
    3. commit() (Before Completion)
    4. TopLink detects that the damm object surprisingly DOES NOT have the oid attribute setted so it performs another SELECT SEQ_XXX NEXT VAL FROM DUAL in order to "fix" this big problem.
    5. commit() (After Completion) // the object is written to the database with the second value from the sequence whereas the first value is used to identify the entity bean into the identity cache.
    Well it may not be "exactly" what is happening but I'm sure we are not so far from reality with our assumptions.
    Andrei Ilitchev, thanks for your interest, sorry I could not post this sooner.

  • Captured on the DVX-100 what happens when I export it to HDV-1080i50

    I Captured footage on the DVX-100, what happens when I export it to HDV-1080i50.
    Is it then considered HD?

    blair apple wrote:
    I Captured footage on the DVX-100, what happens when I export it to HDV-1080i50.
    Is it then considered HD?
    The short answer is "yes, BUT…"
    DVX-100 is a DV camera, thus it only captures DV. You can export your DV sequence to whatever format you desire, like HDV (a consumer-level version of HD), but that doesn't mean it will look as good as footage natively shot in HD. You gain no quality at all, in fact you lose quality due to scaling the footage up from the DV to HDV framesize. There are workflows for upconverting your DV footage to HDV or HD posted all over this forum and elsewhere on the Net. A quick search should give you some insight into the process.

  • When i click on a single photo or a folder in finder, preview opens virtually every photograph on my computer in rapid-fire succession. I made a video showing what happens and will try to attach it. Please help.

    Please help. when I click on a single picture or a folder of photos in finder, preview launches and opens virtually all photos in rapid fire succession. I turned off the setting that restores open windows when you restart the computer. That did not help. It has assigned the name  "untitled" to my photos. i don't know what to do. Apple doesn't know what to do. the imac was purchased 6 months ago from apple store in king of prussia PA. I have taken a video showing what happens. i can send this to anyone who wants to see what is going on.
    Please help. This problem persists after restarting and after closing everything down.

    Process: Preview [3268]
    Path: /Applications/Preview.app/Contents/MacOS/Preview
    Identifier: com.apple.Preview
    Version:         5.5.2 (719.25)
    Build Info: Preview-719025000000000~8
    Code Type: X86-64 (Native)
    Parent Process: launchd [916]
    Date/Time: 2012-07-08 13:49:24.147 -0400
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          3771442 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  1810338 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID: B388121D-AFAB-4591-96E0-89D6998B0CC5
    Crashed Thread: 0  Dispatch queue: com.apple.main-thread
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000010a70ecec
    VM Regions Near 0x10a70ecec:
        IOKit (reserved) 000000010a68d000-000000010a70d000 [ 512K] rw-/rw- SM=NUL  reserved VM address space (unallocated)
    -->
        MALLOC_LARGE           000000010a725000-000000010a777000 [  328K] rw-/rwx SM=PRV 
    Application Specific Information:
    objc[3268]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 com.apple.CoreGraphics              0x00007fff8c43df9b sseCGSFill8by1 + 155
    1 com.apple.CoreGraphics              0x00007fff8c471fb6 argb32_mark_constshape + 547
    2 com.apple.CoreGraphics              0x00007fff8c4719c3 argb32_mark + 235
    3 libRIP.A.dylib                    0x00007fff8aabf100 ripl_BltShape + 1737
    4 libRIP.A.dylib                    0x00007fff8aabc3af ripc_Render + 362
    5 libRIP.A.dylib                    0x00007fff8aab8c86 ripc_DrawRects + 660
    6 com.apple.CoreGraphics              0x00007fff8c46dc9f CGContextFillRects + 135
    7 com.apple.AppKit                         0x00007fff8b8924b3 NSRectFill + 227
    8 com.apple.AppKit                         0x00007fff8b819a67 -[NSView _drawRect:clip:] + 3995
    9 com.apple.AppKit                         0x00007fff8b817719 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3020
    10 com.apple.AppKit                       0x00007fff8b963560 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 274
    11 com.apple.AppKit                       0x00007fff8b81186f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4755
    12 com.apple.AppKit                       0x00007fff8b80a2ed -[NSView displayIfNeeded] + 1676
    13 com.apple.AppKit                       0x00007fff8b963438 -[NSNextStepFrame displayIfNeeded] + 83
    14  com.apple.AppKit                       0x00007fff8b809a2d _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 648
    15 com.apple.CoreFoundation        0x00007fff81e848e7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    16 com.apple.CoreFoundation        0x00007fff81e84846 __CFRunLoopDoObservers + 374
    17 com.apple.CoreFoundation        0x00007fff81e59af9 __CFRunLoopRun + 825
    18 com.apple.CoreFoundation        0x00007fff81e59486 CFRunLoopRunSpecific + 230
    19 com.apple.CoreFoundation        0x00007fff81e6919f CFRunLoopRun + 95
    20 com.apple.RemoteViewServices            0x00007fff8c3d2bdc -[NSRemoteSavePanel beginSheetModalForWindow:completionHandler:] + 432
    21 com.apple.AppKit                       0x00007fff8bb6cff9 __-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke_2 + 950
    22 com.apple.AppKit                       0x00007fff8bb7b805 -[NSDocument _commitEditingThenContinue:] + 337
    23 com.apple.AppKit                       0x00007fff8bb774d2 -[NSDocument _commitEditingWithDelegate:didSomethingSelector:contextInfo:thenContinue:] + 91
    24 com.apple.AppKit                       0x00007fff8bb6cbdb __-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke_1 + 208
    25 com.apple.AppKit                       0x00007fff8bb8491d -[NSDocument performActivityWithSynchronousWaiting:usingBlock:] + 82
    26 com.apple.AppKit                       0x00007fff8bb6cb05 -[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:] + 96
    27 com.apple.AppKit                       0x00007fff8bb6c1a4 __-[NSDocument saveDocumentWithDelegate:didSaveSelector:contextInfo:]_block_invoke_3 + 138
    28 com.apple.AppKit                       0x00007fff8bb6879f -[NSDocument continueActivityUsingBlock:] + 42
    29  com.apple.AppKit                       0x00007fff8bb6c06b __-[NSDocument saveDocumentWithDelegate:didSaveSelector:contextInfo:]_block_invoke_2 + 496
    30 com.apple.AppKit                       0x00007fff8bb7b805 -[NSDocument _commitEditingThenContinue:] + 337
    31  com.apple.AppKit                       0x00007fff8bb774d2 -[NSDocument _commitEditingWithDelegate:didSomethingSelector:contextInfo:thenContinue:] + 91
    32 com.apple.AppKit                       0x00007fff8bb6be13 __-[NSDocument saveDocumentWithDelegate:didSaveSelector:contextInfo:]_block_invoke_1 + 192
    33 com.apple.AppKit                       0x00007fff8bb8491d -[NSDocument performActivityWithSynchronousWaiting:usingBlock:] + 82
    34 com.apple.AppKit                       0x00007fff8bb6bd4d -[NSDocument saveDocumentWithDelegate:didSaveSelector:contextInfo:] + 92
    35 com.apple.Preview                     0x00000001036c7ed6 0x1035ff000 + 822998
    36 com.apple.AppKit                       0x00007fff8bb898ff __-[NSDocument canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo:]_block_invoke_8 + 131
    37  com.apple.AppKit                       0x00007fff8bb6879f -[NSDocument continueActivityUsingBlock:] + 42
    38 com.apple.AppKit                       0x00007fff8bb71ca9 __-[NSDocument canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo:]_block_invoke_1 + 1111
    39  com.apple.AppKit                       0x00007fff8bb84acf -[NSDocument performActivityWithSynchronousWaiting:usingBlock:] + 516
    40 com.apple.AppKit                       0x00007fff8bb71850 -[NSDocument canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo:] + 291
    41  com.apple.Preview                     0x0000000103627d89 0x1035ff000 + 167305
    42 com.apple.Preview                     0x0000000103627bd0 0x1035ff000 + 166864
    43 com.apple.Preview                     0x0000000103627987 0x1035ff000 + 166279
    44 com.apple.Preview                     0x00000001036277b8 0x1035ff000 + 165816
    45 com.apple.AppKit                       0x00007fff8be62ef2 -[NSWindow __close] + 286
    46 com.apple.AppKit                       0x00007fff8be62c05 -[NSWindow _batchClose] + 65
    47 com.apple.Preview                     0x00000001036fbbb8 0x1035ff000 + 1035192
    48 com.apple.CoreFoundation        0x00007fff81ebbfb1 -[NSObject performSelector:] + 49
    49 com.apple.AppKit                       0x00007fff8b7cb91b -[NSApplication makeWindowsPerform:inOrder:] + 217
    50 com.apple.AppKit                       0x00007fff8ba7bae5 -[NSApplication _makeWindowsPerform:forEvent:inWindow:standardWindowButton:] + 29
    51 com.apple.CoreFoundation        0x00007fff81eb470d -[NSObject performSelector:withObject:] + 61
    52 com.apple.AppKit                       0x00007fff8b8d0f7e -[NSApplication sendAction:to:from:] + 139
    53 com.apple.AppKit                       0x00007fff8b9bdbfb -[NSMenuItem _corePerformAction] + 399
    54 com.apple.AppKit                       0x00007fff8b9bd932 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
    55 com.apple.AppKit                       0x00007fff8b93b524 -[NSMenu performKeyEquivalent:] + 281
    56 com.apple.AppKit                       0x00007fff8b93a175 -[NSApplication _handleKeyEquivalent:] + 526
    57 com.apple.AppKit                       0x00007fff8b833536 -[NSApplication sendEvent:] + 4282
    58 com.apple.Preview                     0x0000000103601d4c 0x1035ff000 + 11596
    59 com.apple.AppKit                       0x00007fff8b7ca0c6 -[NSApplication run] + 555
    60 com.apple.AppKit                       0x00007fff8ba46244 NSApplicationMain + 867
    61 com.apple.Preview                     0x00000001036007f4 0x1035ff000 + 6132
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib                 0x00007fff819bd7e6 kevent + 10
    1 libdispatch.dylib              0x00007fff8ac6778a _dispatch_mgr_invoke + 923
    2 libdispatch.dylib              0x00007fff8ac6631a _dispatch_mgr_thread + 54
    Thread 2:
    0 libsystem_kernel.dylib                 0x00007fff819bd192 __workq_kernreturn + 10
    1 libsystem_c.dylib              0x00007fff856af594 _pthread_wqthread + 758
    2 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 3:
    0 libsystem_kernel.dylib                 0x00007fff819bd192 __workq_kernreturn + 10
    1 libsystem_c.dylib              0x00007fff856af594 _pthread_wqthread + 758
    2 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-priority
    0 libsystem_kernel.dylib                 0x00007fff819bb6ce semaphore_timedwait_trap + 10
    1 libdispatch.dylib              0x00007fff8ac69270 _dispatch_semaphore_wait_slow + 211
    2 com.apple.RemoteViewServices             0x00007fff8c3d234e __54-[NSRemoteSavePanel _runOrderingOperationWithContext:]_block_invoke_0323 + 64
    3 libdispatch.dylib              0x00007fff8ac65a86 _dispatch_call_block_and_release + 18
    4 libdispatch.dylib              0x00007fff8ac66965 _dispatch_worker_thread2 + 255
    5 libsystem_c.dylib              0x00007fff856af3da _pthread_wqthread + 316
    6 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 5:
    0 libsystem_kernel.dylib                 0x00007fff819bd192 __workq_kernreturn + 10
    1 libsystem_c.dylib              0x00007fff856af594 _pthread_wqthread + 758
    2 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 6:
    0 libsystem_kernel.dylib                 0x00007fff819bd192 __workq_kernreturn + 10
    1 libsystem_c.dylib              0x00007fff856af594 _pthread_wqthread + 758
    2 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000003  rbx: 0x0000000000000000  rcx: 0x0000000000000280  rdx: 0x0000000000000000
      rdi: 0x0000000000000280  rsi: 0x0000000000000000  rbp: 0x00007fff631fa0c0  rsp: 0x00007fff631fa098
       r8: 0x000000010a70ecec   r9: 0x0000000000000000  r10: 0x0000000000000440  r11: 0x0000000000000001
      r12: 0x00007fc553e72a60  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x00007fc553e7378c
      rip: 0x00007fff8c43df9b  rfl: 0x0000000000010202  cr2: 0x000000010a70ecec
    Logical CPU: 2
    Binary Images:
           0x1035ff000 -        0x1037e3fef  com.apple.Preview (5.5.2 - 719.25) <EF424E00-DDDF-321B-A789-8273F8BAEE48> /Applications/Preview.app/Contents/MacOS/Preview
           0x103876000 -        0x103895ff7  com.apple.MediaUI (1.0 - 1) <62F2783A-413F-3E6F-849D-B748D726DE81> /System/Library/PrivateFrameworks/MediaUI.framework/Versions/A/MediaUI
           0x103a17000 -        0x103a25fff  com.apple.Librarian (1.0.1 - 1) <8479DC40-D188-3262-B33F-BC08E46AFD4D> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
           0x105edc000 -        0x105ee2fef  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <303313AD-2D57-37A5-922B-3194C5DCD007> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x105ee9000 -        0x105eecff7  libCoreFSCache.dylib (??? - ???) <70D5EB80-24F5-3837-9302-EBD4CFCE5CBA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x105ef4000 -        0x105ef4ffd +cl_kernels (??? - ???) <8F424F91-546C-4612-B8C1-F7844F9B45D7> cl_kernels
           0x105efa000 -        0x105efbff3 +cl_kernels (??? - ???) <871199D1-8041-496D-982D-7149CE363CFD> cl_kernels
           0x105f05000 -        0x105f06ffc +cl_kernels (??? - ???) <C541B738-4853-474C-BA6D-745EA88533D6> cl_kernels
           0x105f17000 -        0x105f18ff3 +cl_kernels (??? - ???) <7361CFF4-57C2-4D70-9605-5A20A94328B8> cl_kernels
           0x1082d1000 -        0x10846afff  GLEngine (??? - ???) <61484217-C41D-3A65-86BD-397ACC0D069F> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10849e000 -        0x108597fff  libGLProgrammability.dylib (??? - ???) <7396EE13-5FA6-3E78-88D0-2502CFE79A97> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x1085bd000 -        0x108885ff7  com.apple.ATIRadeonX3000GLDriver (7.18.18 - 7.1.8) <337EB117-0CB0-3C9E-AEE8-76BCB3CB9371> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
           0x1088d0000 -        0x1088feff7  GLRendererFloat (??? - ???) <E33704BC-AA25-3279-A585-ABC6B3176D3E> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10968c000 -        0x1096acfff  com.apple.ChunkingLibrary (1.0 - 127) <ED9D3079-A201-30D8-9FC4-2F5860100E63> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x109994000 -        0x1099d1fff  com.apple.Ubiquity (1.1 - 210) <E198603B-C205-3366-82BD-7D642FF2F909> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10aa10000 -        0x10aaa3ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <5FB796A4-1AD0-3B4D-AA83-F8A46E039224> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
        0x7fff631ff000 -     0x7fff63233baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff81322000 -     0x7fff81328fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff81329000 -     0x7fff81329fff  com.apple.quartzframework (1.5 - 1.5) <21FCC91F-C7B9-304F-8C9C-04F3924F4AE3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff81680000 -     0x7fff81712ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff81713000 -     0x7fff81725ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff8193a000 -     0x7fff819a5ff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff819a6000 -     0x7fff819c6fff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
        0x7fff819c7000 -     0x7fff81a1bff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff81a5f000 -     0x7fff81a7cff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff81a7d000 -     0x7fff81a93fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff81a94000 -     0x7fff81b5bff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff81b5c000 -     0x7fff81b60fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
        0x7fff81b61000 -     0x7fff81b64fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff81b65000 -     0x7fff81b68fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff81be0000 -     0x7fff81be0fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff81c56000 -     0x7fff81c7ffff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff81c80000 -     0x7fff81cc4ff7  com.apple.MediaKit (12 - 602) <0C2CBEDA-412F-3DDF-9C74-44114E5E0DB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff81cc5000 -     0x7fff81cc6fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff81cc7000 -     0x7fff81cddff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff81e21000 -     0x7fff81ff5ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff81ff6000 -     0x7fff82042ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff82043000 -     0x7fff8205dfff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8205e000 -     0x7fff8205efff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8205f000 -     0x7fff82348ff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82349000 -     0x7fff823dcff7  com.apple.PDFKit (2.6.3 - 2.6.3) <49BF9CDC-E902-3CAC-9C04-3302545907D5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff823dd000 -     0x7fff823f4fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8312d000 -     0x7fff83132fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff83133000 -     0x7fff83139fff IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8313a000 -     0x7fff831beff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff831cf000 -     0x7fff8324aff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8324b000 -     0x7fff83274fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff83275000 -     0x7fff832ddff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8331f000 -     0x7fff83320fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff83321000 -     0x7fff83341fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff83342000 -     0x7fff83342fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff83343000 -     0x7fff83427fff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff83428000 -     0x7fff838effff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff838f0000 -     0x7fff838f4fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff838f5000 -     0x7fff83957ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff83958000 -     0x7fff83980fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff83981000 -     0x7fff83a17ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff83a37000 -     0x7fff83b9efff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff83b9f000 -     0x7fff83fd2ff7  com.apple.VideoToolbox (1.0 - 705.78) <7F115540-88CF-3087-951A-7073F7D58F4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff83fd3000 -     0x7fff83fd8fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff84208000 -     0x7fff84521fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff84522000 -     0x7fff84527ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff84528000 -     0x7fff84535ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff84539000 -     0x7fff8458cfff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <E3FE9B47-2276-3316-B2D2-85784AD2D9B3> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8458d000 -     0x7fff848a9fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff848aa000 -     0x7fff84906ff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff84907000 -     0x7fff8490eff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8496c000 -     0x7fff84997ff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff84998000 -     0x7fff8499efff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8499f000 -     0x7fff8499ffff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff849a0000 -     0x7fff849b5fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff84ad8000 -     0x7fff84afcfff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff84afd000 -     0x7fff84afdfff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff84afe000 -     0x7fff84bf3fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff84c6e000 -     0x7fff84c6fff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff84ca6000 -     0x7fff84d8ae5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff84d8b000 -     0x7fff84dc6fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff84dc7000 -     0x7fff84df7ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff84df8000 -     0x7fff85301ff7  com.apple.RawCamera.bundle (3.14.0 - 646) <75A96BFC-1832-808B-F430-C4C9379C5A98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff85302000 -     0x7fff8530ffff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <528BAA66-C38C-3093-84B5-92A7832CE7BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff85561000 -     0x7fff8565eff7  com.apple.avfoundation (2.0 - 180.40) <ED3DCB15-7E88-34FD-9E56-4ECAD10A6E7E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8565f000 -     0x7fff8573cfef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff8573d000 -     0x7fff8576afff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff86249000 -     0x7fff86473fe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff86474000 -     0x7fff86552fff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff86553000 -     0x7fff8655cff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff8658a000 -     0x7fff86591fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff86592000 -     0x7fff86b76fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff86b77000 -     0x7fff86be7fff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff86be8000 -     0x7fff86be8fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff86be9000 -     0x7fff86be9fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff86bea000 -     0x7fff86beafff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff86c68000 -     0x7fff86cebfef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff86def000 -     0x7fff86df0fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff86e0e000 -     0x7fff86e62fff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff86e92000 -     0x7fff86eccfe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff86ecd000 -     0x7fff86ed2fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff871b7000 -     0x7fff87310fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff87311000 -     0x7fff8731cff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8731d000 -     0x7fff87334fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff87335000 -     0x7fff8738dfff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8738e000 -     0x7fff87518fff  com.apple.QTKit (7.7.1 - 2330) <4B5363D4-4854-342F-8B95-DE6559075B46> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff87519000 -     0x7fff87524ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <F260D4A7-C727-3FB6-8525-50E279BF9BAF> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff87525000 -     0x7fff87604ff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff87772000 -     0x7fff87839ff7  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <7E2E109C-A438-3EDC-A6EB-3EF634A1B28B> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff8783a000 -     0x7fff8787aff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
        0x7fff8787b000 -     0x7fff87886ff7  com.apple.aps.framework (2.1 - 2.1) <D0C49BA6-A5FB-3DBD-AFCC-7B6F056A57A7> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff87887000 -     0x7fff87889fff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff87a89000 -     0x7fff87a9bff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff87b13000 -     0x7fff87b70ff7  com.apple.QuickLookFramework (3.2 - 500.16) <46017A4B-9E2B-329C-A8D9-2C11DE6C1A47> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff87b86000 -     0x7fff87bc8ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff87bc9000 -     0x7fff87bcbfff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff87bee000 -     0x7fff87e63ff7  com.apple.imageKit (2.1.2 - 1.0) <5BAA52A9-F359-31E4-8109-74EBCEB626B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff87e8e000 -     0x7fff87ed5ff7  com.apple.CoreMedia (1.0 - 705.78) <F6EA2328-FD3E-3057-80C7-C9845837F863> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff87ed6000 -     0x7fff87ee5ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff87ee6000 -     0x7fff87f4ffff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87f8f000 -     0x7fff87fabff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff87fac000 -     0x7fff87fbafff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff87fe7000 -     0x7fff8808cfff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8808d000 -     0x7fff88187ff7  com.apple.DiskImagesFramework (10.7.4 - 331.6) <C7860B00-E1CF-3851-9A3B-9F145B7F498F> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff88188000 -     0x7fff8818afff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
        0x7fff8818b000 -     0x7fff8838dfff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff8838e000 -     0x7fff88390ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff88391000 -     0x7fff883d0fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff883d1000 -     0x7fff883d7ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff883d8000 -     0x7fff88b6cfef  com.apple.CoreAUC (6.16.11 - 6.16.11) <3D40FEA5-AFE7-3752-A52E-D0F80304320A> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff88b6d000 -     0x7fff88b72fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff88b77000 -     0x7fff88ea3ff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff88ef1000 -     0x7fff88f1cff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff88f1d000 -     0x7fff88f2fff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff88f30000 -     0x7fff89252fe7  com.apple.JavaScriptCore (7534.56 - 7534.56.6) <675725F8-37C4-3B80-ADB0-7B6AE908A908> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff89253000 -     0x7fff89680fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff89794000 -     0x7fff897bafff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff897bb000 -     0x7fff897bbfff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff897bc000 -     0x7fff89b65fef  com.apple.MediaToolbox (1.0 - 705.78) <A4DF8258-0CB9-3244-BF12-3AD02B1952B0> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff89b66000 -     0x7fff89ba1fff  com.apple.LDAPFramework (3.2 - 120.2) <A2675243-9122-308D-A5C8-9C1C4FE7639D> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff89ba2000 -     0x7fff89ba6fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <2B1215A0-1B43-39C3-B4F4-392D71D08FFA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff89ba7000 -     0x7fff89baefff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff89baf000 -     0x7fff89bb5fff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff89bb6000 -     0x7fff89ccffff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff89cd8000 -     0x7fff89d17ff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8a735000 -     0x7fff8a83cfe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff8a83d000 -     0x7fff8a870ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8a92b000 -     0x7fff8a92cfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff8a95e000 -     0x7fff8a9afff7  com.apple.CoreMediaIO (212.0 - 3199.1.1) <D8C364AF-A1E8-3215-ABF5-188B50A80B18> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8a9b0000 -     0x7fff8aa26fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8aa27000 -     0x7fff8aa87fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8aa88000 -     0x7fff8aab5ff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8aab6000 -     0x7fff8aafaff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <22B2A10A-34B5-3787-88C9-B2722FE79504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8aafb000 -     0x7fff8abfbfff  com.apple.QuickLookUIFramework (3.2 - 500.16) <0BACF8C4-5A7B-31EE-B4AA-3CCF8615C9A8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8abfc000 -     0x7fff8abfdff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff8abfe000 -     0x7fff8ac1dfff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff8ac1e000 -     0x7fff8ac57fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff8ac58000 -     0x7fff8ac63ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8ac64000 -     0x7fff8ac72fff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
        0x7fff8b105000 -     0x7fff8b153fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff8b154000 -     0x7fff8b1aeff7  com.apple.ImageCaptureCore (3.0.3 - 3.0.3) <12C722EE-3A13-3937-ABDF-EDC922F4C299> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8b1af000 -     0x7fff8b1c3ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8b1c4000 -     0x7fff8b5e1ff7  com.apple.SceneKit (125.3 - 125.4) <12AD6DBE-F3A3-34D6-BA01-B211BEAFD48F> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff8b60b000 -     0x7fff8b690ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8b6d2000 -     0x7fff8b72bfff  MetadataLib.dylib (3.14.0 - compatibility 2.2.1) <DCA76A5E-14B4-3260-8C00-7C4EE675E049> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
        0x7fff8b72c000 -     0x7fff8b73cff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8b73d000 -     0x7fff8b741ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8b7b6000 -     0x7fff8b7b9ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8b7ba000 -     0x7fff8b7c4ff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
        0x7fff8b7c5000 -     0x7fff8c3cbff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8c3cc000 -     0x7fff8c3f0fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8c3f1000 -     0x7fff8cd8ec9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8cd8f000 -     0x7fff8cde1ff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8cde2000 -     0x7fff8ce58fff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
        0x7fff8ce59000 -     0x7fff8ceccfff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8cecd000 -     0x7fff8d003fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8d004000 -     0x7fff8d017ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8d018000 -     0x7fff8d035fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff8d036000 -     0x7fff8d2a9fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8d2aa000 -     0x7fff8d2b5fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8d2fc000 -     0x7fff8d3afff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8d3b0000 -     0x7fff8d3bbff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8d42d000 -     0x7fff8d435fff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8d436000 -     0x7fff8d461fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff8d462000 -     0x7fff8d470ff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
        0x7fff8d471000 -     0x7fff8d474fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8d510000 -     0x7fff8d5aaff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8d5c4000 -     0x7fff8d665ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8d769000 -     0x7fff8d908ff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8d935000 -     0x7fff8d962fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff8d96f000 -     0x7fff8da74fff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8da75000 -     0x7fff8db17fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8db18000 -     0x7fff8db1bfff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8db51000 -     0x7fff8dc5dfff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8dc5e000 -     0x7fff8dc9ffff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8dca0000 -     0x7fff8dca1ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8dca2000 -     0x7fff8df10ff7  com.apple.QuartzComposer (5.0 - 236.7) <D556126B-3D67-3E37-82E0-D06532DE0C89> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8df9b000 -     0x7fff8e09dfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff8e09e000 -     0x7fff8e1abfff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8e1d4000 -     0x7fff8e21afff  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <2C442396-1006-3765-92D2-60869D4641CE> /usr/lib/libcurl.4.dylib
        0x7fff8e29e000 -     0x7fff8e2a3fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 9
        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: 4954
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=194.3M resident=85.8M(44%) swapped_out_or_unallocated=108.6M(56%)
    Writable regions: Total=992.5M written=350.3M(35%) resident=830.7M(84%) swapped_out=0K(0%) unallocated=161.9M(16%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                 249.7M
    CG image                           3056K
    CG raster data                     1472K
    CG shared images                   4624K
    CoreAnimation                      4104K
    CoreGraphics                         16K
    CoreImage 8K
    CoreServices                       1324K
    IOKit                             333.9M
    IOKit (reserved)                   26.0M        reserved VM address space (unallocated)
    MALLOC                            380.0M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=251                       88K
    OpenCL                               44K
    OpenGL GLSL                        1372K
    OpenGL GLSL (reserved)              128K        reserved VM address space (unallocated)
    STACK GUARD                        56.0M
    Stack                              11.0M
    VM_ALLOCATE                        16.7M
    __CI_BITMAP                          80K
    __DATA                             17.4M
    __IMAGE                             528K
    __LINKEDIT                         48.6M
    __RC_CAMERAS                        248K
    __TEXT                            145.8M
    __UNICODE                           544K
    mapped file                       210.2M
    shared memory                       9.8M
    ===========                      =======
    TOTAL                               1.5G
    TOTAL, minus reserved VM space      1.5G
    Model: iMac12,1, BootROM IM121.0047.B1F, 4 processors, Intel Core i5, 2.7 GHz, 4 GB, SMC 1.71f22
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.64.8-P2P
    Bluetooth: Version 4.0.5f11, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: OPTIARC DVD RW AD-5690H
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 3
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 7
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Generic USB Hub, 0x058f  (Alcor Micro, Corp.), 0x9254, 0xfd140000 / 5
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

  • After running Software update, I can no longer run, open, sync or use iTunes in any way. PLEASE what happened??

    I was running the newest version of Snow Leopard, and after running Software update, I can no longer run, open, sync or use iTunes in any way. PLEASE what happened?
    I really regret that I said "OK" to Software Update message... after Software Update of these updates on 7-26-11:
    Migration Assistant Update for Mac
    Mac OSX 10.6.8 Supplemental Update
    Safari
    iTunes
    Remote Desktop Client Update
    Now I get a message:
    iTunes cannot be opened because of a problem
    Check with developer to make sure iTunes works with this version of Mac OSX. You may need to reinstall the application. Be sure to install any available updates for the application and Mac OSX.
    Process:         iTunes [5092]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         ??? (???)
    Build Info:      iTunes-10315501~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [111]
    Date/Time:       2011-07-26 12:08:18.568 -0500
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          504736 sec
    Crashes Since Last Report:           20
    Per-App Crashes Since Last Report:   13
    Anonymous UUID:                      B8B5EE28-970A-4E79-949B-EA2DD6E6DAA2
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: @loader_path/libgnsdk_musicid.1.8.2.dylib
      Referenced from: /Applications/iTunes.app/Contents/MacOS/iTunes
      Reason: image not found
    Binary Images:
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    Model: Macmini3,1, BootROM MM31.00AD.B00, 2 processors, Intel Core 2 Duo, 2.26 GHz, 2 GB, SMC 1.35f1
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x90), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS543216L9SA02, 149.05 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: External HDD, 0x1058  (Western Digital Technologies, Inc.), 0x0704, 0x24100000 / 2
    USB Device: Hub, 0x0424  (SMSC), 0x2507, 0x26400000 / 2
    USB Device: iMic USB audio system, 0x077d, 0x07af, 0x26440000 / 4
    USB Device: Hub, 0x0424  (SMSC), 0x2502, 0x26470000 / 3
    USB Device: Deskjet D4300 series, 0x03f0  (Hewlett Packard), 0x1f04, 0x26471000 / 5
    USB Device: GD-0608-U, 0x056a  (WACOM Co., Ltd.), 0x0021, 0x04700000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 3
    USB Device: Hub in Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x1003, 0x04300000 / 2
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0307, 0x04310000 / 6
    USB Device: Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x020b, 0x04330000 / 5
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8216, 0x06110000 / 5
    FireWire Device: unknown_device, Unknown
    FireWire Device: d2 DVDRW FW, LaCie, Up to 400 Mb/sec

    Same thing happened to me and I get the same error message. These are the programs that don't work
    mail
    keynote
    pages
    all Office 2011 programs
    safari

  • What happens internally while loading master data and transaction?

    hello,
    What happens internally and which tables are used while loading master data and transaction?
    I have loaded the data in DSO, but i am not getting value of particular InfoObject after loading the data.
    I have executed Attribute change run also.
    Kindly explain ...
    Thanks,
    Sonu

    Hi,
    Master data,
    Material Indipendent data can be sent without any dependency.
    Material Dependent data sequence is as follow.
    Plant,
    MRP areas,
    Supply area,
    Material,
    MRP area material,
    planning material,
    ATP check,
    Purchase info recards,
    schedule agg,
    PPM or PDS (But before PPM or PDS  work center should send to apo) If PDS is sending then BOM should send before PDS.
    Transaction data.
    As per the business requirement what is planning in apo.
    Regards,
    Kishore Reddy.

  • ISE - What happens when the on-boarded certificate expires?

    I'm trying to design a good BYOD deployment model but have a few questions that need direct answers.  I have down how to go about on-boarding and getting a certificate on a device, the ISE provides great flow for this to happen in many ways.  My questions come from a design perspective before and after the BYOD deployment is completed.
    1. Figuring out a method to validate the device is a Corporate asset or a BYOD asset.
         (I don't want to install a certificate on just any device, or perhaps I do but I need to give permissions to all resources if its a Corporate Device, and more resitrictions if it's BYOD, so how do I figure this out during the provisioning phase?)
         a. Use MDM (May not have one, or if you do we are still waiting on ISE 1.2 for that integration)
         b. Build a Group for provisioning admins, if user PEAP-MSCHAPv2 account is from this group install a certificate. (issue here is that the end user looses administration of the device in the my device portal as the device is now registered to the provisioning admin)
         c. Pre-populate MAC into ISE as all Corporate devices should be provisioned by I.T. before they go to the end user (I think this is good but can see push back from customers as they don't want to add more time to the process)
         d. Certs on any IOS or Android device, provide access based on user group and do not worry if device is Company asset or not (I believe that this is the easiest solution and seems to be what I find in the guides)
         e. Other options I have not thought about, would love input from the crowd
    2. What happens to the device once the Certificate expires?
         (I don't know the answer to this, my thought would be the user or device will fail during the authentication policy and this creates a mess)
         a. Tell the user to delete the profile so they can start all over again (creates help desk calls and frustrated users)
         b. Use MDM for Cert management (may not have one)
         c. Perhaps the client uses SCEP to renew based on the cert template renew policy and there are no issues (this is me wishing)
    Would appreciate some feed back and would like to know if anyone has run into these issues.                   

    Neno,
    Sorry but I don't have any other info on using a public CA, Cisco says to use internal CA's for PKI.  I think the best practice in 1.2 comes out will be to use one interface for Web Management and a different interface for Radius, profiling, posture, and on boarding.  This way you can use your private CA for EAP and a public CA for web traffic.  Have you tried a public CA bound to management and a private CA for EAP yet?
    I did do a session on EAP-TEAP, they explained how it will work and also discussed EAP-FASTv2.  EAP-FASTv2 is available now but you must use anyconnect as your supplicant.  Microsoft and all other vendors will have EAP-TEAP native once it is fully released and comissioned as it will be the new gold standard for EAP.  It will support TLS, MD5, and CHAPv2.  If you are interested I have the PDF of the presentation I attended that shows the flow of how EAP-TEAP will work.  This is much better than wasMachineAuthenticated and machine auth caching, which has many down falls.
    I currently do machine and user auth I just don't require them.  If Machine auth then allow machine on vlan-x with access to AD, DNS, and blah blah.  Then a seperate rule to say user auth gets more access, although I require EAP-TLS for both and if you think about it you are accomplishing the same thing if your PKI is setup correctly.  Make it so users and machines can only auto enroll, that way you know the only way they got their cert was from GPO policy.  I won't go into anymore detail, but there is lots you can do.

  • Photos from iPhone 4 to ipad3 albums gone. What happened?I

    Took a long trip and used iphone4 to take photos. When iCloud transferred them to my iPad2 I put them in albums. Now that I am home some of the albums are now empty? What happened? I did get a new ipad3 and most of the photos seem to have transferred but some are out of sequence and again the albums are labeled but have no photos.

    Did you take some of those photos more than 30 days ago?
    How long are photos stored in iCloud?
    The photos you upload to Photo Stream are stored in iCloud for 30 days to give your devices plenty of time to connect and download them
    copied from iCloud: Photo Stream FAQ
    Also check the iCloud: Photo Stream Troubleshooting article.

  • When I'm done with my fcp sequence, whats the best way to get it to dvd?

    When I'm done with my fcp sequence, whats the best way to get it to dvd?

    The advice to go to Compressor left out the part that you may want to convert your audio to AC3 becaus ethe MPEG2 bitrate is probably too high for DVD specs.
    This method is in the DVDSP manual and it's in the Compressor manual, both difficult to locate, but easily searchable.
    Here's what I'd do: Export the timeline form FCP in the native sequence settings, self-contained. Bring that self-contained movie into DVDSP and let DVDSP handle the transcode.
    The advice to go to iDVD is even easier.
    bogiesan

  • Cloning Hdd to SSD boot drive and what happens with Music/Logic Plugins

    Hi, my computer is a mid-2012 Mac Pro 12 Core
    It's a great computer but I'm considering upgrading my main boot drive (WD Caviar Black 1TB HDD) to a 1tB Samsung EVO 840 SSD drive (I'm using a sonnet tempo PCI card to mount an SSD that holds audio at the moment and will add another SSD for the boot drive I'm referring to) so I just had a question - if I clone the HDD to the new SSD, what happens with things like licenses for my audio plugins, such as Native Instruments Komplete, programs by IKMultemedia. programs that use an ILOK such as Steven Slate Plugins and also, WAVES plugins?  Will this info all carry across to the new SSD drive or do you think I'll need to reauthorise some things?  I have all the serials etc so this shouldn't be an issue, but just wondered.
    Any help would be appreciated as it feels like quite a big step in that it's my main system drive!
    Thanks in advance
    Sam

    CCC is excellent. If it doesn't work then sure, just always have a safety net of your system that is untouched.
    Also, after a clean install, CLONE it!
    And then use Setup Assistant. Migration Assistant.
    Clone of the system can go on sparse disk images too so you don't have to partition (should have at least one though) and you can have clone from different stages and versions: 10.9.4, without Setup Assistant, migrated, full loaded with all your apps. Multiple versions.
    CCC is designed to make a working bootable copy of a system so you can move the system to another boot device like hdd and SSDs without the worry.
    But I think we were talking about a system that did not see a clean install of Mountain Lion or Mavericks so it is over due for one!

  • What happens when a program name is typed on the command line?

    I mean I know what HAPPENS but I need to know the sequence of events. How would I describe it?
    i.e. java MyProg

    What is this? Are you taking a take-home exam on basic computer operation? You're asking very similar questions about broad things.
    Anyway:
    1) the shell parses the command line. it gets a sequence of tokens which are basically just individual strings
    2) the shell identifies which tokens on the command line are executables, and which are arguments to those executables. It also figures things out like how to chain the output of one program to the input of another, although this doesn't apply in the example you gave. In your example, "java" is the executable and "MyProg" is a string to pass to the executable as an argument.
    3) The shell then searches for the actual program file corresponding to the token that refers to an executable. The shell looks at the PATH environment variable to find a list of directories; it then looks in each directory until it finds the program file. So the program file here would be "java.exe" on a windows system.
    4) It then spawns off a new process to run the java program, passing the MyProg string to it as an argument.
    Does that help?

  • What happened to being able to shuffle a playlist?

    I seem to have lost the ability to shuffle songs when I updated my iPad recently.  What happened?

    ''cor-el [[#answer-669846|said]]''
    <blockquote>
    * Clicking the star on the Navigation toolbar will bookmark the page in the "Unsorted Bookmarks" folder and the star turns blue to show that
    * Bookmarks > "Bookmark This Page" (Ctrl+D) will bookmark the page in the Bookmarks Menu folder (you need to confirm that)
    * "Bookmark This Page" can be accessed via the right-click context menu in the browsing area or via the Bookmarks menu in the Firefox menu button drop down or menu bar (Alt+B)
    * If the URL in the Navigation toolbar is bookmarked and the star is highlighted blue then click this highlighted star or use the "Bookmark This Page/Edit This Bookmark" menu item (Ctrl+D) to edit the properties of the bookmark like name and location and move the bookmark to another folder or remove the bookmark
    </blockquote>
    Thank you very much but I'm not finding the any UI elements that map onto "Bookmarks -> Bookmark This Page" that you describe. However, the hot key sequence (Ctrl D) and the right context menu in the page get me what I'm after and the latter was right in front of my face so thank you for the respectful answer.

  • What happen when an error occurs during Snapshot-Refresh?

    Hi,
    I would like to know what happens, when an error occurs
    during a refresh (COMPLETE-REFRESH) of a snapshot?
    Is there a possibility for exception-handling??
    During a complete refresh the data in the snapshot will be deleted an the requested new from the master-side. Now when
    an error occurs during the refresh what happens with the "old" data of the snapshot??? Will it be lost?
    Thanxx
    Schoeib

    Each thread has its own error state. To get the results for a thread (including error result), you need to have a wait step which waits for it. If a thread has an error and you wait for it, you will get the error at the wait step that waits for it.
    If your main thread has an error and you want some worker thread to exit, you should add code to the cleanup of your main thread's sequence which signals the worker thread to exit (you should already have some sort of mechanism for signaling the worker thread to exit (there are many ways to do this, for example, a boolean variable passed by reference to the new thread's sequence, or a TestStand notification).
    If your main thread is getting an error, but is stuck inside a step, that problem is probably specific to something your code is doing, that is not the normal behavior of TestStand. You will need to provide more details or an example sequence in order for us to better understand what is happening.
    Hope this helps,
    -Doug

  • What shall i do? What happens?

    Process:         Adobe Photoshop Elements 11 Editor [1128]
    Path:            /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/MacOS/Adobe Photoshop Elements 11 Editor
    Identifier:      com.adobe.pse11editor
    Version:         11.0 (11)
    App Item ID:     571583293
    App External ID: 11641628
    Code Type:       X86 (Native)
    Parent Process:  launchd [155]
    Responsible:     Adobe Photoshop Elements 11 Editor [1128]
    User ID:         501
    Date/Time:       2013-12-22 12:55:20.334 +0100
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  327634E5-564E-4D9F-D583-2831B5B10AC1
    Sleep/Wake UUID: 4AA527A5-FF40-49BE-AEAB-5813451701E1
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000d4a0b75a
    VM Regions Near 0xd4a0b75a:
        CG shared images       00000000c2347000-00000000c234f000 [   32K] r--/r-- SM=SHM 
    -->
        Submap                 00000000ffff0000-00000000ffff1000 [    4K] r--/r-- SM=PRV  process-only VM submap
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x9038608d CFRelease + 29
    1   com.apple.CoreFoundation                0x903a6b55 __CFTypeCollectionRelease + 165
    2   com.apple.CoreFoundation                0x90396d51 __CFBasicHashDrain + 545
    3   com.apple.CoreFoundation                0x90396b04 __CFBasicHashDeallocate + 52
    4   com.apple.CoreFoundation                0x9038644a CFRelease + 986
    5   com.apple.CoreFoundation                0x903e9d5c __CFRunArrayDeallocate + 236
    6   com.apple.CoreFoundation                0x9038644a CFRelease + 986
    7   com.apple.CoreFoundation                0x903e9c5e __CFAttributedStringDeallocate + 30
    8   com.apple.CoreFoundation                0x9038644a CFRelease + 986
    9   com.apple.CoreText                      0x95530997 TCharStreamCFAttrString::~TCharStreamCFAttrString() + 43
    10  com.apple.CoreText                      0x95530963 TCharStreamCFAttrString::~TCharStreamCFAttrString() + 17
    11  com.apple.CoreText                      0x95520391 TReferenced::Adopt(MReferenceCounted const*) + 53
    12  com.apple.CoreText                      0x9552d23f TLine::~TLine() + 269
    13  com.apple.CoreText                      0x9553075d TCFBase<TLine>::ClassDestruct(void const*) + 31
    14  com.apple.CoreFoundation                0x9038644a CFRelease + 986
    15  com.apple.HIToolbox                     0x97c3c810 TCoreTextLineInfo::~TCoreTextLineInfo() + 40
    16  com.apple.HIToolbox                     0x97c3c7db TLayoutInfo::Clear() + 51
    17  com.apple.HIToolbox                     0x97c3c575 TCoreTextEngine::Invalidate() + 55
    18  com.apple.HIToolbox                     0x97c3999f TCoreTextEngine::Init(void const*, THIThemeTextInfo const*) + 93
    19  com.apple.HIToolbox                     0x97c397e8 TThemeTextCache::Create(void const*, THIThemeTextInfo const*) + 444
    20  com.apple.HIToolbox                     0x97c395d7 ThemeTextCreate(void const*, THIThemeTextInfo const*) + 33
    21  com.apple.HIToolbox                     0x97cd3172 DataEngine::GetTextDimensions(void const*, float, HIThemeTextInfo*, float*, float*, float*) + 218
    22  com.apple.HIToolbox                     0x97c39320 HIThemeGetTextDimensions + 190
    23  com.adobe.pse11editor                   0x0052a489 std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) + 2224145
    24  com.adobe.pse11editor                   0x0052a8f2 std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) + 2225274
    25  com.adobe.pse11editor                   0x015dcee8 std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) + 19733104
    26  com.apple.AppKit                        0x909dddf2 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shouldChangeFon tReferenceColor:] + 1124
    27  com.apple.AppKit                        0x90b1a337 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inContext:topView:] + 110
    28  com.apple.AppKit                        0x90b1a25e -[NSView _drawRectBasedDisplayRectIgnoringOpacity:inContext:] + 268
    29  com.apple.AppKit                        0x90b19f7e -[NSView displayRectIgnoringOpacity:inContext:] + 492
    30  com.apple.AppKit                        0x90c95321 -[NSCarbonMenuImpl _carbonDrawLimitedViewForMenuItem:withEvent:] + 1405
    31  com.apple.AppKit                        0x90c96272 -[NSCarbonMenuImpl _carbonDrawItemContentEvent:handlerCallRef:] + 86
    32  com.apple.AppKit                        0x90ab2136 NSSLMMenuEventHandler + 816
    33  com.apple.HIToolbox                     0x97dcaeb9 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    34  com.apple.HIToolbox                     0x97c1e64f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    35  com.apple.HIToolbox                     0x97c1d968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    36  com.apple.HIToolbox                     0x97c1d7e0 SendEventToEventTargetWithOptions + 94
    37  com.apple.HIToolbox                     0x97c7d2e2 HIStandardMenuView::HandleEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 1994
    38  com.apple.HIToolbox                     0x97c1ec51 HIObject::EventHook(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 163
    39  com.apple.HIToolbox                     0x97dcaeb9 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    40  com.apple.HIToolbox                     0x97c1e64f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    41  com.apple.HIToolbox                     0x97c1d968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    42  com.apple.HIToolbox                     0x97c1d7e0 SendEventToEventTargetWithOptions + 94
    43  com.apple.HIToolbox                     0x97c1fa14 MenuData::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 120
    44  com.apple.HIToolbox                     0x97dcaeb9 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    45  com.apple.HIToolbox                     0x97c1e64f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    46  com.apple.HIToolbox                     0x97c1d968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    47  com.apple.HIToolbox                     0x97c1d7e0 SendEventToEventTargetWithOptions + 94
    48  com.apple.HIToolbox                     0x97c87a75 HIStandardMenuView::DrawItem(unsigned char, CGContext*, unsigned char) + 2719
    49  com.apple.HIToolbox                     0x97c86d56 HIStandardMenuView::DrawSelf(short, __HIShape const*, CGContext*) + 486
    50  com.apple.HIToolbox                     0x97c37835 HIView::DrawCacheOrSelf(short, __HIShape const*, CGContext*) + 361
    51  com.apple.HIToolbox                     0x97c376c0 HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 518
    52  com.apple.HIToolbox                     0x97cf9fae HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 784
    53  com.apple.HIToolbox                     0x97cfa24a HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 1452
    54  com.apple.HIToolbox                     0x97cfa24a HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 1452
    55  com.apple.HIToolbox                     0x97cf9494 HIView::DrawComposited(short, OpaqueGrafPtr*, __HIShape const*, unsigned long, HIView*, CGContext*) + 890
    56  com.apple.HIToolbox                     0x97cf90ce HIView::Draw(short, OpaqueGrafPtr*, unsigned long) + 84
    57  com.apple.HIToolbox                     0x97cf9073 HIView::Render(unsigned long, CGContext*) + 45
    58  com.apple.HIToolbox                     0x97c35f7a WindowData::PrepareForVisibility() + 176
    59  com.apple.HIToolbox                     0x97c854a4 _HIWindowPrepareForVisibility + 34
    60  com.apple.HIToolbox                     0x97c841d4 DrawMDEF(MenuSelectData*, CGPoint) + 934
    61  com.apple.HIToolbox                     0x97c9c1df DrawTheMenu(MenuSelectData*, __CFArray**, unsigned char, unsigned char*) + 683
    62  com.apple.HIToolbox                     0x97c9bdda MenuChanged(MenuSelectData*, unsigned char, unsigned char) + 377
    63  com.apple.HIToolbox                     0x97c89b99 TrackMenuCommon(MenuSelectData&, unsigned char*) + 1196
    64  com.apple.HIToolbox                     0x97e1f5a8 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 445
    65  com.apple.HIToolbox                     0x97c9b8ae _HandleMenuSelection2 + 488
    66  com.apple.HIToolbox                     0x97c9b6b7 _HandleMenuSelection + 53
    67  com.apple.AppKit                        0x90a1f628 _NSHandleCarbonMenuEvent + 358
    68  com.apple.AppKit                        0x90874902 _DPSNextEvent + 2459
    69  com.apple.AppKit                        0x90873ad0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    70  com.apple.AppKit                        0x9086635c -[NSApplication run] + 727
    71  com.adobe.pse11editor                   0x015d4030 std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) + 19696568
    72  com.adobe.pse11editor                   0x015d4b04 std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) + 19699340
    73  com.adobe.pse11editor                   0x004c0d6c std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) + 1792244
    74  com.adobe.pse11editor                   0x0067e7a7 std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) + 3617583
    75  com.adobe.pse11editor                   0x0067e862 std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) + 3617770
    76  com.adobe.pse11editor                   0x004693c2 std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) + 1433418
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9205a992 kevent64 + 10
    1   libdispatch.dylib                       0x9652a8bd _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x9652a556 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x92054fce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x98247311 MPWaitOnSemaphore + 104
    2   MultiProcessor Support                  0x0e83b8e4 0xe801000 + 239844
    3   com.apple.CoreServices.CarbonCore          0x9824756e PrivateMPEntryPoint + 68
    4   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    5   libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    6   libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x920597ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x90761d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x90763bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9827a922 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9827ab46 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x98246f92 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x063eaf81 0x63ab000 + 262017
    7   com.adobe.ACE                           0x063ea979 0x63ab000 + 260473
    8   com.apple.CoreServices.CarbonCore          0x9824756e PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x920597ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x90761d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x90763fa3 pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x13eab42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl                     0x13c4453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl                     0x13eab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x13eab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x13eab6a6 APXGetHostAPI + 2600534
    8   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x920597ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x90761d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x90763fa3 pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x13eab42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl                     0x13c4453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl                     0x13eab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x13eab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x13eab6a6 APXGetHostAPI + 2600534
    8   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x920597ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x90761d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x90762042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x13eab2b9 APXGetHostAPI + 2599529
    4   com.adobe.adobeswfl                     0x13ca175c APXGetHostAPI + 462604
    5   com.adobe.adobeswfl                     0x13ca17aa APXGetHostAPI + 462682
    6   com.adobe.adobeswfl                     0x13eab51c APXGetHostAPI + 2600140
    7   com.adobe.adobeswfl                     0x13eab587 APXGetHostAPI + 2600247
    8   com.adobe.adobeswfl                     0x13eab6a6 APXGetHostAPI + 2600534
    9   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x920597ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x90761d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x90762042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x13eab3f7 APXGetHostAPI + 2599847
    4   com.adobe.adobeswfl                     0x13ec5e4e APXGetHostAPI + 2708990
    5   com.adobe.adobeswfl                     0x13eab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x13eab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x13eab6a6 APXGetHostAPI + 2600534
    8   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x920597ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x90761d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x90762042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x13eab3f7 APXGetHostAPI + 2599847
    4   com.adobe.adobeswfl                     0x14022348 APXGetHostAPI + 4135672
    5   com.adobe.adobeswfl                     0x13eab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x13eab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x13eab6a6 APXGetHostAPI + 2600534
    8   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x92059b76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9214005b nanosleep$UNIX2003 + 219
    2   com.adobe.PSAutomate                    0x155e0ecb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate                    0x155c0d73 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate                    0x155e0fd8 ScObjects::Thread::go(void*) + 168
    5   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x92054f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9205416c mach_msg + 68
    2   com.apple.CoreFoundation                0x903e3f69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x903e3541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x903e2d5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x903e2bbb CFRunLoopRunInMode + 123
    6   com.apple.AppKit                        0x90a1df18 _NSEventThread + 283
    7   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 11:: ace
    0   libsystem_kernel.dylib                  0x920597ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x90761d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x90763bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9827a922 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9827ab46 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x98246f92 MPWaitOnQueue + 199
    6   com.adobe.CameraRaw                     0x1f272691 0x1eff4000 + 2614929
    7   com.adobe.CameraRaw                     0x1f2722dd 0x1eff4000 + 2613981
    8   com.apple.CoreServices.CarbonCore          0x9824756e PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 12:: cr_scratch
    0   libsystem_kernel.dylib                  0x920597ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x90761d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x90763bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.CameraRaw                     0x1f5d143c 0x1eff4000 + 6149180
    4   com.adobe.CameraRaw                     0x1f56c952 0x1eff4000 + 5736786
    5   com.adobe.CameraRaw                     0x1f3b3aef 0x1eff4000 + 3930863
    6   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x920597ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x90761d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x90762042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x13eab2b9 APXGetHostAPI + 2599529
    4   com.adobe.adobeswfl                     0x13ca175c APXGetHostAPI + 462604
    5   com.adobe.adobeswfl                     0x13ca17aa APXGetHostAPI + 462682
    6   com.adobe.adobeswfl                     0x13eab51c APXGetHostAPI + 2600140
    7   com.adobe.adobeswfl                     0x13eab587 APXGetHostAPI + 2600247
    8   com.adobe.adobeswfl                     0x13eab6a6 APXGetHostAPI + 2600534
    9   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x920597ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x90761d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x90762042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x13eab3f7 APXGetHostAPI + 2599847
    4   com.adobe.adobeswfl                     0x13ec5e4e APXGetHostAPI + 2708990
    5   com.adobe.adobeswfl                     0x13eab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x13eab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x13eab6a6 APXGetHostAPI + 2600534
    8   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x920597ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x90761d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x90762042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x13eab3f7 APXGetHostAPI + 2599847
    4   com.adobe.adobeswfl                     0x140222b8 APXGetHostAPI + 4135528
    5   com.adobe.adobeswfl                     0x13eab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x13eab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x13eab6a6 APXGetHostAPI + 2600534
    8   libsystem_pthread.dylib                 0x9075f5fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x9075f485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x90764cf2 thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x9205a046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x90760dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x90764cce start_wqthread + 30
    Thread 17:
    0   libsystem_kernel.dylib                  0x9205a046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x90760dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x90764cce start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xa03b1f80  ebx: 0xd4a0b75a  ecx: 0x9038607e  edx: 0x00000012
      edi: 0x903a6abe  esi: 0xd4a0b75a  ebp: 0xbfffc6f8  esp: 0xbfffc690
       ss: 0x00000023  efl: 0x00010286  eip: 0x9038608d   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xd4a0b75a
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
        0x1000 -  0x322afeb +com.adobe.pse11editor (11.0 - 11) <48BFB642-9109-C66E-A878-7166D58A7F91> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/MacOS/Adobe Photoshop Elements 11 Editor
    0x3fc5000 -  0x40befef +com.yourcompany.ems (1.0 - 1) <7AB382ED-E2CE-82F5-2CF7-318C691E1B87> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/ems.framework/Versions/A/ems
    0x416e000 -  0x4174fff  org.twain.dsm (1.9.5 - 1.9.5) <3CE5B8E4-1F2D-3694-890D-B3965F244443> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x417c000 -  0x4362ff7 +com.adobe.linguistic.LinguisticManager (5.0.0 - 11696) <AF804353-8B13-7180-F2C8-832361EB2D5A> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x43f4000 -  0x47efffb +com.adobe.MPS (AdobeMPS 5.6.0.15234 - 5.6.0.15234) <746FBFB2-5AFA-B27F-51B1-949B3CE65FCE> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeMPS.framework/Versions/a/AdobeMPS
    0x486e000 -  0x4b93ff7 +com.adobe.AGM (AdobeAGM 4.21.54.14136 - 4.21.54.14136) <B4C93913-5929-0DD9-B6AA-F31898A40579> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeAGM.framework/Versions/a/AdobeAGM
    0x4c09000 -  0x4f28ff7 +com.adobe.CoolType (AdobeCoolType 5.08.104.14136 - 5.08.104.14136) <C8D029C6-B48A-A2B9-79E3-6022A22A6E32> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeCoolType.framework/Versions/a/AdobeCoolType
    0x4f7f000 -  0x4fa5ff3 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <185B4EA9-AF0A-0D6C-1E12-709827408B54> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/a/AdobeBIBUtils
    0x4fad000 -  0x4fd0ff6 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.3.402 - 3.3.402) /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/a/AdobeAXE8SharedE xpat
    0x4fe4000 -  0x511cff7 +wrservices (0) <693D315C-73F1-3E8B-9ABD-B8418F863F22> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/wrservices.framework/Versions/a/wrservices
    0x5166000 -  0x51cdfe3 +aif_core (0) <FDF6DAC9-2531-61B1-4164-CE1A1B143938> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x51fd000 -  0x524bff3 +data_flow (0) <F74CBC63-CD27-338E-ED86-858D402F101B> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x52ec000 -  0x5369fff +image_flow (0) <07A236E3-0A9E-9E4A-E38A-F9A9869B443F> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x53eb000 -  0x5678ff3 +aif_ogl (0) <B16CD7E1-0F75-250C-30C7-7C1BCECB3E6D> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x5798000 -  0x57b3fff +image_runtime (0) <0C8B0FC4-97DF-C4F9-F95D-618AD93FB569> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x57d7000 -  0x5861fef +com.adobe.owl-canvas (AdobeOwlCanvas version 3.0.68 - 3.0.68) <3B9B9050-7F74-EBBA-99E1-4202D49B321A> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/a/AdobeOwlCanvas
    0x5885000 -  0x5ba2fef +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <57907A7F-6D01-C35F-29B4-28C2DFE35157> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/dvaui.framework/Versions/a/dvaui
    0x5d0e000 -  0x5e89fe7 +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <ED2C7256-FDB7-63CD-23F8-1748AA53D397> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/dvacore.framework/Versions/a/dvacore
    0x5f28000 -  0x6270fff +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <18ABE6DC-26AD-2C95-D68F-4E8E1306D4E2> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/dvaadameve.framework/Versions/a/dvaadameve
    0x63ab000 -  0x64ccfeb +com.adobe.ACE (AdobeACE 2.17.18.14136 - 2.17.18.14136) <4ED19D67-5FCE-653F-FE47-63F2642FFD3C> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x64f3000 -  0x650eff3 +com.adobe.BIB (AdobeBIB 1.2.02.14136 - 1.2.02.14136) <CF6D168F-10ED-7B79-9346-4607F3064DB9> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeBIB.framework/Versions/a/AdobeBIB
    0x6516000 -  0x6519ffc +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <FE2ABE8A-1D3F-7AF5-297C-D22FC3E0FBDA> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x6521000 -  0x65a0feb +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 2 . 0 . 0 -i 3 - 63.142324) <8528C525-9A5B-8199-2F98-BE97F8499B8E> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/FileInfo.framework/Versions/a/FileInfo
    0x65b5000 -  0x6612fff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.2 -c 1 - 63.139439) <7577D84C-17DF-E00C-F720-AE40E88F29A6> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeXMP.framework/Versions/a/AdobeXMP
    0x661d000 -  0x6a7cfe7 +com.nvidia.cg (2.2.0006 - 0) /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/Cg.framework/Versions/A/Cg
    0x6e70000 -  0x6eddffb +com.adobe.headlights.LogSessionFramework (2.1.2.1652) <82DA9279-45D2-AD40-C86C-F5A94B9DAAFF> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x6f2c000 -  0x6f4dffe +com.adobe.PDFSettings (AdobePDFSettings 1.04.0 - 1.4) <935615E5-C4BA-E18B-A9C9-178BCC4D8126> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x6f84000 -  0x70fdffb +com.adobe.PlugPlug (2.0.0.109 - 2.0.0.109) <2DC629B0-ED89-059C-CB3D-6FB903226B80> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/PlugPlug.framework/Versions/a/PlugPlug
    0x71a5000 -  0x7233ff7 +com.adobe.AdobeScCore (ScCore 4.1.23 - 4.1.23.1) <3B009A65-E429-12D2-A923-D26BA8425BF7> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeScCore.framework/Versions/a/AdobeScCore
    0x7279000 -  0x7311fff +com.adobe.AdobeExtendScript (ExtendScript 4.1.23 - 4.1.23.7573) <F68E96A7-E657-7275-09DF-4C412554CD4A> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/a/AdobeExtendScript
    0x7373000 -  0x7444fef +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.3.402 - 3.3.402) /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/a/AdobeAXEDOMCore
    0x74fb000 -  0x75b8fff +com.adobe.AXEXSLT (AdobeAXSLE 3.3.402 - 3.3.402) /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/a/AdobeAXSLE
    0x7663000 -  0x766aff2 +com.adobe.boostthreads.framework (boost_threads version 5.0.0 - 5.0.0.0) <37374715-2FC3-B77B-EFD8-9403A80C7F70> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/boost_threads.framework/Versions/a/boost_threads
    0x7674000 -  0x7856ff7 +com.adobe.owl (AdobeOwl version 4.1.9 - 4.1.9) <435BEC3A-41A1-3566-AAC9-C12183AA91E7> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x7886000 -  0x792bffb +com.adobe.breeze (AdobeBreeze 2.0.2.1 - 2.0.2.1) <1275F007-B8A7-CA23-8F89-570E182FCBA8> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/FaceDetector.framework/Versions/A/FaceDetector
    0x7a4e000 -  0x7a76fff  com.apple.DiscRecordingUI (8.0 - 8000.4.6) <5DA1C568-EB47-32A6-8901-087C125DAC54> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x7a8f000 -  0x7ab1ff7 +libtbb.dylib (0) <AAA2AFA2-789A-41B8-D03D-C03861305060> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/libtbb.dylib
    0x7ac6000 -  0x7acefef +libtbbmalloc.dylib (0) <7A79ED70-A4AC-737A-2FAA-63B6FB29D4ED> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/libtbbmalloc.dylib
    0x7e82000 -  0x7e83ffd  com.apple.textencoding.unicode (2.6 - 2.6) <27946D57-CEFB-3EF1-B124-4A39D2621738> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xa853000 -  0xa861fff  libSimplifiedChineseConverter.dylib (61) <6E42E198-9C8D-3F0F-9660-6D9975C2461E> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xa865000 -  0xa877ffd  libTraditionalChineseConverter.dylib (61) <EFC81138-0455-321B-A93A-F4E9C4A3EB31> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xa934000 -  0xa959ff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0xa96e000 -  0xa979ffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0xa994000 -  0xa99ffff  libGPUSupport.dylib (9.0.83) <DE01868A-9511-3FAD-897B-BB6BCB70B1AA> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport .dylib
    0xb394000 -  0xb3bdfef +com.adobe.ape (adbeapecore version 3.1.74.12761 - 3.1.74.12761) <21548488-E9C3-4638-D7FC-895EE0F8EE30> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/adbeapecore.framework/adbeapecore
    0xcfef000 -  0xcff8fff +FastCore (???) <AF02801D-2768-8366-EB16-DC65E6B9AEAE> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Required/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
    0xe55d000 -  0xe55eff8  ATSHI.dylib (363.1) <1230337B-D921-3F25-84E9-CA7E8EACBA96> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0xe801000 -  0xe867ff7 +MultiProcessor Support (???) <A5F97A7F-5E5D-D640-ADF4-07CA88C5522B> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Required/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0xe8dc000 -  0xe8e0ffd  libFontRegistryUI.dylib (127) <C207DFF5-0C48-3831-B9F1-2363D9A7A365> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistryUI.dylib
    0xe8ec000 -  0xe8f0ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.3 - 2.5.3fc1) <DAF7D11D-7AC8-38EA-AE89-903A9C59E1BB> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0xeb00000 -  0xec57fef +com.adobe.coretech.adm (3.10x16 - 3.1) <DB1A9F8F-B2C6-2705-2A81-C10D47A4BC39> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Required/Plug-Ins/ADM/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0xf800000 -  0xffbbff9  libclh.dylib (4.0.3 - 4.0.3) <922B857E-654F-3270-A4CD-2E8573E44732> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x100fd000 - 0x100fdffd +cl_kernels (???) <0F1DE703-F0B1-4788-A3C3-389AE255FF8C> cl_kernels
    0x10400000 - 0x1042dff3 +com.libcurl.libcurl (libcurl 7.18.2 - 7.18.2) /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/libcurl.framework/Versions/A/libcurl
    0x10a68000 - 0x10b18fff  ColorSyncDeprecated.dylib (426) <F54DBFF3-3165-3D15-8AE4-37B603502A5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x13c00000 - 0x14a5dfeb +com.adobe.adobeswfl (2.0.0.11360) <3E243C12-18DB-469A-DFA9-B0AE4A1C620F> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/ MacOS/AdobeSWFL
    0x15440000 - 0x15689fe3 +com.adobe.PSAutomate (12.0.2 - 12.0.2) <4BD28FF9-E7A6-576D-952F-E3FA9E5476E3> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Required/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/S criptingSupport
    0x19b00000 - 0x19bebff7  unorm8_bgra.dylib (2.3.58) <44644D3C-3D0E-3CBB-9265-664D95EC791F> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra .dylib
    0x19dac000 - 0x19e1afd7 + (???)
    0x1eff4000 - 0x20028ffb +com.adobe.CameraRaw (7.2 [46] - 7.2.0f46) <72B43E4D-4048-39E7-B17E-D70BCF2A4E3F> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Required/Plug-Ins/FileFormats/Camera Raw.plugin/Contents/MacOS/Camera Raw
    0x40000000 - 0x400c7ff3 +com.adobe.JP2K (2.0.0 - 2.0.0.14136) <88B283E5-7E2A-693F-C2D0-0398430A2933> /Applications/Adobe Photoshop Elements 11 Editor.app/Contents/Frameworks/AdobeJP2K.framework/Versions/a/AdobeJP2K
    0x48000000 - 0x488c4ff7  com.apple.GeForceTeslaGLDriver (8.18.28 - 8.1.8) <35C30A67-5DC2-363D-A2D4-8FFC9117D09A> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/GeForceTeslaGLDrive r
    0x8fe2b000 - 0x8fe5d417  dyld (239.3) <4B280BB1-55F8-313F-86A6-8ADD644ED69E> /usr/lib/dyld
    0x90008000 - 0x9000afff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x9000b000 - 0x90189ff8  libGLProgrammability.dylib (9.0.83) <268638DE-5A32-3352-9068-97244D06E43F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x9018a000 - 0x9019fff3  com.apple.AppContainer (3.0 - 1) <B53ED2AD-9B19-316F-B7B9-80A3A94AC1D3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x901a0000 - 0x901adff7  com.apple.HelpData (2.1.4 - 90) <5BACC236-5B40-33AC-B088-87EDEFAF1D3E> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x901ae000 - 0x901c9ff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x901ca000 - 0x90297ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <91998CDF-3547-3183-A962-D9E981C14891> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90298000 - 0x902a6ff3  com.apple.opengl (9.0.83 - 9.0.83) <16CFFD50-217E-3E18-88AF-7F2AD980628B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x902a7000 - 0x902d2ff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x9033b000 - 0x9033bffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x9033c000 - 0x90360fff  libxpc.dylib (300.1.17) <252BC88F-A5CA-3E67-AEDB-3D7B9F4537E2> /usr/lib/system/libxpc.dylib
    0x90361000 - 0x9036bff2  com.apple.AppSandbox (3.0 - 1) <085C3B38-C7D8-3A62-AFC6-CEE27F93DFD1> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x9036c000 - 0x9036cfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9036d000 - 0x9056fff7  com.apple.CoreFoundation (6.9 - 855.11) <50F70E07-043A-3A2F-87EF-A36BA6C5C9D9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90570000 - 0x905a2ff7  libTrueTypeScaler.dylib (111.1) <A568EE4C-1588-3F8B-8640-F02CEFC5AF09> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x905a3000 - 0x90705ff3  com.apple.CFNetwork (673.0.3 - 673.0.3) <5E0E9AE8-073B-3F2B-B0C7-A0129DE787F6> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x90706000 - 0x9075cff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x9075e000 - 0x90765ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x90766000 - 0x907a4ff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x907a5000 - 0x907b5ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x907b6000 - 0x907ecfff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x907ed000 - 0x907f0ffa  libCGXType.A.dylib (599.7) <2738FF52-4B47-31AD-B7E5-412F6AFACC2A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x907f1000 - 0x90844fff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x90845000 - 0x9084cff7  com.apple.XPCService (2.0 - 1) <94783930-9E46-394F-B1B2-9CA57CBA2D25> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x9084d000 - 0x91468ff3  com.apple.AppKit (6.9 - 1265) <AE258D94-0272-394F-BBB7-9B5C165A4A78> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91469000 - 0x9146cffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x9146d000 - 0x91470ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9147c000 - 0x91501ffc  com.apple.CorePDF (4.0 - 4) <73557F2A-B0EF-3128-90FE-8EDD7824CE73> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91503000 - 0x9150afff  libMatch.1.dylib (19) <3B3680FC-2AC9-37CC-B262-5ACE2CF8939A> /usr/lib/libMatch.1.dylib
    0x9150b000 - 0x915e6ff7  com.apple.LaunchServices (572.23 - 572.23) <7E52FB5C-9ECF-3CB9-BF18-6652B8D8CDE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x915e7000 - 0x915e8fff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x915e9000 - 0x91608ff9  com.apple.framework.Apple80211 (9.0 - 900.47) <68E399FF-AB98-378D-94AC-D0869A72344F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x91609000 - 0x91625ff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x91f81000 - 0x91f9dfff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0x91f9e000 - 0x91fdbffb  libGLImage.dylib (9.0.83) <FA15FEB5-54E4-313B-8E78-A2D2E6C88FE1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x9203f000 - 0x92041ffb  libRadiance.dylib (1038) <F0D3F13B-5628-3DF9-8B86-A4D914567B25> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92042000 - 0x9205fff4  libsystem_kernel.dylib (2422.1.72) <C5641F6C-E271-380A-A656-AE4C04345602> /usr/lib/system/libsystem_kernel.dylib
    0x9206c000 - 0x920c1ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x920c4000 - 0x92156ffe  libsystem_c.dylib (997.1.1) <D06FD754-8CE3-3EB7-BE05-2EF939BBE05F> /usr/lib/system/libsystem_c.dylib
    0x92157000 - 0x9216fff7  libsystem_malloc.dylib (23.1.10) <69F485C9-B3E7-3E36-A06C-D7DFD29D22E1> /usr/lib/system/libsystem_malloc.dylib
    0x92170000 - 0x923d4fff  com.apple.CoreData (107 - 481) <F699EC21-57D9-3AE6-A17B-C1D1092780BD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x923d5000 - 0x923ddffe  libGFXShared.dylib (9.0.83) <35644AAA-B1E7-367C-90C0-378024F8A46A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x923de000 - 0x92534ff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x92535000 - 0x92559fff  libJPEG.dylib (1038) <212B0986-9227-397C-9493-BCB190EC020E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9255a000 - 0x92571ff4  com.apple.CoreMediaAuthoring (2.2 - 947) <BF917B77-0935-3F56-A2B9-E62A58A713B8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x92572000 - 0x92574fff  libsystem_configuration.dylib (596.12) <1C31C3F6-568D-3854-AE03-A5DA2F39297E> /usr/lib/system/libsystem_configuration.dylib
    0x92575000 - 0x929a9ff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x929aa000 - 0x929abffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x929ac000 - 0x92dd1fe3  com.apple.VideoToolbox (1.0 - 1273.29) <200BFEED-8948-3266-A2C4-1DC6A695EC58> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x92e6d000 - 0x92f61fff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x92f62000 - 0x92f6effe  libkxld.dylib (2422.1.72) <F9B35FA5-C936-3286-A055-2B0780A674AC> /usr/lib/system/libkxld.dylib
    0x93078000 - 0x93109fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x93115000 - 0x9350dff3  com.apple.CoreGraphics (1.600.0 - 599.7) <DB004990-F06F-3768-AE4C-191B3C748EFC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x9350e000 - 0x9350ffff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x93510000 - 0x9351cff7  com.apple.OpenDirectory (10.9 - 173.1.1) <2AA24814-2DC6-3E28-B71B-186B686F0F19> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9351d000 - 0x93522ff3  libsystem_platform.dylib (24.1.4) <875321B9-34EF-3FCC-880C-633FA05223F5> /usr/lib/system/libsystem_platform.dylib
    0x93523000 - 0x93578fff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x93580000 - 0x935affff  com.apple.framework.SystemAdministration (1.0 - 1.0) <05E81260-7DC7-3546-B45D-15B3E5DF056D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdminis tration
    0x935b0000 - 0x936bcfff  com.apple.ImageIO.framework (3.3.0 - 1038) <0B4A6607-9FBC-3A6C-984A-0542DE8385FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x936bd000 - 0x936d5fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <630A5CCF-8FC3-379D-B0BD-41DCE1F0B624> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x936d6000 - 0x93c43fff  com.apple.QuartzComposer (5.1 - 316) <4FC30662-E3CC-3AE5-88CE-7B271B59EFF0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x93c44000 - 0x93c6efff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x93c6f000 - 0x93cabff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x93cac000 - 0x93caefff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x93caf000 - 0x93cffff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x93d00000 - 0x93d00fff  com.apple.Carbon (154 - 157) <C49AD4A1-8DE3-357D-AEF3-D6CD39EA91EF> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93d01000 - 0x93d09ff7  libCGCMS.A.dylib (599.7) <A7404924-9A2B-3324-A934-BD08953E7098> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x93d0a000 - 0x93d4cfff  libGLU.dylib (9.0.83) <0D9BFE5A-435E-3C66-AF96-D3567B8FC87B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93fb3000 - 0x94220ff6  com.apple.security (7.0 - 55471) <5FCF76B2-92C6-3404-87D3-91B3F6E203AA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94221000 - 0x94227ffb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x94228000 - 0x9456effb  com.apple.MediaToolbox (1.0 - 1273.29) <60F62850-70EC-38E8-9C7F-81204CF9C382> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x9456f000 - 0x9457efff  libGL.dylib (9.0.83) <E76D1F2A-D98B-3464-AD0B-FC1EBBADF027> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x94d57000 - 0x94d64fff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x94d65000 - 0x94d95ff7  com.apple.CoreServicesInternal (184.8 - 184.8) <88528205-9452-3EEC-BB27-DAAA7EC81E04> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x94d96000 - 0x94e00ff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x94e01000 - 0x94e0afff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x94e0b000 - 0x95089ff7  com.apple.imageKit (2.5 - 770) <C2FE06B8-DB32-392F-9280-5C1CB148D174> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x9508a000 - 0x95093ffa  com.apple.CommonAuth (4.0 - 2.0) <6CB82D57-3C55-39E5-9036-8047DF3E6F57> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9509c000 - 0x950cdffd  com.apple.GSS (4.0 - 2.0) <6BA01155-4DAD-30EE-B480-D224650EA010> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x950ce000 - 0x953b8fd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x953b9000 - 0x953d2fff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x953d3000 - 0x953fafff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x953fb000 - 0x95492ff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x95493000 - 0x95495ffe  libCVMSPluginSupport.dylib (9.0.83) <BD30BDD1-DD5B-3F31-A09B-C274EA93CD7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x95496000 - 0x954c0ff7  libsandbox.1.dylib (278.10) <28813216-B652-3E4D-B0D5-BE49B385C6EC> /usr/lib/libsandbox.1.dylib
    0x954c1000 - 0x954c5fff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x954f7000 - 0x954fdff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNot

    I posted a long link with error l get, but nothing happens
    Now l make a back up of my harddisk
    Came back to morrorr
    Wenche
    22. des. 2013 kl. 22:01 skrev Barbara B. <[email protected]>:
    Re: What shall i do? What happens?
    created by Barbara B. in Photoshop Elements - View the full discussion
    It would be more helpful if you could tell us what the problem is.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5951720#5951720
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5951720#5951720
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5951720#5951720. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop Elements at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

Maybe you are looking for

  • Java Progrramming HELP, Needed Urgently, T hanks

    hey guys, I have this lab I need to be done tomorrow, its been weeks lol of thinking and figuring things out can someone make it work ? Pleaseeeee ! I feel like going out and yelling for help lol I have been trying to figure this out for weeks now. I

  • Exchange 2010. Unable to access block list IP's in Hub Transport Service.

    Just started today as I was getting ready to add an IP address to the IPBlock list.  Box pops up that says 'failed to enable key constraints.  One or more rows contain values violating non-null, unique or foreign-key constraints.' The only thing I ha

  • Add Dynamic Rows in a table

    Hi All, I have fetaure to implement that requires me add n no rows in a table in one transaction. Take the scenario as :- I have 2 tables : Parent(Id,name) Child(Id ,name ,ParentId) So while creating Parent in a adf form ,I want add N no or child dyn

  • Witch cable for my videocamera to Imac

    I have an video camera with firewire 400 4 pins. On the Imac has no firewire system. How do I connect my camera to my Imac? Witch cable do I need? I use final cut prox, he doesn't reconize my camera?

  • XI 3.0 Training

    Hi XI Folks,            I am an SAP Technical Consultant,planning to take XI Training in India on TBIT40 XI TBIT40 XI Fundamentals      TBIT41, 42 & 43 - e-learning Mapping Concepts, Adapter Concepts AND Business Process Management Concepts      TBIT